| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490 |
- ; 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: 38
- Second: 1
- Millisecond: 196
- }
- 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_Crenelation_Ruined_06.fbx"
- P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Crenelation_Ruined_06.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:38:01.195"
- P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\Source_NEW\SM_Crenelation_Ruined_06.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:38:01.195"
- 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: 2268255705216, "", "Scene" {
- Properties70: {
- P: "SourceObject", "object", "", ""
- P: "ActiveAnimStackName", "KString", "", "", "Take 001"
- }
- RootNode: 0
- }
- }
- ; Document References
- ;------------------------------------------------------------------
- References: {
- }
- ; Object definitions
- ;------------------------------------------------------------------
- Definitions: {
- Version: 100
- Count: 43
- 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: 7
- 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: 5
- 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: 6
- 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: 10
- 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: 10
- 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: 2268237833536, "NodeAttribute::", "Null" {
- Properties70: {
- P: "Look", "enum", "", "",0
- }
- TypeFlags: "Null"
- }
- NodeAttribute: 2268321084608, "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: 2267733681312, "Geometry::", "Mesh" {
- Vertices: *2058 {
- a: 0,53.84912109375,43.2578125,0,53.84912109375,-40.46484375,89.45703125,140.447998046875,-40.46484375,89.45703125,140.447998046875,43.2578125,178.1015625,140.447998046875,-40.46484375,178.1015625,140.447998046875,43.2578125,265.1796875,49.62744140625,-40.46484375,265.1796875,49.62744140625,43.2578125,377.11328125,19.987548828125,43.2578125,178.1015625,52.48779296875,43.2578125,89.45703125,52.48779296875,43.2578125,89.45703125,52.48779296875,-40.46484375,178.1015625,52.48779296875,-40.46484375,371.33203125,20.63232421875,-40.46484375,396.37890625,-80.124755859375,43.2578125,265.1796875,-80.124755859375,43.2578125,178.1015625,-80.124755859375,43.2578125,89.45703125,-80.124755859375,43.2578125,0,-80.124755859375,43.2578125,291.17578125,52.48779296875,-40.35546875,291.17578125,52.48779296875,43.3671875,312.8984375,-80.124755859375,43.2578125,220.8671875,52.48779296875,-40.46484375,220.8671875,52.48779296875,43.2578125,47.8046875,52.48779296875,43.2578125,47.8046875,52.48779296875,-40.46484375,47.8046875,-80.124755859375,43.2578125,220.8671875,137.882080078125,-40.46484375,220.8671875,137.882080078125,43.2578125,220.8671875,-80.124755859375,43.2578125,47.8046875,138.395263671875,43.2578125,47.8046875,138.395263671875,-40.46484375,220.8671875,169.30712890625,1.39453125,178.1015625,171.873046875,1.39453125,89.45703125,171.873046875,1.39453125,47.8046875,169.8203125,1.39453125,47.8046875,-80.124755859375,-40.46484375,220.8671875,-80.124755859375,-40.46484375,0,-80.124755859375,-40.46484375,89.45703125,-80.124755859375,-40.46484375,178.1015625,-80.124755859375,-40.46484375,265.1796875,-80.124755859375,-40.46484375,312.8671875,-80.124755859375,-40.46484375,387.3203125,-80.124755859375,-40.46484375,303.046875,-105.40771484375,-34.796875,305.140625,-106.863525390625,-34.8046875,302.90234375,-106.65625,-36.71484375,304.96875,-129.262939453125,-35.53125,302.81640625,-129.740478515625,-37.2890625,302.8203125,-107.455810546875,23.6171875,305.0625,-107.42236328125,21.5859375,303.11328125,-105.8408203125,22.22265625,
- 268.921875,-105.40185546875,-34.796875,269.0625,-106.654296875,-36.71484375,266.82421875,-106.854736328125,-34.8046875,266.71484375,-129.260009765625,-35.53125,268.86328125,-129.7392578125,-37.2890625,268.86328125,-107.451171875,23.6171875,268.859375,-105.82958984375,22.22265625,266.6171875,-107.410888671875,21.5859375,304.8515625,-185.2236328125,21.515625,302.765625,-185.22021484375,23.421875,302.76171875,-186.68115234375,21.515625,268.92578125,-186.68115234375,21.515625,268.9296875,-185.22021484375,23.421875,266.83203125,-185.222900390625,21.515625,304.97265625,-185.2880859375,-6.1171875,302.8203125,-186.557861328125,-6.91796875,266.71875,-185.287841796875,-6.1171875,268.86328125,-186.558349609375,-6.91796875,188.765625,-105.40771484375,-34.796875,190.859375,-106.863525390625,-34.8046875,188.6171875,-106.65625,-36.71484375,190.6796875,-129.262939453125,-35.53125,188.53515625,-129.740478515625,-37.2890625,188.5390625,-107.455810546875,23.6171875,190.78125,-107.42236328125,21.5859375,188.83203125,-105.8408203125,22.22265625,154.6328125,-105.40185546875,-34.796875,154.78125,-106.654296875,-36.71484375,152.5390625,-106.854736328125,-34.8046875,152.4296875,-129.260009765625,-35.53125,154.578125,-129.7392578125,-37.2890625,154.578125,-107.451171875,23.6171875,154.57421875,-105.82958984375,22.22265625,152.33203125,-107.410888671875,21.5859375,190.5703125,-185.2236328125,21.515625,188.4765625,-185.22021484375,23.421875,188.47265625,-186.68115234375,21.515625,154.640625,-186.68115234375,21.515625,154.640625,-185.22021484375,23.421875,152.54296875,-185.222900390625,21.515625,190.68359375,-185.2880859375,-6.1171875,188.5390625,-186.557861328125,-6.91796875,152.43359375,-185.287841796875,-6.1171875,154.58203125,-186.558349609375,-6.91796875,74.1484375,-105.40771484375,-34.796875,76.234375,-106.863525390625,-34.8046875,74.00390625,-106.65625,-36.71484375,76.06640625,-129.262939453125,-35.53125,73.9140625,-129.740478515625,-37.2890625,73.91796875,-107.455810546875,23.6171875,76.171875,-107.42236328125,21.5859375,74.21875,-105.8408203125,22.22265625,
- 40.0234375,-105.40185546875,-34.796875,40.16796875,-106.654296875,-36.71484375,37.92578125,-106.854736328125,-34.8046875,37.8125,-129.260009765625,-35.53125,39.96484375,-129.7392578125,-37.2890625,39.9609375,-107.451171875,23.6171875,39.95703125,-105.82958984375,22.22265625,37.72265625,-107.410888671875,21.5859375,75.953125,-185.2236328125,21.515625,73.859375,-185.22021484375,23.421875,73.859375,-186.68115234375,21.515625,40.0234375,-186.68115234375,21.515625,40.0234375,-185.22021484375,23.421875,37.92578125,-185.222900390625,21.515625,76.0703125,-185.2880859375,-6.1171875,73.91796875,-186.557861328125,-6.91796875,37.81640625,-185.287841796875,-6.1171875,39.96875,-186.558349609375,-6.91796875,0,78.208740234375,1.39453125,47.8046875,76.847412109375,1.39453125,226.78125,148.918701171875,43.9921875,214.45703125,150.371826171875,50.15234375,215.515625,147.784912109375,50.84375,226.78125,142.733642578125,46.98828125,226.78125,156.54052734375,38.80859375,41.39453125,138.076904296875,42.63671875,41.39453125,138.505859375,45.23046875,141.70703125,137.725341796875,42.80859375,141.58984375,148.424072265625,50.1875,141.6875,138.49853515625,45.09765625,142.0859375,150.93212890625,49.73828125,41.39453125,150.432861328125,48.953125,41.39453125,148.676513671875,49.71875,226.78125,137.005615234375,43.8515625,225.66015625,148.568359375,45.765625,225.66015625,148.700927734375,45.69140625,225.66015625,142.583251953125,47.98828125,225.66015625,156.487060546875,40.78515625,225.66015625,136.171630859375,44.84375,225.66015625,136.419189453125,42.44140625,143.4921875,153.2109375,51.3203125,143.44140625,150.542236328125,51.5859375,84.44921875,140.97265625,43.5859375,84.58984375,140.80615234375,41.140625,84.65234375,153.07177734375,47.59765625,84.62890625,150.91162109375,48.21875,193.125,147.160888671875,50.46875,192.7421875,138.265869140625,42.36328125,192.75,137.87353515625,45.625,193.125,149.70703125,49.87109375,186.84765625,136.2353515625,42.6640625,186.97265625,136.59912109375,44.99609375,194.609375,136.5419921875,44.96875,194.5859375,136.294921875,42.62109375,
- 192.9453125,141.3896484375,35.66796875,42.5234375,136.72216796875,45.5546875,42.5234375,136.276123046875,42.890625,42.5234375,148.891357421875,50.94140625,42.5234375,150.70751953125,50.15625,86.26953125,154.04931640625,50.16015625,86.41796875,150.912109375,50.76953125,86.20703125,139.471923828125,45.296875,86.0234375,138.843505859375,42.84375,82.890625,154.297119140625,50.16015625,83.109375,150.94970703125,50.78515625,83.4375,139.4560546875,45.3125,83.328125,138.839111328125,42.84765625,83.28125,158.380615234375,16.25,194.3671875,151.505126953125,50.76171875,194.19921875,148.26806640625,51.1015625,191.34765625,150.859375,50.55078125,191.6796875,148.310546875,51.13671875,191.51953125,137.602294921875,45.4921875,191.48046875,137.830322265625,42.42578125,41.39453125,168.14697265625,1.37890625,226.78125,181.89990234375,1.37890625,226.78125,167.710205078125,1.37890625,141.140625,167.77294921875,1.37890625,41.39453125,184.683837890625,1.37890625,225.66015625,166.234619140625,1.37890625,192.921875,166.49853515625,1.37890625,84.50390625,172.63623046875,1.375,42.5234375,166.537353515625,1.37890625,86.31640625,169.175048828125,1.375,82.27734375,169.215087890625,1.375,83.90625,171.50732421875,1.375,142.125,169.234619140625,1.37890625,226.78125,148.918701171875,-41.203125,214.45703125,150.371826171875,-47.36328125,215.515625,147.784912109375,-48.0546875,226.78125,142.733642578125,-44.1953125,226.78125,156.54052734375,-36.01953125,41.39453125,138.076904296875,-39.84765625,41.39453125,138.505859375,-42.44140625,141.70703125,137.725341796875,-40.0234375,141.58984375,148.424072265625,-47.40234375,141.6875,138.49853515625,-42.30859375,142.0859375,150.93212890625,-46.94921875,41.39453125,150.432861328125,-46.1640625,41.39453125,148.676513671875,-46.9296875,226.78125,137.005615234375,-41.0625,225.66015625,148.568359375,-42.9765625,225.66015625,148.700927734375,-42.90234375,225.66015625,142.583251953125,-45.19921875,225.66015625,156.487060546875,-37.99609375,225.66015625,136.171630859375,-42.0546875,225.66015625,136.419189453125,-39.65234375,
- 143.4921875,153.2109375,-48.53515625,143.44140625,150.542236328125,-48.80078125,84.44921875,140.97265625,-40.80078125,84.58984375,140.80615234375,-38.35546875,84.65234375,153.07177734375,-44.8125,84.62890625,150.91162109375,-45.43359375,193.125,147.160888671875,-47.6796875,192.7421875,138.265869140625,-39.57421875,192.75,137.87353515625,-42.8359375,193.125,149.70703125,-47.08203125,186.84765625,136.2353515625,-39.875,186.97265625,136.59912109375,-42.20703125,194.609375,136.5419921875,-42.1796875,194.5859375,136.294921875,-39.83203125,192.9453125,141.3896484375,-32.87890625,42.5234375,136.72216796875,-42.765625,42.5234375,136.276123046875,-40.1015625,42.5234375,148.891357421875,-48.15234375,42.5234375,150.70751953125,-47.3671875,86.26953125,154.04931640625,-47.375,86.41796875,150.912109375,-47.984375,86.20703125,139.471923828125,-42.51171875,86.0234375,138.843505859375,-40.05859375,82.890625,154.297119140625,-47.375,83.109375,150.94970703125,-48,83.4375,139.4560546875,-42.52734375,83.328125,138.839111328125,-40.0625,83.28125,158.380615234375,-13.46484375,194.3671875,151.505126953125,-47.97265625,194.19921875,148.26806640625,-48.3125,191.34765625,150.859375,-47.76171875,191.6796875,148.310546875,-48.34765625,191.51953125,137.602294921875,-42.703125,191.48046875,137.830322265625,-39.63671875,82.4296875,188.381591796875,2.796875,82.4296875,188.381103515625,-0.046875,84.953125,185.6171875,2.796875,84.953125,185.61669921875,-0.046875,190.125,184.4482421875,2.80078125,190.125,184.44775390625,-0.04296875,192.98046875,181.43359375,2.80078125,192.98046875,181.43310546875,-0.04296875,42.5234375,185.154296875,-0.04296875,42.5234375,185.15478515625,2.80078125,194.53515625,185.179443359375,2.80078125,194.53515625,185.178955078125,-0.04296875,141.55859375,184.62841796875,2.80078125,141.55859375,184.6279296875,-0.046875,143.01171875,186.15673828125,2.80078125,143.01171875,186.15625,-0.046875,87.67578125,188.019287109375,2.796875,87.67578125,188.01904296875,-0.046875,225.66015625,183.3564453125,-0.04296875,225.66015625,183.357177734375,2.80078125,
- -0.4609375,54.50146484375,42.640625,-0.4609375,54.83837890625,45.234375,-0.4609375,67.8935546875,50.14453125,-0.4609375,66.51318359375,50.9296875,48.36328125,53.616455078125,43.58984375,48.5,53.485595703125,41.140625,48.57421875,66.805908203125,48.7578125,48.54296875,65.108642578125,49.390625,0.65234375,53.43701171875,45.5546875,0.65234375,53.08642578125,42.89453125,0.65234375,66.68212890625,52.1796875,0.65234375,68.109375,51.37890625,46.34375,94.613037109375,2.734375,46.765625,67.768798828125,51.3828125,46.98828125,65.138427734375,52.0234375,47.32421875,52.424560546875,45.31640625,47.21484375,51.939697265625,42.8515625,46.12890625,75.806884765625,1.37890625,-0.4609375,78.12841796875,1.37890625,-0.43359375,95.11376953125,1.37890625,48.83203125,93.171630859375,1.37890625,48.41796875,78.495361328125,1.37890625,0.65234375,76.86376953125,1.37890625,-0.4609375,54.50146484375,-39.84765625,-0.4609375,54.83837890625,-42.44140625,-0.4609375,67.8935546875,-47.3515625,-0.4609375,66.51318359375,-48.13671875,48.36328125,53.616455078125,-40.796875,48.50390625,53.485595703125,-38.3515625,48.57421875,66.805908203125,-45.96484375,48.54296875,65.108642578125,-46.6015625,0.65234375,53.43701171875,-42.765625,0.65234375,53.08642578125,-40.1015625,0.65234375,66.68212890625,-49.390625,0.65234375,68.109375,-48.5859375,46.34375,94.6123046875,0.0234375,46.765625,67.768798828125,-48.58984375,46.98828125,65.138427734375,-49.23046875,47.32421875,52.424560546875,-42.52734375,47.21484375,51.939697265625,-40.05859375,0.65234375,95.23193359375,0.0234375,0.65234375,95.232177734375,2.734375,293.5546875,81.086669921875,1.3984375,265.1796875,78.226318359375,1.3984375,220.8671875,81.086669921875,1.3984375,364.08203125,31.606201171875,43.2578125,365.9921875,29.4263916015625,-40.46484375,388.0703125,-32.445068359375,43.2578125,379.6875,-52.921875,-40.46484375,375.9453125,-7.808349609375,43.2578125,369.78515625,-0.132568359375,-40.46484375,374.5703125,35.171630859375,0.94140625,380.0078125,27.234619140625,11.74609375,384.90625,-1.474365234375,3.59765625,
- 400.43359375,-32.08740234375,-13.2890625,396.37890625,-80.125,-19.06640625,371.0859375,35.8572998046875,-20.8046875,376.89453125,14.427734375,-13.2276611328125,387.1875,-5.19677734375,-20.0078125,402.1796875,-32.971435546875,17.89453125,319.73046875,49.9873046875,13.12890625,318.7265625,50.3704833984375,-13.55078125,392.94921875,-20.837890625,13.20703125,392.37109375,-15.883544921875,-4.4375,0.328125,-108.451171875,43.9375,0.328125,-107.0830078125,45.94921875,-0.9765625,-107.0830078125,43.9375,-1.4765625,-105.975341796875,-46.1640625,0.328125,-105.93212890625,-50.59765625,0.328125,-108.299072265625,-47.5703125,1.3359375,-72.620361328125,42.8046875,-0.57421875,-74.651123046875,44.8046875,-1.2578125,-74.822509765625,-33.55859375,0.328125,-78.03271484375,-48.1328125,-1.24609375,-78.249267578125,-44.42578125,5.96875,-72.63916015625,-47.5703125,2.1796875,-74.580322265625,-49.9140625,0.34375,-72.85498046875,-34.12890625,2.6640625,-74.731201171875,46.6171875,154.71484375,-104.1318359375,-48.4609375,154.71484375,-106.1806640625,-45.87109375,154.71484375,-105.8544921875,43.94140625,154.71484375,-104.5009765625,46.53125,155.171875,-76.802001953125,41.2890625,155.171875,-76.064697265625,-41.890625,155.171875,-77.8798828125,-44.0546875,83.296875,-105.00341796875,-45.00390625,82.86328125,-105.23046875,38.88671875,83.3046875,-77.68115234375,42.8671875,83.30859375,-75.85009765625,39.828125,83.3046875,-76.7626953125,-43.515625,83.296875,-107.02490234375,-42.4296875,244.71484375,-106.76708984375,-42.1171875,244.71484375,-106.177001953125,40.40625,244.57421875,-79.15234375,-39.24609375,244.71484375,-104.94140625,-44.26953125,244.7109375,-104.85986328125,43.09375,244.578125,-78.3173828125,42.9921875,244.578125,-76.607421875,40.875,320.55859375,-105.245849609375,-41.80078125,320.18359375,-102.70361328125,41.703125,320.5703125,-79.89013671875,-44.9296875,320.55859375,-103.42919921875,-43.92578125,320.18359375,-101.28076171875,44.91015625,320.1953125,-78.3369140625,40.53125,320.1953125,-76.6015625,38.703125,320.57421875,-78.1044921875,-42.94921875,
- 246.578125,-77.92822265625,-42.578125,246.5625,-109.34423828125,-48.890625,246.56640625,-111.322509765625,-46.5546875,246.56640625,-110.67529296875,43.9453125,246.56640625,-109.244384765625,46.875,246.578125,-77.01806640625,46.7578125,246.5859375,-75.16357421875,44.46875,242.0703125,-75.7490234375,-42.5859375,243.2265625,-107.537353515625,-49.7265625,243.23046875,-109.40380859375,-47.3828125,243.23046875,-108.80517578125,43.9453125,243.23046875,-107.45947265625,46.86328125,242.078125,-74.89794921875,46.75390625,242.08203125,-73.14990234375,44.4453125,156.609375,-76.80029296875,41.296875,154.2421875,-76.802978515625,41.2890625,87.8125,-72.8037109375,-49.4453125,87.8125,-74.677734375,-51.6875,86.33984375,-107.494384765625,-52.1796875,86.33984375,-109.6884765625,-49.390625,81.86328125,-106.155517578125,-50.21484375,81.8671875,-108.353759765625,-47.4140625,80.390625,-75.8779296875,-45.03125,246.5859375,-75.286865234375,-37.9140625,256.14453125,-75.2998046875,-46.68359375,257.859375,-77.140380859375,-48.734375,246.5546875,-86.884033203125,-47.9453125,244.5546875,-87.8720703125,-44.1875,243.3828125,-86.257568359375,-47.95703125,237.53125,-75.0205078125,-49.6015625,237.4609375,-73.2744140625,-47.53125,242.08203125,-73.26318359375,-37.234375,244.578125,-76.719482421875,-34.5546875,139.13671875,-71.83251953125,43.7421875,138.55078125,-73.73876953125,46.6953125,155.1640625,-79.9150390625,46.68359375,165.03125,-74.13916015625,46.7109375,165.05859375,-72.272216796875,43.9140625,155.1796875,-74.507080078125,33.51953125,320.578125,-75.15673828125,35.1015625,330.6640625,-74.44189453125,45.0390625,330.7734375,-76.0576171875,46.8046875,320.1640625,-90.55810546875,44.703125,316.359375,-76.88232421875,46.796875,312.453125,-75.141357421875,44.9140625,80.37890625,-73.536376953125,32.2265625,83.30859375,-75.8583984375,26.41015625,84.2578125,-74.530517578125,26.50390625,94.4453125,-74.5166015625,43.4375,94.43359375,-76.4892578125,46.671875,84.23828125,-83.408203125,46.5703125,83.2890625,-83.3740234375,42.7890625,81.859375,-81.6181640625,46.59375,
- 71.9296875,-75.53662109375,46.65625,72.515625,-73.5322265625,43.30078125,80.37890625,-73.576416015625,-33.3828125,76.875,-73.58349609375,-47.4765625,76.1796875,-75.4619140625,-49.7265625,81.859375,-83.236083984375,-48.421875,83.28515625,-84.29931640625,-44.66015625,83.3125,-75.8935546875,-32.015625,320.55859375,-99.497802734375,-47.69140625,331.375,-106.835205078125,-47.6328125,331.7109375,-108.5205078125,-45.5390625,320.55859375,-103.396484375,-25.6484375,314.5234375,-110.48193359375,-46.42578125,314.25,-108.651123046875,-48.5703125,155.1796875,-74.57568359375,-37.5859375,162.06640625,-72.3623046875,-47.6328125,163.2890625,-74.17138671875,-49.7890625,155.15234375,-84.771728515625,-48.22265625,146.09375,-73.736328125,-51.5390625,145.54296875,-71.913818359375,-49.36328125,81.86328125,-101.021728515625,46.3359375,70.0234375,-106.920166015625,46.2109375,69.32421875,-108.283447265625,43.9375,81.86328125,-108.2626953125,35.421875,83.296875,-106.93701171875,33.56640625,86.33984375,-109.59326171875,34.05078125,102.265625,-108.20458984375,43.9375,101.953125,-106.8466796875,46.328125,86.3359375,-103.83154296875,46.3203125,83.296875,-101.80615234375,42.546875,323.890625,-74.604736328125,-45.73828125,324.0703125,-76.280517578125,-47.71484375,316.23828125,-77.09716796875,-48.58984375,317.01171875,-75.30810546875,-46.60546875,160.671875,-108.029541015625,-50.44921875,160.2265625,-110.59716796875,-47.203125,159.08984375,-109.9931640625,43.94140625,159.109375,-108.64013671875,46.546875,151.578125,-106.3447265625,-51.86328125,151.3984375,-108.400390625,-49.26171875,152.1953125,-108.08349609375,43.94140625,152.02734375,-106.72998046875,46.51953125,325.3046875,-107.66455078125,43.9453125,325.28515625,-106.32666015625,47.16796875,315.8828125,-108.1845703125,47.1328125,316.38671875,-109.6064453125,43.9453125,395.5234375,-108.542236328125,-45.4765625,407.84375,-107.5419921875,43.94921875,387.2890625,-76.258544921875,-47.63671875,399.8984375,-74.429931640625,45.2890625,400.5,-75.98876953125,46.828125,394.84375,-106.92138671875,-47.484375,
- 387.15625,-74.608642578125,-45.6953125,408,-106.208740234375,47.359375,403.3828125,-74.519287109375,-0.203125,411.5390625,-108.0419921875,-0.765625,400.19921875,-74.56396484375,-22.94921875,408.45703125,-108.2919921875,-23.12109375,409.03515625,-74.474609375,22.54296875,417.09375,-107.7919921875,21.59375,415.828125,-96.73486328125,22.0625,414.4765625,-96.852294921875,-0.484375,411.33984375,-92.393798828125,-23.03515625,393.76171875,-85.3173828125,-47.55859375,407.1953125,-87.547607421875,47.109375,302.91796875,35.9925537109375,43.3046875,341.53515625,39.07861328125,6.24609375,328.08203125,38.2984619140625,-17.6484375,308.01953125,38.8675537109375,-40.41796875,220.5859375,51.16943359375,-39.84765625,220.5859375,51.5986328125,-42.44140625,220.5859375,63.525634765625,-46.16015625,220.5859375,61.769287109375,-46.9296875,267.94140625,48.7119140625,-40.796875,268.0703125,48.54541015625,-38.34765625,268.12890625,60.81103515625,-44.80859375,268.10546875,58.65087890625,-45.4296875,221.6328125,49.81494140625,-42.76171875,221.6328125,49.36865234375,-40.1015625,221.6328125,61.984130859375,-48.1484375,221.6328125,63.80029296875,-47.36328125,269.640625,61.78857421875,-47.37109375,269.77734375,58.6513671875,-47.98046875,269.578125,47.2109375,-42.5078125,269.40625,46.58251953125,-40.0546875,266.4921875,62.0361328125,-47.37109375,266.6953125,58.68896484375,-47.99609375,267,47.1953125,-42.5234375,266.8984375,46.578125,-40.05859375,220.5859375,81.23974609375,1.4140625,220.61328125,98.16943359375,1.4140625,268.4140625,94.36572265625,1.4140625,267.9921875,80.37548828125,1.4140625,221.6328125,79.63037109375,1.4140625,269.68359375,76.91455078125,1.4140625,265.91796875,76.9541015625,1.4140625,267.43359375,79.24658203125,1.4140625,220.5859375,51.16943359375,42.640625,220.5859375,51.5986328125,45.234375,220.5859375,63.525634765625,48.95703125,220.5859375,61.769287109375,49.72265625,267.94140625,48.7119140625,43.58984375,268.0703125,48.54541015625,41.14453125,268.125,60.81103515625,47.60546875,268.10546875,58.65087890625,48.22265625,221.6328125,49.81494140625,45.55859375,
- 221.6328125,49.36865234375,42.89453125,221.6328125,61.984130859375,50.94140625,221.6328125,63.80029296875,50.16015625,269.640625,61.78857421875,50.1640625,269.7734375,58.6513671875,50.77734375,269.578125,47.2109375,45.3046875,269.40625,46.58251953125,42.84765625,266.4921875,62.0361328125,50.1640625,266.6953125,58.68896484375,50.7890625,267,47.1953125,45.3203125,266.8984375,46.578125,42.8515625,221.6328125,98.213134765625,2.8828125,221.6328125,98.213623046875,-0.0546875,266.06640625,96.09228515625,2.8828125,266.06640625,96.0927734375,-0.0546875,270.92578125,95.724853515625,2.8828125,270.92578125,95.725341796875,-0.0546875,305.9453125,62.5,-47.08203125,306.9609375,49.44775390625,-42.3671875,299.3828125,78.678955078125,1.4140625,288.8359375,62.43505859375,49.90234375,290.28125,49.2685546875,45.171875,289.06640625,59.701171875,50.41015625,290.4453125,48.5576171875,42.828125,306.9296875,48.718994140625,-40.02734375,306.21875,59.8076171875,-47.578125,297.67578125,96.185302734375,2.8828125,297.796875,96.18701171875,-0.0546875,305.953125,74.741943359375,-29.9921875,307.34765625,58.345458984375,-26.71484375,293.921875,86.564697265625,16.28515625,295.5703125,70.693603515625,12.39453125,294.32421875,74.271240234375,33.4140625,295.984375,58.525146484375,29.12109375,310.15234375,69.05712890625,-28.1796875,302.109375,82.995361328125,1.37890625,296.0625,80.251708984375,14.375,296.359375,69.99072265625,31.609375,291.04296875,54.6943359375,48.44140625,310.09375,53.5556640625,-44.43359375,303.81640625,69.1708984375,-37.76953125,307.98828125,59.67431640625,-36.23046875,304.98828125,53.2470703125,-33.765625,298.61328125,84.8721923828125,-15.8515625,302.55859375,78.1309814453125,-11.78515625,299.54296875,71.51708984375,-8.4921875,354.53515625,-75.0096435546875,-41.6588134765625,354.53515625,-50.8758544921875,-41.7939453125,354.53515625,-50.4676513671875,-12.3330078125,400.62109375,-75.37158203125,-12.46826171875,401.23828125,-50.3521728515625,-41.8695068359375,396.234375,-49.9735107421875,-12.3330078125,401.06640625,-56.8184814453125,-12.3704833984375,
- 401.23828125,-50.0025634765625,-15.455810546875,357.6796875,-75.145751953125,-12.46826171875,354.53515625,-70.9266357421875,-12.4451904296875,354.53515625,-75.1268310546875,-16.5078125,400.62109375,-75.0931396484375,-35.6688232421875,395.49609375,-75.0191650390625,-41.7259521484375,400.734375,-70.470947265625,-41.75927734375,380,-50.3033447265625,-41.5985107421875,340.0703125,-50.7308349609375,-41.6146240234375,380.91796875,-30.6552734375,-16.906494140625,340.0703125,-31.064208984375,-17.413330078125,351.09765625,-30.01611328125,-41.9017333984375,340.0703125,-33.191162109375,-41.86328125,340.0703125,-30.3663330078125,-35.79248046875,348.4921875,-51.5362548828125,-18.078369140625,340.0703125,-46.499755859375,-17.9913330078125,340.0703125,-51.4661865234375,-22.249267578125,377.609375,-51.244873046875,-17.7178955078125,380.91796875,-36.404296875,-17.1221923828125,380.7890625,-51.081298828125,-21.1124267578125,376.90625,-29.73974609375,-41.8916015625,380,-33.631591796875,-41.8343505859375,380.12890625,-29.8421630859375,-38.3251953125,295.00390625,5.49462890625,3.28857421875,384.859375,40.3006591796875,7.0821533203125,294.96875,39.92919921875,4.2845458984375,384.44140625,40.114990234375,44.57958984375,293.51171875,39.743408203125,44.393310546875,384.45703125,4.7515869140625,44.1812744140625,304.88671875,4.426513671875,44.3485107421875,293.51953125,14.72705078125,44.111572265625,293.859375,4.632080078125,34.793212890625,338.9296875,39.92919921875,45.8067626953125,344.625,4.589111328125,45.5853271484375,382.1640625,7.302734375,6.0013427734375,384.86328125,27.968505859375,7.0020751953125,385.55078125,6.82958984375,14.0743408203125,304.6640625,38.127685546875,-41.7230224609375,377.7265625,38.8814697265625,-41.751220703125,302.98046875,3.4783935546875,1.4609375,377.7265625,4.1993408203125,0.5745849609375,357.546875,2.35107421875,-42.253173828125,377.7265625,7.9503173828125,-42.18603515625,377.7265625,2.9686279296875,-31.569091796875,362.31640625,40.3017578125,-0.588623046875,377.7265625,31.419921875,-0.4366455078125,377.7265625,40.17822265625,-7.8831787109375,
- 309.03515625,39.7879638671875,0.041748046875,302.98046875,13.6165771484375,1.083740234375,303.22265625,39.49951171875,-5.8948974609375,310.3203125,1.86376953125,-42.235595703125,304.6640625,8.72705078125,-42.135498046875,304.42578125,2.044189453125,-35.998291015625,384.45703125,1.0108642578125,-41.5726318359375,384.45703125,-29.296630859375,-41.7239990234375,384.45703125,-29.809326171875,-8.73681640625,339.05859375,1.46533203125,-8.8873291015625,338.4453125,-29.9542236328125,-41.807861328125,343.375,-30.4298095703125,-8.73681640625,338.6171875,-21.8338623046875,-8.7789306640625,338.4453125,-30.3934326171875,-12.2332763671875,381.359375,1.1817626953125,-8.8880615234375,384.45703125,-4.11669921875,-8.86181640625,384.45703125,1.157958984375,-13.4107666015625,339.05859375,1.11572265625,-34.86474609375,344.10546875,1.0228271484375,-41.64697265625,338.9453125,-4.68896484375,-41.6846923828125,388.91796875,-23.239013671875,44.626953125,327.71875,4.073486328125,43.7869873046875,389.68359375,4.345947265625,43.7879638671875,327.078125,3.9140625,12.195556640625,389.68359375,4.1865234375,9.9693603515625,327.078125,-24.665283203125,12.5311279296875,381.18359375,-24.15576171875,10.3050537109375,388.91796875,-15.314453125,10.2069091796875,388.91796875,-23.9793701171875,18.0633544921875,357.99609375,4.9373779296875,9.9693603515625,354.12890625,-25.3961181640625,10.303955078125,329.578125,-22.4755859375,44.626953125,327.71875,-7.1029052734375,43.8548583984375,327.078125,-22.8817138671875,37.917236328125,404.33984375,-24.136474609375,44.25830078125,358.3671875,-23.521240234375,44.2813720703125,405.40234375,-52.417724609375,8.7166748046875,358.3671875,-51.8292236328125,9.4461669921875,371.0625,-53.337890625,44.69482421875,358.3671875,-48.767578125,44.639404296875,358.3671875,-52.833740234375,35.9012451171875,368.06640625,-22.3619384765625,10.4036865234375,358.3671875,-29.6114501953125,10.2784423828125,358.3671875,-22.4627685546875,16.4072265625,401.58984375,-22.7813720703125,9.884765625,405.40234375,-44.142822265625,9.0272216796875,405.25,-23.016845703125,14.7708740234375,
- 400.78125,-53.735595703125,44.6802978515625,404.33984375,-48.1336669921875,44.59765625,404.4921875,-53.58837890625,39.546630859375,-2.40625,52.001708984375,41.1705322265625,-2.40625,75.64013671875,1.3946533203125,-2.40625,52.001708984375,-38.3776245117188,-2.40625,-78.005126953125,-38.3776245117188,-2.40625,-78.005126953125,41.1705322265625
- }
- PolygonVertexIndex: *2608 {
- a: 5,9,23,-29,3,10,9,-6,2,11,25,-32,4,12,11,-3,8,310,490,20,21,14,312,-315,15,7,23,-30,9,10,17,-17,18,26,24,-1,681,682,683,684,-686,3,34,35,-31,5,33,34,-4,7,308,309,-24,21,20,7,-16,20,307,308,-8,23,309,22,27,32,-29,122,123,25,-2,27,22,12,-5,29,23,9,-17,28,32,33,-6,30,35,31,25,123,-25,30,24,10,-4,24,26,17,-11,33,32,27,-5,34,33,4,-3,35,34,2,-32,36,38,1,-26,39,36,25,-12,37,40,12,-23,41,37,22,-7,40,39,11,-13,42,41,6,-20,43,42,19,493,311,13,315,-314,26,18,38,-37,17,26,36,-40,16,17,39,-41,29,16,40,-38,15,29,37,-42,21,15,41,-43,21,42,43,320,-15,44,46,53,-53,45,44,51,-51,46,45,47,-49,48,47,66,-68,49,51,58,-58,50,49,61,-61,52,54,59,-59,54,53,56,-56,55,56,69,-69,57,59,65,-65,60,62,67,-67,62,61,64,-64,63,65,68,-70,51,44,52,-59,57,64,61,-50,69,56,48,-68,62,63,69,-68,46,48,56,-54,55,68,65,59,-55,47,45,50,60,-67,44,45,-47,49,50,-52,52,53,-55,57,58,-60,60,61,-63,63,64,-66,70,72,79,-79,71,70,77,-77,72,71,73,-75,74,73,92,-94,75,77,84,-84,76,75,87,-87,78,80,85,-85,80,79,82,-82,81,82,95,-95,83,85,91,-91,86,88,93,-93,88,87,90,-90,89,91,94,-96,77,70,78,-85,83,90,87,-76,95,82,74,-94,88,89,95,-94,72,74,82,-80,81,94,91,85,-81,73,71,76,86,-93,70,71,-73,75,76,-78,78,79,-81,83,84,-86,86,87,-89,89,90,-92,96,98,105,-105,97,96,103,-103,98,97,99,-101,100,99,118,-120,101,103,110,-110,102,101,113,-113,104,106,111,-111,106,105,108,-108,107,108,121,-121,109,111,117,-117,112,114,119,-119,114,113,116,-116,115,117,120,-122,103,96,104,-111,109,116,113,-102,121,108,100,-120,114,115,121,-120,98,100,108,-106,107,120,117,111,-107,99,97,102,112,-119,96,97,-99,101,102,-104,104,105,-107,109,110,-112,112,113,-115,115,116,-118,24,123,122,-1,127,140,142,-138,124,139,-139,124,138,140,-128,125,139,-142,165,146,147,-167,146,165,164,-150,132,145,144,-135,166,147,185,-188,131,154,155,-134,158,151,-178,137,180,179,128,124,-128,145,132,-134,139,125,126,-139,138,126,-141,139,124,128,-142,143,137,-143,145,175,174,-145,135,136,161,-163,169,159,160,-171,168,161,159,-170,170,160,186,188,-172,149,164,163,-149,151,157,156,-153,150,173,172,-154,154,177,176,-156,
- 157,143,142,-157,157,151,-159,131,181,-191,175,145,133,155,-177,173,150,152,-157,161,168,167,-163,159,130,129,-161,161,136,130,-160,160,129,178,-187,164,132,134,-164,165,133,132,-165,133,165,166,-132,131,166,187,-182,168,149,148,-168,149,168,169,-147,146,169,170,-148,147,170,-172,171,188,-190,147,171,189,-186,131,190,184,158,-155,173,126,125,-173,140,126,173,156,-143,175,150,153,-175,150,175,176,-153,177,151,152,-177,158,177,-155,179,264,141,-129,183,180,137,-144,184,183,143,157,-159,182,178,129,130,136,-136,194,204,209,-208,191,205,-207,191,194,207,-206,192,208,-207,232,233,214,-214,213,216,231,-233,199,201,211,-213,233,187,185,-215,198,200,222,-222,225,244,-219,204,194,191,195,179,-181,212,200,-200,206,205,193,-193,205,207,-194,206,208,195,-192,210,209,-205,212,211,241,-243,202,229,228,-204,236,237,227,-227,235,236,226,-229,237,238,188,186,-228,216,215,230,-232,218,219,223,-225,217,220,239,-241,221,222,243,-245,224,223,209,-211,224,225,-219,198,190,-182,242,243,222,200,-213,240,223,219,-218,228,229,234,-236,226,227,196,-198,228,226,197,-204,227,186,178,-197,231,230,201,-200,232,231,199,-201,200,198,233,-233,198,181,187,-234,235,234,215,-217,216,213,236,-236,213,214,237,-237,214,238,-238,238,189,-189,214,185,189,-239,198,221,225,184,-191,240,239,192,-194,207,209,223,240,-194,242,241,220,-218,217,219,243,-243,244,243,219,-219,225,221,-245,180,183,210,-205,183,184,225,224,-211,178,182,202,203,197,-197,182,253,229,-203,254,182,135,-163,263,179,195,-209,245,246,253,-255,246,245,247,-249,248,247,261,-263,249,250,260,-260,250,249,251,-253,252,251,255,-257,256,255,264,-264,257,258,262,-262,258,257,259,-261,134,144,259,-258,163,261,247,-149,163,134,257,-262,148,247,245,-168,144,174,249,-260,249,174,153,-252,245,254,162,-168,255,251,153,-173,264,255,172,125,-142,230,215,248,-263,230,262,258,-202,215,234,246,-249,211,260,250,-242,250,252,220,-242,253,246,234,-230,252,256,239,-221,201,258,260,-212,256,263,208,192,-240,253,182,-255,263,264,-180,267,268,275,-277,280,273,274,-282,279,275,273,-281,281,274,287,-283,275,279,278,-277,
- 273,266,265,-275,275,268,266,-274,274,265,283,-288,278,271,-278,279,272,271,-279,272,279,280,-270,269,280,281,-271,282,286,270,-282,277,271,-286,277,306,276,-279,284,283,265,266,268,-268,290,299,298,-292,303,304,297,-297,302,303,296,-299,304,282,287,-298,298,299,301,-303,296,297,288,-290,298,296,289,-292,297,287,283,-289,294,301,300,-286,302,301,294,-296,295,292,303,-303,292,293,304,-304,282,304,293,-287,305,300,301,-300,283,284,290,291,289,-289,284,305,299,-291,269,270,286,293,292,295,294,285,271,-273,306,284,267,-277,305,306,277,-301,305,284,-307,300,277,-286,308,307,19,-7,309,308,6,-23,307,326,-20,321,322,13,-312,319,320,43,-314,322,323,315,-14,20,325,-308,8,317,316,-311,314,318,317,-9,319,327,-325,14,320,-325,307,325,-327,316,322,-322,317,318,-323,318,328,-324,312,324,-328,14,324,-313,490,491,325,-21,326,325,491,-493,19,326,492,-494,322,318,-324,323,319,-316,315,319,-314,324,320,-320,316,317,-323,318,327,-329,312,327,318,-315,328,327,-320,323,328,-320,329,331,332,-335,446,447,-353,331,330,343,-337,334,333,392,-394,445,446,-353,447,448,-353,332,331,336,337,-340,329,330,-332,332,333,-335,336,335,342,-338,340,342,335,426,-429,335,343,425,-427,339,338,333,-333,366,371,455,-457,367,433,-435,341,342,-341,343,335,-337,339,341,-339,339,337,342,-342,347,346,461,-463,345,344,459,-461,386,348,407,-409,346,345,460,-462,409,410,348,-387,388,389,-356,389,431,-356,356,351,390,-392,453,454,-353,352,449,-451,388,432,418,-420,430,431,351,-393,350,349,440,-442,441,442,-351,361,358,375,-377,357,360,373,-375,362,361,376,-378,358,357,374,-376,359,404,395,-373,363,362,377,-379,372,398,399,-360,368,365,467,-469,364,367,434,-436,413,414,368,-469,435,436,-365,412,455,371,-412,412,413,475,-475,396,397,-373,397,398,-373,437,438,367,-365,436,437,-365,469,470,365,-369,415,469,368,-415,378,377,415,-417,372,395,-397,359,399,400,-380,381,380,360,-358,382,381,357,-359,383,382,358,-362,384,383,361,-363,385,384,362,-364,379,403,404,-360,379,401,-403,379,400,-402,386,408,-410,402,403,-380,443,444,349,-351,442,443,-351,391,390,463,-465,352,450,-452,
- 451,452,-353,387,406,407,-349,405,406,-388,405,387,348,-411,393,392,351,-357,454,445,-353,352,448,-450,394,427,432,-356,428,429,341,-341,429,392,333,338,-342,411,416,-371,457,458,371,-367,438,433,-368,399,398,373,-361,400,399,360,-381,404,403,385,-364,395,404,363,-379,349,444,-440,420,421,406,-406,452,453,-353,407,347,462,-409,409,408,384,-386,439,440,-350,412,411,-371,370,369,413,-413,369,414,-414,415,414,-370,416,415,369,-371,411,371,458,-417,418,417,-355,419,418,-355,420,419,-355,354,353,421,-421,422,421,-354,353,423,-423,353,424,-424,425,424,-354,426,425,353,-355,417,426,-355,428,427,-395,394,429,-429,394,430,-430,355,431,430,-395,432,427,417,-419,355,432,-389,389,390,351,-432,434,433,366,-457,435,434,476,-472,365,436,435,-468,470,437,436,-366,374,373,438,-438,438,457,366,-434,409,440,439,-411,441,440,402,-402,344,442,441,-460,443,463,390,-390,389,388,444,-444,420,388,-420,330,446,425,-344,330,329,447,-447,329,334,393,-448,449,448,393,-357,450,449,356,-392,451,450,391,464,-466,465,466,452,-452,452,421,422,-454,422,423,454,-454,423,424,445,-455,456,455,477,-474,434,456,473,488,-477,373,398,397,457,-439,397,396,458,-458,416,458,396,395,-379,459,441,401,400,-381,460,459,380,-382,461,460,381,-383,462,461,382,-384,408,462,383,-385,406,421,452,-467,405,444,388,-421,439,444,405,-411,344,463,443,-443,464,463,344,-346,465,464,345,-347,347,466,465,-347,406,466,347,-408,402,440,409,385,-404,428,426,417,-428,429,430,-393,447,393,-449,425,446,445,-425,467,435,471,482,480,484,-473,468,467,472,-479,413,468,478,489,-476,377,376,469,-416,376,375,470,-470,375,374,437,-471,474,483,479,481,477,455,-413,481,487,488,473,-478,483,485,486,-480,479,486,487,-482,485,489,478,472,-485,485,484,480,-487,487,486,480,-483,488,487,482,471,-477,474,475,489,485,-484,310,316,491,-491,492,491,316,-322,493,492,321,-312,508,509,499,-499,498,501,507,-509,509,519,517,-500,496,505,504,-498,512,513,503,-503,511,512,502,-505,513,520,518,-504,501,500,506,-508,504,505,510,-512,502,503,494,-496,504,502,495,-498,503,518,514,-495,506,500,516,-548,507,506,548,
- -557,508,507,556,570,-550,506,547,558,574,559,571,-549,511,510,500,-502,501,498,512,-512,498,499,513,-513,513,521,-521,499,517,521,-514,510,545,516,-501,545,510,505,-544,515,496,497,495,494,-515,536,526,527,-538,526,536,535,-530,537,527,517,-520,524,525,532,-534,540,530,531,-542,539,532,530,-541,541,531,518,-521,529,535,534,-529,534,546,516,-529,532,539,538,-534,530,523,522,-532,532,525,523,-531,531,522,514,-519,535,553,551,-535,536,552,569,553,-536,534,551,563,561,557,-547,539,529,528,-539,529,539,540,-527,526,540,541,-528,527,541,-521,527,520,521,-518,542,533,538,-545,514,522,523,525,524,-516,515,524,533,-543,538,528,516,-545,543,505,496,-516,542,544,545,-544,546,557,558,-548,542,543,-516,544,516,-546,546,547,-517,555,509,508,-550,550,519,509,555,573,560,-577,552,536,537,-555,554,537,519,550,562,-565,563,551,553,569,-569,559,574,575,-566,565,560,573,-573,557,561,567,-567,561,563,568,-568,558,557,-567,565,575,576,-561,567,562,550,-567,568,564,562,-568,569,552,554,564,-569,571,559,565,-573,548,571,572,570,-557,573,555,549,570,-573,566,575,574,-559,550,576,575,-567,580,585,587,577,589,-589,577,587,586,579,-579,580,588,590,581,584,-584,581,578,579,582,-585,578,581,590,589,-578,583,582,579,586,585,-581,584,582,-584,586,587,-586,590,588,-590,591,592,596,595,604,-606,593,594,599,598,601,-603,592,600,599,594,597,-597,597,595,-597,600,598,-600,603,601,598,600,592,-592,602,603,591,605,606,-594,603,602,-602,606,604,595,597,594,-594,606,605,-605,608,609,611,616,-611,610,616,617,-613,612,617,613,615,607,618,-621,607,615,614,611,-610,612,620,619,608,-611,615,613,-615,617,616,611,614,-614,619,618,607,609,-609,620,618,-620,621,622,626,625,634,-636,623,624,629,628,631,-633,622,630,629,624,627,-627,627,625,-627,630,628,-630,633,631,628,630,622,-622,632,633,621,635,636,-624,633,632,-632,636,634,625,627,624,-624,636,635,-635,640,645,647,637,649,-649,637,647,646,639,-639,640,648,650,641,644,-644,641,638,639,642,-645,638,641,650,649,-638,643,642,639,646,645,-641,644,642,-644,646,647,-646,650,648,-650,652,653,655,660,-655,654,660,661,
- -657,656,661,657,659,651,662,-665,651,659,658,655,-654,656,664,663,652,-655,659,657,-659,661,660,655,658,-658,663,662,651,653,-653,664,662,-664,665,666,670,669,678,-680,667,668,673,672,675,-677,666,674,673,668,671,-671,671,669,-671,674,672,-674,677,675,672,674,666,-666,676,677,665,679,680,-668,677,676,-676,680,678,669,671,668,-668,680,679,-679,0,122,682,-682,122,1,683,-683,1,38,684,-684,38,18,685,-685,18,0,681,-686
- }
- Edges: *1304 {
- a: 34,69,472,15,7,4,74,3,0,131,54,23,24,31,29,110,8,12,16,5,90,13,72,35,20,30,94,142,104,100,1191,56,19,1189,123,25,27,62,88,10,32,33,68,63,2,1,78,26,64,135,44,11,9,84,65,45,41,43,80,46,42,109,113,117,121,125,129,133,112,120,118,116,132,124,140,144,148,152,156,160,164,167,170,171,172,173,174,175,176,177,178,179,180,181,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,206,207,208,209,210,211,184,213,214,215,216,217,218,219,204,221,233,231,203,205,185,183,270,271,272,273,274,275,276,277,278,279,280,281,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,306,307,308,309,310,311,284,313,314,315,316,317,318,319,304,321,333,331,303,305,285,283,370,371,372,373,374,375,376,377,378,379,380,381,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,406,407,408,409,410,411,384,413,414,415,416,417,418,419,404,421,433,431,403,405,385,383,70,87,67,480,485,521,525,529,514,484,649,594,595,498,507,518,499,513,477,578,599,538,476,504,522,478,474,487,573,531,475,479,482,486,533,680,674,536,496,497,519,616,606,488,489,495,558,658,559,664,565,562,508,566,567,506,505,561,571,560,646,577,647,587,557,632,622,541,542,596,539,592,540,543,547,913,608,494,610,490,556,493,491,503,624,546,628,544,591,549,545,554,553,636,580,651,563,564,589,660,534,569,509,535,585,568,510,603,511,691,501,551,639,502,512,677,552,681,579,686,604,620,638,642,645,696,705,740,743,746,731,699,870,815,814,715,722,736,714,732,692,798,818,759,693,725,739,698,695,703,790,751,694,697,701,704,749,892,917,753,717,716,735,833,827,709,708,710,773,879,780,881,782,777,728,781,788,723,724,778,792,779,864,793,863,806,774,849,843,756,763,813,758,809,757,762,766,907,825,711,831,707,775,712,706,718,841,767,845,761,810,764,760,768,769,852,796,868,784,783,804,877,755,786,727,754,799,787,726,822,734,901,720,771,855,906,910,914,673,918,919,920,921,923,924,925,927,928,929,930,931,932,933,935,936,937,939,940,941,943,944,945,946,947,949,951,953,955,957,958,960,968,971,976,985,992,994,997,1000,1003,1005,1008,1016,1054,1055,1059,1034,1080,1076,
- 1086,1070,1079,1069,1037,1038,1056,1035,1052,1036,1039,1043,1089,1067,1066,1042,1075,1040,1068,1051,1045,1041,1049,1063,1097,1082,1047,1081,1087,1048,1092,1064,1121,1120,1124,1101,1142,1138,1133,1136,1143,1137,1098,1105,1119,1100,1115,1099,1104,1108,1153,1130,1109,1139,1103,1131,1116,1106,1102,1110,1128,1155,1148,1112,1132,1160,1174,1150,1088,1178,1180,57,49,51,58,50,17,137,1216,21,139,1240,22,138,1218,1214,1233,1236,1239,1206,168,1212,1215,1219,1237,1203,1202,1200,1208,1196,1199,1207,1261,1224,1273,1227,1247,1253,1211,1229,1197,1235,1262,1226,1231,1223,1222,1242,1282,1274,1238,1286,1287,1288,1289,1312,1293,1315,1311,1297,1298,1319,1318,1296,1309,1332,1331,1344,1349,1310,1320,1322,1295,1327,1294,1342,1348,1328,1324,1851,1855,1363,1400,1528,1355,1359,1612,1367,1399,1732,1382,1377,1556,1381,1386,1762,1646,1653,1396,1492,1496,1411,1409,1417,1429,1425,1589,1406,1410,1414,1418,1597,1426,1466,1471,1582,1336,1335,1339,1434,1438,1443,1447,1578,1626,1459,1430,1413,1412,1407,1420,1408,1416,1428,1601,1488,1513,1490,1487,1819,1489,1823,1493,1500,1497,1504,1501,1508,1505,1595,1717,1900,1479,1481,1341,1437,1627,1625,1360,1358,1366,1374,1545,1741,1376,1375,1533,1696,1384,1383,1766,1540,1654,1387,1652,1649,1326,1397,1300,1291,1566,1679,1299,1760,1645,1398,1424,1803,1458,1587,1432,1593,1483,1457,1460,1431,1486,1731,1515,1509,1422,1517,1514,1522,1510,1423,1548,1542,1364,1617,1619,1372,1546,1543,1365,1520,1726,1371,1552,1451,1456,1454,1630,1635,1577,1452,1453,1442,1477,1480,1576,1690,1392,1394,1608,1606,1644,1393,1650,1605,1659,1660,1663,1668,1672,1657,1661,1664,1666,1329,1673,1563,1678,1568,1682,1379,1676,1567,1683,1395,1565,1564,1391,1378,1701,1705,1441,1708,1340,1440,1446,1719,1464,1467,1463,1583,1604,1729,1402,1404,1620,1401,1403,1739,1526,1529,1525,1603,1303,1747,1785,1292,1752,1301,1290,1305,1388,1390,1538,1304,1561,1389,1537,1773,1778,1781,1539,1609,1385,1557,1789,1338,1449,1337,1703,1799,1580,1720,1579,1642,1815,1362,1356,1827,1734,1361,1369,1357,1614,1776,1744,1836,1844,1535,1771,1856,1736,1534,1770,1772,1835,1724,1325,1571,
- 1757,1748,1435,1893,1710,1436,1445,1473,1904,1474,1470,1712,1707,1889,1791,1455,1706,1914,1790,1794,1885,1892,1896,1912,1887,1925,1913,1886,1918,1911,1888,1923,1935,1938,1924,1943,1928,1795,1919,1897,1931,18,1955,1246,1961,1252,136,1256,2005,2004,2008,1981,1969,1968,1970,2015,1994,1995,2043,2037,1978,1985,2003,1980,1999,1979,1984,1988,2059,2019,1971,2026,1967,1996,1972,1966,1974,2035,1989,2039,1983,2000,1986,1982,1990,2012,2061,1976,1992,2046,1975,1991,2066,2011,2196,2047,2050,2107,2108,2112,2079,2067,2068,2074,2101,2098,2097,2144,2134,2082,2083,2109,2080,2105,2081,2084,2088,2153,2121,2073,2123,2069,2096,2072,2070,2078,2136,2087,2140,2085,2104,2090,2086,2094,2148,2116,2161,2076,2092,2166,2174,2155,2053,2169,2054,2099,2017,2100,2016,2156,2060,2132,2178,2176,2182,2119,2205,2192,2021,2028,2020,2025,2195,2199,2032,2120,2125,2206,2210,2131,2180,2030,2201,2221,2130,2211,2227,2129,2212,2217,2229,2243,2222,2220,2236,2241,2245,2124,2228,2232,2216,2024,2225,2031,2260,2200,2257,2224,2029,2268,2219,2202,2238,2276,2286,2285,2284,2281,2290,2293,2279,2295,2292,2303,2291,2296,2278,2277,2283,2306,2289,2280,2288,2300,2318,2324,2323,2319,2329,2325,2333,2320,2336,2334,2330,2326,2339,2331,2327,2347,2328,2342,2348,2321,2352,2322,2357,2351,2366,2369,2373,2386,2370,2367,2374,2384,2381,2378,2393,2377,2383,2368,2376,2372,2379,2389,2400,2380,2388,2408,2414,2413,2409,2419,2415,2423,2410,2426,2424,2420,2416,2429,2421,2417,2437,2418,2432,2438,2411,2442,2412,2447,2441,2456,2466,2465,2464,2461,2470,2473,2459,2475,2472,2483,2471,2476,2458,2457,2463,2486,2469,2460,2468,2480,2498,2501,2505,2518,2502,2499,2506,2516,2513,2510,2525,2509,2515,2500,2508,2504,2511,2521,2532,2512,2520,2540,2546,2545,2541,2551,2547,2555,2542,2558,2556,2552,2548,2561,2553,2549,2569,2550,2564,2570,2543,2574,2544,2579,2573,2591,2589,36,2593,37,2597,38,2601,39,40
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *7824 {
- a: 7.7499926476321e-009,0,1,3.16456016946631e-009,0,1,6.12288930668115e-009,0,1,2.46985454310789e-008,0,1,-6.53731424549164e-009,0,1,-2.65858624004522e-009,0,1,3.16456016946631e-009,0,1,7.7499926476321e-009,0,1,8.49850856354806e-009,0,-1,3.45616202324095e-009,0,-1,6.34475361138698e-009,0,-1,2.7390823831297e-008,0,-0.999999940395355,-1.03333235301761e-008,0,-1,-4.21941370731815e-009,0,-1,3.45616202324095e-009,0,-1,8.49850856354806e-009,0,-1,0.00063749379478395,-0.000126499580801465,0.999999821186066,0.00063749379478395,-0.000126499580801465,0.999999821186066,0.00063749379478395,-0.000126499566249549,0.999999821186066,-0.000732922344468534,-0.000394992297515273,0.999999701976776,7.18321462045424e-006,-0.000249990465817973,1,0.00063749379478395,-0.000126499566249549,0.999999761581421,0.00063749379478395,-0.000126499566249549,0.999999821186066,0.000637493852991611,-0.000126499580801465,0.999999761581421,-0.000665413506794721,-0.000244722148636356,0.999999821186066,-0.000675299786962569,-0.000248358090175316,0.999999761581421,6.12288930668115e-009,0,1,0,0,1,3.16456016946631e-009,0,1,-2.65858624004522e-009,0,1,0,0,1,0,0,1,0,0,1,0,0,1,-4.88057994019186e-009,0,1,0,0,1,-0.999482870101929,0.00721145980060101,0.0313389264047146,-0.99987006187439,0.0161203481256962,9.10518309638064e-008,-0.999482810497284,0.0072105061262846,-0.0313383787870407,-0.99907398223877,-0.0225554276257753,-0.0366404205560684,-0.999073922634125,-0.0225555449724197,0.0366402715444565,-0.0127587178722024,0.799681961536407,0.600288331508636,-0.0124362269416451,0.799685120582581,0.600290775299072,-0.0393830016255379,0.799126505851746,0.599871397018433,-0.0393830053508282,0.79912656545639,0.599871456623077,0.0158532746136189,0.799646496772766,0.600261688232422,0.0153710823506117,0.799652576446533,0.600266218185425,-0.0124362269416451,0.799685120582581,0.600290775299072,-0.0127587178722024,0.799681961536407,0.600288331508636,4.29564761361689e-006,0.826258897781372,0.563290596008301,-0.000892989337444305,0.826268136501312,0.563276350498199,
- 0.0532224327325821,0.824520587921143,0.563323318958282,0.0532224364578724,0.824520587921143,0.563323318958282,7.18321462045424e-006,-0.000249990465817973,1,-0.000732922344468534,-0.000394992297515273,0.999999701976776,-0.000675299786962569,-0.000248358090175316,0.999999761581421,-0.000665413506794721,-0.000244722148636356,0.999999821186066,-0.0878239497542381,0.824000477790833,0.559741199016571,-0.0878239423036575,0.824000477790833,0.559741139411926,-0.000892989337444305,0.826268136501312,0.563276350498199,4.29564761361689e-006,0.826258897781372,0.563290596008301,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0.0246051903814077,0.864041090011597,-0.5028195977211,0.0246051885187626,0.864041090011597,-0.502819538116455,0.0246051903814077,0.864041090011597,-0.5028195977211,0.0246051885187626,0.864041090011597,-0.502819538116455,-3.29313962765809e-008,0,-1,-8.16385270496767e-009,0,-1,-4.21941370731815e-009,0,-1,-1.03333235301761e-008,0,-1,0,0,1,6.12288930668115e-009,0,1,3.16456016946631e-009,0,1,0,0,1,0.0479293055832386,0.798827886581421,0.599647223949432,0.0479293055832386,0.798827946186066,0.599647164344788,0.0153710823506117,0.799652576446533,0.600266218185425,0.0158532746136189,0.799646496772766,0.600261688232422,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-2.10698658520414e-008,0,0.999999940395355,-4.88057994019186e-009,0,1,-2.65858624004522e-009,0,1,-6.53731424549164e-009,0,1,-4.88057994019186e-009,0,1,0,0,1,0,0,1,-2.65858624004522e-009,0,1,0.015370549634099,0.799625635147095,-0.60030210018158,0.0479276962578297,0.798801004886627,-0.599683165550232,0.04792769998312,0.798801004886627,-0.599683165550232,0.0158527549356222,0.799619615077972,-0.600297570228577,-0.0124358050525188,0.799658238887787,-0.600326597690582,0.015370549634099,0.799625635147095,-0.60030210018158,0.0158527549356222,0.799619615077972,-0.600297570228577,-0.0127583025023341,0.799654901027679,-0.600324094295502,-0.0393816977739334,0.799099683761597,-0.599907279014587,-0.0124358050525188,0.799658238887787,-0.600326597690582,-0.0127583025023341,0.799654901027679,-0.600324094295502,
- -0.0393816977739334,0.799099683761597,-0.599907279014587,0,0,-1,0,0,-1,0,0,-1,6.34475361138698e-009,0,-1,0,0,-1,0,0,-1,6.34475361138698e-009,0,-1,3.45616202324095e-009,0,-1,0,0,-1,0,0,-1,-4.21941370731815e-009,0,-1,-8.16385270496767e-009,0,-1,0.000665542902424932,0.000244609429500997,-0.999999761581421,0,0,-1,-8.16385270496767e-009,0,-1,0.000675433140713722,0.000248244439717382,-0.999999821186066,0,0,-1,0,0,-1,3.45616202324095e-009,0,-1,-4.21941370731815e-009,0,-1,-1.61529278557282e-005,0.00029329102835618,-1,0.000665542902424932,0.000244609429500997,-0.999999761581421,0.000675433140713722,0.000248244439717382,-0.999999821186066,0.000513534934725612,0.000380849931389093,-0.999999821186066,-0.000713579414878041,0.000178004338522442,-0.999999761581421,-1.61529278557282e-005,0.00029329102835618,-1,0.000513534934725612,0.000380849931389093,-0.999999821186066,-0.000713579298462719,0.000178004309418611,-0.999999701976776,-0.000713579240255058,0.000178004294866696,-0.999999701976776,-0.00071357935667038,0.000178004338522442,-0.999999761581421,-0.000713579414878041,0.000178004323970526,-0.999999821186066,-0.000713579298462719,0.000178004309418611,-0.999999701976776,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-9.90342585716064e-010,0,-1,0,0,-1,0,0,-1,-9.90342585716064e-010,-9.38865639454889e-007,-1,1.3386741670729e-007,0,-1,-9.90342585716064e-010,0,-1,-9.90342585716064e-010,-9.38538278205669e-007,-1,1.33820094561088e-007,-9.38865639454889e-007,-1,1.3386741670729e-007,-9.38538278205669e-007,-1,1.33820094561088e-007,-1.48254298437678e-006,-1,2.12493432627525e-007,-1.48254287068994e-006,-1,2.12493432627525e-007,-1.4825427570031e-006,-1,2.12493404205816e-007,0.0411925539374352,0.999075472354889,-0.0123046571388841,0.0467760153114796,0.101897321641445,-0.993694543838501,-0.0462382808327675,0.101877816021442,-0.993721783161163,-0.0405275262892246,0.999102175235748,-0.0123466271907091,0.999519884586334,0.0282959975302219,-0.0126250684261322,0.0411925539374352,0.999075472354889,-0.0123046571388841,
- 0.0357830412685871,0.998837828636169,0.0322893038392067,0.998532056808472,0.0315714552998543,0.0440099909901619,0.0467760153114796,0.101897321641445,-0.993694543838501,0.999519884586334,0.0282959975302219,-0.0126250684261322,0.999473392963409,-0.0134835056960583,-0.029517462477088,0.0410759262740612,-0.349025875329971,-0.936212480068207,0.0410759262740612,-0.349025875329971,-0.936212480068207,0.999473392963409,-0.0134835056960583,-0.029517462477088,0.999065279960632,-0.032454077154398,-0.0285533685237169,0.0380524434149265,-0.717070341110229,-0.69596129655838,0.05405243486166,0.0157907884567976,0.99841320514679,0.0357830412685871,0.998837828636169,0.0322893038392067,-0.0355292893946171,0.998782217502594,0.0342326201498508,-0.0542541891336441,0.0144932204857469,0.998421967029572,0.998532056808472,0.0315714552998543,0.0440099909901619,0.05405243486166,0.0157907884567976,0.99841320514679,0.0539135858416557,-0.0254723653197289,0.99822062253952,0.998821318149567,-0.0183652769774199,0.044930562376976,-0.0405275262892246,0.999102175235748,-0.0123466271907091,-0.999369502067566,0.0327813997864723,-0.0136357704177499,-0.998432576656342,0.0356102660298347,0.0431756339967251,-0.0355292893946171,0.998782217502594,0.0342326201498508,-0.999369502067566,0.0327813997864723,-0.0136357704177499,-0.0462382808327675,0.101877816021442,-0.993721783161163,-0.0412616916000843,-0.34954047203064,-0.936012268066406,-0.999476134777069,-0.0112885776907206,-0.0303291585296392,-0.999476134777069,-0.0112885776907206,-0.0303291585296392,-0.0412616916000843,-0.34954047203064,-0.936012268066406,-0.0380509346723557,-0.717071056365967,-0.695960700511932,-0.999106287956238,-0.0303629171103239,-0.0294040907174349,-0.0542541891336441,0.0144932204857469,0.998421967029572,-0.998432576656342,0.0356102660298347,0.0431756339967251,-0.998889207839966,-0.0163377542048693,0.0441977716982365,-0.0538885295391083,-0.0255170557647944,0.998220860958099,0.998821318149567,-0.0183652769774199,0.044930562376976,0.0359074175357819,-0.998446106910706,0.0426154509186745,0.0380524434149265,-0.717070341110229,-0.69596129655838,
- 0.999065279960632,-0.032454077154398,-0.0285533685237169,0.0359074175357819,-0.998446106910706,0.0426154509186745,0.0539135858416557,-0.0254723653197289,0.99822062253952,-0.0538885295391083,-0.0255170557647944,0.998220860958099,-0.035917442291975,-0.998449265956879,0.0425330623984337,-0.035917442291975,-0.998449265956879,0.0425330623984337,-0.998889207839966,-0.0163377542048693,0.0441977716982365,-0.999106287956238,-0.0303629171103239,-0.0294040907174349,-0.0380509346723557,-0.717071056365967,-0.695960700511932,0.0357830412685871,0.998837828636169,0.0322893038392067,0.0411925539374352,0.999075472354889,-0.0123046571388841,-0.0405275262892246,0.999102175235748,-0.0123466271907091,-0.0355292893946171,0.998782217502594,0.0342326201498508,-0.0542541891336441,0.0144932204857469,0.998421967029572,-0.0538885295391083,-0.0255170557647944,0.998220860958099,0.0539135858416557,-0.0254723653197289,0.99822062253952,0.05405243486166,0.0157907884567976,0.99841320514679,-0.0380509346723557,-0.717071056365967,-0.695960700511932,-0.0412616916000843,-0.34954047203064,-0.936012268066406,0.0410759262740612,-0.349025875329971,-0.936212480068207,0.0380524434149265,-0.717070341110229,-0.69596129655838,0.0359074175357819,-0.998446106910706,0.0426154509186745,-0.035917442291975,-0.998449265956879,0.0425330623984337,-0.0380509346723557,-0.717071056365967,-0.695960700511932,0.0380524434149265,-0.717070341110229,-0.69596129655838,0.0467760153114796,0.101897321641445,-0.993694543838501,0.0410759262740612,-0.349025875329971,-0.936212480068207,-0.0412616916000843,-0.34954047203064,-0.936012268066406,-0.0462382808327675,0.101877816021442,-0.993721783161163,-0.999476134777069,-0.0112885776907206,-0.0303291585296392,-0.999106287956238,-0.0303629171103239,-0.0294040907174349,-0.998889207839966,-0.0163377542048693,0.0441977716982365,-0.998432576656342,0.0356102660298347,0.0431756339967251,-0.999369502067566,0.0327813997864723,-0.0136357704177499,0.999473392963409,-0.0134835056960583,-0.029517462477088,0.999519884586334,0.0282959975302219,-0.0126250684261322,
- 0.998532056808472,0.0315714552998543,0.0440099909901619,0.998821318149567,-0.0183652769774199,0.044930562376976,0.999065279960632,-0.032454077154398,-0.0285533685237169,0.0411925539374352,0.999075472354889,-0.0123046571388841,0.999519884586334,0.0282959975302219,-0.0126250684261322,0.0467760153114796,0.101897321641445,-0.993694543838501,0.05405243486166,0.0157907884567976,0.99841320514679,0.998532056808472,0.0315714552998543,0.0440099909901619,0.0357830412685871,0.998837828636169,0.0322893038392067,-0.0405275262892246,0.999102175235748,-0.0123466271907091,-0.0462382808327675,0.101877816021442,-0.993721783161163,-0.999369502067566,0.0327813997864723,-0.0136357704177499,-0.0542541891336441,0.0144932204857469,0.998421967029572,-0.0355292893946171,0.998782217502594,0.0342326201498508,-0.998432576656342,0.0356102660298347,0.0431756339967251,0.998821318149567,-0.0183652769774199,0.044930562376976,0.0539135858416557,-0.0254723653197289,0.99822062253952,0.0359074175357819,-0.998446106910706,0.0426154509186745,-0.035917442291975,-0.998449265956879,0.0425330623984337,-0.0538885295391083,-0.0255170557647944,0.998220860958099,-0.998889207839966,-0.0163377542048693,0.0441977716982365,0.0411881059408188,0.999075949192047,-0.0122832152992487,0.0467678904533386,0.101966612040997,-0.993687927722931,-0.046221312135458,0.102016128599644,-0.993708372116089,-0.040529903024435,0.999102592468262,-0.0123052792623639,0.999520838260651,0.0282053761184216,-0.012750375084579,0.0411881059408188,0.999075949192047,-0.0122832152992487,0.035777360200882,0.998838126659393,0.0322880111634731,0.998537421226501,0.03148328140378,0.0439522266387939,0.0467678904533386,0.101966612040997,-0.993687927722931,0.999520838260651,0.0282053761184216,-0.012750375084579,0.999470770359039,-0.0135352611541748,-0.0295801814645529,0.0410736948251724,-0.349027663469315,-0.936211824417114,0.0410736948251724,-0.349027663469315,-0.936211824417114,0.999470770359039,-0.0135352611541748,-0.0295801814645529,0.999062538146973,-0.0325003601610661,-0.028597678989172,0.0380390249192715,-0.71705549955368,-0.69597727060318,
- 0.0540492460131645,0.0157882906496525,0.998413503170013,0.035777360200882,0.998838126659393,0.0322880111634731,-0.0355223342776299,0.998782455921173,0.0342326201498508,-0.0542484186589718,0.0144964111968875,0.99842232465744,0.998537421226501,0.03148328140378,0.0439522266387939,0.0540492460131645,0.0157882906496525,0.998413503170013,0.0538995899260044,-0.0254709348082542,0.998221516609192,0.998822152614594,-0.0184534322470427,0.0448731817305088,-0.040529903024435,0.999102592468262,-0.0123052792623639,-0.999369323253632,0.0327668562531471,-0.0136878676712513,-0.998434901237488,0.0355933010578156,0.0431381575763226,-0.0355223342776299,0.998782455921173,0.0342326201498508,-0.999369323253632,0.0327668562531471,-0.0136878676712513,-0.046221312135458,0.102016128599644,-0.993708372116089,-0.0412621535360813,-0.349551439285278,-0.936008214950562,-0.999474227428436,-0.0112843066453934,-0.0303969569504261,-0.999474227428436,-0.0112843066453934,-0.0303969569504261,-0.0412621535360813,-0.349551439285278,-0.936008214950562,-0.0380543805658817,-0.717066943645477,-0.695964694023132,-0.999103844165802,-0.0303850416094065,-0.0294664148241282,-0.0542484186589718,0.0144964111968875,0.99842232465744,-0.998434901237488,0.0355933010578156,0.0431381575763226,-0.998890817165375,-0.0163495801389217,0.0441555716097355,-0.0538899041712284,-0.0254910793155432,0.998221516609192,0.998822152614594,-0.0184534322470427,0.0448731817305088,0.0358995608985424,-0.998446464538574,0.0426131933927536,0.0380390249192715,-0.71705549955368,-0.69597727060318,0.999062538146973,-0.0325003601610661,-0.028597678989172,0.0358995608985424,-0.998446464538574,0.0426131933927536,0.0538995899260044,-0.0254709348082542,0.998221516609192,-0.0538899041712284,-0.0254910793155432,0.998221516609192,-0.0359180457890034,-0.998447597026825,0.0425706803798676,-0.0359180457890034,-0.998447597026825,0.0425706803798676,-0.998890817165375,-0.0163495801389217,0.0441555716097355,-0.999103844165802,-0.0303850416094065,-0.0294664148241282,-0.0380543805658817,-0.717066943645477,-0.695964694023132,
- 0.035777360200882,0.998838126659393,0.0322880111634731,0.0411881059408188,0.999075949192047,-0.0122832152992487,-0.040529903024435,0.999102592468262,-0.0123052792623639,-0.0355223342776299,0.998782455921173,0.0342326201498508,-0.0542484186589718,0.0144964111968875,0.99842232465744,-0.0538899041712284,-0.0254910793155432,0.998221516609192,0.0538995899260044,-0.0254709348082542,0.998221516609192,0.0540492460131645,0.0157882906496525,0.998413503170013,-0.0380543805658817,-0.717066943645477,-0.695964694023132,-0.0412621535360813,-0.349551439285278,-0.936008214950562,0.0410736948251724,-0.349027663469315,-0.936211824417114,0.0380390249192715,-0.71705549955368,-0.69597727060318,0.0358995608985424,-0.998446464538574,0.0426131933927536,-0.0359180457890034,-0.998447597026825,0.0425706803798676,-0.0380543805658817,-0.717066943645477,-0.695964694023132,0.0380390249192715,-0.71705549955368,-0.69597727060318,0.0467678904533386,0.101966612040997,-0.993687927722931,0.0410736948251724,-0.349027663469315,-0.936211824417114,-0.0412621535360813,-0.349551439285278,-0.936008214950562,-0.046221312135458,0.102016128599644,-0.993708372116089,-0.999474227428436,-0.0112843066453934,-0.0303969569504261,-0.999103844165802,-0.0303850416094065,-0.0294664148241282,-0.998890817165375,-0.0163495801389217,0.0441555716097355,-0.998434901237488,0.0355933010578156,0.0431381575763226,-0.999369323253632,0.0327668562531471,-0.0136878676712513,0.999470770359039,-0.0135352611541748,-0.0295801814645529,0.999520838260651,0.0282053761184216,-0.012750375084579,0.998537421226501,0.03148328140378,0.0439522266387939,0.998822152614594,-0.0184534322470427,0.0448731817305088,0.999062538146973,-0.0325003601610661,-0.028597678989172,0.0411881059408188,0.999075949192047,-0.0122832152992487,0.999520838260651,0.0282053761184216,-0.012750375084579,0.0467678904533386,0.101966612040997,-0.993687927722931,0.0540492460131645,0.0157882906496525,0.998413503170013,0.998537421226501,0.03148328140378,0.0439522266387939,0.035777360200882,0.998838126659393,0.0322880111634731,-0.040529903024435,0.999102592468262,-0.0123052792623639,
- -0.046221312135458,0.102016128599644,-0.993708372116089,-0.999369323253632,0.0327668562531471,-0.0136878676712513,-0.0542484186589718,0.0144964111968875,0.99842232465744,-0.0355223342776299,0.998782455921173,0.0342326201498508,-0.998434901237488,0.0355933010578156,0.0431381575763226,0.998822152614594,-0.0184534322470427,0.0448731817305088,0.0538995899260044,-0.0254709348082542,0.998221516609192,0.0358995608985424,-0.998446464538574,0.0426131933927536,-0.0359180457890034,-0.998447597026825,0.0425706803798676,-0.0538899041712284,-0.0254910793155432,0.998221516609192,-0.998890817165375,-0.0163495801389217,0.0441555716097355,0.0411872342228889,0.999075591564178,-0.0123066185042262,0.0467894598841667,0.101908907294273,-0.993692696094513,-0.0462282113730907,0.101947128772736,-0.993715167045593,-0.0405265875160694,0.999102413654327,-0.012325637973845,0.999519824981689,0.0282271020114422,-0.0127809243276715,0.0411872342228889,0.999075591564178,-0.0123066185042262,0.0357941426336765,0.998839259147644,0.0322323106229305,0.998533964157104,0.0314847081899643,0.0440295748412609,0.0467894598841667,0.101908907294273,-0.993692696094513,0.999519824981689,0.0282271020114422,-0.0127809243276715,0.999467968940735,-0.0135281253606081,-0.0296762306243181,0.0410809256136417,-0.349020332098007,-0.936214327812195,0.0410809256136417,-0.349020332098007,-0.936214327812195,0.999467968940735,-0.0135281253606081,-0.0296762306243181,0.999058365821838,-0.0325116664171219,-0.0287279337644577,0.0380577407777309,-0.71708607673645,-0.695944726467133,0.05403683334589,0.0158213824033737,0.998413562774658,0.0357941426336765,0.998839259147644,0.0322323106229305,-0.0355188511312008,0.998782515525818,0.0342339687049389,-0.0542575120925903,0.0145000908523798,0.998421728610992,0.998533964157104,0.0314847081899643,0.0440295748412609,0.05403683334589,0.0158213824033737,0.998413562774658,0.0538951903581619,-0.0254930462688208,0.998221099376678,0.998818874359131,-0.0184246804565191,0.0449596345424652,-0.0405265875160694,0.999102413654327,-0.012325637973845,-0.999368071556091,0.0328266993165016,-0.013631853275001,
- -0.99843293428421,0.0356592573225498,0.0431285239756107,-0.0355188511312008,0.998782515525818,0.0342339687049389,-0.999368071556091,0.0328266993165016,-0.013631853275001,-0.0462282113730907,0.101947128772736,-0.993715167045593,-0.041271161288023,-0.349544227123261,-0.936010420322418,-0.999475836753845,-0.0112135550007224,-0.0303693581372499,-0.999475836753845,-0.0112135550007224,-0.0303693581372499,-0.041271161288023,-0.349544227123261,-0.936010420322418,-0.0380668938159943,-0.71709930896759,-0.695930659770966,-0.999106109142303,-0.0303319152444601,-0.0294447001069784,-0.0542575120925903,0.0145000908523798,0.998421728610992,-0.99843293428421,0.0356592573225498,0.0431285239756107,-0.998892724514008,-0.016274580731988,0.0441425330936909,-0.0538984388113022,-0.0254934132099152,0.998220980167389,0.998818874359131,-0.0184246804565191,0.0449596345424652,0.0359128937125206,-0.998447597026825,0.0425769202411175,0.0380577407777309,-0.71708607673645,-0.695944726467133,0.999058365821838,-0.0325116664171219,-0.0287279337644577,0.0359128937125206,-0.998447597026825,0.0425769202411175,0.0538951903581619,-0.0254930462688208,0.998221099376678,-0.0538984388113022,-0.0254934132099152,0.998220980167389,-0.0359230637550354,-0.998447239398956,0.0425742045044899,-0.0359230637550354,-0.998447239398956,0.0425742045044899,-0.998892724514008,-0.016274580731988,0.0441425330936909,-0.999106109142303,-0.0303319152444601,-0.0294447001069784,-0.0380668938159943,-0.71709930896759,-0.695930659770966,0.0357941426336765,0.998839259147644,0.0322323106229305,0.0411872342228889,0.999075591564178,-0.0123066185042262,-0.0405265875160694,0.999102413654327,-0.012325637973845,-0.0355188511312008,0.998782515525818,0.0342339687049389,-0.0542575120925903,0.0145000908523798,0.998421728610992,-0.0538984388113022,-0.0254934132099152,0.998220980167389,0.0538951903581619,-0.0254930462688208,0.998221099376678,0.05403683334589,0.0158213824033737,0.998413562774658,-0.0380668938159943,-0.71709930896759,-0.695930659770966,-0.041271161288023,-0.349544227123261,-0.936010420322418,
- 0.0410809256136417,-0.349020332098007,-0.936214327812195,0.0380577407777309,-0.71708607673645,-0.695944726467133,0.0359128937125206,-0.998447597026825,0.0425769202411175,-0.0359230637550354,-0.998447239398956,0.0425742045044899,-0.0380668938159943,-0.71709930896759,-0.695930659770966,0.0380577407777309,-0.71708607673645,-0.695944726467133,0.0467894598841667,0.101908907294273,-0.993692696094513,0.0410809256136417,-0.349020332098007,-0.936214327812195,-0.041271161288023,-0.349544227123261,-0.936010420322418,-0.0462282113730907,0.101947128772736,-0.993715167045593,-0.999475836753845,-0.0112135550007224,-0.0303693581372499,-0.999106109142303,-0.0303319152444601,-0.0294447001069784,-0.998892724514008,-0.016274580731988,0.0441425330936909,-0.99843293428421,0.0356592573225498,0.0431285239756107,-0.999368071556091,0.0328266993165016,-0.013631853275001,0.999467968940735,-0.0135281253606081,-0.0296762306243181,0.999519824981689,0.0282271020114422,-0.0127809243276715,0.998533964157104,0.0314847081899643,0.0440295748412609,0.998818874359131,-0.0184246804565191,0.0449596345424652,0.999058365821838,-0.0325116664171219,-0.0287279337644577,0.0411872342228889,0.999075591564178,-0.0123066185042262,0.999519824981689,0.0282271020114422,-0.0127809243276715,0.0467894598841667,0.101908907294273,-0.993692696094513,0.05403683334589,0.0158213824033737,0.998413562774658,0.998533964157104,0.0314847081899643,0.0440295748412609,0.0357941426336765,0.998839259147644,0.0322323106229305,-0.0405265875160694,0.999102413654327,-0.012325637973845,-0.0462282113730907,0.101947128772736,-0.993715167045593,-0.999368071556091,0.0328266993165016,-0.013631853275001,-0.0542575120925903,0.0145000908523798,0.998421728610992,-0.0355188511312008,0.998782515525818,0.0342339687049389,-0.99843293428421,0.0356592573225498,0.0431285239756107,0.998818874359131,-0.0184246804565191,0.0449596345424652,0.0538951903581619,-0.0254930462688208,0.998221099376678,0.0359128937125206,-0.998447597026825,0.0425769202411175,-0.0359230637550354,-0.998447239398956,0.0425742045044899,-0.0538984388113022,-0.0254934132099152,0.998220980167389,
- -0.998892724514008,-0.016274580731988,0.0441425330936909,0.0246057603508234,0.86406147480011,0.502784550189972,0.0246057566255331,0.864061415195465,0.502784550189972,0.0246057603508234,0.86406147480011,0.502784550189972,0.0246057566255331,0.864061415195465,0.502784550189972,0.999845325946808,-0.000425870268372819,0.0175811033695936,0.0465237125754356,-0.419797331094742,0.906424641609192,0.0178682301193476,-0.593616187572479,0.804549872875214,0.997902870178223,-0.0592165663838387,-0.0261416900902987,0.999887526035309,0.00764649687334895,0.0128994500264525,0.445155799388886,0.458952903747559,0.76889443397522,0.475800454616547,0.334438174962997,0.813489377498627,0.999887526035309,0.00764649687334895,0.0128994500264525,0.475800454616547,0.334438174962997,0.813489377498627,0.0465237125754356,-0.419797331094742,0.906424641609192,0.999845325946808,-0.000425870268372819,0.0175811033695936,0.0555590204894543,0.800466775894165,0.596796572208405,0.445155799388886,0.458952903747559,0.76889443397522,0.0738763362169266,0.810817301273346,0.58061820268631,-0.0431733690202236,-0.560217797756195,0.827219486236572,0.0362188145518303,-0.556138932704926,0.83029979467392,-0.563314616680145,-0.665997266769409,-0.489003241062164,-0.0307334382086992,-0.828792989253998,-0.558710873126984,0.0362188145518303,-0.556138932704926,0.83029979467392,-0.0431733690202236,-0.560217797756195,0.827219486236572,-0.0350378155708313,-0.32348570227623,0.945584058761597,0.0170269459486008,-0.297027438879013,0.95471715927124,-0.0080606946721673,-0.327362954616547,0.944864332675934,-0.0180857516825199,-0.374969512224197,0.926860690116882,-0.00135016313288361,0.80504846572876,0.593207597732544,0.0109143052250147,0.793411612510681,0.608587741851807,-0.0307334382086992,-0.828792989253998,-0.558710873126984,-0.563314616680145,-0.665997266769409,-0.489003241062164,-0.283248454332352,-0.959046483039856,-0.000136147660668939,-0.0696961805224419,-0.997568309307098,2.69814263447188e-005,-0.0264143943786621,-0.824184775352478,-0.565704643726349,-0.0328116491436958,-0.814918100833893,-0.578646659851074,
- -0.0134430918842554,-0.52706390619278,0.849719285964966,-0.0139794629067183,-0.561925947666168,0.827069282531738,-0.0209528915584087,-0.803474843502045,-0.594969928264618,-0.388960689306259,-0.87954980134964,-0.27404710650444,0.282671213150024,-0.925519287586212,-0.252013802528381,0.997902870178223,-0.0592165663838387,-0.0261416900902987,0.99942934513092,-0.0337780974805355,-2.87874740934058e-006,0.996614754199982,0.0822125002741814,-2.73932255367981e-006,0.997765362262726,0.0537517368793488,0.0396844148635864,0.999887526035309,0.00764649687334895,0.0128994500264525,0.999845325946808,-0.000425870268372819,0.0175811033695936,-0.0180857516825199,-0.374969512224197,0.926860690116882,-0.0080606946721673,-0.327362954616547,0.944864332675934,-0.0139794629067183,-0.561925947666168,0.827069282531738,0.445155799388886,0.458952903747559,0.76889443397522,0.0555590204894543,0.800466775894165,0.596796572208405,0.021293705329299,-0.393984884023666,0.918870270252228,0.475800454616547,0.334438174962997,0.813489377498627,0.475800454616547,0.334438174962997,0.813489377498627,0.021293705329299,-0.393984884023666,0.918870270252228,0.0465237125754356,-0.419797331094742,0.906424641609192,0.445155799388886,0.458952903747559,0.76889443397522,0.999887526035309,0.00764649687334895,0.0128994500264525,0.997765362262726,0.0537517368793488,0.0396844148635864,0.0738763362169266,0.810817301273346,0.58061820268631,0.0425280407071114,-0.821352124214172,-0.568833947181702,0.997902870178223,-0.0592165663838387,-0.0261416900902987,0.0178682301193476,-0.593616187572479,0.804549872875214,-0.0180857516825199,-0.374969512224197,0.926860690116882,-0.00505862757563591,-0.382616549730301,0.923893392086029,0.0765600800514221,0.80064845085144,0.594222664833069,-0.00135016313288361,0.80504846572876,0.593207597732544,-0.997835636138916,0.0528260283172131,0.0391579754650593,-0.999859213829041,-0.00532241351902485,0.0159123074263334,0.00442228280007839,-0.316486477851868,0.948586642742157,-0.0840966701507568,0.789072573184967,0.608516454696655,0.0772712975740433,-0.535236358642578,0.841160595417023,
- 0.0179193969815969,-0.548953831195831,0.835660576820374,0.032060731202364,-0.828370690345764,-0.559262156486511,0.0576161667704582,-0.827639520168304,-0.558295011520386,0.0640527009963989,-0.309034943580627,0.948891222476959,0.00442228280007839,-0.316486477851868,0.948586642742157,0.0179193969815969,-0.548953831195831,0.835660576820374,0.0772712975740433,-0.535236358642578,0.841160595417023,0.0576161667704582,-0.827639520168304,-0.558295011520386,0.032060731202364,-0.828370690345764,-0.559262156486511,0.0133123500272632,-0.999911367893219,-2.89182589767734e-005,0.0768685564398766,-0.99704122543335,4.2674844735302e-005,0.0768786743283272,-0.804225325584412,-0.589331209659576,0.0170269459486008,-0.297027438879013,0.95471715927124,-0.0350378155708313,-0.32348570227623,0.945584058761597,0.0216514263302088,0.793521285057068,0.608157396316528,0.0415049642324448,0.802976906299591,0.594563066959381,-0.388960689306259,-0.87954980134964,-0.27404710650444,-0.00772001687437296,-0.82215803861618,-0.569206833839417,-0.0125958062708378,-0.597349762916565,0.801881909370422,-0.0692142471671104,-0.600024282932281,0.796981990337372,-0.00785674527287483,-0.411148101091385,0.911534667015076,-0.00511064892634749,-0.375396609306335,0.926850140094757,-0.0357079282402992,0.802721679210663,0.595283806324005,-0.139150023460388,0.800928890705109,0.582366049289703,-0.0328116491436958,-0.814918100833893,-0.578646659851074,0.282671213150024,-0.925519287586212,-0.252013802528381,-0.00805843062698841,-0.481791019439697,0.876248955726624,-0.0134430918842554,-0.52706390619278,0.849719285964966,-0.00772001687437296,-0.82215803861618,-0.569206833839417,0.0425280407071114,-0.821352124214172,-0.568833947181702,0.0178682301193476,-0.593616187572479,0.804549872875214,-0.0125958062708378,-0.597349762916565,0.801881909370422,-0.00772001687437296,-0.82215803861618,-0.569206833839417,-0.388960689306259,-0.87954980134964,-0.27404710650444,-0.0209528915584087,-0.803474843502045,-0.594969928264618,-0.0264143943786621,-0.824184775352478,-0.565704643726349,-0.00581214064732194,-0.999983072280884,-2.29078796110116e-005,
- -0.0327149406075478,-0.999464690685272,-3.15434726871899e-006,-0.00505862757563591,-0.382616549730301,0.923893392086029,-0.0180857516825199,-0.374969512224197,0.926860690116882,-0.0139794629067183,-0.561925947666168,0.827069282531738,-0.0134430918842554,-0.52706390619278,0.849719285964966,-0.00805843062698841,-0.481791019439697,0.876248955726624,-0.00511064892634749,-0.375396609306335,0.926850140094757,-0.00785674527287483,-0.411148101091385,0.911534667015076,-0.0692142471671104,-0.600024282932281,0.796981990337372,-0.0125958062708378,-0.597349762916565,0.801881909370422,0.00442228280007839,-0.316486477851868,0.948586642742157,0.0640527009963989,-0.309034943580627,0.948891222476959,-0.0241190660744905,0.793786227703094,0.607718348503113,-0.0840966701507568,0.789072573184967,0.608516454696655,0.0179193969815969,-0.548953831195831,0.835660576820374,-0.999780893325806,-0.010571114718914,0.0180627666413784,-0.997764110565186,-0.0550193823873997,-0.037943784147501,0.032060731202364,-0.828370690345764,-0.559262156486511,0.00442228280007839,-0.316486477851868,0.948586642742157,-0.999859213829041,-0.00532241351902485,0.0159123074263334,-0.999780893325806,-0.010571114718914,0.0180627666413784,0.0179193969815969,-0.548953831195831,0.835660576820374,0.032060731202364,-0.828370690345764,-0.559262156486511,-0.997764110565186,-0.0550193823873997,-0.037943784147501,-0.999597251415253,-0.0283798836171627,-2.64826735474344e-006,0.0133123500272632,-0.999911367893219,-2.89182589767734e-005,-0.0350378155708313,-0.32348570227623,0.945584058761597,-0.0080606946721673,-0.327362954616547,0.944864332675934,0.0109143052250147,0.793411612510681,0.608587741851807,0.0216514263302088,0.793521285057068,0.608157396316528,-0.0431733690202236,-0.560217797756195,0.827219486236572,-0.0139794629067183,-0.561925947666168,0.827069282531738,-0.0080606946721673,-0.327362954616547,0.944864332675934,-0.0350378155708313,-0.32348570227623,0.945584058761597,-0.0139794629067183,-0.561925947666168,0.827069282531738,-0.0431733690202236,-0.560217797756195,0.827219486236572,
- -0.0307334382086992,-0.828792989253998,-0.558710873126984,-0.0264143943786621,-0.824184775352478,-0.565704643726349,-0.0264143943786621,-0.824184775352478,-0.565704643726349,-0.0307334382086992,-0.828792989253998,-0.558710873126984,-0.0696961805224419,-0.997568309307098,2.69814263447188e-005,-0.00581214064732194,-0.999983072280884,-2.29078796110116e-005,0.0640527009963989,-0.309034943580627,0.948891222476959,0.0170269459486008,-0.297027438879013,0.95471715927124,0.0415049642324448,0.802976906299591,0.594563066959381,-0.0241190660744905,0.793786227703094,0.607718348503113,0.0170269459486008,-0.297027438879013,0.95471715927124,0.0640527009963989,-0.309034943580627,0.948891222476959,0.0772712975740433,-0.535236358642578,0.841160595417023,0.0362188145518303,-0.556138932704926,0.83029979467392,0.0362188145518303,-0.556138932704926,0.83029979467392,0.0772712975740433,-0.535236358642578,0.841160595417023,0.0576161667704582,-0.827639520168304,-0.558295011520386,-0.563314616680145,-0.665997266769409,-0.489003241062164,-0.563314616680145,-0.665997266769409,-0.489003241062164,0.0576161667704582,-0.827639520168304,-0.558295011520386,0.0768786743283272,-0.804225325584412,-0.589331209659576,0.0768786743283272,-0.804225325584412,-0.589331209659576,0.0768685564398766,-0.99704122543335,4.2674844735302e-005,0.875026941299438,-0.484074294567108,4.5873828639742e-005,-0.563314616680145,-0.665997266769409,-0.489003241062164,0.0768786743283272,-0.804225325584412,-0.589331209659576,0.875026941299438,-0.484074294567108,4.5873828639742e-005,-0.283248454332352,-0.959046483039856,-0.000136147660668939,-0.0264143943786621,-0.824184775352478,-0.565704643726349,-0.0327149406075478,-0.999464690685272,-3.15434726871899e-006,-0.0278335195034742,-0.99961256980896,2.52100880970829e-006,-0.0209528915584087,-0.803474843502045,-0.594969928264618,-0.0328116491436958,-0.814918100833893,-0.578646659851074,-0.00511064892634749,-0.375396609306335,0.926850140094757,0.021293705329299,-0.393984884023666,0.918870270252228,0.0555590204894543,0.800466775894165,0.596796572208405,
- -0.0357079282402992,0.802721679210663,0.595283806324005,0.0465237125754356,-0.419797331094742,0.906424641609192,0.021293705329299,-0.393984884023666,0.918870270252228,-0.00511064892634749,-0.375396609306335,0.926850140094757,-0.0125958062708378,-0.597349762916565,0.801881909370422,0.0178682301193476,-0.593616187572479,0.804549872875214,-0.00505862757563591,-0.382616549730301,0.923893392086029,-0.00785674527287483,-0.411148101091385,0.911534667015076,-0.139150023460388,0.800928890705109,0.582366049289703,0.0765600800514221,0.80064845085144,0.594222664833069,-0.00785674527287483,-0.411148101091385,0.911534667015076,-0.00505862757563591,-0.382616549730301,0.923893392086029,-0.00805843062698841,-0.481791019439697,0.876248955726624,-0.0692142471671104,-0.600024282932281,0.796981990337372,0.282671213150024,-0.925519287586212,-0.252013802528381,-0.388960689306259,-0.87954980134964,-0.27404710650444,-0.0692142471671104,-0.600024282932281,0.796981990337372,-0.00805843062698841,-0.481791019439697,0.876248955726624,-0.0209528915584087,-0.803474843502045,-0.594969928264618,0.282671213150024,-0.925519287586212,-0.252013802528381,-0.0328116491436958,-0.814918100833893,-0.578646659851074,0.996614754199982,0.0822125002741814,-2.73932255367981e-006,0.0910865142941475,0.828366219997406,0.552731990814209,0.0738763362169266,0.810817301273346,0.58061820268631,0.997765362262726,0.0537517368793488,0.0396844148635864,0.0559173487126827,-0.998435378074646,2.70411010205862e-006,0.99942934513092,-0.0337780974805355,-2.87874740934058e-006,0.997902870178223,-0.0592165663838387,-0.0261416900902987,0.0425280407071114,-0.821352124214172,-0.568833947181702,-0.0278335195034742,-0.99961256980896,2.52100880970829e-006,0.0559173487126827,-0.998435378074646,2.70411010205862e-006,0.0425280407071114,-0.821352124214172,-0.568833947181702,-0.00772001687437296,-0.82215803861618,-0.569206833839417,-0.0209528915584087,-0.803474843502045,-0.594969928264618,-0.997207581996918,0.0746787860989571,-6.30386466582422e-007,-0.999597251415253,-0.0283798836171627,-2.64826735474344e-006,
- -0.997764110565186,-0.0550193823873997,-0.037943784147501,-0.999780893325806,-0.010571114718914,0.0180627666413784,-0.999859213829041,-0.00532241351902485,0.0159123074263334,-0.997835636138916,0.0528260283172131,0.0391579754650593,0.999845147132874,-0.000426545855589211,-0.017590319737792,0.997898757457733,-0.0592652074992657,0.0261823143810034,0.0178912710398436,-0.593613028526306,-0.804551780223846,0.0465496331453323,-0.419798463582993,-0.906422853469849,0.999887406826019,0.00765408901497722,-0.0129135819151998,0.476002007722855,0.3343585729599,-0.813404202461243,0.445155888795853,0.458952814340591,-0.76889443397522,0.999887406826019,0.00765408901497722,-0.0129135819151998,0.999845147132874,-0.000426545855589211,-0.017590319737792,0.0465496331453323,-0.419798463582993,-0.906422853469849,0.476002007722855,0.3343585729599,-0.813404202461243,0.0556117184460163,0.80027711391449,-0.59704601764679,0.0739360228180885,0.810632884502411,-0.580868184566498,0.445155888795853,0.458952814340591,-0.76889443397522,-0.0431463159620762,-0.560209035873413,-0.827226758003235,-0.0307609923183918,-0.828595876693726,0.559001326560974,-0.562885046005249,-0.666075050830841,0.489391982555389,0.0362173207104206,-0.556139826774597,-0.830299258232117,0.0362173207104206,-0.556139826774597,-0.830299258232117,0.0170260686427355,-0.297028452157974,-0.954716801643372,-0.0350024327635765,-0.323477953672409,-0.945588111877441,-0.0431463159620762,-0.560209035873413,-0.827226758003235,-0.00802724249660969,-0.327360063791275,-0.944865584373474,0.010911020450294,0.793210506439209,-0.608849883079529,-0.00130971358157694,0.804868936538696,-0.593451201915741,-0.0180623941123486,-0.375071138143539,-0.926820039749146,-0.0307609923183918,-0.828595876693726,0.559001326560974,-0.0696961805224419,-0.997568309307098,2.69814263447188e-005,-0.283248454332352,-0.959046483039856,-0.000136147660668939,-0.562885046005249,-0.666075050830841,0.489391982555389,-0.026454409584403,-0.823988556861877,0.565988600254059,-0.0139495562762022,-0.561929881572723,-0.827067196369171,
- -0.0134121309965849,-0.5271155834198,-0.84968775510788,-0.0328556783497334,-0.81471860408783,0.578924894332886,-0.0209592673927546,-0.803264439105988,0.595253825187683,0.282671302556992,-0.925519049167633,0.252014815807343,-0.38896119594574,-0.879548966884613,0.274048984050751,0.997898757457733,-0.0592652074992657,0.0261823143810034,0.999845147132874,-0.000426545855589211,-0.017590319737792,0.999887406826019,0.00765408901497722,-0.0129135819151998,0.997765064239502,0.053740669041872,-0.0397076867520809,0.996614754199982,0.0822125002741814,-2.73932255367981e-006,0.99942934513092,-0.0337780974805355,-2.87874740934058e-006,-0.0180623941123486,-0.375071138143539,-0.926820039749146,-0.0139495562762022,-0.561929881572723,-0.827067196369171,-0.00802724249660969,-0.327360063791275,-0.944865584373474,0.445155888795853,0.458952814340591,-0.76889443397522,0.476002007722855,0.3343585729599,-0.813404202461243,0.0212938375771046,-0.393984854221344,-0.918870270252228,0.0556117184460163,0.80027711391449,-0.59704601764679,0.476002007722855,0.3343585729599,-0.813404202461243,0.0465496331453323,-0.419798463582993,-0.906422853469849,0.0212938375771046,-0.393984854221344,-0.918870270252228,0.445155888795853,0.458952814340591,-0.76889443397522,0.0739360228180885,0.810632884502411,-0.580868184566498,0.997765064239502,0.053740669041872,-0.0397076867520809,0.999887406826019,0.00765408901497722,-0.0129135819151998,0.0425655394792557,-0.821157872676849,0.56911164522171,0.0178912710398436,-0.593613028526306,-0.804551780223846,0.997898757457733,-0.0592652074992657,0.0261823143810034,-0.0180623941123486,-0.375071138143539,-0.926820039749146,-0.00130971358157694,0.804868936538696,-0.593451201915741,0.0765978321433067,0.80046808719635,-0.594460785388947,-0.00502193626016378,-0.382725447416306,-0.923848390579224,-0.99783593416214,0.0528116337954998,-0.0391725152730942,-0.0841683074831963,0.788869678974152,-0.608769595623016,0.00433334335684776,-0.316488057374954,-0.948586583137512,-0.999859094619751,-0.00532533880323172,-0.0159215442836285,0.0771916881203651,-0.535231530666351,-0.841170907020569,
- 0.0575289390981197,-0.827452838420868,0.55858051776886,0.0319823026657104,-0.828176975250244,0.559553325176239,0.0178407430648804,-0.548964381217957,-0.835655331611633,0.0639650598168373,-0.309036910533905,-0.948896527290344,0.0771916881203651,-0.535231530666351,-0.841170907020569,0.0178407430648804,-0.548964381217957,-0.835655331611633,0.00433334335684776,-0.316488057374954,-0.948586583137512,0.0575289390981197,-0.827452838420868,0.55858051776886,0.0769237726926804,-0.803997278213501,0.589636445045471,0.0768685564398766,-0.99704122543335,4.2674844735302e-005,0.0133123500272632,-0.999911367893219,-2.89182589767734e-005,0.0319823026657104,-0.828176975250244,0.559553325176239,0.0170260686427355,-0.297028452157974,-0.954716801643372,0.0414665229618549,0.802766442298889,-0.594850122928619,0.0216745603829622,0.793317258358002,-0.608422517776489,-0.0350024327635765,-0.323477953672409,-0.945588111877441,-0.38896119594574,-0.879548966884613,0.274048984050751,-0.0692157223820686,-0.600023627281189,-0.796982407569885,-0.0125957475975156,-0.597349762916565,-0.801881968975067,-0.00767625635489821,-0.821965456008911,0.569485545158386,-0.00785818975418806,-0.411147356033325,-0.9115349650383,-0.139097020030022,0.800757765769959,-0.582613945007324,-0.0356580056250095,0.802536129951477,-0.595537006855011,-0.00511057442054152,-0.37539666891098,-0.926850199699402,-0.0328556783497334,-0.81471860408783,0.578924894332886,-0.0134121309965849,-0.5271155834198,-0.84968775510788,-0.00802973285317421,-0.481901258230209,-0.876188695430756,0.282671302556992,-0.925519049167633,0.252014815807343,-0.00767625635489821,-0.821965456008911,0.569485545158386,-0.0125957475975156,-0.597349762916565,-0.801881968975067,0.0178912710398436,-0.593613028526306,-0.804551780223846,0.0425655394792557,-0.821157872676849,0.56911164522171,-0.00767625635489821,-0.821965456008911,0.569485545158386,-0.0209592673927546,-0.803264439105988,0.595253825187683,-0.38896119594574,-0.879548966884613,0.274048984050751,-0.026454409584403,-0.823988556861877,0.565988600254059,-0.0327149406075478,-0.999464690685272,-3.15434726871899e-006,
- -0.00581214064732194,-0.999983072280884,-2.29078796110116e-005,-0.00502193626016378,-0.382725447416306,-0.923848390579224,-0.00802973285317421,-0.481901258230209,-0.876188695430756,-0.0134121309965849,-0.5271155834198,-0.84968775510788,-0.0139495562762022,-0.561929881572723,-0.827067196369171,-0.0180623941123486,-0.375071138143539,-0.926820039749146,-0.00511057442054152,-0.37539666891098,-0.926850199699402,-0.0125957475975156,-0.597349762916565,-0.801881968975067,-0.0692157223820686,-0.600023627281189,-0.796982407569885,-0.00785818975418806,-0.411147356033325,-0.9115349650383,0.00433334335684776,-0.316488057374954,-0.948586583137512,-0.0841683074831963,0.788869678974152,-0.608769595623016,-0.0241773668676615,0.793584764003754,-0.60797917842865,0.0639650598168373,-0.309036910533905,-0.948896527290344,0.0178407430648804,-0.548964381217957,-0.835655331611633,0.0319823026657104,-0.828176975250244,0.559553325176239,-0.997762382030487,-0.0550263710319996,0.0379763469099998,-0.999780654907227,-0.0105770425871015,-0.0180731862783432,0.00433334335684776,-0.316488057374954,-0.948586583137512,0.0178407430648804,-0.548964381217957,-0.835655331611633,-0.999780654907227,-0.0105770425871015,-0.0180731862783432,-0.999859094619751,-0.00532533880323172,-0.0159215442836285,0.0319823026657104,-0.828176975250244,0.559553325176239,0.0133123500272632,-0.999911367893219,-2.89182589767734e-005,-0.999597251415253,-0.0283798836171627,-2.64826735474344e-006,-0.997762382030487,-0.0550263710319996,0.0379763469099998,-0.0350024327635765,-0.323477953672409,-0.945588111877441,0.0216745603829622,0.793317258358002,-0.608422517776489,0.010911020450294,0.793210506439209,-0.608849883079529,-0.00802724249660969,-0.327360063791275,-0.944865584373474,-0.0431463159620762,-0.560209035873413,-0.827226758003235,-0.0350024327635765,-0.323477953672409,-0.945588111877441,-0.00802724249660969,-0.327360063791275,-0.944865584373474,-0.0139495562762022,-0.561929881572723,-0.827067196369171,-0.0139495562762022,-0.561929881572723,-0.827067196369171,-0.026454409584403,-0.823988556861877,0.565988600254059,
- -0.0307609923183918,-0.828595876693726,0.559001326560974,-0.0431463159620762,-0.560209035873413,-0.827226758003235,-0.026454409584403,-0.823988556861877,0.565988600254059,-0.00581214064732194,-0.999983072280884,-2.29078796110116e-005,-0.0696961805224419,-0.997568309307098,2.69814263447188e-005,-0.0307609923183918,-0.828595876693726,0.559001326560974,0.0639650598168373,-0.309036910533905,-0.948896527290344,-0.0241773668676615,0.793584764003754,-0.60797917842865,0.0414665229618549,0.802766442298889,-0.594850122928619,0.0170260686427355,-0.297028452157974,-0.954716801643372,0.0170260686427355,-0.297028452157974,-0.954716801643372,0.0362173207104206,-0.556139826774597,-0.830299258232117,0.0771916881203651,-0.535231530666351,-0.841170907020569,0.0639650598168373,-0.309036910533905,-0.948896527290344,0.0362173207104206,-0.556139826774597,-0.830299258232117,-0.562885046005249,-0.666075050830841,0.489391982555389,0.0575289390981197,-0.827452838420868,0.55858051776886,0.0771916881203651,-0.535231530666351,-0.841170907020569,-0.562885046005249,-0.666075050830841,0.489391982555389,0.0769237726926804,-0.803997278213501,0.589636445045471,0.0575289390981197,-0.827452838420868,0.55858051776886,0.0769237726926804,-0.803997278213501,0.589636445045471,0.875026941299438,-0.484074294567108,4.5873828639742e-005,0.0768685564398766,-0.99704122543335,4.2674844735302e-005,-0.562885046005249,-0.666075050830841,0.489391982555389,-0.283248454332352,-0.959046483039856,-0.000136147660668939,0.875026941299438,-0.484074294567108,4.5873828639742e-005,0.0769237726926804,-0.803997278213501,0.589636445045471,-0.026454409584403,-0.823988556861877,0.565988600254059,-0.0328556783497334,-0.81471860408783,0.578924894332886,-0.0209592673927546,-0.803264439105988,0.595253825187683,-0.0278335195034742,-0.99961256980896,2.52100880970829e-006,-0.0327149406075478,-0.999464690685272,-3.15434726871899e-006,-0.00511057442054152,-0.37539666891098,-0.926850199699402,-0.0356580056250095,0.802536129951477,-0.595537006855011,0.0556117184460163,0.80027711391449,-0.59704601764679,
- 0.0212938375771046,-0.393984854221344,-0.918870270252228,0.0465496331453323,-0.419798463582993,-0.906422853469849,0.0178912710398436,-0.593613028526306,-0.804551780223846,-0.0125957475975156,-0.597349762916565,-0.801881968975067,-0.00511057442054152,-0.37539666891098,-0.926850199699402,0.0212938375771046,-0.393984854221344,-0.918870270252228,-0.00502193626016378,-0.382725447416306,-0.923848390579224,0.0765978321433067,0.80046808719635,-0.594460785388947,-0.139097020030022,0.800757765769959,-0.582613945007324,-0.00785818975418806,-0.411147356033325,-0.9115349650383,-0.00785818975418806,-0.411147356033325,-0.9115349650383,-0.0692157223820686,-0.600023627281189,-0.796982407569885,-0.00802973285317421,-0.481901258230209,-0.876188695430756,-0.00502193626016378,-0.382725447416306,-0.923848390579224,0.282671302556992,-0.925519049167633,0.252014815807343,-0.00802973285317421,-0.481901258230209,-0.876188695430756,-0.0692157223820686,-0.600023627281189,-0.796982407569885,-0.38896119594574,-0.879548966884613,0.274048984050751,-0.0209592673927546,-0.803264439105988,0.595253825187683,-0.0328556783497334,-0.81471860408783,0.578924894332886,0.282671302556992,-0.925519049167633,0.252014815807343,0.99942934513092,-0.0337780974805355,-2.87874740934058e-006,0.0559173487126827,-0.998435378074646,2.70411010205862e-006,0.0425655394792557,-0.821157872676849,0.56911164522171,0.997898757457733,-0.0592652074992657,0.0261823143810034,0.0559173487126827,-0.998435378074646,2.70411010205862e-006,-0.0278335195034742,-0.99961256980896,2.52100880970829e-006,-0.0209592673927546,-0.803264439105988,0.595253825187683,-0.00767625635489821,-0.821965456008911,0.569485545158386,0.0425655394792557,-0.821157872676849,0.56911164522171,-0.999597251415253,-0.0283798836171627,-2.64826735474344e-006,-0.997207581996918,0.0746787860989571,-6.30386466582422e-007,-0.99783593416214,0.0528116337954998,-0.0391725152730942,-0.999859094619751,-0.00532533880323172,-0.0159215442836285,-0.999780654907227,-0.0105770425871015,-0.0180731862783432,-0.997762382030487,-0.0550263710319996,0.0379763469099998,
- -0.997207581996918,0.0746787860989571,-6.30386466582422e-007,-0.0988665744662285,0.820657730102539,-0.562802314758301,-0.0841683074831963,0.788869678974152,-0.608769595623016,-0.99783593416214,0.0528116337954998,-0.0391725152730942,-0.0987981110811234,0.82083797454834,0.562551319599152,-0.997207581996918,0.0746787860989571,-6.30386466582422e-007,-0.997835636138916,0.0528260283172131,0.0391579754650593,-0.0840966701507568,0.789072573184967,0.608516454696655,0.0911307707428932,0.828192353248596,-0.552985191345215,0.996614754199982,0.0822125002741814,-2.73932255367981e-006,0.997765064239502,0.053740669041872,-0.0397076867520809,0.0739360228180885,0.810632884502411,-0.580868184566498,-0.0253836624324322,0.826242327690125,0.56274276971817,-0.0254609975963831,0.82606029510498,-0.563006281852722,-0.0988665744662285,0.820657730102539,-0.562802314758301,-0.0987981110811234,0.82083797454834,0.562551319599152,-0.0254609975963831,0.82606029510498,-0.563006281852722,-0.0253836624324322,0.826242327690125,0.56274276971817,0.0687937438488007,0.828542053699493,0.555684804916382,0.0687568113207817,0.828352987766266,-0.555971026420593,0.0687568113207817,0.828352987766266,-0.555971026420593,0.0687937438488007,0.828542053699493,0.555684804916382,0.0217066090553999,0.828140258789063,0.560100436210632,0.0217418111860752,0.827952802181244,-0.560376048088074,0.0669100284576416,0.83597058057785,0.544679880142212,0.0669422224164009,0.835813701152802,-0.544916689395905,0.0078250365331769,0.837653458118439,-0.546145856380463,0.00779398204758763,0.837811529636383,0.545904040336609,0.0669422224164009,0.835813701152802,-0.544916689395905,0.0669100284576416,0.83597058057785,0.544679880142212,-0.202990218997002,0.82313346862793,0.530326545238495,-0.202976077795029,0.822979867458344,-0.530570387840271,-0.202976077795029,0.822979867458344,-0.530570387840271,-0.202990218997002,0.82313346862793,0.530326545238495,-0.00595564721152186,0.833050668239594,0.553164780139923,-0.00588885834440589,0.832883298397064,-0.553417384624481,-0.00588885834440589,0.832883298397064,-0.553417384624481,
- -0.00595564721152186,0.833050668239594,0.553164780139923,0.0910865142941475,0.828366219997406,0.552731990814209,0.0911307707428932,0.828192353248596,-0.552985191345215,0.00604283809661865,0.827236354351044,0.561821579933167,0.0060467510484159,0.827050268650055,-0.562095403671265,0.0217418111860752,0.827952802181244,-0.560376048088074,0.0217066090553999,0.828140258789063,0.560100436210632,0.0060467510484159,0.827050268650055,-0.562095403671265,0.00604283809661865,0.827236354351044,0.561821579933167,0.00779398204758763,0.837811529636383,0.545904040336609,0.0078250365331769,0.837653458118439,-0.546145856380463,0.0109143052250147,0.793411612510681,0.608587741851807,-0.00135016313288361,0.80504846572876,0.593207597732544,0.00779398204758763,0.837811529636383,0.545904040336609,0.00604283809661865,0.827236354351044,0.561821579933167,0.0216514263302088,0.793521285057068,0.608157396316528,0.0217066090553999,0.828140258789063,0.560100436210632,0.0687937438488007,0.828542053699493,0.555684804916382,0.0415049642324448,0.802976906299591,0.594563066959381,0.0216514263302088,0.793521285057068,0.608157396316528,0.0109143052250147,0.793411612510681,0.608587741851807,0.00604283809661865,0.827236354351044,0.561821579933167,0.0217066090553999,0.828140258789063,0.560100436210632,0.0415049642324448,0.802976906299591,0.594563066959381,0.0687937438488007,0.828542053699493,0.555684804916382,-0.0253836624324322,0.826242327690125,0.56274276971817,-0.0241190660744905,0.793786227703094,0.607718348503113,-0.00135016313288361,0.80504846572876,0.593207597732544,0.0765600800514221,0.80064845085144,0.594222664833069,0.0669100284576416,0.83597058057785,0.544679880142212,0.00779398204758763,0.837811529636383,0.545904040336609,0.0669100284576416,0.83597058057785,0.544679880142212,0.0765600800514221,0.80064845085144,0.594222664833069,-0.139150023460388,0.800928890705109,0.582366049289703,-0.202990218997002,0.82313346862793,0.530326545238495,-0.0253836624324322,0.826242327690125,0.56274276971817,-0.0987981110811234,0.82083797454834,0.562551319599152,-0.0840966701507568,0.789072573184967,0.608516454696655,
- -0.0241190660744905,0.793786227703094,0.607718348503113,-0.00595564721152186,0.833050668239594,0.553164780139923,-0.202990218997002,0.82313346862793,0.530326545238495,-0.139150023460388,0.800928890705109,0.582366049289703,-0.0357079282402992,0.802721679210663,0.595283806324005,0.0910865142941475,0.828366219997406,0.552731990814209,-0.00595564721152186,0.833050668239594,0.553164780139923,-0.0357079282402992,0.802721679210663,0.595283806324005,0.0555590204894543,0.800466775894165,0.596796572208405,0.0738763362169266,0.810817301273346,0.58061820268631,0.0216745603829622,0.793317258358002,-0.608422517776489,0.0414665229618549,0.802766442298889,-0.594850122928619,0.0687568113207817,0.828352987766266,-0.555971026420593,0.0217418111860752,0.827952802181244,-0.560376048088074,0.0216745603829622,0.793317258358002,-0.608422517776489,0.0217418111860752,0.827952802181244,-0.560376048088074,0.0060467510484159,0.827050268650055,-0.562095403671265,0.010911020450294,0.793210506439209,-0.608849883079529,0.0414665229618549,0.802766442298889,-0.594850122928619,-0.0241773668676615,0.793584764003754,-0.60797917842865,-0.0254609975963831,0.82606029510498,-0.563006281852722,0.0687568113207817,0.828352987766266,-0.555971026420593,-0.00130971358157694,0.804868936538696,-0.593451201915741,0.0078250365331769,0.837653458118439,-0.546145856380463,0.0669422224164009,0.835813701152802,-0.544916689395905,0.0765978321433067,0.80046808719635,-0.594460785388947,0.0669422224164009,0.835813701152802,-0.544916689395905,-0.202976077795029,0.822979867458344,-0.530570387840271,-0.139097020030022,0.800757765769959,-0.582613945007324,0.0765978321433067,0.80046808719635,-0.594460785388947,-0.0988665744662285,0.820657730102539,-0.562802314758301,-0.0254609975963831,0.82606029510498,-0.563006281852722,-0.0241773668676615,0.793584764003754,-0.60797917842865,-0.0841683074831963,0.788869678974152,-0.608769595623016,-0.202976077795029,0.822979867458344,-0.530570387840271,-0.00588885834440589,0.832883298397064,-0.553417384624481,-0.0356580056250095,0.802536129951477,-0.595537006855011,
- -0.139097020030022,0.800757765769959,-0.582613945007324,0.010911020450294,0.793210506439209,-0.608849883079529,0.0060467510484159,0.827050268650055,-0.562095403671265,0.0078250365331769,0.837653458118439,-0.546145856380463,-0.00130971358157694,0.804868936538696,-0.593451201915741,-0.00588885834440589,0.832883298397064,-0.553417384624481,0.0911307707428932,0.828192353248596,-0.552985191345215,0.0739360228180885,0.810632884502411,-0.580868184566498,0.0556117184460163,0.80027711391449,-0.59704601764679,-0.0356580056250095,0.802536129951477,-0.595537006855011,-0.0988665744662285,0.820657730102539,-0.562802314758301,-0.997207581996918,0.0746787860989571,-6.30386466582422e-007,-0.0987981110811234,0.82083797454834,0.562551319599152,0.0911307707428932,0.828192353248596,-0.552985191345215,0.0910865142941475,0.828366219997406,0.552731990814209,0.996614754199982,0.0822125002741814,-2.73932255367981e-006,-0.998010456562042,0.0549074299633503,0.0309876464307308,-0.999830186367035,-0.00598742486909032,0.0174280609935522,-0.0218150299042463,-0.365458339452744,0.930572032928467,-0.0015958157600835,0.862130045890808,0.506684601306915,0.0292359590530396,-0.56687980890274,0.823281526565552,-0.0260865651071072,-0.56648463010788,0.823659241199493,-0.0373376607894897,-0.882870137691498,-0.468130528926849,-0.00841736141592264,-0.884139060974121,-0.467148035764694,0.0277172029018402,-0.375655233860016,0.926344871520996,-0.0218150299042463,-0.365458339452744,0.930572032928467,-0.0260865651071072,-0.56648463010788,0.823659241199493,0.0292359590530396,-0.56687980890274,0.823281526565552,-0.00841736141592264,-0.884139060974121,-0.467148035764694,-0.0373376607894897,-0.882870137691498,-0.468130528926849,-0.0568017549812794,-0.998385488986969,-2.68918995516287e-007,0.0163338910788298,-0.999866604804993,2.11766473512398e-005,-0.0218150299042463,-0.365458339452744,0.930572032928467,0.0277172029018402,-0.375655233860016,0.926344871520996,0.0251088719815016,0.860833525657654,0.508266985416412,-0.0015958157600835,0.862130045890808,0.506684601306915,
- -0.0260865651071072,-0.56648463010788,0.823659241199493,-0.99978119134903,-0.0105756185948849,0.0180525220930576,-0.998564004898071,-0.0469978414475918,-0.0257126875221729,-0.0373376607894897,-0.882870137691498,-0.468130528926849,-0.0218150299042463,-0.365458339452744,0.930572032928467,-0.999830186367035,-0.00598742486909032,0.0174280609935522,-0.99978119134903,-0.0105756185948849,0.0180525220930576,-0.0260865651071072,-0.56648463010788,0.823659241199493,-0.0373376607894897,-0.882870137691498,-0.468130528926849,-0.998564004898071,-0.0469978414475918,-0.0257126875221729,-0.999531626701355,-0.0306022465229034,-1.96675591723761e-006,-0.0568017549812794,-0.998385488986969,-2.68918995516287e-007,0.0251088719815016,0.860833525657654,0.508266985416412,0.999813318252563,0.0113440547138453,0.0156388394534588,0.0303333289921284,0.884581029415131,0.465398967266083,0.0277172029018402,-0.375655233860016,0.926344871520996,0.9997518658638,-0.0194409545511007,0.0108712473884225,0.999813318252563,0.0113440547138453,0.0156388394534588,0.0251088719815016,0.860833525657654,0.508266985416412,0.9997518658638,-0.0194409545511007,0.0108712473884225,0.0277172029018402,-0.375655233860016,0.926344871520996,0.0292359590530396,-0.56687980890274,0.823281526565552,0.999715626239777,-0.0221510529518127,0.0088306637480855,0.999715626239777,-0.0221510529518127,0.0088306637480855,0.0292359590530396,-0.56687980890274,0.823281526565552,-0.00841736141592264,-0.884139060974121,-0.467148035764694,0.99743378162384,-0.0649519860744476,-0.0301180314272642,0.0163338910788298,-0.999866604804993,2.11766473512398e-005,0.997589290142059,-0.0693948939442635,-1.50126006701612e-005,0.99743378162384,-0.0649519860744476,-0.0301180314272642,-0.00841736141592264,-0.884139060974121,-0.467148035764694,0.0303333289921284,0.884581029415131,0.465398967266083,0.999813318252563,0.0113440547138453,0.0156388394534588,0.99846225976944,0.0544898025691509,-0.0102003365755081,0.0303333289921284,0.884581029415131,0.465398967266083,-0.0138349933549762,0.884853899478912,0.465663105249405,
- -0.0015958157600835,0.862130045890808,0.506684601306915,0.0251088719815016,0.860833525657654,0.508266985416412,-0.99859881401062,0.0529203116893768,-1.23202607937856e-006,-0.999531626701355,-0.0306022465229034,-1.96675591723761e-006,-0.998564004898071,-0.0469978414475918,-0.0257126875221729,-0.99978119134903,-0.0105756185948849,0.0180525220930576,-0.999830186367035,-0.00598742486909032,0.0174280609935522,-0.998010456562042,0.0549074299633503,0.0309876464307308,-0.998010635375977,0.0548946335911751,-0.0310017019510269,-0.00159744895063341,0.861984848976135,-0.50693154335022,-0.0218161027878523,-0.365251064300537,-0.930653393268585,-0.999829947948456,-0.00599021464586258,-0.017441563308239,0.029276704415679,-0.566960215568542,-0.823224782943726,-0.00837607495486736,-0.884002208709717,0.467407673597336,-0.0373283214867115,-0.882733106613159,0.468389600515366,-0.0261039212346077,-0.566558599472046,-0.823607921600342,0.0277674421668053,-0.375457495450974,-0.9264235496521,0.029276704415679,-0.566960215568542,-0.823224782943726,-0.0261039212346077,-0.566558599472046,-0.823607921600342,-0.0218161027878523,-0.365251064300537,-0.930653393268585,-0.00837607495486736,-0.884002208709717,0.467407673597336,0.0163338910788298,-0.999866604804993,2.11766473512398e-005,-0.0568017549812794,-0.998385488986969,-2.68918995516287e-007,-0.0373283214867115,-0.882733106613159,0.468389600515366,-0.0218161027878523,-0.365251064300537,-0.930653393268585,-0.00159744895063341,0.861984848976135,-0.50693154335022,0.0369150228798389,0.860548794269562,-0.508028507232666,0.0277674421668053,-0.375457495450974,-0.9264235496521,-0.0261039212346077,-0.566558599472046,-0.823607921600342,-0.0373283214867115,-0.882733106613159,0.468389600515366,-0.9985631108284,-0.0470047146081924,0.0257366225123405,-0.999781012535095,-0.0105822095647454,-0.018051989376545,-0.0218161027878523,-0.365251064300537,-0.930653393268585,-0.0261039212346077,-0.566558599472046,-0.823607921600342,-0.999781012535095,-0.0105822095647454,-0.018051989376545,-0.999829947948456,-0.00599021464586258,-0.017441563308239,
- -0.0373283214867115,-0.882733106613159,0.468389600515366,-0.0568017549812794,-0.998385488986969,-2.68918995516287e-007,-0.999531626701355,-0.0306022465229034,-1.96675591723761e-006,-0.9985631108284,-0.0470047146081924,0.0257366225123405,0.998472571372986,0.0438188016414642,-0.033651627600193,0.0369150228798389,0.860548794269562,-0.508028507232666,0.0523804537951946,0.883530020713806,-0.465436398983002,0.99846225976944,0.0544898025691509,-0.0102003365755081,0.0277674421668053,-0.375457495450974,-0.9264235496521,0.0369150228798389,0.860548794269562,-0.508028507232666,0.998472571372986,0.0438188016414642,-0.033651627600193,0.999751031398773,-0.0194421410560608,-0.0109487529844046,0.999751031398773,-0.0194421410560608,-0.0109487529844046,0.999715089797974,-0.0221504438668489,-0.00889159180223942,0.029276704415679,-0.566960215568542,-0.823224782943726,0.0277674421668053,-0.375457495450974,-0.9264235496521,0.999715089797974,-0.0221504438668489,-0.00889159180223942,0.997435688972473,-0.0649424567818642,0.0300734471529722,-0.00837607495486736,-0.884002208709717,0.467407673597336,0.029276704415679,-0.566960215568542,-0.823224782943726,0.0163338910788298,-0.999866604804993,2.11766473512398e-005,-0.00837607495486736,-0.884002208709717,0.467407673597336,0.997435688972473,-0.0649424567818642,0.0300734471529722,0.997589290142059,-0.0693948939442635,-1.50126006701612e-005,-0.0138372182846069,0.884718894958496,-0.465919345617294,0.0523804537951946,0.883530020713806,-0.465436398983002,0.0369150228798389,0.860548794269562,-0.508028507232666,-0.00159744895063341,0.861984848976135,-0.50693154335022,-0.999531626701355,-0.0306022465229034,-1.96675591723761e-006,-0.99859881401062,0.0529203116893768,-1.23202607937856e-006,-0.998010635375977,0.0548946335911751,-0.0310017019510269,-0.999829947948456,-0.00599021464586258,-0.017441563308239,-0.999781012535095,-0.0105822095647454,-0.018051989376545,-0.9985631108284,-0.0470047146081924,0.0257366225123405,-0.99859881401062,0.0529203116893768,-1.23202607937856e-006,-0.0138372182846069,0.884718894958496,-0.465919345617294,
- -0.00159744895063341,0.861984848976135,-0.50693154335022,-0.998010635375977,0.0548946335911751,-0.0310017019510269,0.999715626239777,-0.0221510529518127,0.0088306637480855,0.99743378162384,-0.0649519860744476,-0.0301180314272642,0.997589290142059,-0.0693948939442635,-1.50126006701612e-005,0.997435688972473,-0.0649424567818642,0.0300734471529722,0.999715089797974,-0.0221504438668489,-0.00889159180223942,0.999751031398773,-0.0194421410560608,-0.0109487529844046,0.998472571372986,0.0438188016414642,-0.033651627600193,0.99846225976944,0.0544898025691509,-0.0102003365755081,0.999813318252563,0.0113440547138453,0.0156388394534588,0.9997518658638,-0.0194409545511007,0.0108712473884225,-0.0138349933549762,0.884853899478912,0.465663105249405,-0.99859881401062,0.0529203116893768,-1.23202607937856e-006,-0.998010456562042,0.0549074299633503,0.0309876464307308,-0.0015958157600835,0.862130045890808,0.506684601306915,-0.0138372182846069,0.884718894958496,-0.465919345617294,-0.0138349933549762,0.884853899478912,0.465663105249405,0.0303333289921284,0.884581029415131,0.465398967266083,0.0523804537951946,0.883530020713806,-0.465436398983002,-0.0138372182846069,0.884718894958496,-0.465919345617294,-0.10828486084938,0.994119882583618,-8.75958139658906e-005,-0.0138349933549762,0.884853899478912,0.465663105249405,0.0523804537951946,0.883530020713806,-0.465436398983002,0.0303333289921284,0.884581029415131,0.465398967266083,0.99846225976944,0.0544898025691509,-0.0102003365755081,6.38898927718401e-005,0.826018750667572,-0.563642561435699,-0.0855148956179619,0.823480248451233,-0.560863018035889,-0.0855149030685425,0.823480248451233,-0.560863077640533,0.001095553743653,0.826012432575226,-0.563650786876678,0.0532239973545074,0.8245450258255,-0.563287496566772,6.38898927718401e-005,0.826018750667572,-0.563642561435699,0.001095553743653,0.826012432575226,-0.563650786876678,0.0532239936292171,0.824544906616211,-0.563287436962128,0.667067348957062,0.744644284248352,0.0229356493800879,0.604159772396088,0.721177637577057,-0.338959783315659,0.547227084636688,0.670840203762054,-0.500515699386597,
- 0.326125741004944,0.932870447635651,-0.15295372903347,0.926807224750519,0.279946625232697,-0.250316172838211,0.915381908416748,0.273289620876312,-0.295615762472153,0.352409422397614,0.907585263252258,-0.228246808052063,0.912231743335724,0.0973486080765724,-0.397940337657928,0.954558551311493,-0.0140051087364554,-0.297694236040115,0.833516597747803,0.0815965905785561,-0.546435952186584,0.800853550434113,0.101620592176914,-0.590175211429596,0.926807224750519,0.279946625232697,-0.250316172838211,0.878601372241974,0.310498386621475,-0.36283665895462,0.830301642417908,0.208771750330925,-0.516733467578888,0.915381908416748,0.273289620876312,-0.295615762472153,0.578168630599976,0.612497448921204,0.539043605327606,0.635883450508118,0.676290512084961,0.371864944696426,0.667067348957062,0.744644284248352,0.0229356493800879,0.945851504802704,0.256175756454468,0.199346154928207,0.923903107643127,0.353953570127487,0.145327016711235,0.261581659317017,0.963310182094574,0.060071375221014,0.20142163336277,0.966186881065369,0.160972371697426,0.941619277000427,0.24427255988121,0.231698125600815,0.957351684570313,0.251150727272034,0.142832189798355,0.923903107643127,0.353953570127487,0.145327016711235,0.945851504802704,0.256175756454468,0.199346154928207,0.912231743335724,0.0973486080765724,-0.397940337657928,0.840335309505463,0.487365067005157,0.237301349639893,0.989484071731567,0.0713470652699471,0.125820830464363,0.992804408073425,-0.0697960555553436,0.0973028615117073,0.954558551311493,-0.0140051087364554,-0.297694236040115,0.989484071731567,0.0713470652699471,0.125820830464363,0.667067348957062,0.744644284248352,0.0229356493800879,0.635883450508118,0.676290512084961,0.371864944696426,0.604159772396088,0.721177637577057,-0.338959783315659,0.261581659317017,0.963310182094574,0.060071375221014,0.926807224750519,0.279946625232697,-0.250316172838211,0.326125741004944,0.932870447635651,-0.15295372903347,0.923903107643127,0.353953570127487,0.145327016711235,0.957351684570313,0.251150727272034,0.142832189798355,0.926807224750519,0.279946625232697,-0.250316172838211,
- 0.957351684570313,0.251150727272034,0.142832189798355,0.901381075382233,0.430544078350067,0.0463041961193085,0.878601372241974,0.310498386621475,-0.36283665895462,0.862271666526794,0.331276297569275,0.383071303367615,0.989484071731567,0.0713470652699471,0.125820830464363,0.840335309505463,0.487365067005157,0.237301349639893,0.992804408073425,-0.0697960555553436,0.0973028615117073,0.989484071731567,0.0713470652699471,0.125820830464363,0.862271666526794,0.331276297569275,0.383071303367615,0.37954568862915,0.831422924995422,0.405808836221695,0.175888389348984,0.978545069694519,0.107297815382481,0.635883450508118,0.676290512084961,0.371864944696426,0.578168630599976,0.612497448921204,0.539043605327606,0.604159772396088,0.721177637577057,-0.338959783315659,0.635883450508118,0.676290512084961,0.371864944696426,0.175888389348984,0.978545069694519,0.107297815382481,0.254200667142868,0.943125545978546,-0.214234098792076,0.547227084636688,0.670840203762054,-0.500515699386597,0.604159772396088,0.721177637577057,-0.338959783315659,0.254200667142868,0.943125545978546,-0.214234098792076,0.381012409925461,0.838665425777435,-0.389191329479218,0.926807224750519,0.279946625232697,-0.250316172838211,0.957351684570313,0.251150727272034,0.142832189798355,0.878601372241974,0.310498386621475,-0.36283665895462,0.878601372241974,0.310498386621475,-0.36283665895462,0.912231743335724,0.0973486080765724,-0.397940337657928,0.830301642417908,0.208771750330925,-0.516733467578888,0.830301642417908,0.208771750330925,-0.516733467578888,0.912231743335724,0.0973486080765724,-0.397940337657928,0.800853550434113,0.101620592176914,-0.590175211429596,0.989484071731567,0.0713470652699471,0.125820830464363,0.954558551311493,-0.0140051087364554,-0.297694236040115,0.912231743335724,0.0973486080765724,-0.397940337657928,0.261581659317017,0.963310182094574,0.060071375221014,0.923903107643127,0.353953570127487,0.145327016711235,0.926807224750519,0.279946625232697,-0.250316172838211,0.957351684570313,0.251150727272034,0.142832189798355,0.840335309505463,0.487365067005157,0.237301349639893,
- 0.901381075382233,0.430544078350067,0.0463041961193085,0.862271666526794,0.331276297569275,0.383071303367615,0.840335309505463,0.487365067005157,0.237301349639893,0.957351684570313,0.251150727272034,0.142832189798355,0.941619277000427,0.24427255988121,0.231698125600815,0.901381075382233,0.430544078350067,0.0463041961193085,0.840335309505463,0.487365067005157,0.237301349639893,0.912231743335724,0.0973486080765724,-0.397940337657928,0.878601372241974,0.310498386621475,-0.36283665895462,0.901381075382233,0.430544078350067,0.0463041961193085,0.912231743335724,0.0973486080765724,-0.397940337657928,-0.0228003859519959,-0.999657809734344,0.012819092720747,-0.99882435798645,-0.0385058782994747,0.0294481366872787,-0.998672842979431,-0.0504097677767277,-0.0105480831116438,-0.0166197326034307,-0.999510169029236,-0.0265178307890892,0.00355404452420771,-0.0767750144004822,0.997042059898376,0.00198253802955151,-0.999885499477386,0.0150019051507115,0.023454686626792,-0.865063071250916,0.501114428043365,-0.99882435798645,-0.0385058782994747,0.0294481366872787,-0.0303310118615627,-0.0808949843049049,0.99626100063324,-0.0246246717870235,0.102986730635166,0.994377851486206,-0.998745441436768,0.038077037781477,0.032522190362215,-0.0166197326034307,-0.999510169029236,-0.0265178307890892,-0.0486404895782471,-0.0692747384309769,-0.996411085128784,0.0308943092823029,-0.0824316740036011,-0.996117770671844,0.00751016149297357,-0.999548196792603,-0.0291031338274479,0.235124051570892,-0.10910952091217,0.965821743011475,0.00355404452420771,-0.0767750144004822,0.997042059898376,0.023454686626792,-0.865063071250916,0.501114428043365,0.00198253802955151,-0.999885499477386,0.0150019051507115,0.0900630429387093,-0.995668947696686,0.0230599828064442,0.023454686626792,-0.865063071250916,0.501114428043365,-0.998672842979431,-0.0504097677767277,-0.0105480831116438,-0.99882435798645,-0.0385058782994747,0.0294481366872787,-0.998745441436768,0.038077037781477,0.032522190362215,-0.999063968658447,0.0429916977882385,0.00478907627984881,-0.999734580516815,0.020649129524827,-0.0102176340296865,
- -0.0228003859519959,-0.999657809734344,0.012819092720747,-0.0303310118615627,-0.0808949843049049,0.99626100063324,-0.99882435798645,-0.0385058782994747,0.0294481366872787,-0.998672842979431,-0.0504097677767277,-0.0105480831116438,-0.0486404895782471,-0.0692747384309769,-0.996411085128784,-0.0166197326034307,-0.999510169029236,-0.0265178307890892,-0.998745441436768,0.038077037781477,0.032522190362215,-0.019585283473134,0.999664962291718,0.0169227980077267,-0.00506991799920797,0.999986946582794,-0.000694095739163458,-0.999063968658447,0.0429916977882385,0.00478907627984881,0.00950920395553112,0.999618709087372,-0.0259252954274416,-0.00506991799920797,0.999986946582794,-0.000694095739163458,-0.019585283473134,0.999664962291718,0.0169227980077267,0.0138080697506666,0.999655544757843,0.0223161224275827,0.0131851015612483,0.999735951423645,-0.0188191309571266,-0.019585283473134,0.999664962291718,0.0169227980077267,-0.0246246717870235,0.102986730635166,0.994377851486206,0.00476242043077946,0.105659902095795,0.994390964508057,0.0138080697506666,0.999655544757843,0.0223161224275827,-0.999734580516815,0.020649129524827,-0.0102176340296865,-0.0404063612222672,0.0213768053799868,-0.998954653739929,-0.0486404895782471,-0.0692747384309769,-0.996411085128784,-0.998672842979431,-0.0504097677767277,-0.0105480831116438,0.0582599379122257,0.0616565048694611,-0.996395707130432,-0.0459558553993702,0.998773157596588,-0.0184436868876219,-0.0191449299454689,0.999664068222046,-0.0174684897065163,-0.015511610545218,0.0684829130768776,-0.997531712055206,0.122971765697002,-0.724352836608887,-0.678373634815216,0.0948081240057945,-0.0167705826461315,-0.995354294776917,-0.0111619820818305,-0.0619430132210255,-0.998017311096191,-0.0180661715567112,0.0540879406034946,-0.998372733592987,-0.00506991799920797,0.999986946582794,-0.000694095739163458,0.00950920395553112,0.999618709087372,-0.0259252954274416,-0.0246246717870235,0.102986730635166,0.994377851486206,-0.019585283473134,0.999664962291718,0.0169227980077267,-0.998745441436768,0.038077037781477,0.032522190362215,
- -0.999734580516815,0.020649129524827,-0.0102176340296865,-0.0180661715567112,0.0540879406034946,-0.998372733592987,-0.0404063612222672,0.0213768053799868,-0.998954653739929,-0.999734580516815,0.020649129524827,-0.0102176340296865,-0.999063968658447,0.0429916977882385,0.00478907627984881,-0.00506991799920797,0.999986946582794,-0.000694095739163458,-0.0180661715567112,0.0540879406034946,-0.998372733592987,-0.00735242245718837,-0.0262678172439337,0.999627888202667,-0.249978542327881,-0.968131005764008,0.015268063172698,-0.0348345376551151,-0.999186873435974,0.0203009787946939,-0.00583444209769368,-0.0946174934506416,0.995496690273285,-0.158475413918495,-0.98708164691925,-0.0235656648874283,0.107821457087994,-0.00892895366996527,-0.99413013458252,-0.00222928100265563,-0.0783729702234268,-0.99692165851593,-0.0287780128419399,-0.999461650848389,-0.0157581754028797,-0.448839157819748,0.823052644729614,0.348034203052521,0.0133087178692222,0.922898590564728,0.384813040494919,0.00105143454857171,0.100641779601574,0.994922161102295,-0.0056428792886436,0.0661198198795319,0.997795760631561,-0.249978542327881,-0.968131005764008,0.015268063172698,-0.158475413918495,-0.98708164691925,-0.0235656648874283,-0.0287780128419399,-0.999461650848389,-0.0157581754028797,-0.0348345376551151,-0.999186873435974,0.0203009787946939,-0.00195706146769226,0.999839067459106,0.0178366862237453,0.0112328119575977,0.99983149766922,0.0145192323252559,0.0133087178692222,0.922898590564728,0.384813040494919,-0.448839157819748,0.823052644729614,0.348034203052521,-0.0428995788097382,0.998960256576538,-0.0154239656403661,-0.0439866669476032,0.0710571706295013,-0.996501863002777,-0.205867737531662,0.881014764308929,-0.42594775557518,-0.0439866669476032,0.0710571706295013,-0.996501863002777,-0.643388986587524,0.0720860734581947,-0.762137889862061,-0.205867737531662,0.881014764308929,-0.42594775557518,-0.272526562213898,-0.962109088897705,-0.00868822727352381,-0.607736051082611,-0.0302200093865395,-0.793563902378082,-0.072696827352047,-0.0697397142648697,-0.994912803173065,
- 0.0043221041560173,-0.999866127967834,-0.015774080529809,-0.154671773314476,-0.177960738539696,0.97180587053299,-0.377213776111603,-0.188584133982658,0.906722545623779,0.023454686626792,-0.865063071250916,0.501114428043365,0.023454686626792,-0.865063071250916,0.501114428043365,-0.171102970838547,-0.985219240188599,0.00817320309579372,-0.00611609313637018,-0.999908447265625,0.0120709473267198,-0.0428995788097382,0.998960256576538,-0.0154239656403661,-0.120780952274799,0.992595851421356,-0.0128684639930725,0.174919620156288,0.984575390815735,-0.0037924328353256,-0.197822168469429,0.980090081691742,0.0170235186815262,0.699178338050842,0.096345879137516,-0.708425760269165,-0.643388986587524,0.0720860734581947,-0.762137889862061,-0.607736051082611,-0.0302200093865395,-0.793563902378082,0.0308943092823029,-0.0824316740036011,-0.996117770671844,0.0939854383468628,0.620196878910065,-0.778795659542084,0.0711122378706932,0.867308020591736,-0.492666006088257,-0.00271835969761014,0.999844610691071,-0.0174228493124247,0.00160639407113194,0.0840257629752159,-0.996462285518646,0.00160639407113194,0.0840257629752159,-0.996462285518646,0.114810809493065,0.0842422172427177,-0.989808976650238,0.0939854383468628,0.620196878910065,-0.778795659542084,-0.117343239486218,-0.0457099191844463,0.99203884601593,-0.420948565006256,-0.906978309154511,0.0138783156871796,-0.025453919544816,-0.999398708343506,0.023545304313302,-0.0301756449043751,-0.0872265323996544,0.99573141336441,-0.400573343038559,-0.916253447532654,-0.00453578401356936,-0.0820975303649902,-0.0638465732336044,-0.99457710981369,-0.0278556793928146,-0.0647824928164482,-0.997510552406311,-0.0213366094976664,-0.99969494342804,-0.0124375941231847,0.176395207643509,0.0955757796764374,0.979668259620667,-0.117343239486218,-0.0457099191844463,0.99203884601593,-0.0301756449043751,-0.0872265323996544,0.99573141336441,-0.0427261367440224,0.0667523443698883,0.996854364871979,-0.420948565006256,-0.906978309154511,0.0138783156871796,-0.400573343038559,-0.916253447532654,-0.00453578401356936,
- -0.0213366094976664,-0.99969494342804,-0.0124375941231847,-0.025453919544816,-0.999398708343506,0.023545304313302,0.379421144723892,0.66659539937973,-0.641630887985229,0.349754095077515,0.936694860458374,-0.0165757983922958,-0.00800115428864956,0.99996280670166,-0.00322317238897085,-0.638512790203094,0.497436076402664,-0.587246656417847,0.365182548761368,0.930884063243866,0.00983571447432041,0.176395207643509,0.0955757796764374,0.979668259620667,-0.0427261367440224,0.0667523443698883,0.996854364871979,-0.00887713488191366,0.999796986579895,0.0180889870971441,-0.638512790203094,0.497436076402664,-0.587246656417847,-0.0412310138344765,0.0127547020092607,-0.999068319797516,0.205069690942764,0.226770386099815,-0.952114224433899,0.379421144723892,0.66659539937973,-0.641630887985229,0.0308159422129393,-0.0405627340078354,0.998701572418213,0.152300029993057,-0.988334119319916,0.000432664412073791,-0.0442150756716728,-0.998748779296875,0.0233688298612833,-0.022401574999094,-0.109576486051083,0.993725895881653,0.143811121582985,-0.988594591617584,-0.0447110459208488,0.122971765697002,-0.724352836608887,-0.678373634815216,-0.0111619820818305,-0.0619430132210255,-0.998017311096191,-0.0173779688775539,-0.999828398227692,-0.00641234219074249,-0.0185176599770784,0.0652037709951401,0.997700095176697,0.00832221377640963,0.0642380118370056,0.997899889945984,0.0308159422129393,-0.0405627340078354,0.998701572418213,-0.022401574999094,-0.109576486051083,0.993725895881653,-0.0173779688775539,-0.999828398227692,-0.00641234219074249,0.174321368336678,-0.984647631645203,-0.00900328811258078,0.143811121582985,-0.988594591617584,-0.0447110459208488,-0.0131562016904354,0.999796271324158,0.0153078120201826,-0.0191449299454689,0.999664068222046,-0.0174684897065163,-0.0459558553993702,0.998773157596588,-0.0184436868876219,-0.0506567172706127,0.998706519603729,-0.00440379790961742,-0.0131562016904354,0.999796271324158,0.0153078120201826,-0.0185176599770784,0.0652037709951401,0.997700095176697,-0.00190897088032216,0.0435907356441021,0.999047636985779,
- -8.88334907358512e-005,0.99991101026535,0.0133416661992669,-0.00134929816704243,0.999939322471619,-0.0109367724508047,-0.00762795843183994,0.0554238185286522,-0.998433709144592,-0.638512790203094,0.497436076402664,-0.587246656417847,-0.00762795843183994,0.0554238185286522,-0.998433709144592,-0.0412310138344765,0.0127547020092607,-0.999068319797516,-0.638512790203094,0.497436076402664,-0.587246656417847,0.040037963539362,-0.99912428855896,-0.0121558485552669,0.0161319132894278,-0.0682896971702576,-0.997535109519959,0.122971765697002,-0.724352836608887,-0.678373634815216,0.143811121582985,-0.988594591617584,-0.0447110459208488,0.174321368336678,-0.984647631645203,-0.00900328811258078,0.040037963539362,-0.99912428855896,-0.0121558485552669,0.143811121582985,-0.988594591617584,-0.0447110459208488,0.0171760860830545,-0.0942104011774063,0.995404124259949,0.0847138315439224,-0.996160507202148,0.0220876652747393,0.152300029993057,-0.988334119319916,0.000432664412073791,0.0308159422129393,-0.0405627340078354,0.998701572418213,0.0214459467679262,0.0434651114046574,0.998824775218964,0.0171760860830545,-0.0942104011774063,0.995404124259949,0.0308159422129393,-0.0405627340078354,0.998701572418213,0.00832221377640963,0.0642380118370056,0.997899889945984,-0.00887713488191366,0.999796986579895,0.0180889870971441,-0.0427261367440224,0.0667523443698883,0.996854364871979,0.0214459467679262,0.0434651114046574,0.998824775218964,0.00820102076977491,0.999566078186035,0.0282880906015635,-0.638512790203094,0.497436076402664,-0.587246656417847,-0.00800115428864956,0.99996280670166,-0.00322317238897085,-0.00134929816704243,0.999939322471619,-0.0109367724508047,0.379421144723892,0.66659539937973,-0.641630887985229,0.205069690942764,0.226770386099815,-0.952114224433899,0.0457011051476002,0.0179894119501114,-0.998793244361877,0.844941079616547,0.397540271282196,-0.357821553945541,0.0261456966400146,-0.999508202075958,-0.0173158925026655,0.0402072630822659,-0.0678452104330063,-0.996885359287262,-0.0820975303649902,-0.0638465732336044,-0.99457710981369,
- -0.400573343038559,-0.916253447532654,-0.00453578401356936,0.029151439666748,-0.999350666999817,0.0211752001196146,0.0261456966400146,-0.999508202075958,-0.0173158925026655,-0.400573343038559,-0.916253447532654,-0.00453578401356936,-0.420948565006256,-0.906978309154511,0.0138783156871796,0.0272198189049959,-0.0827039033174515,0.996202290058136,0.029151439666748,-0.999350666999817,0.0211752001196146,-0.420948565006256,-0.906978309154511,0.0138783156871796,-0.117343239486218,-0.0457099191844463,0.99203884601593,0.0243223905563354,0.0677075088024139,0.997408747673035,0.0272198189049959,-0.0827039033174515,0.996202290058136,-0.117343239486218,-0.0457099191844463,0.99203884601593,0.176395207643509,0.0955757796764374,0.979668259620667,0.0334111750125885,0.999283015727997,0.017808698117733,0.0243223905563354,0.0677075088024139,0.997408747673035,0.176395207643509,0.0955757796764374,0.979668259620667,0.365182548761368,0.930884063243866,0.00983571447432041,0.844941079616547,0.397540271282196,-0.357821553945541,0.0277913957834244,0.999610900878906,-0.00236897589638829,0.349754095077515,0.936694860458374,-0.0165757983922958,0.379421144723892,0.66659539937973,-0.641630887985229,0.844941079616547,0.397540271282196,-0.357821553945541,0.0246481075882912,0.0597456321120262,-0.997909307479858,0.0127721577882767,0.999776184558868,-0.0168637335300446,0.844941079616547,0.397540271282196,-0.357821553945541,0.0457011051476002,0.0179894119501114,-0.998793244361877,0.0246481075882912,0.0597456321120262,-0.997909307479858,-0.448839157819748,0.823052644729614,0.348034203052521,-0.0056428792886436,0.0661198198795319,0.997795760631561,-0.00195706146769226,0.999839067459106,0.0178366862237453,0.0127721577882767,0.999776184558868,-0.0168637335300446,0.0277913957834244,0.999610900878906,-0.00236897589638829,0.844941079616547,0.397540271282196,-0.357821553945541,0.0300848726183176,0.0722210481762886,-0.99693489074707,-0.00521556194871664,0.99982625246048,-0.0179002396762371,0.0711122378706932,0.867308020591736,-0.492666006088257,0.0939854383468628,0.620196878910065,-0.778795659542084,
- 0.114810809493065,0.0842422172427177,-0.989808976650238,0.0300848726183176,0.0722210481762886,-0.99693489074707,0.0939854383468628,0.620196878910065,-0.778795659542084,0.0043221041560173,-0.999866127967834,-0.015774080529809,-0.072696827352047,-0.0697397142648697,-0.994912803173065,0.043305192142725,-0.0693068131804466,-0.996654987335205,0.0394850485026836,-0.999087631702423,-0.016276840120554,0.023454686626792,-0.865063071250916,0.501114428043365,-0.00611609313637018,-0.999908447265625,0.0120709473267198,0.0189583413302898,-0.999676167964935,0.0169762969017029,0.0189583413302898,-0.999676167964935,0.0169762969017029,-0.00624055927619338,-0.0820565521717072,0.996608138084412,0.023454686626792,-0.865063071250916,0.501114428043365,0.314168334007263,0.874999046325684,0.368340879678726,-0.00103000085800886,0.0797440633177757,0.996814787387848,0.00105143454857171,0.100641779601574,0.994922161102295,0.0133087178692222,0.922898590564728,0.384813040494919,-0.00568692293018103,0.999661862850189,0.0253754928708076,-0.00103000085800886,0.0797440633177757,0.996814787387848,0.314168334007263,0.874999046325684,0.368340879678726,-0.00568692293018103,0.999661862850189,0.0253754928708076,0.314168334007263,0.874999046325684,0.368340879678726,0.0133087178692222,0.922898590564728,0.384813040494919,0.0112328119575977,0.99983149766922,0.0145192323252559,0.00751016149297357,-0.999548196792603,-0.0291031338274479,0.0308943092823029,-0.0824316740036011,-0.996117770671844,-0.607736051082611,-0.0302200093865395,-0.793563902378082,-0.272526562213898,-0.962109088897705,-0.00868822727352381,-0.377213776111603,-0.188584133982658,0.906722545623779,0.235124051570892,-0.10910952091217,0.965821743011475,0.023454686626792,-0.865063071250916,0.501114428043365,0.023454686626792,-0.865063071250916,0.501114428043365,0.0900630429387093,-0.995668947696686,0.0230599828064442,-0.171102970838547,-0.985219240188599,0.00817320309579372,0.686529636383057,0.637436091899872,-0.349788814783096,0.135987341403961,0.990689039230347,-0.0065351203083992,-0.120780952274799,0.992595851421356,-0.0128684639930725,
- -0.205867737531662,0.881014764308929,-0.42594775557518,0.0131851015612483,0.999735951423645,-0.0188191309571266,0.000309345545247197,0.0864593908190727,-0.996255338191986,-0.0180661715567112,0.0540879406034946,-0.998372733592987,0.00950920395553112,0.999618709087372,-0.0259252954274416,0.000309345545247197,0.0864593908190727,-0.996255338191986,0.0308943092823029,-0.0824316740036011,-0.996117770671844,-0.0486404895782471,-0.0692747384309769,-0.996411085128784,-0.0404063612222672,0.0213768053799868,-0.998954653739929,-0.0180661715567112,0.0540879406034946,-0.998372733592987,-0.0506567172706127,0.998706519603729,-0.00440379790961742,0.00820102076977491,0.999566078186035,0.0282880906015635,-0.0235351044684649,0.895938098430634,0.443555116653442,0.0190889220684767,0.069417841732502,-0.997404992580414,0.0128234783187509,0.999764382839203,-0.0175167974084616,-0.0459558553993702,0.998773157596588,-0.0184436868876219,0.0582599379122257,0.0616565048694611,-0.996395707130432,0.0161319132894278,-0.0682896971702576,-0.997535109519959,0.0948081240057945,-0.0167705826461315,-0.995354294776917,0.122971765697002,-0.724352836608887,-0.678373634815216,0.205069690942764,0.226770386099815,-0.952114224433899,-0.0412310138344765,0.0127547020092607,-0.999068319797516,-0.0278556793928146,-0.0647824928164482,-0.997510552406311,-0.0820975303649902,-0.0638465732336044,-0.99457710981369,0.0457011051476002,0.0179894119501114,-0.998793244361877,0.205069690942764,0.226770386099815,-0.952114224433899,-0.0820975303649902,-0.0638465732336044,-0.99457710981369,0.0402072630822659,-0.0678452104330063,-0.996885359287262,0.349754095077515,0.936694860458374,-0.0165757983922958,0.0277913957834244,0.999610900878906,-0.00236897589638829,0.0334111750125885,0.999283015727997,0.017808698117733,0.365182548761368,0.930884063243866,0.00983571447432041,-0.00800115428864956,0.99996280670166,-0.00322317238897085,0.349754095077515,0.936694860458374,-0.0165757983922958,0.365182548761368,0.930884063243866,0.00983571447432041,-0.00887713488191366,0.999796986579895,0.0180889870971441,
- 0.0711122378706932,0.867308020591736,-0.492666006088257,-0.00521556194871664,0.99982625246048,-0.0179002396762371,0.0188513975590467,0.999816179275513,0.00349781382828951,-0.0384773574769497,0.998807728290558,0.0300476495176554,-0.015219003893435,0.0911041796207428,0.995725035667419,-0.00103000085800886,0.0797440633177757,0.996814787387848,-0.00568692293018103,0.999661862850189,0.0253754928708076,-0.00624055927619338,-0.0820565521717072,0.996608138084412,-0.154671773314476,-0.177960738539696,0.97180587053299,0.023454686626792,-0.865063071250916,0.501114428043365,0.00105143454857171,0.100641779601574,0.994922161102295,-0.00735242245718837,-0.0262678172439337,0.999627888202667,-0.00583444209769368,-0.0946174934506416,0.995496690273285,-0.0056428792886436,0.0661198198795319,0.997795760631561,-0.00195706146769226,0.999839067459106,0.0178366862237453,-0.0056428792886436,0.0661198198795319,0.997795760631561,0.0243223905563354,0.0677075088024139,0.997408747673035,0.0334111750125885,0.999283015727997,0.017808698117733,0.0188513975590467,0.999816179275513,0.00349781382828951,-0.00271835969761014,0.999844610691071,-0.0174228493124247,0.0711122378706932,0.867308020591736,-0.492666006088257,-0.0131562016904354,0.999796271324158,0.0153078120201826,-0.0506567172706127,0.998706519603729,-0.00440379790961742,-0.0235351044684649,0.895938098430634,0.443555116653442,-0.0235351044684649,0.895938098430634,0.443555116653442,-0.0238542202860117,0.569874823093414,0.821385204792023,-0.0185176599770784,0.0652037709951401,0.997700095176697,-0.0131562016904354,0.999796271324158,0.0153078120201826,-0.0238542202860117,0.569874823093414,0.821385204792023,0.00832221377640963,0.0642380118370056,0.997899889945984,-0.0185176599770784,0.0652037709951401,0.997700095176697,0.0214459467679262,0.0434651114046574,0.998824775218964,0.00832221377640963,0.0642380118370056,0.997899889945984,-0.0238542202860117,0.569874823093414,0.821385204792023,0.00820102076977491,0.999566078186035,0.0282880906015635,0.0214459467679262,0.0434651114046574,0.998824775218964,-0.0238542202860117,0.569874823093414,0.821385204792023,
- -0.0235351044684649,0.895938098430634,0.443555116653442,-0.0506567172706127,0.998706519603729,-0.00440379790961742,-0.0459558553993702,0.998773157596588,-0.0184436868876219,0.0128234783187509,0.999764382839203,-0.0175167974084616,0.00820102076977491,0.999566078186035,0.0282880906015635,0.174919620156288,0.984575390815735,-0.0037924328353256,0.0962186753749847,0.99533998966217,0.00635173451155424,0.0292856581509113,0.963778674602509,0.265090465545654,-0.197822168469429,0.980090081691742,0.0170235186815262,0.174919620156288,0.984575390815735,-0.0037924328353256,0.0292856581509113,0.963778674602509,0.265090465545654,-0.0384773574769497,0.998807728290558,0.0300476495176554,-0.197822168469429,0.980090081691742,0.0170235186815262,0.0292856581509113,0.963778674602509,0.265090465545654,0.0292856581509113,0.963778674602509,0.265090465545654,0.015426998026669,0.741556107997894,0.670713484287262,-0.015219003893435,0.0911041796207428,0.995725035667419,-0.0384773574769497,0.998807728290558,0.0300476495176554,-0.179168254137039,0.00894910097122192,0.98377788066864,-0.015219003893435,0.0911041796207428,0.995725035667419,0.015426998026669,0.741556107997894,0.670713484287262,0.015426998026669,0.741556107997894,0.670713484287262,0.176604196429253,-0.0628354698419571,0.982274174690247,-0.179168254137039,0.00894910097122192,0.98377788066864,0.015426998026669,0.741556107997894,0.670713484287262,0.164657175540924,0.0267336294054985,0.98598849773407,0.176604196429253,-0.0628354698419571,0.982274174690247,0.00476242043077946,0.105659902095795,0.994390964508057,0.164657175540924,0.0267336294054985,0.98598849773407,0.015426998026669,0.741556107997894,0.670713484287262,0.0138080697506666,0.999655544757843,0.0223161224275827,0.00476242043077946,0.105659902095795,0.994390964508057,0.015426998026669,0.741556107997894,0.670713484287262,0.0292856581509113,0.963778674602509,0.265090465545654,0.0962186753749847,0.99533998966217,0.00635173451155424,0.0138080697506666,0.999655544757843,0.0223161224275827,0.0292856581509113,0.963778674602509,0.265090465545654,
- 0.0131851015612483,0.999735951423645,-0.0188191309571266,0.135987341403961,0.990689039230347,-0.0065351203083992,0.686529636383057,0.637436091899872,-0.349788814783096,0.686529636383057,0.637436091899872,-0.349788814783096,0.000309345545247197,0.0864593908190727,-0.996255338191986,0.0131851015612483,0.999735951423645,-0.0188191309571266,0.686529636383057,0.637436091899872,-0.349788814783096,0.699178338050842,0.096345879137516,-0.708425760269165,0.000309345545247197,0.0864593908190727,-0.996255338191986,-0.205867737531662,0.881014764308929,-0.42594775557518,-0.643388986587524,0.0720860734581947,-0.762137889862061,0.699178338050842,0.096345879137516,-0.708425760269165,0.686529636383057,0.637436091899872,-0.349788814783096,-0.120780952274799,0.992595851421356,-0.0128684639930725,0.135987341403961,0.990689039230347,-0.0065351203083992,0.0962186753749847,0.99533998966217,0.00635173451155424,0.174919620156288,0.984575390815735,-0.0037924328353256,-0.205867737531662,0.881014764308929,-0.42594775557518,-0.120780952274799,0.992595851421356,-0.0128684639930725,-0.0428995788097382,0.998960256576538,-0.0154239656403661,-0.0439866669476032,0.0710571706295013,-0.996501863002777,-0.072696827352047,-0.0697397142648697,-0.994912803173065,-0.607736051082611,-0.0302200093865395,-0.793563902378082,-0.643388986587524,0.0720860734581947,-0.762137889862061,-0.0111619820818305,-0.0619430132210255,-0.998017311096191,0.0948081240057945,-0.0167705826461315,-0.995354294776917,0.0582599379122257,0.0616565048694611,-0.996395707130432,-0.015511610545218,0.0684829130768776,-0.997531712055206,-0.0173779688775539,-0.999828398227692,-0.00641234219074249,-0.0111619820818305,-0.0619430132210255,-0.998017311096191,0.00189461559057236,-0.0767521932721138,-0.997048377990723,0.000616520002949983,-0.999998927116394,0.00135264021810144,0.152300029993057,-0.988334119319916,0.000432664412073791,0.174321368336678,-0.984647631645203,-0.00900328811258078,-0.0173779688775539,-0.999828398227692,-0.00641234219074249,-0.0442150756716728,-0.998748779296875,0.0233688298612833,
- 0.0847138315439224,-0.996160507202148,0.0220876652747393,0.040037963539362,-0.99912428855896,-0.0121558485552669,0.174321368336678,-0.984647631645203,-0.00900328811258078,0.152300029993057,-0.988334119319916,0.000432664412073791,-0.0213366094976664,-0.99969494342804,-0.0124375941231847,-0.0278556793928146,-0.0647824928164482,-0.997510552406311,0.0161319132894278,-0.0682896971702576,-0.997535109519959,0.040037963539362,-0.99912428855896,-0.0121558485552669,0.0161319132894278,-0.0682896971702576,-0.997535109519959,0.0190889220684767,0.069417841732502,-0.997404992580414,0.0582599379122257,0.0616565048694611,-0.996395707130432,0.0948081240057945,-0.0167705826461315,-0.995354294776917,-0.00195706146769226,0.999839067459106,0.0178366862237453,-0.00271835969761014,0.999844610691071,-0.0174228493124247,0.0188513975590467,0.999816179275513,0.00349781382828951,0.0112328119575977,0.99983149766922,0.0145192323252559,0.00160639407113194,0.0840257629752159,-0.996462285518646,-0.00271835969761014,0.999844610691071,-0.0174228493124247,0.0127721577882767,0.999776184558868,-0.0168637335300446,0.0246481075882912,0.0597456321120262,-0.997909307479858,0.107821457087994,-0.00892895366996527,-0.99413013458252,0.114810809493065,0.0842422172427177,-0.989808976650238,0.00160639407113194,0.0840257629752159,-0.996462285518646,-0.00222928100265563,-0.0783729702234268,-0.99692165851593,0.0300848726183176,0.0722210481762886,-0.99693489074707,0.043305192142725,-0.0693068131804466,-0.996654987335205,-0.072696827352047,-0.0697397142648697,-0.994912803173065,-0.0439866669476032,0.0710571706295013,-0.996501863002777,-0.0439866669476032,0.0710571706295013,-0.996501863002777,-0.0428995788097382,0.998960256576538,-0.0154239656403661,-0.00521556194871664,0.99982625246048,-0.0179002396762371,0.0300848726183176,0.0722210481762886,-0.99693489074707,-0.0384773574769497,0.998807728290558,0.0300476495176554,-0.0428995788097382,0.998960256576538,-0.0154239656403661,-0.197822168469429,0.980090081691742,0.0170235186815262,-0.0303310118615627,-0.0808949843049049,0.99626100063324,
- 0.00355404452420771,-0.0767750144004822,0.997042059898376,0.00476242043077946,0.105659902095795,0.994390964508057,-0.0246246717870235,0.102986730635166,0.994377851486206,-0.0303310118615627,-0.0808949843049049,0.99626100063324,-0.0228003859519959,-0.999657809734344,0.012819092720747,0.00198253802955151,-0.999885499477386,0.0150019051507115,0.00355404452420771,-0.0767750144004822,0.997042059898376,-0.0228003859519959,-0.999657809734344,0.012819092720747,-0.0166197326034307,-0.999510169029236,-0.0265178307890892,0.00751016149297357,-0.999548196792603,-0.0291031338274479,0.00198253802955151,-0.999885499477386,0.0150019051507115,-0.171102970838547,-0.985219240188599,0.00817320309579372,0.0900630429387093,-0.995668947696686,0.0230599828064442,0.00751016149297357,-0.999548196792603,-0.0291031338274479,-0.272526562213898,-0.962109088897705,-0.00868822727352381,-0.00611609313637018,-0.999908447265625,0.0120709473267198,-0.171102970838547,-0.985219240188599,0.00817320309579372,-0.272526562213898,-0.962109088897705,-0.00868822727352381,0.0043221041560173,-0.999866127967834,-0.015774080529809,0.0189583413302898,-0.999676167964935,0.0169762969017029,-0.00611609313637018,-0.999908447265625,0.0120709473267198,0.0043221041560173,-0.999866127967834,-0.015774080529809,0.0394850485026836,-0.999087631702423,-0.016276840120554,0.0518299005925655,-0.998494446277618,0.0179633367806673,0.0518299005925655,-0.998494446277618,0.0179633367806673,0.00301282643340528,-0.103052832186222,0.99467134475708,-0.00624055927619338,-0.0820565521717072,0.996608138084412,0.0189583413302898,-0.999676167964935,0.0169762969017029,-0.00624055927619338,-0.0820565521717072,0.996608138084412,-0.015219003893435,0.0911041796207428,0.995725035667419,-0.179168254137039,0.00894910097122192,0.98377788066864,-0.154671773314476,-0.177960738539696,0.97180587053299,-0.179168254137039,0.00894910097122192,0.98377788066864,0.176604196429253,-0.0628354698419571,0.982274174690247,-0.377213776111603,-0.188584133982658,0.906722545623779,-0.154671773314476,-0.177960738539696,0.97180587053299,
- 0.176604196429253,-0.0628354698419571,0.982274174690247,0.164657175540924,0.0267336294054985,0.98598849773407,0.235124051570892,-0.10910952091217,0.965821743011475,-0.377213776111603,-0.188584133982658,0.906722545623779,-0.015511610545218,0.0684829130768776,-0.997531712055206,-0.0191449299454689,0.999664068222046,-0.0174684897065163,-4.04289057769347e-005,0.999905228614807,-0.0137707693502307,0.00193879462312907,0.0380995012819767,-0.999272108078003,-0.0111619820818305,-0.0619430132210255,-0.998017311096191,-0.015511610545218,0.0684829130768776,-0.997531712055206,0.00193879462312907,0.0380995012819767,-0.999272108078003,0.00198210566304624,-0.00338348629884422,-0.999992311000824,0.00189461559057236,-0.0767521932721138,-0.997048377990723,-0.0278556793928146,-0.0647824928164482,-0.997510552406311,-0.0412310138344765,0.0127547020092607,-0.999068319797516,-0.00762795843183994,0.0554238185286522,-0.998433709144592,0.0190889220684767,0.069417841732502,-0.997404992580414,0.0161319132894278,-0.0682896971702576,-0.997535109519959,-0.00762795843183994,0.0554238185286522,-0.998433709144592,-0.00134929816704243,0.999939322471619,-0.0109367724508047,0.0128234783187509,0.999764382839203,-0.0175167974084616,0.0190889220684767,0.069417841732502,-0.997404992580414,0.00820102076977491,0.999566078186035,0.0282880906015635,0.0128234783187509,0.999764382839203,-0.0175167974084616,-0.00134929816704243,0.999939322471619,-0.0109367724508047,-0.00800115428864956,0.99996280670166,-0.00322317238897085,-0.00887713488191366,0.999796986579895,0.0180889870971441,-0.00222928100265563,-0.0783729702234268,-0.99692165851593,0.00160639407113194,0.0840257629752159,-0.996462285518646,0.0246481075882912,0.0597456321120262,-0.997909307479858,0.0457011051476002,0.0179894119501114,-0.998793244361877,0.0402072630822659,-0.0678452104330063,-0.996885359287262,-0.0287780128419399,-0.999461650848389,-0.0157581754028797,-0.00222928100265563,-0.0783729702234268,-0.99692165851593,0.0402072630822659,-0.0678452104330063,-0.996885359287262,0.0261456966400146,-0.999508202075958,-0.0173158925026655,
- -0.0348345376551151,-0.999186873435974,0.0203009787946939,-0.0287780128419399,-0.999461650848389,-0.0157581754028797,0.0261456966400146,-0.999508202075958,-0.0173158925026655,0.029151439666748,-0.999350666999817,0.0211752001196146,-0.00583444209769368,-0.0946174934506416,0.995496690273285,-0.0348345376551151,-0.999186873435974,0.0203009787946939,0.029151439666748,-0.999350666999817,0.0211752001196146,0.0272198189049959,-0.0827039033174515,0.996202290058136,-0.0056428792886436,0.0661198198795319,0.997795760631561,-0.00583444209769368,-0.0946174934506416,0.995496690273285,0.0272198189049959,-0.0827039033174515,0.996202290058136,0.0243223905563354,0.0677075088024139,0.997408747673035,-0.00103000085800886,0.0797440633177757,0.996814787387848,-0.015219003893435,0.0911041796207428,0.995725035667419,-0.00624055927619338,-0.0820565521717072,0.996608138084412,0.00301282643340528,-0.103052832186222,0.99467134475708,-0.00568692293018103,0.999661862850189,0.0253754928708076,-0.00521556194871664,0.99982625246048,-0.0179002396762371,-0.0428995788097382,0.998960256576538,-0.0154239656403661,-0.0384773574769497,0.998807728290558,0.0300476495176554,0.0188513975590467,0.999816179275513,0.00349781382828951,-0.00521556194871664,0.99982625246048,-0.0179002396762371,-0.00568692293018103,0.999661862850189,0.0253754928708076,0.0112328119575977,0.99983149766922,0.0145192323252559,0.107821457087994,-0.00892895366996527,-0.99413013458252,0.043305192142725,-0.0693068131804466,-0.996654987335205,0.0300848726183176,0.0722210481762886,-0.99693489074707,0.114810809493065,0.0842422172427177,-0.989808976650238,0.0394850485026836,-0.999087631702423,-0.016276840120554,0.043305192142725,-0.0693068131804466,-0.996654987335205,0.107821457087994,-0.00892895366996527,-0.99413013458252,-0.158475413918495,-0.98708164691925,-0.0235656648874283,0.0518299005925655,-0.998494446277618,0.0179633367806673,0.0394850485026836,-0.999087631702423,-0.016276840120554,-0.158475413918495,-0.98708164691925,-0.0235656648874283,-0.249978542327881,-0.968131005764008,0.015268063172698,
- -0.00735242245718837,-0.0262678172439337,0.999627888202667,0.00301282643340528,-0.103052832186222,0.99467134475708,0.0518299005925655,-0.998494446277618,0.0179633367806673,-0.249978542327881,-0.968131005764008,0.015268063172698,-0.00103000085800886,0.0797440633177757,0.996814787387848,0.00301282643340528,-0.103052832186222,0.99467134475708,-0.00735242245718837,-0.0262678172439337,0.999627888202667,0.00105143454857171,0.100641779601574,0.994922161102295,0.0127721577882767,0.999776184558868,-0.0168637335300446,-0.00271835969761014,0.999844610691071,-0.0174228493124247,-0.00195706146769226,0.999839067459106,0.0178366862237453,0.0334111750125885,0.999283015727997,0.017808698117733,0.0277913957834244,0.999610900878906,-0.00236897589638829,0.0131851015612483,0.999735951423645,-0.0188191309571266,0.0138080697506666,0.999655544757843,0.0223161224275827,0.0962186753749847,0.99533998966217,0.00635173451155424,0.135987341403961,0.990689039230347,-0.0065351203083992,0.000309345545247197,0.0864593908190727,-0.996255338191986,0.699178338050842,0.096345879137516,-0.708425760269165,0.0308943092823029,-0.0824316740036011,-0.996117770671844,0.00198253802955151,-0.999885499477386,0.0150019051507115,0.00751016149297357,-0.999548196792603,-0.0291031338274479,0.0900630429387093,-0.995668947696686,0.0230599828064442,0.00476242043077946,0.105659902095795,0.994390964508057,0.00355404452420771,-0.0767750144004822,0.997042059898376,0.235124051570892,-0.10910952091217,0.965821743011475,0.164657175540924,0.0267336294054985,0.98598849773407,-0.0442150756716728,-0.998748779296875,0.0233688298612833,-0.0173779688775539,-0.999828398227692,-0.00641234219074249,0.000616520002949983,-0.999998927116394,0.00135264021810144,0.000617929792497307,-0.999945402145386,0.0104335956275463,0.000617929792497307,-0.999945402145386,0.0104335956275463,0.000617929792497307,-0.999945402145386,0.0104335956275463,0.000628679699730128,-0.999752581119537,0.0222321096807718,-0.022401574999094,-0.109576486051083,0.993725895881653,-0.0442150756716728,-0.998748779296875,0.0233688298612833,
- 0.000628679699730128,-0.999752581119537,0.0222321096807718,-0.0016912774881348,-0.0960505530238152,0.995375037193298,-0.0185176599770784,0.0652037709951401,0.997700095176697,-0.022401574999094,-0.109576486051083,0.993725895881653,-0.0016912774881348,-0.0960505530238152,0.995375037193298,-0.00189136026892811,0.0146848438307643,0.999890446662903,-0.00190897088032216,0.0435907356441021,0.999047636985779,-0.0427261367440224,0.0667523443698883,0.996854364871979,-0.0301756449043751,-0.0872265323996544,0.99573141336441,0.0171760860830545,-0.0942104011774063,0.995404124259949,0.0214459467679262,0.0434651114046574,0.998824775218964,-0.0301756449043751,-0.0872265323996544,0.99573141336441,-0.025453919544816,-0.999398708343506,0.023545304313302,0.0847138315439224,-0.996160507202148,0.0220876652747393,0.0171760860830545,-0.0942104011774063,0.995404124259949,-0.025453919544816,-0.999398708343506,0.023545304313302,-0.0213366094976664,-0.99969494342804,-0.0124375941231847,0.040037963539362,-0.99912428855896,-0.0121558485552669,0.0847138315439224,-0.996160507202148,0.0220876652747393,-8.88334907358512e-005,0.99991101026535,0.0133416661992669,-5.05446405441035e-005,0.999998271465302,-0.00188297580461949,-5.05446332681458e-005,0.999998211860657,-0.00188297592103481,-5.05446405441035e-005,0.999998271465302,-0.00188297592103481,-4.04289057769347e-005,0.999905228614807,-0.0137707693502307,-0.0191449299454689,0.999664068222046,-0.0174684897065163,-0.0131562016904354,0.999796271324158,0.0153078120201826,0.82678210735321,0.500837326049805,-0.256112158298492,0.920851647853851,0.213279947638512,-0.326410710811615,0.827195703983307,0.274961292743683,-0.490044385194778,0.758483588695526,0.501094520092011,-0.416661649942398,0.758483648300171,0.501094579696655,-0.416661709547043,0.924628019332886,0.377320885658264,0.05188362672925,0.974779665470123,0.20482137799263,0.0886149257421494,0.96699470281601,0.21732671558857,-0.13300496339798,0.89666610956192,0.429209917783737,-0.108483977615833,0.89666610956192,0.429209917783737,-0.108483977615833,0.96699470281601,0.21732671558857,-0.13300496339798,
- 0.920851647853851,0.213279947638512,-0.326410710811615,0.82678210735321,0.500837326049805,-0.256112158298492,0.974779665470123,0.20482137799263,0.0886149257421494,0.924916625022888,0.252017825841904,0.284633278846741,0.947166204452515,0.0189027525484562,0.320185601711273,0.947166204452515,0.0189027488231659,0.320185601711273,0.990510046482086,-0.0165559984743595,0.136439293622971,0.974779665470123,0.20482137799263,0.0886149257421494,0.990510046482086,-0.0165559984743595,0.136439293622971,0.977042257785797,-0.148640170693398,-0.152625650167465,0.96699470281601,0.21732671558857,-0.13300496339798,0.920851647853851,0.213279947638512,-0.326410710811615,0.96699470281601,0.21732671558857,-0.13300496339798,0.977042257785797,-0.148640170693398,-0.152625650167465,0.901991963386536,-0.103337742388248,-0.419203877449036,0.827195703983307,0.274961292743683,-0.490044385194778,0.920851647853851,0.213279947638512,-0.326410710811615,0.901991963386536,-0.103337742388248,-0.419203877449036,0.839936137199402,-0.0481060966849327,-0.540548801422119,0.839936196804047,-0.0481061078608036,-0.540548861026764,0.892622709274292,0.368513822555542,0.259657710790634,0.892622768878937,0.368513852357864,0.259657710790634,0.924916625022888,0.252017825841904,0.284633278846741,0.974779665470123,0.20482137799263,0.0886149257421494,0.924628019332886,0.377320885658264,0.05188362672925,0.20142163336277,0.966186881065369,0.160972371697426,0.261581659317017,0.963310182094574,0.060071375221014,0.175888389348984,0.978545069694519,0.107297815382481,0.37954568862915,0.831422924995422,0.405808836221695,0.254200667142868,0.943125545978546,-0.214234098792076,0.175888389348984,0.978545069694519,0.107297815382481,0.261581659317017,0.963310182094574,0.060071375221014,0.326125741004944,0.932870447635651,-0.15295372903347,0.381012409925461,0.838665425777435,-0.389191329479218,0.254200667142868,0.943125545978546,-0.214234098792076,0.326125741004944,0.932870447635651,-0.15295372903347,0.352409422397614,0.907585263252258,-0.228246808052063,-0.0171621087938547,-0.560099065303802,-0.828247845172882,
- 0.0276490189135075,-0.829891800880432,0.557238757610321,-0.358639240264893,-0.745570540428162,0.56169593334198,0.0355495363473892,-0.556599497795105,-0.830020010471344,0.0355495363473892,-0.556599497795105,-0.830020010471344,0.0187879204750061,-0.297034740447998,-0.954681813716888,-0.0230744276195765,-0.33311739563942,-0.9426029920578,-0.0171621087938547,-0.560099065303802,-0.828247845172882,0.0276490189135075,-0.829891800880432,0.557238757610321,-0.0238577537238598,-0.995116531848907,0.095780648291111,-0.303680866956711,-0.952428579330444,-0.0256495960056782,-0.358639240264893,-0.745570540428162,0.56169593334198,-0.998124718666077,0.04922766238451,-0.0363816618919373,0.0204073041677475,0.79400897026062,-0.607563436031342,-0.0328711979091167,-0.303716391324997,-0.952195227146149,-0.99987918138504,-0.00409120321273804,-0.0150017021223903,0.00923863518983126,-0.546728670597076,-0.837258875370026,-0.042790487408638,-0.829517960548401,0.556838274002075,-0.0677469000220299,-0.826917052268982,0.558227896690369,-0.0460318475961685,-0.53950297832489,-0.840724468231201,0.0191804114729166,-0.323059231042862,-0.946184396743774,0.00923863518983126,-0.546728670597076,-0.837258875370026,-0.0460318475961685,-0.53950297832489,-0.840724468231201,-0.0328711979091167,-0.303716391324997,-0.952195227146149,-0.042790487408638,-0.829517960548401,0.556838274002075,-0.0213920120149851,-0.999766886234283,-0.00290286610834301,-0.106244713068008,-0.994339942932129,2.84588668364449e-006,-0.0677469000220299,-0.826917052268982,0.558227896690369,0.0187879204750061,-0.297034740447998,-0.954681813716888,0.0449928678572178,0.802994608879089,-0.594285428524017,-0.0576099641621113,0.787920475006104,-0.613076269626617,-0.0230744276195765,-0.33311739563942,-0.9426029920578,-0.0328711979091167,-0.303716391324997,-0.952195227146149,0.0204073041677475,0.79400897026062,-0.607563436031342,0.0721056088805199,0.790280222892761,-0.608488321304321,0.0191804114729166,-0.323059231042862,-0.946184396743774,-0.0460318475961685,-0.53950297832489,-0.840724468231201,-0.0677469000220299,-0.826917052268982,0.558227896690369,
- -0.998144567012787,-0.0500042587518692,0.0347410850226879,-0.99981564283371,-0.00892526004463434,-0.0170041751116514,-0.0328711979091167,-0.303716391324997,-0.952195227146149,-0.0460318475961685,-0.53950297832489,-0.840724468231201,-0.99981564283371,-0.00892526004463434,-0.0170041751116514,-0.99987918138504,-0.00409120321273804,-0.0150017021223903,-0.0677469000220299,-0.826917052268982,0.558227896690369,-0.106244713068008,-0.994339942932129,2.84588668364449e-006,-0.999689877033234,-0.0249027851969004,2.86104727820202e-006,-0.998144567012787,-0.0500042587518692,0.0347410850226879,-0.0576099641621113,0.787920475006104,-0.613076269626617,0.0449928678572178,0.802994608879089,-0.594285428524017,0.103947728872299,0.994582712650299,2.17711676668841e-005,-0.0759314149618149,0.82355934381485,-0.562125027179718,-0.0230744276195765,-0.33311739563942,-0.9426029920578,-0.0576099641621113,0.787920475006104,-0.613076269626617,-0.0115232737734914,0.784991860389709,-0.619399011135101,0.0231868997216225,-0.358160853385925,-0.933371841907501,-0.0171621087938547,-0.560099065303802,-0.828247845172882,-0.0230744276195765,-0.33311739563942,-0.9426029920578,0.0231868997216225,-0.358160853385925,-0.933371841907501,0.025660015642643,-0.439798384904861,-0.897729933261871,0.0305518172681332,-0.522251129150391,-0.852244317531586,-0.0576099641621113,0.787920475006104,-0.613076269626617,-0.0759314149618149,0.82355934381485,-0.562125027179718,-0.012706202454865,0.825544834136963,-0.564193546772003,-0.0124280750751495,0.812281429767609,-0.583133339881897,-0.012428074143827,0.812281370162964,-0.583133339881897,-0.0124280732125044,0.812281370162964,-0.583133339881897,-0.0115232737734914,0.784991860389709,-0.619399011135101,0.0191804114729166,-0.323059231042862,-0.946184396743774,0.0721056088805199,0.790280222892761,-0.608488321304321,0.0449928678572178,0.802994608879089,-0.594285428524017,0.0187879204750061,-0.297034740447998,-0.954681813716888,0.0187879204750061,-0.297034740447998,-0.954681813716888,0.0355495363473892,-0.556599497795105,-0.830020010471344,
- 0.00923863518983126,-0.546728670597076,-0.837258875370026,0.0191804114729166,-0.323059231042862,-0.946184396743774,0.0355495363473892,-0.556599497795105,-0.830020010471344,-0.358639240264893,-0.745570540428162,0.56169593334198,-0.042790487408638,-0.829517960548401,0.556838274002075,0.00923863518983126,-0.546728670597076,-0.837258875370026,-0.042790487408638,-0.829517960548401,0.556838274002075,0.817432999610901,-0.574815273284912,-0.0372927747666836,-0.0213920120149851,-0.999766886234283,-0.00290286610834301,-0.358639240264893,-0.745570540428162,0.56169593334198,-0.303680866956711,-0.952428579330444,-0.0256495960056782,0.817432999610901,-0.574815273284912,-0.0372927747666836,-0.042790487408638,-0.829517960548401,0.556838274002075,0.0721056088805199,0.790280222892761,-0.608488321304321,0.0838587880134583,0.822857856750488,-0.562025487422943,0.103947728872299,0.994582712650299,2.17711676668841e-005,0.0449928678572178,0.802994608879089,-0.594285428524017,0.0838587880134583,0.822857856750488,-0.562025487422943,0.0721056088805199,0.790280222892761,-0.608488321304321,0.0204073041677475,0.79400897026062,-0.607563436031342,0.00670549739152193,0.826191842556,-0.563349008560181,-0.99836403131485,0.0571769848465919,-1.09629731070982e-007,-0.998124718666077,0.04922766238451,-0.0363816618919373,-0.99987918138504,-0.00409120321273804,-0.0150017021223903,-0.99981564283371,-0.00892526004463434,-0.0170041751116514,-0.998144567012787,-0.0500042587518692,0.0347410850226879,-0.999689877033234,-0.0249027851969004,2.86104727820202e-006,-0.0458318144083023,-0.563841700553894,0.82461029291153,0.0349525697529316,-0.556832373142242,0.829889237880707,-0.51507955789566,-0.689418494701386,-0.509308457374573,0.0334121435880661,-0.828067481517792,-0.559631943702698,0.0349525697529316,-0.556832373142242,0.829889237880707,-0.0458318144083023,-0.563841700553894,0.82461029291153,-0.0533897466957569,-0.334264189004898,0.940966010093689,0.01774612814188,-0.297107666730881,0.954679071903229,0.0334121435880661,-0.828067481517792,-0.559631943702698,-0.51507955789566,-0.689418494701386,-0.509308457374573,
- -0.303680866956711,-0.952428579330444,-0.0256495960056782,-0.0238577537238598,-0.995116531848907,0.095780648291111,-0.998122572898865,0.0492426380515099,0.0364199131727219,-0.999879121780396,-0.00409412616863847,0.014996750280261,-0.0328809954226017,-0.303609311580658,0.952229082584381,0.0204197838902473,0.793797433376312,0.607839286327362,0.00927628856152296,-0.546733558177948,0.837255358695984,-0.0460544899106026,-0.539491534233093,0.840730607509613,-0.0677269399166107,-0.826734185218811,-0.558501303195953,-0.0458060838282108,-0.829360127449036,-0.556833684444427,0.0192152187228203,-0.322927713394165,0.946228504180908,-0.0328809954226017,-0.303609311580658,0.952229082584381,-0.0460544899106026,-0.539491534233093,0.840730607509613,0.00927628856152296,-0.546733558177948,0.837255358695984,-0.0458060838282108,-0.829360127449036,-0.556833684444427,-0.0677269399166107,-0.826734185218811,-0.558501303195953,-0.106244713068008,-0.994339942932129,2.84588668364449e-006,-0.0213920120149851,-0.999766886234283,-0.00290286610834301,0.01774612814188,-0.297107666730881,0.954679071903229,-0.0533897466957569,-0.334264189004898,0.940966010093689,-0.0771909579634666,0.79367870092392,0.603419959545136,0.0451516360044479,0.802783787250519,0.59455817937851,-0.0771909579634666,0.79367870092392,0.603419959545136,-0.0983419492840767,0.826724886894226,0.553944766521454,0.103947728872299,0.994582712650299,2.17711676668841e-005,0.0451516360044479,0.802783787250519,0.59455817937851,-0.0328809954226017,-0.303609311580658,0.952229082584381,0.0192152187228203,-0.322927713394165,0.946228504180908,0.0721236914396286,0.790067970752716,0.608761608600616,0.0204197838902473,0.793797433376312,0.607839286327362,-0.0460544899106026,-0.539491534233093,0.840730607509613,-0.99981552362442,-0.00893013924360275,0.0170042719691992,-0.998143196105957,-0.0500109829008579,-0.034771766513586,-0.0677269399166107,-0.826734185218811,-0.558501303195953,-0.0328809954226017,-0.303609311580658,0.952229082584381,-0.999879121780396,-0.00409412616863847,0.014996750280261,-0.99981552362442,-0.00893013924360275,0.0170042719691992,
- -0.0460544899106026,-0.539491534233093,0.840730607509613,-0.0677269399166107,-0.826734185218811,-0.558501303195953,-0.998143196105957,-0.0500109829008579,-0.034771766513586,-0.999689877033234,-0.0249027851969004,2.86104727820202e-006,-0.106244713068008,-0.994339942932129,2.84588668364449e-006,-0.0533897466957569,-0.334264189004898,0.940966010093689,0.0293906480073929,-0.349560379981995,0.936452746391296,-0.0152695178985596,0.798467636108398,0.601844131946564,-0.0771909579634666,0.79367870092392,0.603419959545136,-0.0458318144083023,-0.563841700553894,0.82461029291153,0.0442274585366249,-0.546750247478485,0.836126744747162,0.0325067490339279,-0.439255774021149,0.897773742675781,0.0293906480073929,-0.349560379981995,0.936452746391296,-0.0533897466957569,-0.334264189004898,0.940966010093689,-0.0771909579634666,0.79367870092392,0.603419959545136,-0.0152695178985596,0.798467636108398,0.601844131946564,-0.0159678105264902,0.813099205493927,0.581906139850616,-0.0159678086638451,0.813099145889282,0.581906080245972,-0.0162343177944422,0.834890723228455,0.550176382064819,-0.0983419492840767,0.826724886894226,0.553944766521454,0.0192152187228203,-0.322927713394165,0.946228504180908,0.01774612814188,-0.297107666730881,0.954679071903229,0.0451516360044479,0.802783787250519,0.59455817937851,0.0721236914396286,0.790067970752716,0.608761608600616,0.01774612814188,-0.297107666730881,0.954679071903229,0.0192152187228203,-0.322927713394165,0.946228504180908,0.00927628856152296,-0.546733558177948,0.837255358695984,0.0349525697529316,-0.556832373142242,0.829889237880707,0.0349525697529316,-0.556832373142242,0.829889237880707,0.00927628856152296,-0.546733558177948,0.837255358695984,-0.0458060838282108,-0.829360127449036,-0.556833684444427,-0.51507955789566,-0.689418494701386,-0.509308457374573,-0.51507955789566,-0.689418494701386,-0.509308457374573,-0.0458060838282108,-0.829360127449036,-0.556833684444427,-0.0213920120149851,-0.999766886234283,-0.00290286610834301,-0.51507955789566,-0.689418494701386,-0.509308457374573,-0.0213920120149851,-0.999766886234283,-0.00290286610834301,
- 0.817432999610901,-0.574815273284912,-0.0372927747666836,-0.303680866956711,-0.952428579330444,-0.0256495960056782,0.00671787047758698,0.82601535320282,0.563607633113861,0.0204197838902473,0.793797433376312,0.607839286327362,0.0721236914396286,0.790067970752716,0.608761608600616,0.0838507488369942,0.82268089056015,0.562285780906677,-0.999689877033234,-0.0249027851969004,2.86104727820202e-006,-0.998143196105957,-0.0500109829008579,-0.034771766513586,-0.99981552362442,-0.00893013924360275,0.0170042719691992,-0.999879121780396,-0.00409412616863847,0.014996750280261,-0.998122572898865,0.0492426380515099,0.0364199131727219,-0.99836403131485,0.0571769848465919,-1.09629731070982e-007,-0.99836403131485,0.0571769848465919,-1.09629731070982e-007,-0.998122572898865,0.0492426380515099,0.0364199131727219,0.0204197838902473,0.793797433376312,0.607839286327362,0.00671787047758698,0.82601535320282,0.563607633113861,0.0721236914396286,0.790067970752716,0.608761608600616,0.0451516360044479,0.802783787250519,0.59455817937851,0.103947728872299,0.994582712650299,2.17711676668841e-005,0.0838507488369942,0.82268089056015,0.562285780906677,0.00670549739152193,0.826191842556,-0.563349008560181,0.0204073041677475,0.79400897026062,-0.607563436031342,-0.998124718666077,0.04922766238451,-0.0363816618919373,-0.99836403131485,0.0571769848465919,-1.09629731070982e-007,0.00671787047758698,0.82601535320282,0.563607633113861,0.0838507488369942,0.82268089056015,0.562285780906677,0.0838587880134583,0.822857856750488,-0.562025487422943,0.00670549739152193,0.826191842556,-0.563349008560181,-0.0983419492840767,0.826724886894226,0.553944766521454,-0.0162343177944422,0.834890723228455,0.550176382064819,-0.012706202454865,0.825544834136963,-0.564193546772003,-0.0759314149618149,0.82355934381485,-0.562125027179718,0.00671787047758698,0.82601535320282,0.563607633113861,0.00670549739152193,0.826191842556,-0.563349008560181,-0.99836403131485,0.0571769848465919,-1.09629731070982e-007,0.0838507488369942,0.82268089056015,0.562285780906677,0.103947728872299,0.994582712650299,2.17711676668841e-005,
- 0.0838587880134583,0.822857856750488,-0.562025487422943,-0.0983419492840767,0.826724886894226,0.553944766521454,-0.0759314149618149,0.82355934381485,-0.562125027179718,0.103947728872299,0.994582712650299,2.17711676668841e-005,0.0479571782052517,-0.833203375339508,0.550883293151855,0.0276490189135075,-0.829891800880432,0.557238757610321,-0.0171621087938547,-0.560099065303802,-0.828247845172882,0.0305518172681332,-0.522251129150391,-0.852244317531586,0.0620072819292545,-0.983236193656921,0.171469002962112,-0.0238577537238598,-0.995116531848907,0.095780648291111,0.0276490189135075,-0.829891800880432,0.557238757610321,0.0479571782052517,-0.833203375339508,0.550883293151855,0.0463012494146824,-0.805970728397369,0.590141832828522,0.0463012531399727,-0.805970728397369,0.590141892433167,0.0463012531399727,-0.805970728397369,0.590141892433167,0.0442274585366249,-0.546750247478485,0.836126744747162,-0.0458318144083023,-0.563841700553894,0.82461029291153,0.0334121435880661,-0.828067481517792,-0.559631943702698,0.0600840337574482,-0.823119044303894,-0.564681351184845,0.0600840337574482,-0.823119044303894,-0.564681351184845,0.0334121435880661,-0.828067481517792,-0.559631943702698,-0.0238577537238598,-0.995116531848907,0.095780648291111,0.0620072819292545,-0.983236193656921,0.171469002962112,0.058355774730444,-0.809523940086365,-0.58417946100235,0.0583557672798634,-0.809523940086365,-0.58417946100235,0.915960192680359,0.249924376606941,0.313934117555618,0.877556264400482,0.189382806420326,0.440487533807755,0.877556204795837,0.189382821321487,0.440487533807755,0.953488707542419,-0.0349576063454151,0.299394696950912,0.983069121837616,0.0569503754377365,0.174160152673721,0.84966778755188,0.51131010055542,-0.128944113850594,0.897023797035217,0.436091989278793,-0.0719184651970863,0.971914887428284,0.1604965031147,0.172110870480537,0.983001351356506,0.113548956811428,0.144274339079857,0.983001351356506,0.113548956811428,0.144274339079857,0.925437211990356,-0.229606702923775,0.301407933235168,0.930852591991425,-0.294656038284302,0.216081529855728,
- 0.995905935764313,0.0682935044169426,-0.0592241324484348,0.894868433475494,0.235484674572945,0.379153609275818,0.903757095336914,0.251478582620621,0.346383720636368,0.971149861812592,0.0939990654587746,0.219162240624428,0.980100810527802,0.130786910653114,0.149322599172592,0.903757095336914,0.251478582620621,0.346383720636368,0.915960192680359,0.249924376606941,0.313934117555618,0.983069121837616,0.0569503754377365,0.174160152673721,0.971149861812592,0.0939990654587746,0.219162240624428,0.932239174842834,0.339460730552673,-0.125286072492599,0.894868433475494,0.235484674572945,0.379153609275818,0.980100810527802,0.130786910653114,0.149322599172592,0.983001351356506,0.113548956811428,0.144274339079857,0.971914887428284,0.1604965031147,0.172110870480537,0.878970623016357,-0.222687125205994,0.421688288450241,0.925437211990356,-0.229606702923775,0.301407933235168,0.971149861812592,0.0939990654587746,0.219162240624428,0.996499955654144,-0.0800707638263702,0.0240105483680964,0.913927018642426,-0.317812830209732,0.252453058958054,0.980100810527802,0.130786910653114,0.149322599172592,0.983069121837616,0.0569503754377365,0.174160152673721,0.98685622215271,-0.109582848846912,0.118769943714142,0.996499955654144,-0.0800707638263702,0.0240105483680964,0.971149861812592,0.0939990654587746,0.219162240624428,0.953488707542419,-0.0349576063454151,0.299394696950912,0.964502692222595,-0.154588237404823,0.214095830917358,0.964502692222595,-0.154588222503662,0.21409584581852,0.98685622215271,-0.109582848846912,0.118769943714142,0.983069121837616,0.0569503754377365,0.174160152673721,0.862030982971191,0.356688737869263,-0.360105067491531,0.84966778755188,0.51131010055542,-0.128944113850594,0.983001351356506,0.113548956811428,0.144274339079857,0.995905935764313,0.0682935044169426,-0.0592241324484348,0.915944933891296,0.387352287769318,-0.104896366596222,0.862030982971191,0.356688737869263,-0.360105067491531,0.995905935764313,0.0682935044169426,-0.0592241324484348,0.98722231388092,0.108224272727966,0.116959638893604,0.915944933891296,0.387352257966995,-0.104896359145641,
- 0.930852591991425,-0.294656038284302,0.216081529855728,0.887356042861938,-0.266900688409805,0.375983059406281,0.887356042861938,-0.266900688409805,0.375983059406281,0.98722231388092,0.108224272727966,0.116959638893604,0.995905935764313,0.0682935044169426,-0.0592241324484348,0.980100810527802,0.130786910653114,0.149322599172592,0.971914887428284,0.1604965031147,0.172110870480537,0.897023797035217,0.436091989278793,-0.0719184651970863,0.932239174842834,0.339460730552673,-0.125286072492599,0.913927018642426,-0.317812830209732,0.252453058958054,0.878970623016357,-0.222687125205994,0.421688288450241,0.971914887428284,0.1604965031147,0.172110870480537,0.980100810527802,0.130786910653114,0.149322599172592,-0.00261345063336194,-0.999964237213135,-0.00804276205599308,-0.00261345086619258,-0.999964237213135,-0.00804276391863823,-0.00261345063336194,-0.99996417760849,-0.00804276205599308,-0.00261345086619258,-0.99996429681778,-0.00804276298731565,-0.00261345063336194,-0.99996417760849,-0.00804276298731565,-0.00261345086619258,-0.999964237213135,-0.00804276298731565,-1,2.75098869906287e-007,0,-1,2.75098898327997e-007,0,-1,2.75098869906287e-007,0,-1,2.75098869906287e-007,0,-1,2.75098869906287e-007,0,0.999696612358093,-0.0246307384222746,0.000103565005701967,0.999696612358093,-0.0246307365596294,0.000103564991150051,0.999696552753448,-0.0246307384222746,0.000103564991150051,0.999696612358093,-0.0246307365596294,0.000103564998426009,0.999696671962738,-0.0246307402849197,0.000103565005701967,0.999696612358093,-0.0246307365596294,0.000103564991150051,-0.0110863130539656,0.999836921691895,-0.01426044665277,-0.0110863130539656,0.99983686208725,-0.0142604457214475,-0.0110863139852881,0.999836921691895,-0.01426044665277,-0.0110863111913204,0.99983686208725,-0.0142604447901249,-0.011086312122643,0.99983686208725,-0.0142604447901249,-0.00159748154692352,-0.00551896682009101,-0.999983489513397,-0.00159748154692352,-0.0055189672857523,-0.999983489513397,-0.00159748154692352,-0.00551896635442972,-0.999983489513397,-0.0015974814305082,-0.00551896682009101,-0.999983489513397,
- -0.00159748154692352,-0.0055189672857523,-0.999983489513397,2.67879768216517e-005,-0.00539666227996349,0.99998539686203,2.67879768216517e-005,-0.00539666181430221,0.99998539686203,2.67879731836729e-005,-0.00539666181430221,0.99998539686203,2.67879768216517e-005,-0.00539666181430221,0.99998539686203,2.67879786406411e-005,-0.00539666181430221,0.99998551607132,2.67879786406411e-005,-0.00539666227996349,0.999985456466675,0.4979547560215,0.34716522693634,0.794680595397949,0.497954815626144,0.34716522693634,0.794680655002594,0.497954815626144,0.347165256738663,0.794680714607239,-0.680049240589142,-0.509723424911499,0.526986837387085,-0.680049180984497,-0.509723365306854,0.526986837387085,-0.680049240589142,-0.509723424911499,0.52698677778244,0.569706678390503,-0.659730136394501,-0.490092247724533,0.569706678390503,-0.659730195999146,-0.490092247724533,0.569706618785858,-0.659730136394501,-0.490092277526855,0.000561289023607969,-0.0141615951433778,-0.999899625778198,0.000561289023607969,-0.0141615942120552,-0.999899625778198,0.000561289023607969,-0.0141615932807326,-0.999899566173553,0.000561289023607969,-0.0141615942120552,-0.999899506568909,0.000561289023607969,-0.0141615932807326,-0.999899566173553,0.000561289023607969,-0.0141615932807326,-0.999899506568909,-0.0120121371001005,-0.0374249406158924,0.999227225780487,-0.0120121389627457,-0.0374249517917633,0.999227285385132,-0.0120121380314231,-0.0374249443411827,0.999227225780487,-0.0120121361687779,-0.0374249443411827,0.999227225780487,-0.0120121371001005,-0.0374249406158924,0.999227285385132,-0.0120121361687779,-0.0374249406158924,0.999227225780487,-0.999999940395355,1.93347403865118e-007,0,-1,1.93347418075973e-007,0,-1,1.93347446497683e-007,0,-1,1.93347418075973e-007,0,-1,1.93347418075973e-007,0,-1,1.93347403865118e-007,0,-0.253913760185242,0.876939713954926,-0.408049702644348,-0.253913730382919,0.876939713954926,-0.408049702644348,-0.253913760185242,0.876939713954926,-0.408049702644348,-0.356357663869858,-0.608149111270905,0.709340333938599,-0.356357663869858,-0.608149170875549,0.709340333938599,
- -0.356357634067535,-0.608149230480194,0.709340393543243,0.0105943204835057,-0.99921578168869,-0.038150567561388,0.0105943214148283,-0.99921578168869,-0.038150567561388,0.0105943214148283,-0.999215841293335,-0.038150567561388,0.0105943223461509,-0.99921578168869,-0.038150567561388,0.0105943223461509,-0.999215841293335,-0.038150567561388,0.0105943214148283,-0.99921578168869,-0.0381505638360977,0.999295890331268,0.000527946569491178,-0.0375161394476891,0.999295830726624,0.000527946569491178,-0.0375161394476891,0.999295771121979,0.000527946511283517,-0.0375161357223988,0.999295890331268,0.000527946569491178,-0.0375161431729794,0.999295830726624,0.000527946569491178,-0.0375161357223988,0.999295830726624,0.000527946569491178,-0.0375161394476891,0.721363544464111,-0.187582448124886,0.666668951511383,0.721363484859467,-0.187582433223724,0.666668891906738,0.721363484859467,-0.187582433223724,0.666668951511383,-0.0105874827131629,0.999216198921204,0.0381430722773075,-0.0105874817818403,0.999216198921204,0.0381430685520172,-0.0105874827131629,0.999216198921204,0.0381430722773075,-0.0105874817818403,0.999216258525848,0.0381430685520172,-0.0105874808505178,0.999216198921204,0.0381430685520172,-0.0105874817818403,0.999216139316559,0.0381430685520172,0.647127449512482,0.506036102771759,-0.570222318172455,0.647127389907837,0.506036162376404,-0.570222318172455,0.647127449512482,0.506036162376404,-0.570222318172455,-0.00418483186513186,0.999980688095093,0.00460396381095052,-0.00418483093380928,0.999980628490448,0.00460396334528923,-0.00418483093380928,0.999980628490448,0.00460396287962794,-0.00418483186513186,0.999980628490448,0.00460396381095052,-0.00418483093380928,0.999980628490448,0.00460396334528923,0.0308411922305822,-0.00626999232918024,0.999504745006561,-0.00451949192211032,-0.00913008023053408,0.999948143959045,0.00160393153782934,-0.00863558705896139,0.99996143579483,0.0308411866426468,-0.00626999186351895,0.999504625797272,0.0130838472396135,-0.998842716217041,-0.0462841056287289,0.013083846308291,-0.998842656612396,-0.0462841019034386,
- 0.013083846308291,-0.998842597007751,-0.0462841019034386,0.013083846308291,-0.998842656612396,-0.0462841019034386,0.0130838472396135,-0.998842656612396,-0.0462841056287289,0.013083846308291,-0.998842716217041,-0.0462841056287289,0.013083846308291,-0.998842656612396,-0.0462841056287289,-0.999339997768402,3.59342157025822e-005,-0.0363246276974678,-0.999340057373047,3.59342157025822e-005,-0.0363246314227581,-0.999339997768402,3.59342120646033e-005,-0.0363246276974678,-0.999339997768402,3.59342157025822e-005,-0.0363246276974678,-0.999340057373047,3.59342120646033e-005,-0.0363246314227581,0.999757528305054,0.0120248449966311,0.0184464920312166,0.999757587909698,0.0120248449966311,0.0184464920312166,0.999757528305054,0.0120248449966311,0.0184464901685715,0.999757587909698,0.0120248449966311,0.0184464920312166,0.999757528305054,0.0120248440653086,0.0184464901685715,-0.539166569709778,-0.580972731113434,0.609729468822479,-0.539166569709778,-0.580972790718079,0.609729528427124,-0.539166569709778,-0.580972790718079,0.609729528427124,0.00160393153782934,-0.00863558705896139,0.99996143579483,-0.00451949192211032,-0.00913008023053408,0.999948143959045,-0.0310577601194382,-0.0112693337723613,0.999453961849213,-0.0310577638447285,-0.0112693347036839,0.999453961849213,-0.0310577638447285,-0.0112693356350064,0.999454140663147,0.0323379896581173,0.0294285044074059,-0.999043583869934,0.0323379896581173,0.0294285025447607,-0.999043643474579,0.0323379933834076,0.0294285044074059,-0.999043703079224,0.0323379933834076,0.0294285044074059,-0.999043643474579,0.032337985932827,0.0294285025447607,-0.999043643474579,0.915339052677155,-0.100676089525223,-0.389896005392075,0.915339052677155,-0.100676089525223,-0.389896035194397,0.91533899307251,-0.100676074624062,-0.389895975589752,-0.000536005070898682,0.0140418391674757,-0.999901235103607,-0.000536005129106343,0.0140418400987983,-0.999901354312897,-0.000536005129106343,0.0140418400987983,-0.999901235103607,-0.000536005070898682,0.0140418400987983,-0.999901354312897,-0.000536005129106343,0.0140418410301209,-0.999901354312897,
- -0.000536005070898682,0.0140418382361531,-0.999901235103607,0.0114823617041111,0.0371197424829006,0.999244749546051,0.0114823617041111,0.0371197462081909,0.999244868755341,0.0114823617041111,0.0371197499334812,0.999244868755341,0.0114823626354337,0.0371197499334812,0.999244868755341,0.0114823607727885,0.0371197424829006,0.999244809150696,0.0114823617041111,0.0371197499334812,0.999244868755341,1,-6.6869375814349e-007,0,0.999999940395355,-6.68693644456653e-007,0,0.999999940395355,-6.68693644456653e-007,0,1,-6.68693701300072e-007,0,1,-6.6869375814349e-007,0,1,-6.68693644456653e-007,0,0.244911909103394,-0.877724647521973,-0.411846607923508,0.24491186439991,-0.877724647521973,-0.411846578121185,0.24491186439991,-0.877724647521973,-0.411846607923508,0.343556940555573,0.60832154750824,0.715481221675873,0.343556940555573,0.608321607112885,0.715481221675873,0.343557000160217,0.608321607112885,0.715481281280518,-0.0102097243070602,0.999207735061646,-0.0384668186306953,-0.0102097243070602,0.999207675457001,-0.038466814905405,-0.0102097243070602,0.999207735061646,-0.0384668223559856,-0.0102097243070602,0.999207675457001,-0.038466814905405,-0.0102097252383828,0.999207675457001,-0.0384668186306953,-0.0102097233757377,0.999207675457001,-0.038466814905405,-0.999227821826935,-0.000435241527156904,-0.039287805557251,-0.99922788143158,-0.000435241498053074,-0.0392877981066704,-0.999227821826935,-0.000435241498053074,-0.0392878018319607,-0.999227821826935,-0.000435241498053074,-0.0392878018319607,-0.99922776222229,-0.000435241498053074,-0.0392878018319607,-0.99922788143158,-0.000435241527156904,-0.0392878018319607,-0.706064283847809,0.190500631928444,0.682043075561523,-0.706064224243164,0.190500631928444,0.682043075561523,-0.706064224243164,0.190500631928444,0.682043075561523,0.0102026974782348,-0.999207973480225,0.0384619645774364,0.0102026984095573,-0.999208033084869,0.0384619683027267,0.0102026984095573,-0.999207973480225,0.0384619645774364,0.0102026984095573,-0.999207973480225,0.0384619645774364,0.0102026984095573,-0.999208033084869,0.0384619683027267,
- 0.0102026984095573,-0.999208092689514,0.0384619683027267,-0.631627976894379,-0.512054622173309,-0.582104921340942,-0.631628036499023,-0.512054681777954,-0.582104921340942,-0.631627976894379,-0.512054681777954,-0.582104921340942,0.0033318642526865,0.999953746795654,-0.00901921838521957,0.00333186448551714,0.999953806400299,-0.00901922024786472,0.0033318642526865,0.999953746795654,-0.00901921931654215,0.00333186401985586,0.999953746795654,-0.00901921838521957,0.0033318642526865,0.999953746795654,-0.00901921931654215,0.0033318642526865,0.999953746795654,-0.00901921931654215,0.999999940395355,-8.24763844775589e-007,0,1,-8.24763844775589e-007,0,1,-8.24763901619008e-007,0,1,-8.2476378793217e-007,0,1,-8.2476378793217e-007,0,-0.999809980392456,0.0194871965795755,0.000120388351206202,-0.999810099601746,0.0194872003048658,0.000120388373034075,-0.999810099601746,0.0194871984422207,0.00012038835848216,-0.999810099601746,0.0194872003048658,0.000120388380310033,-0.99981015920639,0.0194872003048658,0.000120388380310033,-0.999810099601746,0.0194871984422207,0.000120388365758117,0.0141304470598698,-0.999772250652313,-0.0159952137619257,0.0141304461285472,-0.999772250652313,-0.0159952137619257,0.0141304470598698,-0.999772310256958,-0.0159952156245708,0.0141304461285472,-0.999772191047668,-0.0159952156245708,0.0141304470598698,-0.999772191047668,-0.0159952156245708,0.0018023686716333,0.00492504797875881,-0.999986231327057,0.0018023686716333,0.00492504797875881,-0.999986231327057,0.00180236890446395,0.0049250484444201,-0.999986290931702,0.00180236890446395,0.00492504797875881,-0.999986231327057,0.0018023686716333,0.00492504797875881,-0.999986231327057,-3.16621917590965e-005,0.00479352893307805,0.999988555908203,-3.16621881211177e-005,0.00479352893307805,0.999988496303558,-3.16621917590965e-005,0.00479352893307805,0.999988496303558,-3.16621917590965e-005,0.00479352939873934,0.999988496303558,-3.16621953970753e-005,0.00479352939873934,0.999988496303558,-3.16621953970753e-005,0.00479352939873934,0.999988496303558,-0.552948355674744,-0.302251398563385,0.776461362838745,
- -0.552948355674744,-0.302251398563385,0.776461362838745,-0.552948355674744,-0.302251428365707,0.776461362838745,0.743165373802185,0.43698638677597,0.50670325756073,0.74316531419754,0.436986356973648,0.506703197956085,0.743165373802185,0.436986356973648,0.506703197956085,-0.645815670490265,0.586672306060791,-0.488607883453369,-0.645815670490265,0.586672246456146,-0.488607913255692,-0.64581561088562,0.586672306060791,-0.488607883453369,-0.00398138165473938,0.999954462051392,0.00867353286594152,-0.00398138165473938,0.999954462051392,0.00867353286594152,-0.00398138212040067,0.999954521656036,0.00867353286594152,-0.00398138165473938,0.999954402446747,0.00867353286594152,-0.00398138165473938,0.999954402446747,0.00867353286594152,-0.076564721763134,-0.00631600618362427,-0.997044622898102,-0.0333078503608704,-0.00924959499388933,-0.999402344226837,-0.0399932563304901,-0.00879762135446072,-0.999161124229431,-0.0765647292137146,-0.00631600664928555,-0.997044682502747,-0.00119760760571808,-0.998282611370087,0.0585692040622234,-0.0011976077221334,-0.998282670974731,0.058569211512804,-0.0011976077221334,-0.998282670974731,0.0585692152380943,-0.0011976077221334,-0.998282611370087,0.058569211512804,-0.0011976077221334,-0.998282670974731,0.058569211512804,-0.0011976077221334,-0.998282670974731,0.058569211512804,-0.00119760760571808,-0.998282611370087,0.0585692077875137,0.999591112136841,-0.028408532962203,-0.00323265767656267,0.999591171741486,-0.0284085366874933,-0.00323265814222395,0.999591171741486,-0.0284085366874933,-0.00323265814222395,0.999591112136841,-0.0284085348248482,-0.00323265767656267,0.99959123134613,-0.0284085385501385,-0.00323265814222395,-0.999840080738068,0.01004668045789,0.014792924746871,-0.999840199947357,0.0100466823205352,0.0147929256781936,-0.999840199947357,0.0100466813892126,0.0147929266095161,-0.999840080738068,0.0100466813892126,0.0147929266095161,-0.999840140342712,0.01004668045789,0.014792924746871,0.604291677474976,-0.535186171531677,-0.590260326862335,0.60429173707962,-0.535186231136322,-0.59026038646698,
- 0.604291677474976,-0.535186171531677,-0.59026038646698,-0.0399932563304901,-0.00879762135446072,-0.999161124229431,-0.0333078503608704,-0.00924959499388933,-0.999402344226837,0.000205224438104779,-0.0115074915811419,-0.999933779239655,0.000205224438104779,-0.0115074906498194,-0.99993371963501,0.000205224438104779,-0.0115074915811419,-0.99993371963501,-0.00217828038148582,0.0308454986661673,0.999521791934967,-0.00217828038148582,0.0308454968035221,0.999521791934967,-0.00217828061431646,0.0308455005288124,0.999521791934967,-0.00217828014865518,0.0308454968035221,0.999521791934967,-0.00217828061431646,0.0308454986661673,0.999521791934967,-0.930946946144104,-0.0948934406042099,0.352608621120453,-0.930947005748749,-0.0948934555053711,0.352608680725098,-0.930947005748749,-0.0948934480547905,0.352608621120453,0.000701696146279573,0.0141661874949932,0.999899387359619,0.000701696146279573,0.0141661884263158,0.999899446964264,0.000701696204487234,0.0141661884263158,0.999899446964264,0.000701696204487234,0.0141661874949932,0.999899387359619,0.000701696204487234,0.0141661874949932,0.999899446964264,0.000701696146279573,0.0141661874949932,0.999899446964264,-0.0150162819772959,0.0374311655759811,-0.999186396598816,-0.0150162810459733,0.0374311693012714,-0.999186336994171,-0.0150162810459733,0.0374311655759811,-0.999186336994171,-0.0150162819772959,0.0374311655759811,-0.999186336994171,-0.0150162829086185,0.0374311693012714,-0.999186396598816,-0.0150162810459733,0.0374311655759811,-0.999186336994171,-1,-3.73285445220972e-007,0,-1,-3.73285445220972e-007,0,-1,-3.73285473642682e-007,0,-1,-3.73285502064391e-007,0,-1,-3.73285445220972e-007,0,-1,-3.73285473642682e-007,0,-0.31186318397522,-0.861429035663605,0.400850802659988,-0.31186318397522,-0.86142909526825,0.400850772857666,-0.31186318397522,-0.861429035663605,0.400850832462311,-0.430294692516327,0.587535679340363,-0.685308873653412,-0.430294781923294,0.587535738945007,-0.685308933258057,-0.430294722318649,0.587535679340363,-0.685308873653412,0.0132441772148013,0.999184370040894,0.0381484031677246,
- 0.0132441781461239,0.999184370040894,0.0381484068930149,0.0132441753521562,0.999184250831604,0.0381484031677246,0.0132441772148013,0.999184370040894,0.0381484031677246,0.0132441762834787,0.999184250831604,0.0381483994424343,0.0132441762834787,0.999184310436249,0.0381484031677246,0.999545812606812,-0.000309096911223605,0.0301360432058573,0.999545753002167,-0.000309096911223605,0.0301360432058573,0.999545812606812,-0.000309096940327436,0.0301360450685024,0.999545693397522,-0.000309096882119775,0.0301360376179218,0.999545753002167,-0.000309096882119775,0.0301360432058573,0.999545693397522,-0.000309096882119775,0.030136039480567,0.793166220188141,0.165095865726471,-0.586200177669525,0.793166279792786,0.165095880627632,-0.58620023727417,0.793166220188141,0.165095865726471,-0.586200177669525,-0.0132350027561188,-0.999184668064117,-0.0381442755460739,-0.0132350018247962,-0.999184608459473,-0.0381442718207836,-0.0132350018247962,-0.999184668064117,-0.0381442755460739,-0.0132350018247962,-0.999184548854828,-0.0381442718207836,-0.0132350008934736,-0.999184608459473,-0.0381442680954933,-0.0132350008934736,-0.999184608459473,-0.0381442718207836,0.727898240089417,-0.454822570085526,0.513128161430359,0.727898240089417,-0.454822570085526,0.513128101825714,0.727898299694061,-0.454822599887848,0.513128221035004,-0.716813266277313,0.212360471487045,0.664139986038208,-0.760889947414398,0.648880958557129,-5.90529361943481e-006,-0.99987006187439,0.0161203481256962,9.10518309638064e-008,-0.999482870101929,0.00721145980060101,0.0313389264047146,-0.760889947414398,0.648880958557129,-5.90529361943481e-006,-0.716803729534149,0.212351456284523,-0.664153039455414,-0.999482810497284,0.0072105061262846,-0.0313383787870407,-0.99987006187439,0.0161203481256962,9.10518309638064e-008,-0.716803729534149,0.212351456284523,-0.664153039455414,-0.76885187625885,-0.338845372200012,-0.5422642827034,-0.99907398223877,-0.0225554276257753,-0.0366404205560684,-0.999482810497284,0.0072105061262846,-0.0313383787870407,-0.76885187625885,-0.338845372200012,-0.5422642827034,
- -0.768857181072235,-0.338837325572968,0.542261779308319,-0.999073922634125,-0.0225555449724197,0.0366402715444565,-0.99907398223877,-0.0225554276257753,-0.0366404205560684,-0.768857181072235,-0.338837325572968,0.542261779308319,-0.716813266277313,0.212360471487045,0.664139986038208,-0.999482870101929,0.00721145980060101,0.0313389264047146,-0.999073922634125,-0.0225555449724197,0.0366402715444565
- }
- NormalsW: *2608 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *7824 {
- a: 2.29092870540626e-006,1,-1.77546813243199e-014,2.49402341978566e-006,1,-7.89248698405791e-015,2.29983515964705e-006,1,-1.40816364509666e-014,2.81753318631672e-006,1,-6.95889743398959e-014,1.887957296276e-006,1,1.23421704375181e-014,2.1464288693096e-006,1,5.7064660478499e-015,2.49402341978566e-006,1,-7.89248698405791e-015,2.29092870540626e-006,1,-1.77546813243199e-014,-2.68073190312634e-008,1,-2.27822243128032e-016,-5.82523682624014e-008,1,-2.01329620106539e-016,-0.00347154284827411,0.999993979930878,-2.20260840816389e-011,9.43351992077623e-008,1,2.58391889834545e-015,1.72173272972032e-007,1,-1.7791221902148e-015,-4.04081703209158e-007,1,1.70498785496785e-015,-5.82523682624014e-008,1,-2.01329620106539e-016,-2.68073190312634e-008,1,-2.27822243128032e-016,-5.93692602706142e-005,1,0.000126537444884889,3.1293118809117e-005,1,0.000126479659229517,-0.000141274751513265,1,0.000126589657156728,-0.000110346263682004,1,0.000394911505281925,8.12065773061477e-005,1,0.000249989883741364,1.27605983379908e-006,1,0.000126498780446127,0.000483363139210269,0.999999940395355,0.000126191429444589,0.000418952142354101,0.999999940395355,0.000126232524053194,2.24206519305881e-006,1,0.00024472369113937,1.7589140952623e-006,1,0.000248359341640025,2.29983515964705e-006,1,-1.40816364509666e-014,1.77265633283241e-006,1,-0,2.49402341978566e-006,1,-7.89248698405791e-015,2.1464288693096e-006,1,5.7064660478499e-015,2.52338304562727e-006,1,-0,2.49794038609252e-006,1,-0,-0.0139460470527411,0.999902725219727,0,2.10256121135899e-006,1,-0,-0.00697170849889517,0.999975681304932,-3.40259834197276e-011,-0.027891144156456,0.999610960483551,0,0.00889001507312059,0.998514592647552,0.0537564605474472,0.016120295971632,0.999866783618927,0.00256274174898863,0.00833025015890598,0.999326169490814,-0.0357483141124249,-0.0227982588112354,0.999720811843872,0.0062230839394033,-0.0227628462016582,0.999727189540863,-0.0052504213526845,0.0262155085802078,0.600398361682892,-0.79927134513855,0.0262158364057541,0.600391626358032,-0.799276351928711,
- 0.0523540489375591,0.601162850856781,-0.79740983247757,0.0523540452122688,0.601162850856781,-0.797409772872925,-0.0425110720098019,0.600333392620087,-0.798619329929352,-0.0212538670748472,0.600462794303894,-0.799370229244232,0.0262158364057541,0.600391626358032,-0.799276351928711,0.0262155085802078,0.600398361682892,-0.79927134513855,0.0413011722266674,-0.562810063362122,0.825553774833679,0.025958240032196,-0.563067615032196,0.826003134250641,-0.0356733240187168,-0.562192916870117,0.826236426830292,-0.0359800346195698,-0.562173187732697,0.826236546039581,8.12065773061477e-005,1,0.000249989883741364,-0.000110346263682004,1,0.000394911505281925,1.7589140952623e-006,1,0.000248359341640025,2.24206519305881e-006,1,0.00024472369113937,0.0870496481657028,-0.553414285182953,0.828344762325287,0.0564421564340591,-0.556893408298492,0.828664124011993,0.025958240032196,-0.563067615032196,0.826003134250641,0.0413011722266674,-0.562810063362122,0.825553774833679,-0,0.999686002731323,0.0250570196658373,0,1,-9.93880894384347e-006,0,0.99968558549881,-0.0250759217888117,0,0.999965071678162,-0.00836656428873539,0,1,-1.11115796244121e-005,-0,0.999965190887451,0.00834558252245188,-0.999594807624817,0.0284653585404158,3.81842255592346e-008,-0.999594807624817,0.0284653585404158,3.91155516865638e-008,-0.999594807624817,0.0284653585404158,3.81842255592346e-008,-0.999594807624817,0.0284653585404158,3.91155516865638e-008,-3.8560040138691e-007,1,1.26983596502998e-014,-1.58526091809108e-007,1,1.2941836518131e-015,-4.04081703209158e-007,1,1.70498785496785e-015,1.72173272972032e-007,1,-1.7791221902148e-015,1.77265633283241e-006,1,-0,2.29983515964705e-006,1,-1.40816364509666e-014,2.49402341978566e-006,1,-7.89248698405791e-015,2.49794038609252e-006,1,-0,-0.0636423006653786,0.601559698581696,-0.796288669109344,-0.0636418834328651,0.601559579372406,-0.796288728713989,-0.0212538670748472,0.600462794303894,-0.799370229244232,-0.0425110720098019,0.600333392620087,-0.798619329929352,0,1,4.96840038977098e-006,0,1,5.98312635702314e-006,0,1,6.92993762640981e-006,
- 0,1,8.82352651387919e-006,0,1,5.91520074522123e-006,0,1,2.93891594083107e-006,1.82240614776674e-006,1,3.83978534189942e-014,-0.00697170849889517,0.999975681304932,-3.40259834197276e-011,2.1464288693096e-006,1,5.7064660478499e-015,1.887957296276e-006,1,1.23421704375181e-014,-0.00697170849889517,0.999975681304932,-3.40259834197276e-011,2.10256121135899e-006,1,-0,2.52338304562727e-006,1,-0,2.1464288693096e-006,1,5.7064660478499e-015,-0.0212568957358599,0.600498616695404,0.799343228340149,-0.0636403560638428,0.601595342159271,0.79626190662384,-0.0636382475495338,0.601595342159271,0.79626202583313,-0.0425113923847675,0.600369155406952,0.798592329025269,0.0262109115719795,0.600427389144897,0.799249589443207,-0.0212568957358599,0.600498616695404,0.799343228340149,-0.0425113923847675,0.600369155406952,0.798592329025269,0.0262099150568247,0.600434184074402,0.799244523048401,0.0523469224572182,0.601198554039001,0.797383368015289,0.0262109115719795,0.600427389144897,0.799249589443207,0.0262099150568247,0.600434184074402,0.799244523048401,0.0523455813527107,0.601198554039001,0.797383368015289,0.00118654652033001,0.999999284744263,0,-0.00694323563948274,0.999975919723511,0,-0.0174453388899565,0.999847829341888,0,-0.00347154284827411,0.999993979930878,-2.20260840816389e-011,-2.24243535740243e-007,1,0,0.00118654652033001,0.999999284744263,0,-0.00347154284827411,0.999993979930878,-2.20260840816389e-011,-5.82523682624014e-008,1,-2.01329620106539e-016,5.32330318492313e-007,1,0,-5.06395451793651e-007,1,0,-4.04081703209158e-007,1,1.70498785496785e-015,-1.58526091809108e-007,1,1.2941836518131e-015,-1.42338421937893e-006,1,0.000244608556386083,5.32330318492313e-007,1,0,-1.58526091809108e-007,1,1.2941836518131e-015,-8.96151732376893e-007,1,0.000248243886744604,-5.06395451793651e-007,1,0,-2.24243535740243e-007,1,0,-5.82523682624014e-008,1,-2.01329620106539e-016,-4.04081703209158e-007,1,1.70498785496785e-015,0.00236617354676127,0.999997138977051,0.000293251971015707,-1.42338421937893e-006,1,0.000244608556386083,-8.96151732376893e-007,1,0.000248243886744604,
- 0.00331792840734124,0.999994516372681,0.000382551806978881,1.05534138583607e-006,1,0.000178003625478596,0.00236617354676127,0.999997138977051,0.000293251971015707,0.00331792840734124,0.999994516372681,0.000382551806978881,0.00186540593858808,0.999998331069946,0.000176672940142453,0.00479504745453596,0.999988496303558,0.000174580636667088,0.00127044518012553,0.999999225139618,0.000177097681444138,-0.0024656152818352,0.999997019767761,0.00017976324306801,-0.00105688872281462,0.999999463558197,0.000178758433321491,-0,-0,-1,-0,-0,-1,-0,-0,-1,-0,-0,-1,-8.96952343509838e-008,-0,-1,-0,-0,-1,-0,-0,-1,-8.96952343509838e-008,-0,-1,-0,-0,-1,-8.96952343509838e-008,-0,-1,-8.96952343509838e-008,-0,-1,-8.96952343509838e-008,-0,-1,3.58860120286408e-007,0,-1,-0,-0,-1,-8.96952343509838e-008,-0,-1,3.58860120286408e-007,0,-1,-1.66731112472007e-007,9.90342585716064e-010,-1,3.58860120286408e-007,0,-1,3.58860120286408e-007,0,-1,1.92129022025256e-007,9.90342585716064e-010,-1,2.2779304345022e-006,-1.33869548335497e-007,-1,-1.66731112472007e-007,9.90342585716064e-010,-1,1.92129022025256e-007,9.90342585716064e-010,-1,-8.0748259279062e-007,-1.33819341385788e-007,-1,2.2779304345022e-006,-1.33869548335497e-007,-1,-8.0748259279062e-007,-1.33819341385788e-007,-1,4.84159090774483e-006,-2.12500609109156e-007,-1,5.51698803974432e-006,-2.12501618079841e-007,-1,-5.7146002063746e-007,-2.12492551554533e-007,-1,-0.999006152153015,0.0413932912051678,0.0165308136492968,-0.994719922542572,0.0957219079136848,-0.0370085835456848,-0.987209618091583,-0.156602561473846,0.0298801437020302,-0.999178230762482,-0.0405329838395119,-0.000191816652659327,-0.0306916385889053,0.960063755512238,-0.278092861175537,-0.999006152153015,0.0413932912051678,0.0165308136492968,-0.996085822582245,0.0382603518664837,-0.0796830207109451,-0.0425946153700352,0.959634602069855,0.278005659580231,-0.0362257063388824,0.994302213191986,0.100254386663437,-0.0262819584459066,0.990051507949829,0.138229385018349,0.0121810222044587,0.998963057994843,-0.043869536370039,0.000871806289069355,0.937015414237976,-0.34928697347641,
- 0.000871806289069355,0.937015414237976,-0.34928697347641,0.0121810222044587,0.998963057994843,-0.043869536370039,-0.00471839541569352,0.574725210666656,-0.818332970142365,-0.0548278391361237,0.693918406963348,-0.717963218688965,-0.985602855682373,0.161262765526772,0.0508083924651146,-0.996085822582245,0.0382603518664837,-0.0796830207109451,-0.998078882694244,-0.0337228402495384,-0.0519754588603973,-0.99739408493042,-0.0484079159796238,-0.0534956343472004,0.0440317317843437,6.6456850618124e-006,-0.999030113220215,0.998538076877594,-0.00112023344263434,-0.0540414787828922,0.998157441616058,0.029249282553792,-0.0531637966632843,0.048310324549675,0.286377936601639,-0.956898093223572,-0.999178230762482,-0.0405329838395119,-0.000191816652659327,-0.0352833159267902,-0.959765672683716,0.278576731681824,-0.0463306047022343,-0.958678007125854,-0.280695557594299,-0.998078882694244,-0.0337228402495384,-0.0519754588603973,0.0305594764649868,0.989727199077606,0.139664530754089,0.0281140115112066,0.994524419307709,0.100651949644089,-0.000564886315260082,0.936818182468414,-0.349816501140594,-0.00997539516538382,0.999020755290985,-0.0431055314838886,-0.00997539516538382,0.999020755290985,-0.0431055314838886,-0.000564886315260082,0.936818182468414,-0.349816501140594,0.0826936662197113,0.691816627979279,-0.717322468757629,0.00654265936464071,0.576190710067749,-0.817289233207703,0.998526990413666,0.00149208912625909,0.0542382337152958,0.0431721769273281,-0.000866342918016016,0.99906724691391,0.0469056516885757,-0.434276193380356,0.899557769298553,0.998525023460388,-0.00800503417849541,0.0537003204226494,0.0437209494411945,-0.0616697333753109,-0.997138559818268,0.120325997471809,-0.0380132757127285,-0.992006421089172,-0.0548278391361237,0.693918406963348,-0.717963218688965,-0.00471839541569352,0.574725210666656,-0.818332970142365,0.99751216173172,0.0332200117409229,-0.0621768198907375,0.998157441616058,0.029249282553792,-0.0531637966632843,0.998525023460388,-0.00800503417849541,0.0537003204226494,0.998716533184052,-0.0343410409986973,0.0372311510145664,
- -0.0902960672974586,-0.0391440838575363,-0.995145499706268,-0.0431243628263474,-0.0610635317862034,-0.997201919555664,0.00654265936464071,0.576190710067749,-0.817289233207703,0.0826936662197113,0.691816627979279,-0.717322468757629,-0.996085822582245,0.0382603518664837,-0.0796830207109451,-0.999006152153015,0.0413932912051678,0.0165308136492968,-0.999178230762482,-0.0405329838395119,-0.000191816652659327,-0.998078882694244,-0.0337228402495384,-0.0519754588603973,0.998526990413666,0.00149208912625909,0.0542382337152958,0.998525023460388,-0.00800503417849541,0.0537003204226494,0.998157441616058,0.029249282553792,-0.0531637966632843,0.998538076877594,-0.00112023344263434,-0.0540414787828922,0.0826936662197113,0.691816627979279,-0.717322468757629,-0.000564886315260082,0.936818182468414,-0.349816501140594,0.000871806289069355,0.937015414237976,-0.34928697347641,-0.0548278391361237,0.693918406963348,-0.717963218688965,0.120325997471809,-0.0380132757127285,-0.992006421089172,-0.0902960672974586,-0.0391440838575363,-0.995145499706268,0.0826936662197113,0.691816627979279,-0.717322468757629,-0.0548278391361237,0.693918406963348,-0.717963218688965,-0.0362257063388824,0.994302213191986,0.100254386663437,0.000871806289069355,0.937015414237976,-0.34928697347641,-0.000564886315260082,0.936818182468414,-0.349816501140594,0.0281140115112066,0.994524419307709,0.100651949644089,-0.00971503742039204,0.998623847961426,-0.0515376925468445,-0.0286338999867439,0.997932612895966,-0.0575374588370323,-0.0164538994431496,0.999862134456635,-0.0022652936168015,0.0341064184904099,0.998802363872528,-0.0350813306868076,0.0326468423008919,0.999417245388031,0.00997660774737597,0.0126652354374528,0.999535143375397,-0.0277351997792721,-0.0281723458319902,0.999554395675659,0.00986667349934578,-0.0296406280249357,0.998598098754883,-0.0438554286956787,0.020457686856389,0.998705863952637,-0.0465621650218964,0.0325970724225044,0.999458193778992,0.00455673970282078,-0.999006152153015,0.0413932912051678,0.0165308136492968,-0.0306916385889053,0.960063755512238,-0.278092861175537,
- -0.994719922542572,0.0957219079136848,-0.0370085835456848,-0.985602855682373,0.161262765526772,0.0508083924651146,-0.0425946153700352,0.959634602069855,0.278005659580231,-0.996085822582245,0.0382603518664837,-0.0796830207109451,-0.999178230762482,-0.0405329838395119,-0.000191816652659327,-0.987209618091583,-0.156602561473846,0.0298801437020302,-0.0352833159267902,-0.959765672683716,0.278576731681824,-0.99739408493042,-0.0484079159796238,-0.0534956343472004,-0.998078882694244,-0.0337228402495384,-0.0519754588603973,-0.0463306047022343,-0.958678007125854,-0.280695557594299,0.048310324549675,0.286377936601639,-0.956898093223572,0.998157441616058,0.029249282553792,-0.0531637966632843,0.99751216173172,0.0332200117409229,-0.0621768198907375,0.998716533184052,-0.0343410409986973,0.0372311510145664,0.998525023460388,-0.00800503417849541,0.0537003204226494,0.0469056516885757,-0.434276193380356,0.899557769298553,-0.998994588851929,0.0413963943719864,0.0172143876552582,-0.99472451210022,0.0956784710288048,-0.0369986966252327,-0.986398994922638,-0.161740452051163,0.029276717454195,-0.999177038669586,-0.0405474416911602,-0.00117866566870362,-0.030639361590147,0.960072576999664,-0.278068095445633,-0.998994588851929,0.0413963943719864,0.0172143876552582,-0.996085703372955,0.0382546745240688,-0.0796862542629242,-0.0424939058721066,0.959637463092804,0.278011441230774,-0.0363961309194565,0.994289815425873,0.100315392017365,-0.0261760745197535,0.990063965320587,0.138160198926926,0.0122288810089231,0.998960793018341,-0.043907318264246,0.000900106504559517,0.937015116214752,-0.349287629127502,0.000900106504559517,0.937015116214752,-0.349287629127502,0.0122288810089231,0.998960793018341,-0.043907318264246,-0.00472597777843475,0.574765026569366,-0.818304896354675,-0.0550232566893101,0.693921744823456,-0.717945039272308,-0.985603272914886,0.16126050055027,0.0508056879043579,-0.996085703372955,0.0382546745240688,-0.0796862542629242,-0.998080432415009,-0.0337168537080288,-0.0519488006830215,-0.997394680976868,-0.0484029054641724,-0.0534898042678833,
- 0.0439738072454929,6.85080885887146e-006,-0.99903267621994,0.998538196086884,-0.00118364987429231,-0.0540372766554356,0.998146116733551,0.0296747405081987,-0.0531383268535137,0.0482806339859962,0.286374479532242,-0.956900596618652,-0.999177038669586,-0.0405474416911602,-0.00117866566870362,-0.0352836363017559,-0.959782421588898,0.278518944978714,-0.04630371555686,-0.958679378032684,-0.280695348978043,-0.998080432415009,-0.0337168537080288,-0.0519488006830215,0.0305371657013893,0.989722847938538,0.139700382947922,0.0281695667654276,0.994509100914001,0.100788049399853,-0.000669355446007103,0.936815440654755,-0.349823415279388,-0.00996818672865629,0.99902081489563,-0.0431066676974297,-0.00996818672865629,0.99902081489563,-0.0431066676974297,-0.000669355446007103,0.936815440654755,-0.349823415279388,0.0825518891215324,0.691832602024078,-0.717323362827301,0.00657750479876995,0.576256811618805,-0.81724226474762,0.998527348041534,0.00144198513589799,0.0542331896722317,0.0431345850229263,-0.000868608767632395,0.999068915843964,0.0468729250133038,-0.434247732162476,0.89957320690155,0.998530089855194,-0.00718649663031101,0.0537230484187603,0.043655339628458,-0.0618096776306629,-0.997132837772369,0.120649233460426,-0.03799869120121,-0.991967678070068,-0.0550232566893101,0.693921744823456,-0.717945039272308,-0.00472597777843475,0.574765026569366,-0.818304896354675,0.997508823871613,0.0332096330821514,-0.0622363835573196,0.998146116733551,0.0296747405081987,-0.0531383268535137,0.998530089855194,-0.00718649663031101,0.0537230484187603,0.998667657375336,-0.0342814326286316,0.0385705456137657,-0.0901593640446663,-0.0391869619488716,-0.995156168937683,-0.0430805236101151,-0.061115987598896,-0.997200548648834,0.00657750479876995,0.576256811618805,-0.81724226474762,0.0825518891215324,0.691832602024078,-0.717323362827301,-0.996085703372955,0.0382546745240688,-0.0796862542629242,-0.998994588851929,0.0413963943719864,0.0172143876552582,-0.999177038669586,-0.0405474416911602,-0.00117866566870362,-0.998080432415009,-0.0337168537080288,-0.0519488006830215,
- 0.998527348041534,0.00144198513589799,0.0542331896722317,0.998530089855194,-0.00718649663031101,0.0537230484187603,0.998146116733551,0.0296747405081987,-0.0531383268535137,0.998538196086884,-0.00118364987429231,-0.0540372766554356,0.0825518891215324,0.691832602024078,-0.717323362827301,-0.000669355446007103,0.936815440654755,-0.349823415279388,0.000900106504559517,0.937015116214752,-0.349287629127502,-0.0550232566893101,0.693921744823456,-0.717945039272308,0.120649233460426,-0.03799869120121,-0.991967678070068,-0.0901593640446663,-0.0391869619488716,-0.995156168937683,0.0825518891215324,0.691832602024078,-0.717323362827301,-0.0550232566893101,0.693921744823456,-0.717945039272308,-0.0363961309194565,0.994289815425873,0.100315392017365,0.000900106504559517,0.937015116214752,-0.349287629127502,-0.000669355446007103,0.936815440654755,-0.349823415279388,0.0281695667654276,0.994509100914001,0.100788049399853,-0.00970729254186153,0.998623847961426,-0.0515376776456833,-0.0286524016410112,0.997932076454163,-0.0575395561754704,-0.0164657104760408,0.999861896038055,-0.00226757233031094,0.0340907759964466,0.998802959918976,-0.0350796729326248,0.0326317958533764,0.999417722225189,0.00997655745595694,0.0127152297645807,0.999534487724304,-0.0277368649840355,-0.0280805286020041,0.999556958675385,0.00986682623624802,-0.0295549873262644,0.998600721359253,-0.0438536591827869,0.0205432772636414,0.998703956604004,-0.0465660393238068,0.0326433628797531,0.999456763267517,0.00454773893579841,-0.998994588851929,0.0413963943719864,0.0172143876552582,-0.030639361590147,0.960072576999664,-0.278068095445633,-0.99472451210022,0.0956784710288048,-0.0369986966252327,-0.985603272914886,0.16126050055027,0.0508056879043579,-0.0424939058721066,0.959637463092804,0.278011441230774,-0.996085703372955,0.0382546745240688,-0.0796862542629242,-0.999177038669586,-0.0405474416911602,-0.00117866566870362,-0.986398994922638,-0.161740452051163,0.029276717454195,-0.0352836363017559,-0.959782421588898,0.278518944978714,-0.997394680976868,-0.0484029054641724,-0.0534898042678833,
- -0.998080432415009,-0.0337168537080288,-0.0519488006830215,-0.04630371555686,-0.958679378032684,-0.280695348978043,0.0482806339859962,0.286374479532242,-0.956900596618652,0.998146116733551,0.0296747405081987,-0.0531383268535137,0.997508823871613,0.0332096330821514,-0.0622363835573196,0.998667657375336,-0.0342814326286316,0.0385705456137657,0.998530089855194,-0.00718649663031101,0.0537230484187603,0.0468729250133038,-0.434247732162476,0.89957320690155,-0.999005436897278,0.041388675570488,0.016588319092989,-0.994799554347992,0.0948500484228134,-0.0371141582727432,-0.986807882785797,-0.159171283245087,0.0295771956443787,-0.999177575111389,-0.0405404269695282,-0.000874848803505301,-0.0306688286364079,0.960065841674805,-0.278088182210922,-0.999005436897278,0.041388675570488,0.016588319092989,-0.995872676372528,0.038342509418726,-0.0822650715708733,-0.0425149314105511,0.959653079509735,0.277954250574112,-0.0362272262573242,0.994301021099091,0.100265488028526,-0.0261956546455622,0.990082383155823,0.138024464249611,0.0122180553153157,0.998961627483368,-0.0438910946249962,0.000870972871780396,0.937017500400543,-0.349281519651413,0.000870972871780396,0.937017500400543,-0.349281519651413,0.0122180553153157,0.998961627483368,-0.0438910946249962,-0.00482136430218816,0.574856162071228,-0.818240404129028,-0.0548228099942207,0.693902134895325,-0.717979371547699,-0.985116958618164,0.164233312010765,0.0507146567106247,-0.995872676372528,0.038342509418726,-0.0822650715708733,-0.998036086559296,-0.0336820185184479,-0.0528155267238617,-0.997393786907196,-0.0484104491770267,-0.0534985847771168,0.044051356613636,1.96462497115135e-006,-0.999029338359833,0.998538911342621,-0.00118474662303925,-0.0540248453617096,0.998116195201874,0.0307237301021814,-0.0531048886477947,0.0483552888035774,0.2863929271698,-0.956891238689423,-0.999177575111389,-0.0405404269695282,-0.000874848803505301,-0.0353256091475487,-0.95977258682251,0.278547614812851,-0.0463643297553062,-0.958676397800446,-0.280695617198944,-0.998036086559296,-0.0336820185184479,-0.0528155267238617,
- 0.0306028481572866,0.989710211753845,0.139776170253754,0.0280924383550882,0.994517862796783,0.100722603499889,-0.000652846938464791,0.93681788444519,-0.349816977977753,-0.00990074127912521,0.999024331569672,-0.0430388934910297,-0.00990074127912521,0.999024331569672,-0.0430388934910297,-0.000652846938464791,0.93681788444519,-0.349816977977753,0.0823934301733971,0.691811621189117,-0.717361807823181,0.006589749827981,0.576268911361694,-0.817233681678772,0.998526751995087,0.00144047860521823,0.0542422980070114,0.0431249104440212,-0.000870862859301269,0.999069333076477,0.0468285717070103,-0.434251964092255,0.899573445320129,0.998529553413391,-0.00719886971637607,0.0537312477827072,0.0437432006001472,-0.0618188939988613,-0.997128427028656,0.120292514562607,-0.0379757136106491,-0.992011845111847,-0.0548228099942207,0.693902134895325,-0.717979371547699,-0.00482136430218816,0.574856162071228,-0.818240404129028,0.997627556324005,0.0333143584430218,-0.0602450519800186,0.998116195201874,0.0307237301021814,-0.0531048886477947,0.998529553413391,-0.00719886971637607,0.0537312477827072,0.998642683029175,-0.034257173538208,0.0392332226037979,-0.0900262743234634,-0.0391953215003014,-0.995167851448059,-0.0430722571909428,-0.0611040890216827,-0.997201681137085,0.006589749827981,0.576268911361694,-0.817233681678772,0.0823934301733971,0.691811621189117,-0.717361807823181,-0.995872676372528,0.038342509418726,-0.0822650715708733,-0.999005436897278,0.041388675570488,0.016588319092989,-0.999177575111389,-0.0405404269695282,-0.000874848803505301,-0.998036086559296,-0.0336820185184479,-0.0528155267238617,0.998526751995087,0.00144047860521823,0.0542422980070114,0.998529553413391,-0.00719886971637607,0.0537312477827072,0.998116195201874,0.0307237301021814,-0.0531048886477947,0.998538911342621,-0.00118474662303925,-0.0540248453617096,0.0823934301733971,0.691811621189117,-0.717361807823181,-0.000652846938464791,0.93681788444519,-0.349816977977753,0.000870972871780396,0.937017500400543,-0.349281519651413,-0.0548228099942207,0.693902134895325,-0.717979371547699,
- 0.120292514562607,-0.0379757136106491,-0.992011845111847,-0.0900262743234634,-0.0391953215003014,-0.995167851448059,0.0823934301733971,0.691811621189117,-0.717361807823181,-0.0548228099942207,0.693902134895325,-0.717979371547699,-0.0362272262573242,0.994301021099091,0.100265488028526,0.000870972871780396,0.937017500400543,-0.349281519651413,-0.000652846938464791,0.93681788444519,-0.349816977977753,0.0280924383550882,0.994517862796783,0.100722603499889,-0.0096380477771163,0.998624622821808,-0.0515366643667221,-0.0286006107926369,0.997933566570282,-0.0575380884110928,-0.0163906123489141,0.999863147735596,-0.00226787244901061,0.0341569930315018,0.99880063533783,-0.0350816287100315,0.0326922051608562,0.999415695667267,0.00997449457645416,0.0127054397016764,0.999534547328949,-0.0277376491576433,-0.0281018670648336,0.999556303024292,0.00987457670271397,-0.0295533463358879,0.998601019382477,-0.0438487082719803,0.0205186046659946,0.998704612255096,-0.0465652793645859,0.0326555222272873,0.999456286430359,0.00455238623544574,-0.999005436897278,0.041388675570488,0.016588319092989,-0.0306688286364079,0.960065841674805,-0.278088182210922,-0.994799554347992,0.0948500484228134,-0.0371141582727432,-0.985116958618164,0.164233312010765,0.0507146567106247,-0.0425149314105511,0.959653079509735,0.277954250574112,-0.995872676372528,0.038342509418726,-0.0822650715708733,-0.999177575111389,-0.0405404269695282,-0.000874848803505301,-0.986807882785797,-0.159171283245087,0.0295771956443787,-0.0353256091475487,-0.95977258682251,0.278547614812851,-0.997393786907196,-0.0484104491770267,-0.0534985847771168,-0.998036086559296,-0.0336820185184479,-0.0528155267238617,-0.0463643297553062,-0.958676397800446,-0.280695617198944,0.0483552888035774,0.2863929271698,-0.956891238689423,0.998116195201874,0.0307237301021814,-0.0531048886477947,0.997627556324005,0.0333143584430218,-0.0602450519800186,0.998642683029175,-0.034257173538208,0.0392332226037979,0.998529553413391,-0.00719886971637607,0.0537312477827072,0.0468285717070103,-0.434251964092255,0.899573445320129,
- -0.999594807624817,0.02846534922719,-4.37721610069275e-008,-0.999594807624817,0.02846534922719,-4.56348132615858e-008,-0.999594807624817,0.02846534922719,-4.37721610069275e-008,-0.999594807624817,0.02846534922719,-4.56348132615858e-008,-0.00358332600444555,0.973800957202911,0.227373942732811,0.145772412419319,0.900546550750732,0.409592986106873,-0.188866853713989,0.788187682628632,0.585738360881805,0.0122330477461219,-0.224053636193275,0.974500119686127,0.0071058664470911,0.515901565551758,-0.856618463993073,0.228493630886078,0.77202033996582,-0.59310644865036,0.0830027833580971,0.903688848018646,-0.420067965984344,0.0071058664470911,0.515901565551758,-0.856618463993073,0.0830027833580971,0.903688848018646,-0.420067965984344,0.145772412419319,0.900546550750732,0.409592986106873,-0.00358332600444555,0.973800957202911,0.227373942732811,-0.0660102441906929,0.599356949329376,-0.797755658626556,0.228493630886078,0.77202033996582,-0.59310644865036,0.0344645455479622,0.579785645008087,-0.814039885997772,-0.0339319407939911,0.828336119651794,0.559203088283539,-0.0326006375253201,0.82974511384964,0.557189524173737,0.346313804388046,-0.727660775184631,0.592095136642456,-0.486149936914444,-0.476008176803589,0.732853651046753,-0.0326006375253201,0.82974511384964,0.557189524173737,-0.0339319407939911,0.828336119651794,0.559203088283539,-0.19222491979599,0.930679440498352,0.31126406788826,-0.141367986798286,0.9445481300354,0.296384960412979,-0.25867024064064,0.913416683673859,0.314260721206665,-0.3477463722229,0.87149578332901,0.345785617828369,-0.00992210675030947,0.593168139457703,-0.805017471313477,-0.030481381341815,0.608605086803436,-0.792887568473816,-0.486149936914444,-0.476008176803589,0.732853651046753,0.346313804388046,-0.727660775184631,0.592095136642456,-0.273178488016129,0.0805454924702644,0.958585441112518,-0.054389625787735,0.00382699677720666,0.998512446880341,-0.0634521767497063,-0.563378632068634,0.823758780956268,0.0874400213360786,-0.57907897233963,0.810568809509277,-0.129135146737099,0.843594670295715,0.521221876144409,
- -0.114205315709114,0.82263457775116,0.556982576847076,-0.0147909512743354,-0.594786286354065,0.803747832775116,-0.0311705768108368,-0.284736692905426,0.958098888397217,0.0976844877004623,-0.233587488532066,0.967416524887085,0.00293669290840626,0.444857656955719,-0.895596504211426,0.0147259114310145,0.43578827381134,-0.899928748607636,-0.0232205633074045,0.281457543373108,-0.959292769432068,0.00634679291397333,0.515018045902252,-0.857155859470367,0.0071058664470911,0.515901565551758,-0.856618463993073,0.0163210108876228,0.394805371761322,-0.918619871139526,-0.3477463722229,0.87149578332901,0.345785617828369,-0.25867024064064,0.913416683673859,0.314260721206665,-0.114205315709114,0.82263457775116,0.556982576847076,0.228493630886078,0.77202033996582,-0.59310644865036,-0.0660102441906929,0.599356949329376,-0.797755658626556,0.146110773086548,0.910437166690826,0.386983066797256,0.0830027833580971,0.903688848018646,-0.420067965984344,0.0830027833580971,0.903688848018646,-0.420067965984344,0.146110773086548,0.910437166690826,0.386983066797256,0.145772412419319,0.900546550750732,0.409592986106873,0.228493630886078,0.77202033996582,-0.59310644865036,0.0071058664470911,0.515901565551758,-0.856618463993073,0.00634679291397333,0.515018045902252,-0.857155859470367,0.0344645455479622,0.579785645008087,-0.814039885997772,0.0699739530682564,-0.565502285957336,0.821772992610931,0.0122330477461219,-0.224053636193275,0.974500119686127,-0.188866853713989,0.788187682628632,0.585738360881805,-0.3477463722229,0.87149578332901,0.345785617828369,0.439778655767441,0.828911244869232,0.345689058303833,0.134853973984718,0.582180738449097,-0.801798045635223,-0.00992210675030947,0.593168139457703,-0.805017471313477,0.016733855009079,0.779890179634094,-0.625692784786224,-0.00819713342934847,0.982427358627319,-0.186465412378311,-0.0577618218958378,0.946931302547455,0.316203474998474,0.265808522701263,0.606315851211548,-0.749484479427338,-0.0174266342073679,0.842829287052155,0.53789895772934,0.400310665369034,0.769820928573608,0.497119039297104,-0.236986920237541,-0.549893617630005,0.800908386707306,
- 0.544192016124725,-0.442801594734192,0.71258807182312,0.247935742139816,0.925958871841431,0.2848299741745,-0.0577618218958378,0.946931302547455,0.316203474998474,0.400310665369034,0.769820928573608,0.497119039297104,-0.0174266342073679,0.842829287052155,0.53789895772934,0.544192016124725,-0.442801594734192,0.71258807182312,-0.236986920237541,-0.549893617630005,0.800908386707306,0.153755724430084,0.00201845448464155,0.988106906414032,-0.208893314003944,-0.0160631276667118,0.977806508541107,0.305132329463959,-0.54374223947525,0.781817436218262,-0.141367986798286,0.9445481300354,0.296384960412979,-0.19222491979599,0.930679440498352,0.31126406788826,0.340624511241913,0.566050708293915,-0.750707447528839,-0.246384054422379,0.584924459457397,-0.772760212421417,-0.0311705768108368,-0.284736692905426,0.958098888397217,-0.29938143491745,-0.541213631629944,0.785785317420959,0.255364656448364,0.77343088388443,0.580166816711426,0.000592008291278034,0.798873126506805,0.601499438285828,-0.107106551527977,0.906664788722992,0.408028364181519,-0.277019709348679,0.891119420528412,0.359397292137146,-0.127127066254616,0.587175965309143,-0.799414217472076,-0.0220511220395565,0.585435390472412,-0.810419082641602,0.0874400213360786,-0.57907897233963,0.810568809509277,0.0976844877004623,-0.233587488532066,0.967416524887085,-0.0718661472201347,0.874290645122528,0.480053335428238,-0.129135146737099,0.843594670295715,0.521221876144409,-0.29938143491745,-0.541213631629944,0.785785317420959,0.0699739530682564,-0.565502285957336,0.821772992610931,-0.188866853713989,0.788187682628632,0.585738360881805,0.255364656448364,0.77343088388443,0.580166816711426,-0.29938143491745,-0.541213631629944,0.785785317420959,-0.0311705768108368,-0.284736692905426,0.958098888397217,-0.0147909512743354,-0.594786286354065,0.803747832775116,-0.0634521767497063,-0.563378632068634,0.823758780956268,-0.263800412416458,0.00151117448695004,0.964576125144959,-0.39119753241539,0.0128019545227289,0.920217752456665,0.439778655767441,0.828911244869232,0.345689058303833,-0.3477463722229,0.87149578332901,0.345785617828369,
- -0.114205315709114,0.82263457775116,0.556982576847076,-0.129135146737099,0.843594670295715,0.521221876144409,-0.0718661472201347,0.874290645122528,0.480053335428238,-0.277019709348679,0.891119420528412,0.359397292137146,-0.107106551527977,0.906664788722992,0.408028364181519,0.000592008291278034,0.798873126506805,0.601499438285828,0.255364656448364,0.77343088388443,0.580166816711426,-0.0577618218958378,0.946931302547455,0.316203474998474,0.247935742139816,0.925958871841431,0.2848299741745,-0.137329831719399,0.599501550197601,-0.788504004478455,0.265808522701263,0.606315851211548,-0.749484479427338,0.400310665369034,0.769820928573608,0.497119039297104,0.00798272341489792,0.605198085308075,0.796034932136536,-0.0331611298024654,-0.0853756219148636,0.995796859264374,-0.236986920237541,-0.549893617630005,0.800908386707306,-0.0577618218958378,0.946931302547455,0.316203474998474,-0.00819713342934847,0.982427358627319,-0.186465412378311,0.00798272341489792,0.605198085308075,0.796034932136536,0.400310665369034,0.769820928573608,0.497119039297104,-0.236986920237541,-0.549893617630005,0.800908386707306,-0.0331611298024654,-0.0853756219148636,0.995796859264374,0.0193772725760937,-0.682575106620789,0.730558633804321,0.153755724430084,0.00201845448464155,0.988106906414032,-0.19222491979599,0.930679440498352,0.31126406788826,-0.25867024064064,0.913416683673859,0.314260721206665,-0.030481381341815,0.608605086803436,-0.792887568473816,0.340624511241913,0.566050708293915,-0.750707447528839,-0.0339319407939911,0.828336119651794,0.559203088283539,-0.114205315709114,0.82263457775116,0.556982576847076,-0.25867024064064,0.913416683673859,0.314260721206665,-0.19222491979599,0.930679440498352,0.31126406788826,-0.114205315709114,0.82263457775116,0.556982576847076,-0.0339319407939911,0.828336119651794,0.559203088283539,-0.486149936914444,-0.476008176803589,0.732853651046753,-0.0634521767497063,-0.563378632068634,0.823758780956268,-0.0634521767497063,-0.563378632068634,0.823758780956268,-0.486149936914444,-0.476008176803589,0.732853651046753,
- -0.054389625787735,0.00382699677720666,0.998512446880341,-0.263800412416458,0.00151117448695004,0.964576125144959,0.247935742139816,0.925958871841431,0.2848299741745,-0.141367986798286,0.9445481300354,0.296384960412979,-0.246384054422379,0.584924459457397,-0.772760212421417,-0.137329831719399,0.599501550197601,-0.788504004478455,-0.141367986798286,0.9445481300354,0.296384960412979,0.247935742139816,0.925958871841431,0.2848299741745,-0.0174266342073679,0.842829287052155,0.53789895772934,-0.0326006375253201,0.82974511384964,0.557189524173737,-0.0326006375253201,0.82974511384964,0.557189524173737,-0.0174266342073679,0.842829287052155,0.53789895772934,0.544192016124725,-0.442801594734192,0.71258807182312,0.346313804388046,-0.727660775184631,0.592095136642456,0.346313804388046,-0.727660775184631,0.592095136642456,0.544192016124725,-0.442801594734192,0.71258807182312,0.305132329463959,-0.54374223947525,0.781817436218262,0.305132329463959,-0.54374223947525,0.781817436218262,-0.208893314003944,-0.0160631276667118,0.977806508541107,-0.204907983541489,-0.370311826467514,0.906025409698486,0.346313804388046,-0.727660775184631,0.592095136642456,0.305132329463959,-0.54374223947525,0.781817436218262,-0.204907983541489,-0.370311826467514,0.906025409698486,-0.273178488016129,0.0805454924702644,0.958585441112518,-0.0634521767497063,-0.563378632068634,0.823758780956268,-0.39119753241539,0.0128019545227289,0.920217752456665,0.0119077386334538,-0.000329040951328352,0.999929130077362,-0.0147909512743354,-0.594786286354065,0.803747832775116,0.0874400213360786,-0.57907897233963,0.810568809509277,-0.277019709348679,0.891119420528412,0.359397292137146,0.146110773086548,0.910437166690826,0.386983066797256,-0.0660102441906929,0.599356949329376,-0.797755658626556,-0.127127066254616,0.587175965309143,-0.799414217472076,0.145772412419319,0.900546550750732,0.409592986106873,0.146110773086548,0.910437166690826,0.386983066797256,-0.277019709348679,0.891119420528412,0.359397292137146,0.255364656448364,0.77343088388443,0.580166816711426,-0.188866853713989,0.788187682628632,0.585738360881805,
- 0.439778655767441,0.828911244869232,0.345689058303833,-0.107106551527977,0.906664788722992,0.408028364181519,-0.0220511220395565,0.585435390472412,-0.810419082641602,0.134853973984718,0.582180738449097,-0.801798045635223,-0.107106551527977,0.906664788722992,0.408028364181519,0.439778655767441,0.828911244869232,0.345689058303833,-0.0718661472201347,0.874290645122528,0.480053335428238,0.000592008291278034,0.798873126506805,0.601499438285828,0.0976844877004623,-0.233587488532066,0.967416524887085,-0.0311705768108368,-0.284736692905426,0.958098888397217,0.000592008291278034,0.798873126506805,0.601499438285828,-0.0718661472201347,0.874290645122528,0.480053335428238,-0.0147909512743354,-0.594786286354065,0.803747832775116,0.0976844877004623,-0.233587488532066,0.967416524887085,0.0874400213360786,-0.57907897233963,0.810568809509277,-0.0232205633074045,0.281457543373108,-0.959292769432068,0.0845019370317459,0.54660826921463,-0.83311402797699,0.0344645455479622,0.579785645008087,-0.814039885997772,0.00634679291397333,0.515018045902252,-0.857155859470367,-0.255926847457886,-0.0143305584788322,0.96658992767334,-0.0137244090437889,-0.406156897544861,0.9137002825737,0.0122330477461219,-0.224053636193275,0.974500119686127,0.0699739530682564,-0.565502285957336,0.821772992610931,0.0119077386334538,-0.000329040951328352,0.999929130077362,-0.255926847457886,-0.0143305584788322,0.96658992767334,0.0699739530682564,-0.565502285957336,0.821772992610931,-0.29938143491745,-0.541213631629944,0.785785317420959,-0.0147909512743354,-0.594786286354065,0.803747832775116,0.0341050028800964,0.455406546592712,-0.889630198478699,-0.012780555523932,0.45024049282074,-0.892815828323364,0.00945531390607357,0.445813655853271,-0.895075917243958,-0.0208842437714338,0.44766840338707,-0.893955767154694,-0.016615055501461,0.44625523686409,-0.894751489162445,-0.0113318273797631,0.448446780443192,-0.89373779296875,-0.00357654574327171,0.973909318447113,-0.226909399032593,0.0122655564919114,-0.223996788263321,-0.974512755870819,-0.18850702047348,0.788246750831604,-0.585774838924408,
- 0.146298334002495,0.900487065315247,-0.409536212682724,0.00710851652547717,0.516260385513306,0.856402099132538,0.0828841850161552,0.903734445571899,0.41999340057373,0.228441670536995,0.772046804428101,0.593092083930969,0.00710851652547717,0.516260385513306,0.856402099132538,-0.00357654574327171,0.973909318447113,-0.226909399032593,0.146298334002495,0.900487065315247,-0.409536212682724,0.0828841850161552,0.903734445571899,0.41999340057373,-0.0659118071198463,0.599609553813934,0.797573924064636,0.0346705988049507,0.580020904541016,0.813863515853882,0.228441670536995,0.772046804428101,0.593092083930969,-0.0339188016951084,0.828341901302338,-0.559195101261139,-0.486149251461029,-0.476254492998123,-0.732694029808044,0.346940785646439,-0.727816939353943,-0.591535925865173,-0.0326054953038692,0.829744398593903,-0.557190418243408,-0.0326054953038692,0.829744398593903,-0.557190418243408,-0.141355335712433,0.94454962015152,-0.296386152505875,-0.192228093743324,0.930679500102997,-0.311262190341949,-0.0339188016951084,0.828341901302338,-0.559195101261139,-0.258667230606079,0.913415551185608,-0.314266294240952,-0.0299789346754551,0.608871877193451,0.792701959609985,-0.00846282672137022,0.593421518802643,0.804847419261932,-0.347764790058136,0.871448695659637,-0.345885694026947,-0.486149251461029,-0.476254492998123,-0.732694029808044,-0.054614219814539,0.00378867448307574,-0.998500406742096,-0.275392919778824,0.0814715772867203,-0.957873225212097,0.346940785646439,-0.727816939353943,-0.591535925865173,-0.0633402839303017,-0.563667416572571,-0.82356983423233,-0.114182263612747,0.822632253170013,-0.556990802288055,-0.129129514098167,0.843561589717865,-0.521276831626892,0.0874922350049019,-0.579358577728271,-0.810363471508026,-0.0147665301337838,-0.595070958137512,-0.803537547588348,0.0976843759417534,-0.233588546514511,-0.967416286468506,-0.0311708822846413,-0.284738659858704,-0.958098292350769,0.00288649112917483,0.444368302822113,0.89583957195282,0.0163279306143522,0.395059764385223,0.918510437011719,0.00710851652547717,0.516260385513306,0.856402099132538,
- 0.0063527668826282,0.515271782875061,0.857003331184387,-0.03723369166255,0.451392292976379,0.89154851436615,0.0147408749908209,0.436077624559402,0.899788379669189,-0.347764790058136,0.871448695659637,-0.345885694026947,-0.114182263612747,0.822632253170013,-0.556990802288055,-0.258667230606079,0.913415551185608,-0.314266294240952,0.228441670536995,0.772046804428101,0.593092083930969,0.0828841850161552,0.903734445571899,0.41999340057373,0.146106377243996,0.910437762737274,-0.386983394622803,-0.0659118071198463,0.599609553813934,0.797573924064636,0.0828841850161552,0.903734445571899,0.41999340057373,0.146298334002495,0.900487065315247,-0.409536212682724,0.146106377243996,0.910437762737274,-0.386983394622803,0.228441670536995,0.772046804428101,0.593092083930969,0.0346705988049507,0.580020904541016,0.813863515853882,0.0063527668826282,0.515271782875061,0.857003331184387,0.00710851652547717,0.516260385513306,0.856402099132538,0.0700974464416504,-0.565769612789154,-0.821578502655029,-0.18850702047348,0.788246750831604,-0.585774838924408,0.0122655564919114,-0.223996788263321,-0.974512755870819,-0.347764790058136,0.871448695659637,-0.345885694026947,-0.00846282672137022,0.593421518802643,0.804847419261932,0.134630128741264,0.582448840141296,0.80164098739624,0.439783573150635,0.828874528408051,-0.345770925283432,0.0167828872799873,0.78057062625885,0.62484222650528,0.265730053186417,0.606582820415497,0.749296247959137,-0.0577755086123943,0.946931660175323,-0.316199839115143,-0.00820187479257584,0.982425510883331,0.186475068330765,-0.0174681432545185,0.842832863330841,-0.537891983985901,0.544193029403687,-0.443085223436356,-0.712411105632782,-0.237166523933411,-0.550138592720032,-0.800686955451965,0.400265663862228,0.769813895225525,-0.497165977954865,0.247942894697189,0.925950825214386,-0.284850150346756,-0.0174681432545185,0.842832863330841,-0.537891983985901,0.400265663862228,0.769813895225525,-0.497165977954865,-0.0577755086123943,0.946931660175323,-0.316199839115143,0.544193029403687,-0.443085223436356,-0.712411105632782,
- 0.3060362637043,-0.543800711631775,-0.781423449516296,-0.208596393465996,-0.016123941168189,-0.977868914604187,0.153582349419594,0.00207330100238323,-0.988133728504181,-0.237166523933411,-0.550138592720032,-0.800686955451965,-0.141355335712433,0.94454962015152,-0.296386152505875,-0.246248617768288,0.585208177566528,0.772588610649109,0.340539544820786,0.566315710544586,0.750546038150787,-0.192228093743324,0.930679500102997,-0.311262190341949,-0.0311708822846413,-0.284738659858704,-0.958098292350769,0.000593282340560108,0.798873543739319,-0.601498901844025,0.25536447763443,0.773430943489075,-0.580166816711426,-0.299475222826004,-0.541473269462585,-0.785570740699768,-0.107103258371353,0.906665503978729,-0.408027678728104,-0.0221087001264095,0.585675597190857,0.810244083404541,-0.12690643966198,0.587455332279205,0.799243986606598,-0.277016699314117,0.891120195388794,-0.359397679567337,0.0874922350049019,-0.579358577728271,-0.810363471508026,-0.129129514098167,0.843561589717865,-0.521276831626892,-0.0718532130122185,0.874230086803436,-0.480165541172028,0.0976843759417534,-0.233588546514511,-0.967416286468506,-0.299475222826004,-0.541473269462585,-0.785570740699768,0.25536447763443,0.773430943489075,-0.580166816711426,-0.18850702047348,0.788246750831604,-0.585774838924408,0.0700974464416504,-0.565769612789154,-0.821578502655029,-0.299475222826004,-0.541473269462585,-0.785570740699768,-0.0147665301337838,-0.595070958137512,-0.803537547588348,-0.0311708822846413,-0.284738659858704,-0.958098292350769,-0.0633402839303017,-0.563667416572571,-0.82356983423233,-0.391048043966293,0.0128028700128198,-0.920281291007996,-0.263654470443726,0.00155452045146376,-0.964616000652313,0.439783573150635,0.828874528408051,-0.345770925283432,-0.0718532130122185,0.874230086803436,-0.480165541172028,-0.129129514098167,0.843561589717865,-0.521276831626892,-0.114182263612747,0.822632253170013,-0.556990802288055,-0.347764790058136,0.871448695659637,-0.345885694026947,-0.277016699314117,0.891120195388794,-0.359397679567337,0.25536447763443,0.773430943489075,-0.580166816711426,
- 0.000593282340560108,0.798873543739319,-0.601498901844025,-0.107103258371353,0.906665503978729,-0.408027678728104,-0.0577755086123943,0.946931660175323,-0.316199839115143,0.265730053186417,0.606582820415497,0.749296247959137,-0.137236475944519,0.599764704704285,0.788320064544678,0.247942894697189,0.925950825214386,-0.284850150346756,0.400265663862228,0.769813895225525,-0.497165977954865,-0.237166523933411,-0.550138592720032,-0.800686955451965,-0.033198244869709,-0.0852865278720856,-0.995803236961365,0.00798731110990047,0.605203092098236,-0.79603111743927,-0.0577755086123943,0.946931660175323,-0.316199839115143,0.400265663862228,0.769813895225525,-0.497165977954865,0.00798731110990047,0.605203092098236,-0.79603111743927,-0.00820187479257584,0.982425510883331,0.186475068330765,-0.237166523933411,-0.550138592720032,-0.800686955451965,0.153582349419594,0.00207330100238323,-0.988133728504181,0.0193692967295647,-0.682157814502716,-0.730948448181152,-0.033198244869709,-0.0852865278720856,-0.995803236961365,-0.192228093743324,0.930679500102997,-0.311262190341949,0.340539544820786,0.566315710544586,0.750546038150787,-0.0299789346754551,0.608871877193451,0.792701959609985,-0.258667230606079,0.913415551185608,-0.314266294240952,-0.0339188016951084,0.828341901302338,-0.559195101261139,-0.192228093743324,0.930679500102997,-0.311262190341949,-0.258667230606079,0.913415551185608,-0.314266294240952,-0.114182263612747,0.822632253170013,-0.556990802288055,-0.114182263612747,0.822632253170013,-0.556990802288055,-0.0633402839303017,-0.563667416572571,-0.82356983423233,-0.486149251461029,-0.476254492998123,-0.732694029808044,-0.0339188016951084,0.828341901302338,-0.559195101261139,-0.0633402839303017,-0.563667416572571,-0.82356983423233,-0.263654470443726,0.00155452045146376,-0.964616000652313,-0.054614219814539,0.00378867448307574,-0.998500406742096,-0.486149251461029,-0.476254492998123,-0.732694029808044,0.247942894697189,0.925950825214386,-0.284850150346756,-0.137236475944519,0.599764704704285,0.788320064544678,-0.246248617768288,0.585208177566528,0.772588610649109,
- -0.141355335712433,0.94454962015152,-0.296386152505875,-0.141355335712433,0.94454962015152,-0.296386152505875,-0.0326054953038692,0.829744398593903,-0.557190418243408,-0.0174681432545185,0.842832863330841,-0.537891983985901,0.247942894697189,0.925950825214386,-0.284850150346756,-0.0326054953038692,0.829744398593903,-0.557190418243408,0.346940785646439,-0.727816939353943,-0.591535925865173,0.544193029403687,-0.443085223436356,-0.712411105632782,-0.0174681432545185,0.842832863330841,-0.537891983985901,0.346940785646439,-0.727816939353943,-0.591535925865173,0.3060362637043,-0.543800711631775,-0.781423449516296,0.544193029403687,-0.443085223436356,-0.712411105632782,0.3060362637043,-0.543800711631775,-0.781423449516296,-0.204741299152374,-0.370182275772095,-0.906115889549255,-0.208596393465996,-0.016123941168189,-0.977868914604187,0.346940785646439,-0.727816939353943,-0.591535925865173,-0.275392919778824,0.0814715772867203,-0.957873225212097,-0.204741299152374,-0.370182275772095,-0.906115889549255,0.3060362637043,-0.543800711631775,-0.781423449516296,-0.0633402839303017,-0.563667416572571,-0.82356983423233,0.0874922350049019,-0.579358577728271,-0.810363471508026,-0.0147665301337838,-0.595070958137512,-0.803537547588348,0.0119260055944324,-0.000334593147272244,-0.999928891658783,-0.391048043966293,0.0128028700128198,-0.920281291007996,-0.277016699314117,0.891120195388794,-0.359397679567337,-0.12690643966198,0.587455332279205,0.799243986606598,-0.0659118071198463,0.599609553813934,0.797573924064636,0.146106377243996,0.910437762737274,-0.386983394622803,0.146298334002495,0.900487065315247,-0.409536212682724,-0.18850702047348,0.788246750831604,-0.585774838924408,0.25536447763443,0.773430943489075,-0.580166816711426,-0.277016699314117,0.891120195388794,-0.359397679567337,0.146106377243996,0.910437762737274,-0.386983394622803,0.439783573150635,0.828874528408051,-0.345770925283432,0.134630128741264,0.582448840141296,0.80164098739624,-0.0221087001264095,0.585675597190857,0.810244083404541,-0.107103258371353,0.906665503978729,-0.408027678728104,
- -0.107103258371353,0.906665503978729,-0.408027678728104,0.000593282340560108,0.798873543739319,-0.601498901844025,-0.0718532130122185,0.874230086803436,-0.480165541172028,0.439783573150635,0.828874528408051,-0.345770925283432,0.0976843759417534,-0.233588546514511,-0.967416286468506,-0.0718532130122185,0.874230086803436,-0.480165541172028,0.000593282340560108,0.798873543739319,-0.601498901844025,-0.0311708822846413,-0.284738659858704,-0.958098292350769,-0.0147665301337838,-0.595070958137512,-0.803537547588348,0.0874922350049019,-0.579358577728271,-0.810363471508026,0.0976843759417534,-0.233588546514511,-0.967416286468506,-0.0137325068935752,-0.40624076128006,-0.913662910461426,-0.255918800830841,-0.0143353445455432,-0.966592073440552,0.0700974464416504,-0.565769612789154,-0.821578502655029,0.0122655564919114,-0.223996788263321,-0.974512755870819,-0.255918800830841,-0.0143353445455432,-0.966592073440552,0.0119260055944324,-0.000334593147272244,-0.999928891658783,-0.0147665301337838,-0.595070958137512,-0.803537547588348,-0.299475222826004,-0.541473269462585,-0.785570740699768,0.0700974464416504,-0.565769612789154,-0.821578502655029,-0.0127868158742785,0.450294345617294,0.892788648605347,0.0341122411191463,0.455518156290054,0.889572739601135,-0.0113487560302019,0.448481857776642,0.893719911575317,-0.0166246313601732,0.446253150701523,0.894752383232117,-0.0208962112665176,0.447666227817535,0.89395660161972,0.0094816330820322,0.445810586214066,0.895077109336853,-0.00581182120367885,-0.0775985270738602,0.996967792510986,-0.0474096983671188,0.561046361923218,0.826425611972809,0.265730053186417,0.606582820415497,0.749296247959137,0.0167828872799873,0.78057062625885,0.62484222650528,-0.189424619078636,0.539467215538025,-0.820422828197479,-0.0467413403093815,-0.62415736913681,-0.77989935874939,0.016733855009079,0.779890179634094,-0.625692784786224,0.265808522701263,0.606315851211548,-0.749484479427338,0.00360871152952313,0.555017530918121,0.831830859184265,-0.03723369166255,0.451392292976379,0.89154851436615,0.0063527668826282,0.515271782875061,0.857003331184387,
- 0.0346705988049507,0.580020904541016,0.813863515853882,0.35795921087265,0.533110618591309,-0.766588747501373,0.0130124650895596,-0.562867343425751,-0.826444923877716,-0.364621132612228,-0.556113958358765,-0.74685263633728,-0.189424619078636,0.539467215538025,-0.820422828197479,-0.447698056697845,-0.512976288795471,-0.732408285140991,0.35795921087265,0.533110618591309,-0.766588747501373,-0.2414910197258,0.554269254207611,-0.796534836292267,-0.179226472973824,-0.537966668605804,-0.823692798614502,-0.179226472973824,-0.537966668605804,-0.823692798614502,-0.2414910197258,0.554269254207611,-0.796534836292267,-0.0553734451532364,0.560368359088898,-0.826390385627747,0.272851228713989,-0.544144511222839,-0.793384552001953,0.219434082508087,0.520208418369293,-0.82536780834198,-0.046774085611105,-0.542912483215332,-0.838485717773438,-0.0469269007444382,-0.545253336429596,-0.836956858634949,0.116328731179237,0.541454315185547,-0.832643270492554,-0.510904371738434,-0.440396189689636,-0.738260090351105,0.219434082508087,0.520208418369293,-0.82536780834198,0.204973965883255,0.56532347202301,-0.798996388912201,-0.178275302052498,-0.563853144645691,-0.806404173374176,-0.178275302052498,-0.563853144645691,-0.806404173374176,0.204973965883255,0.56532347202301,-0.798996388912201,0.127810090780258,0.549271762371063,-0.825811862945557,0.947299778461456,-0.172616243362427,-0.269864499568939,-0.106823071837425,-0.550784170627594,-0.827783644199371,0.127810090780258,0.549271762371063,-0.825811862945557,0.0845019370317459,0.54660826921463,-0.83311402797699,-0.106865867972374,-0.54395604133606,-0.832280933856964,0.0617410428822041,0.56045126914978,-0.825882792472839,0.227877348661423,-0.548455774784088,-0.804529905319214,-0.0146050173789263,-0.560185790061951,-0.828238308429718,-0.0553734451532364,0.560368359088898,-0.826390385627747,0.227877348661423,-0.548455774784088,-0.804529905319214,0.0617410428822041,0.56045126914978,-0.825882792472839,0.116328731179237,0.541454315185547,-0.832643270492554,0.778748393058777,-0.347716271877289,-0.522153556346893,
- -0.030481381341815,0.608605086803436,-0.792887568473816,-0.00992210675030947,0.593168139457703,-0.805017471313477,0.116328731179237,0.541454315185547,-0.832643270492554,0.0617410428822041,0.56045126914978,-0.825882792472839,0.340624511241913,0.566050708293915,-0.750707447528839,-0.0553734451532364,0.560368359088898,-0.826390385627747,-0.2414910197258,0.554269254207611,-0.796534836292267,-0.246384054422379,0.584924459457397,-0.772760212421417,0.340624511241913,0.566050708293915,-0.750707447528839,-0.030481381341815,0.608605086803436,-0.792887568473816,0.0617410428822041,0.56045126914978,-0.825882792472839,-0.0553734451532364,0.560368359088898,-0.826390385627747,-0.246384054422379,0.584924459457397,-0.772760212421417,-0.2414910197258,0.554269254207611,-0.796534836292267,0.35795921087265,0.533110618591309,-0.766588747501373,-0.137329831719399,0.599501550197601,-0.788504004478455,-0.00992210675030947,0.593168139457703,-0.805017471313477,0.134853973984718,0.582180738449097,-0.801798045635223,0.219434082508087,0.520208418369293,-0.82536780834198,0.116328731179237,0.541454315185547,-0.832643270492554,0.219434082508087,0.520208418369293,-0.82536780834198,0.134853973984718,0.582180738449097,-0.801798045635223,-0.0220511220395565,0.585435390472412,-0.810419082641602,0.204973965883255,0.56532347202301,-0.798996388912201,0.35795921087265,0.533110618591309,-0.766588747501373,-0.189424619078636,0.539467215538025,-0.820422828197479,0.265808522701263,0.606315851211548,-0.749484479427338,-0.137329831719399,0.599501550197601,-0.788504004478455,0.127810090780258,0.549271762371063,-0.825811862945557,0.204973965883255,0.56532347202301,-0.798996388912201,-0.0220511220395565,0.585435390472412,-0.810419082641602,-0.127127066254616,0.587175965309143,-0.799414217472076,0.0845019370317459,0.54660826921463,-0.83311402797699,0.127810090780258,0.549271762371063,-0.825811862945557,-0.127127066254616,0.587175965309143,-0.799414217472076,-0.0660102441906929,0.599356949329376,-0.797755658626556,0.0344645455479622,0.579785645008087,-0.814039885997772,
- 0.340539544820786,0.566315710544586,0.750546038150787,-0.246248617768288,0.585208177566528,0.772588610649109,-0.241598188877106,0.554526925086975,0.79632294178009,0.0751257166266441,0.55757087469101,0.826722979545593,0.340539544820786,0.566315710544586,0.750546038150787,0.0751257166266441,0.55757087469101,0.826722979545593,0.0368583612143993,0.5615394115448,0.826628744602203,-0.0299789346754551,0.608871877193451,0.792701959609985,-0.246248617768288,0.585208177566528,0.772588610649109,-0.137236475944519,0.599764704704285,0.788320064544678,0.283790677785873,0.54599142074585,0.788261592388153,-0.241598188877106,0.554526925086975,0.79632294178009,-0.00846282672137022,0.593421518802643,0.804847419261932,0.036845900118351,0.545550227165222,0.837267816066742,0.150192096829414,0.531477451324463,0.833651006221771,0.134630128741264,0.582448840141296,0.80164098739624,0.150192096829414,0.531477451324463,0.833651006221771,0.107524856925011,0.557306170463562,0.823315501213074,-0.0221087001264095,0.585675597190857,0.810244083404541,0.134630128741264,0.582448840141296,0.80164098739624,-0.0474096983671188,0.561046361923218,0.826425611972809,0.283790677785873,0.54599142074585,0.788261592388153,-0.137236475944519,0.599764704704285,0.788320064544678,0.265730053186417,0.606582820415497,0.749296247959137,0.107524856925011,0.557306170463562,0.823315501213074,-0.0781984031200409,0.551348686218262,0.830602049827576,-0.12690643966198,0.587455332279205,0.799243986606598,-0.0221087001264095,0.585675597190857,0.810244083404541,-0.0299789346754551,0.608871877193451,0.792701959609985,0.0368583612143993,0.5615394115448,0.826628744602203,0.036845900118351,0.545550227165222,0.837267816066742,-0.00846282672137022,0.593421518802643,0.804847419261932,-0.0781984031200409,0.551348686218262,0.830602049827576,0.00360871152952313,0.555017530918121,0.831830859184265,0.0346705988049507,0.580020904541016,0.813863515853882,-0.0659118071198463,0.599609553813934,0.797573924064636,-0.12690643966198,0.587455332279205,0.799243986606598,-0.364621132612228,-0.556113958358765,-0.74685263633728,
- -0.0467413403093815,-0.62415736913681,-0.77989935874939,-0.189424619078636,0.539467215538025,-0.820422828197479,-0.489837437868118,-0.446194708347321,-0.748979091644287,0.0845019370317459,0.54660826921463,-0.83311402797699,-0.0232205633074045,0.281457543373108,-0.959292769432068,0.0248795673251152,0.794583857059479,-0.606644570827484,-0.00842736475169659,0.989616572856903,-0.14348578453064,-0.0340999215841293,0.930523931980133,0.364640057086945,0.350603222846985,0.475005209445953,-0.807122945785522,0.147735208272934,0.817038655281067,0.557334899902344,0.241511166095734,0.795961201190948,0.555083930492401,-0.326675593852997,-0.431935429573059,0.840663373470306,0.507103800773621,-0.406411379575729,0.760049700737,0.23006047308445,0.90422135591507,0.359799921512604,-0.0340999215841293,0.930523931980133,0.364640057086945,0.241511166095734,0.795961201190948,0.555083930492401,0.147735208272934,0.817038655281067,0.557334899902344,0.507103800773621,-0.406411379575729,0.760049700737,-0.326675593852997,-0.431935429573059,0.840663373470306,0.153121948242188,-0.00871192663908005,0.988168895244598,0.0712788254022598,0.00118554139044136,0.997455716133118,-0.0340999215841293,0.930523931980133,0.364640057086945,0.23006047308445,0.90422135591507,0.359799921512604,-0.396475374698639,0.475306868553162,-0.785423934459686,0.350603222846985,0.475005209445953,-0.807122945785522,0.241511166095734,0.795961201190948,0.555083930492401,0.0101817734539509,0.507840812206268,0.861390769481659,-0.0170843433588743,-0.175536260008812,0.984324753284454,-0.326675593852997,-0.431935429573059,0.840663373470306,-0.0340999215841293,0.930523931980133,0.364640057086945,-0.00842736475169659,0.989616572856903,-0.14348578453064,0.0101817734539509,0.507840812206268,0.861390769481659,0.241511166095734,0.795961201190948,0.555083930492401,-0.326675593852997,-0.431935429573059,0.840663373470306,-0.0170843433588743,-0.175536260008812,0.984324753284454,0.0233139898627996,-0.761524021625519,0.647717297077179,0.153121948242188,-0.00871192663908005,0.988168895244598,-0.396475374698639,0.475306868553162,-0.785423934459686,
- 0.00242078793235123,0.729527711868286,-0.683947026729584,0.0738352313637733,0.462358206510544,-0.88361382484436,0.23006047308445,0.90422135591507,0.359799921512604,0.0186662953346968,0.99755722284317,0.0673151835799217,0.00242078793235123,0.729527711868286,-0.683947026729584,-0.396475374698639,0.475306868553162,-0.785423934459686,0.0186662953346968,0.99755722284317,0.0673151835799217,0.23006047308445,0.90422135591507,0.359799921512604,0.147735208272934,0.817038655281067,0.557334899902344,0.0122072445228696,0.793497383594513,0.608451306819916,0.0122072445228696,0.793497383594513,0.608451306819916,0.147735208272934,0.817038655281067,0.557334899902344,0.507103800773621,-0.406411379575729,0.760049700737,0.0502080619335175,0.334683954715729,0.940991997718811,0.0712788254022598,0.00118554139044136,0.997455716133118,-0.0455546416342258,-0.655035853385925,0.754223346710205,0.0502080619335175,0.334683954715729,0.940991997718811,0.507103800773621,-0.406411379575729,0.760049700737,0.0738352313637733,0.462358206510544,-0.88361382484436,0.00242078793235123,0.729527711868286,-0.683947026729584,0.016771849244833,-0.472297668457031,-0.881279587745667,0.0738352313637733,0.462358206510544,-0.88361382484436,-0.130741819739342,0.460108667612076,-0.878183662891388,0.350603222846985,0.475005209445953,-0.807122945785522,-0.396475374698639,0.475306868553162,-0.785423934459686,0.0225962530821562,0.426367074251175,-0.904268026351929,-0.0138835478574038,0.453522205352783,-0.891136884689331,-7.12648034095764e-006,0.480083256959915,-0.877222955226898,-0.0209107138216496,0.47653529047966,-0.878906667232513,-0.0181863345205784,0.473221123218536,-0.880756020545959,-0.00189539417624474,0.465141236782074,-0.885234475135803,0.0248797386884689,0.794781446456909,0.606385707855225,0.350821018218994,0.47519588470459,0.806916117668152,-0.0344092026352882,0.930597841739655,-0.364422619342804,-0.00842749886214733,0.989656388759613,0.143210306763649,0.148533582687378,0.816901862621307,-0.557323217391968,0.506626605987549,-0.40674364566803,-0.760190188884735,
- -0.327042907476425,-0.432112902402878,-0.840429306030273,0.241147249937058,0.795988857746124,-0.555202543735504,0.229729920625687,0.904371201992035,-0.359634548425674,0.148533582687378,0.816901862621307,-0.557323217391968,0.241147249937058,0.795988857746124,-0.555202543735504,-0.0344092026352882,0.930597841739655,-0.364422619342804,0.506626605987549,-0.40674364566803,-0.760190188884735,0.0709601864218712,0.00113808456808329,-0.997478544712067,0.152968406677246,-0.00870265904814005,-0.988192856311798,-0.327042907476425,-0.432112902402878,-0.840429306030273,-0.0344092026352882,0.930597841739655,-0.364422619342804,0.350821018218994,0.47519588470459,0.806916117668152,-0.393522262573242,0.47981658577919,0.784166038036346,0.229729920625687,0.904371201992035,-0.359634548425674,0.241147249937058,0.795988857746124,-0.555202543735504,-0.327042907476425,-0.432112902402878,-0.840429306030273,-0.0171138476580381,-0.175398468971252,-0.984348773956299,0.0101508675143123,0.509116649627686,-0.860637784004211,-0.0344092026352882,0.930597841739655,-0.364422619342804,0.241147249937058,0.795988857746124,-0.555202543735504,0.0101508675143123,0.509116649627686,-0.860637784004211,-0.00842749886214733,0.989656388759613,0.143210306763649,-0.327042907476425,-0.432112902402878,-0.840429306030273,0.152968406677246,-0.00870265904814005,-0.988192856311798,0.0233044270426035,-0.7611283659935,-0.648182570934296,-0.0171138476580381,-0.175398468971252,-0.984348773956299,-0.00865618325769901,0.72563099861145,0.688029646873474,-0.393522262573242,0.47981658577919,0.784166038036346,-0.0746832489967346,0.468236833810806,0.880441188812256,0.0136920623481274,-0.0640964582562447,0.997849762439728,0.229729920625687,0.904371201992035,-0.359634548425674,-0.393522262573242,0.47981658577919,0.784166038036346,-0.00865618325769901,0.72563099861145,0.688029646873474,0.0186651702970266,0.997573137283325,-0.0670792311429977,0.0186651702970266,0.997573137283325,-0.0670792311429977,0.0121769476681948,0.793712615966797,-0.608170986175537,0.148533582687378,0.816901862621307,-0.557323217391968,
- 0.229729920625687,0.904371201992035,-0.359634548425674,0.0121769476681948,0.793712615966797,-0.608170986175537,0.0501214563846588,0.333923190832138,-0.941266775131226,0.506626605987549,-0.40674364566803,-0.760190188884735,0.148533582687378,0.816901862621307,-0.557323217391968,0.0709601864218712,0.00113808456808329,-0.997478544712067,0.506626605987549,-0.40674364566803,-0.760190188884735,0.0501214563846588,0.333923190832138,-0.941266775131226,-0.0455288738012314,-0.654338955879211,-0.754829585552216,0.0729140713810921,0.465616255998611,0.881977915763855,-0.0746832489967346,0.468236833810806,0.880441188812256,-0.393522262573242,0.47981658577919,0.784166038036346,0.350821018218994,0.47519588470459,0.806916117668152,-0.0138879669830203,0.453551977872849,0.891121685504913,0.0225973855704069,0.426430493593216,0.904238104820251,-0.00191277312114835,0.465156018733978,0.885226726531982,-0.0181995443999767,0.473222017288208,0.880755245685577,-0.0209133885800838,0.476535230875015,0.878906607627869,1.07195228338242e-005,0.480081260204315,0.877224087715149,-0.00716559635475278,-0.135190725326538,0.990793764591217,0.0729140713810921,0.465616255998611,0.881977915763855,0.350821018218994,0.47519588470459,0.806916117668152,0.0248797386884689,0.794781446456909,0.606385707855225,0.0088148070499301,-0.000813414226286113,-0.999960899353027,-0.0301458742469549,0.000551597098819911,-0.999545454978943,5.08849734615069e-006,0.000289485731627792,-1,0.0301083754748106,-0.00044106604764238,-0.999546587467194,-0.00889707636088133,-0.000149054918438196,-0.999960422515869,-0.0109413573518395,0.000486767356051132,-0.999940097332001,-0.0337219163775444,0.000865721725858748,-0.999430894851685,-0.0102312648668885,0.00028865528292954,-0.999947667121887,0.0156379416584969,0.000168015292729251,-0.99987781047821,0.010873781517148,2.45970913965721e-005,-0.999940931797028,-0.130741819739342,0.460108667612076,-0.878183662891388,-0.00723234890028834,-0.13649645447731,-0.990614235401154,0.0248795673251152,0.794583857059479,-0.606644570827484,0.350603222846985,0.475005209445953,-0.807122945785522,
- -0.465992629528046,-0.417974501848221,-0.779838621616364,-0.130741819739342,0.460108667612076,-0.878183662891388,0.0738352313637733,0.462358206510544,-0.88361382484436,0.102744236588478,-0.468370914459229,-0.877537727355957,-0.465992629528046,-0.417974501848221,-0.779838621616364,-0.841127038002014,-0.0916670262813568,-0.533012628555298,-0.130741819739342,0.460108667612076,-0.878183662891388,0.102744236588478,-0.468370914459229,-0.877537727355957,0.0738352313637733,0.462358206510544,-0.88361382484436,0.016771849244833,-0.472297668457031,-0.881279587745667,-0.0253934860229492,0.563462197780609,0.825751543045044,-0.0559519045054913,0.558067619800568,0.827906966209412,-0.0866679921746254,0.554643332958221,0.82756245136261,-0.041082002222538,0.563212513923645,0.825290322303772,0.0368985161185265,0.562077879905701,0.826260924339294,-0.0253934860229492,0.563462197780609,0.825751543045044,-0.041082002222538,0.563212513923645,0.825290322303772,0.0365914776921272,0.562097787857056,0.826260924339294,-0.741649150848389,0.660839021205902,0.115101635456085,-0.738425672054291,0.666569590568542,0.102041602134705,-0.774475455284119,0.632603168487549,0.00112229597289115,-0.918439030647278,0.350989788770676,0.18241722881794,-0.274122834205627,0.959908723831177,0.0585826002061367,-0.293956518173218,0.955438494682312,-0.0269642528146505,-0.888695597648621,0.400987267494202,0.222327098250389,-0.0921485647559166,0.995223760604858,0.0322229154407978,0.0221704095602036,0.999464511871338,0.0240694768726826,-0.0581256821751595,0.996496319770813,0.0601387619972229,-0.0903271213173866,0.994720458984375,0.0487063638865948,-0.274122834205627,0.959908723831177,0.0585826002061367,-0.298401832580566,0.950139045715332,0.0905101448297501,-0.213075444102287,0.975660920143127,0.0518130660057068,-0.293956518173218,0.955438494682312,-0.0269642528146505,-0.774302244186401,0.620184242725372,0.125808045268059,-0.761256515979767,0.628917634487152,0.157959043979645,-0.741649150848389,0.660839021205902,0.115101635456085,-0.276517331600189,0.957548141479492,0.0814850106835365,
- -0.371238619089127,0.921205401420593,0.116458564996719,-0.962053418159485,0.255221784114838,0.0965147912502289,-0.974368691444397,0.21444870531559,-0.0679532587528229,-0.25788602232933,0.965711832046509,0.0299249067902565,-0.262971699237823,0.962210536003113,0.070687972009182,-0.371238619089127,0.921205401420593,0.116458564996719,-0.276517331600189,0.957548141479492,0.0814850106835365,-0.0921485647559166,0.995223760604858,0.0322229154407978,-0.500732243061066,0.865590393543243,-0.00453227758407593,-0.0812005922198296,0.993871808052063,0.0750023499131203,0.0546064935624599,0.987046897411346,0.15085281431675,0.0221704095602036,0.999464511871338,0.0240694768726826,-0.0812005922198296,0.993871808052063,0.0750023499131203,-0.741649150848389,0.660839021205902,0.115101635456085,-0.761256515979767,0.628917634487152,0.157959043979645,-0.738425672054291,0.666569590568542,0.102041602134705,-0.962053418159485,0.255221784114838,0.0965147912502289,-0.274122834205627,0.959908723831177,0.0585826002061367,-0.918439030647278,0.350989788770676,0.18241722881794,-0.371238619089127,0.921205401420593,0.116458564996719,-0.262971699237823,0.962210536003113,0.070687972009182,-0.274122834205627,0.959908723831177,0.0585826002061367,-0.262971699237823,0.962210536003113,0.070687972009182,-0.432826220989227,0.899052321910858,0.0660783872008324,-0.298401832580566,0.950139045715332,0.0905101448297501,-0.357375651597977,0.933955132961273,-0.00324302166700363,-0.0812005922198296,0.993871808052063,0.0750023499131203,-0.500732243061066,0.865590393543243,-0.00453227758407593,0.0546064935624599,0.987046897411346,0.15085281431675,-0.0812005922198296,0.993871808052063,0.0750023499131203,-0.357375651597977,0.933955132961273,-0.00324302166700363,-0.891786396503448,0.445547580718994,-0.0787681713700294,-0.982932090759277,0.168607234954834,0.0735948607325554,-0.761256515979767,0.628917634487152,0.157959043979645,-0.774302244186401,0.620184242725372,0.125808045268059,-0.738425672054291,0.666569590568542,0.102041602134705,-0.761256515979767,0.628917634487152,0.157959043979645,
- -0.982932090759277,0.168607234954834,0.0735948607325554,-0.916653037071228,0.305583775043488,0.257615685462952,-0.774475455284119,0.632603168487549,0.00112229597289115,-0.738425672054291,0.666569590568542,0.102041602134705,-0.916653037071228,0.305583775043488,0.257615685462952,-0.856774985790253,0.478487312793732,0.192318856716156,-0.274122834205627,0.959908723831177,0.0585826002061367,-0.262971699237823,0.962210536003113,0.070687972009182,-0.298401832580566,0.950139045715332,0.0905101448297501,-0.298401832580566,0.950139045715332,0.0905101448297501,-0.0921485647559166,0.995223760604858,0.0322229154407978,-0.213075444102287,0.975660920143127,0.0518130660057068,-0.213075444102287,0.975660920143127,0.0518130660057068,-0.0921485647559166,0.995223760604858,0.0322229154407978,-0.0903271213173866,0.994720458984375,0.0487063638865948,-0.0812005922198296,0.993871808052063,0.0750023499131203,0.0221704095602036,0.999464511871338,0.0240694768726826,-0.0921485647559166,0.995223760604858,0.0322229154407978,-0.962053418159485,0.255221784114838,0.0965147912502289,-0.371238619089127,0.921205401420593,0.116458564996719,-0.274122834205627,0.959908723831177,0.0585826002061367,-0.262971699237823,0.962210536003113,0.070687972009182,-0.500732243061066,0.865590393543243,-0.00453227758407593,-0.432826220989227,0.899052321910858,0.0660783872008324,-0.357375651597977,0.933955132961273,-0.00324302166700363,-0.500732243061066,0.865590393543243,-0.00453227758407593,-0.262971699237823,0.962210536003113,0.070687972009182,-0.25788602232933,0.965711832046509,0.0299249067902565,-0.432826220989227,0.899052321910858,0.0660783872008324,-0.500732243061066,0.865590393543243,-0.00453227758407593,-0.0921485647559166,0.995223760604858,0.0322229154407978,-0.298401832580566,0.950139045715332,0.0905101448297501,-0.432826220989227,0.899052321910858,0.0660783872008324,-0.0921485647559166,0.995223760604858,0.0322229154407978,0.0559773743152618,-0.0140788443386555,-0.998332798480988,0.00247072614729404,-0.647130906581879,-0.762374997138977,-0.000489997735712677,0.214102029800415,-0.976811230182648,
- -0.240580230951309,0.0297398436814547,-0.970173537731171,0.0408315807580948,-0.996205747127533,-0.0768561661243439,-0.112119346857071,-0.0151295997202396,-0.993579566478729,-0.105044655501843,-0.500610172748566,-0.859275996685028,0.00247072614729404,-0.647130906581879,-0.762374997138977,-0.139258682727814,-0.986656665802002,-0.0843548402190208,0.0678770989179611,-0.992211878299713,0.104443304240704,-0.0118759237229824,-0.811043381690979,0.58486545085907,-0.240580230951309,0.0297398436814547,-0.970173537731171,0.280201643705368,0.956586480140686,-0.0801841989159584,-0.207513645291328,0.974349915981293,-0.0870662927627563,0.51658046245575,0.028797747567296,-0.855754315853119,-0.0416822172701359,-0.993897080421448,-0.10213390737772,0.0408315807580948,-0.996205747127533,-0.0768561661243439,-0.105044655501843,-0.500610172748566,-0.859275996685028,-0.112119346857071,-0.0151295997202396,-0.993579566478729,-0.329204350709915,-0.0516147315502167,-0.942847073078156,-0.105044655501843,-0.500610172748566,-0.859275996685028,-0.0505408979952335,0.998643100261688,0.0125573128461838,-0.0381402149796486,0.999189496040344,0.0128800496459007,0.0380152240395546,0.999274015426636,-0.00251711346209049,0.0430493578314781,0.998992681503296,0.0126682054251432,0.0204411372542381,0.999589860439301,0.0200583692640066,0.0559773743152618,-0.0140788443386555,-0.998332798480988,-0.139258682727814,-0.986656665802002,-0.0843548402190208,0.00247072614729404,-0.647130906581879,-0.762374997138977,-0.000489997735712677,0.214102029800415,-0.976811230182648,0.280201643705368,0.956586480140686,-0.0801841989159584,-0.240580230951309,0.0297398436814547,-0.970173537731171,-0.0118759237229824,-0.811043381690979,0.58486545085907,-0.0281795058399439,-0.0174712520092726,0.999450206756592,0.325160712003708,0.00230494374409318,0.945655941963196,0.00695869233459234,0.0504590198397636,0.998701930046082,0.0934588685631752,0.0249245166778564,0.995311081409454,0.325160712003708,0.00230494374409318,0.945655941963196,-0.0281795058399439,-0.0174712520092726,0.999450206756592,
- 0.0769970342516899,-0.0233150012791157,0.996758699417114,-0.395761460065842,0.0225015226751566,0.918077766895294,-0.0281795058399439,-0.0174712520092726,0.999450206756592,0.0678770989179611,-0.992211878299713,0.104443304240704,-0.0717171430587769,-0.991805493831635,0.105728656053543,0.0769970342516899,-0.0233150012791157,0.996758699417114,0.0123648624867201,0.855112493038177,0.518295049667358,-0.171758770942688,0.984740495681763,0.0280200429260731,-0.0506987124681473,0.99647730588913,-0.0668044537305832,-0.051324263215065,0.991116642951965,0.122693963348866,0.0299748238176107,0.997532904148102,0.063479520380497,0.103480257093906,0.0231236089020967,0.994362711906433,0.254880726337433,0.0217742566019297,0.966727375984192,-0.30642631649971,0.949321627616882,0.0699381083250046,-0.0305906720459461,0.68047034740448,-0.732136905193329,-0.158350184559822,0.986873686313629,-0.031710647046566,0.130847275257111,0.989406943321228,-0.0628720223903656,-0.25291782617569,0.965813100337982,0.0569006949663162,0.325160712003708,0.00230494374409318,0.945655941963196,0.0934588685631752,0.0249245166778564,0.995311081409454,0.0678770989179611,-0.992211878299713,0.104443304240704,-0.0281795058399439,-0.0174712520092726,0.999450206756592,-0.0118759237229824,-0.811043381690979,0.58486545085907,0.0123648624867201,0.855112493038177,0.518295049667358,-0.25291782617569,0.965813100337982,0.0569006949663162,-0.171758770942688,0.984740495681763,0.0280200429260731,0.0123648624867201,0.855112493038177,0.518295049667358,0.00695869233459234,0.0504590198397636,0.998701930046082,0.325160712003708,0.00230494374409318,0.945655941963196,-0.25291782617569,0.965813100337982,0.0569006949663162,-0.066647857427597,-0.99741929769516,-0.0266999863088131,0.00546441320329905,-0.0171790476888418,-0.999837517738342,-0.0545046254992485,-0.0183836724609137,-0.998344302177429,-0.283354848623276,-0.954554677009583,-0.0923868343234062,0.132037475705147,0.00246644229628146,-0.991241753101349,-0.184976771473885,0.98231840133667,-0.0288850925862789,0.296484857797623,0.952048003673553,-0.075508214533329,
- -0.0862819775938988,0.0181896090507507,-0.996104717254639,-0.115811720490456,-0.439760446548462,0.890616893768311,-0.00108590128365904,-0.384833633899689,0.922985434532166,-0.0831274092197418,-0.991470456123352,0.100380465388298,0.126467987895012,-0.989752531051636,0.0663020461797714,0.00546441320329905,-0.0171790476888418,-0.999837517738342,0.132037475705147,0.00246644229628146,-0.991241753101349,-0.0862819775938988,0.0181896090507507,-0.996104717254639,-0.0545046254992485,-0.0183836724609137,-0.998344302177429,-0.134633779525757,-0.0179377663880587,0.990733087062836,0.0129085890948772,-0.0146639328449965,0.999809145927429,-0.00108590128365904,-0.384833633899689,0.922985434532166,-0.115811720490456,-0.439760446548462,0.890616893768311,0.474530398845673,0.0339591316878796,0.879583835601807,-0.19428950548172,0.977814257144928,0.078300766646862,0.125608444213867,0.455460965633392,0.881350100040436,-0.19428950548172,0.977814257144928,0.078300766646862,0.113467559218407,0.993540048599243,-0.00181512907147408,0.125608444213867,0.455460965633392,0.881350100040436,-0.428104430437088,0.129341676831245,-0.894425749778748,0.29123592376709,0.92117166519165,-0.25811704993248,0.154497981071472,0.984723329544067,-0.0803144127130508,-0.651502072811127,0.00915145315229893,-0.758591771125793,-0.150971263647079,-0.967833399772644,-0.201261729001999,-0.157046720385551,-0.951844394207001,-0.263303190469742,-0.105044655501843,-0.500610172748566,-0.859275996685028,-0.105044655501843,-0.500610172748566,-0.859275996685028,-0.25827220082283,0.0368455909192562,-0.965369343757629,0.119782701134682,-0.0127168223261833,-0.992718756198883,0.474530398845673,0.0339591316878796,0.879583835601807,-0.20845328271389,-0.0126864025369287,0.977950096130371,-0.396337926387787,0.07393828779459,0.91512268781662,-0.317240208387375,-0.0804447829723358,0.944927155971527,0.126108184456825,-0.991961598396301,-0.0104447053745389,-0.151037886738777,0.964035153388977,0.218686953186989,-0.0641532763838768,0.997878074645996,0.0111300060525537,-0.0784802883863449,0.993316650390625,-0.0846339166164398,
- -0.0165888033807278,0.783125221729279,0.621642827987671,0.0252039842307568,0.492196410894394,0.870119333267212,0.315066605806351,0.017391886562109,0.948910176753998,-0.0988028272986412,0.991601288318634,0.0834565833210945,-0.0988028272986412,0.991601288318634,0.0834565833210945,0.00196725316345692,0.996376514434814,0.0850293636322021,-0.0165888033807278,0.783125221729279,0.621642827987671,0.183238700032234,-0.982784926891327,-0.0236091557890177,-0.328301429748535,0.138073578476906,-0.93442702293396,0.28041672706604,-0.0297453682869673,-0.959417462348938,-0.522095024585724,-0.848113059997559,-0.0901171863079071,0.0654430612921715,-0.0236724447458982,-0.997575521469116,-0.0327441990375519,0.997579991817474,-0.0613364726305008,0.526555001735687,0.847276508808136,-0.069729819893837,-0.544867932796478,0.0220579486340284,-0.838231682777405,0.103576436638832,-0.991551697254181,0.0780855491757393,0.183238700032234,-0.982784926891327,-0.0236091557890177,-0.522095024585724,-0.848113059997559,-0.0901171863079071,-0.00438903691247106,-0.997768461704254,0.0666254311800003,-0.328301429748535,0.138073578476906,-0.93442702293396,0.0654430612921715,-0.0236724447458982,-0.997575521469116,-0.544867932796478,0.0220579486340284,-0.838231682777405,0.28041672706604,-0.0297453682869673,-0.959417462348938,0.386932820081711,0.515610098838806,0.764479756355286,0.226609781384468,-0.0674198567867279,0.971649467945099,0.396068066358566,0.00612874887883663,0.918200731277466,0.213939160108566,0.847692728042603,0.485434979200363,-0.0557323321700096,0.0113147050142288,0.998381614685059,0.103576436638832,-0.991551697254181,0.0780855491757393,-0.00438903691247106,-0.997768461704254,0.0666254311800003,-0.604979515075684,-0.0197732523083687,0.795995533466339,0.213939160108566,0.847692728042603,0.485434979200363,0.0550325587391853,0.998429596424103,0.0104753831401467,0.230678766965866,0.934185743331909,0.272184640169144,0.386932820081711,0.515610098838806,0.764479756355286,-0.127617418766022,-0.991158306598663,-0.0363185964524746,-0.0663010701537132,-0.0106536271050572,-0.997742831707001,
- 0.167913049459457,-0.0304884519428015,-0.985330283641815,-0.22050629556179,-0.968955278396606,-0.111815944314003,0.124190673232079,0.062852680683136,-0.990265727043152,-0.0332490876317024,0.680170953273773,-0.732299149036407,0.139780506491661,0.988182961940765,-0.0628959611058235,-0.0919268578290939,0.0079838577657938,-0.995733797550201,0.0832550823688507,-0.99430513381958,0.0665271356701851,0.0290656853467226,-0.997528433799744,0.0639716982841492,-0.127617418766022,-0.991158306598663,-0.0363185964524746,-0.22050629556179,-0.968955278396606,-0.111815944314003,-0.0919268578290939,0.0079838577657938,-0.995733797550201,0.0682073831558228,0.0211957022547722,-0.997446000576019,0.124190673232079,0.062852680683136,-0.990265727043152,-0.140856549143791,-0.0170095600187778,0.989883959293365,0.254880726337433,0.0217742566019297,0.966727375984192,0.103480257093906,0.0231236089020967,0.994362711906433,-0.00136037275660783,0.00434045493602753,0.999989688396454,-0.140856549143791,-0.0170095600187778,0.989883959293365,0.0832550823688507,-0.99430513381958,0.0665271356701851,0.0442988052964211,-0.998065054416656,0.0436325073242188,0.0415458045899868,-0.013326458632946,0.999047815799713,0.195940807461739,0.0109891481697559,0.980554223060608,-0.0394941680133343,0.997667193412781,0.0556830018758774,0.213939160108566,0.847692728042603,0.485434979200363,-0.0394941680133343,0.997667193412781,0.0556830018758774,0.0550325587391853,0.998429596424103,0.0104753831401467,0.213939160108566,0.847692728042603,0.485434979200363,0.279316395521164,0.0228720121085644,-0.959926664829254,-0.21943536400795,0.97310072183609,-0.0701656192541122,-0.0332490876317024,0.680170953273773,-0.732299149036407,0.124190673232079,0.062852680683136,-0.990265727043152,0.0682073831558228,0.0211957022547722,-0.997446000576019,0.279316395521164,0.0228720121085644,-0.959926664829254,0.124190673232079,0.062852680683136,-0.990265727043152,0.343690991401672,-0.934330105781555,-0.0943605527281761,-0.147942870855331,-0.0344965755939484,-0.98839408159256,-0.0663010701537132,-0.0106536271050572,-0.997742831707001,
- -0.127617418766022,-0.991158306598663,-0.0363185964524746,-0.138458132743835,-0.989298403263092,0.0460234172642231,0.343690991401672,-0.934330105781555,-0.0943605527281761,-0.127617418766022,-0.991158306598663,-0.0363185964524746,0.0290656853467226,-0.997528433799744,0.0639716982841492,-0.604979515075684,-0.0197732523083687,0.795995533466339,-0.00438903691247106,-0.997768461704254,0.0666254311800003,-0.138458132743835,-0.989298403263092,0.0460234172642231,0.167051643133163,-0.0292609948664904,0.985513865947723,0.213939160108566,0.847692728042603,0.485434979200363,0.396068066358566,0.00612874887883663,0.918200731277466,0.195940807461739,0.0109891481697559,0.980554223060608,0.386932820081711,0.515610098838806,0.764479756355286,0.230678766965866,0.934185743331909,0.272184640169144,0.335757672786713,0.941393792629242,0.0323186181485653,-0.146215438842773,0.815198719501495,0.560421466827393,0.600071549415588,0.0295461528003216,-0.799400508403778,-0.443144023418427,0.892993867397308,-0.0786479189991951,-0.0327441990375519,0.997579991817474,-0.0613364726305008,0.0654430612921715,-0.0236724447458982,-0.997575521469116,-0.308002829551697,-0.0291339755058289,-0.950939297676086,0.600071549415588,0.0295461528003216,-0.799400508403778,0.0654430612921715,-0.0236724447458982,-0.997575521469116,-0.328301429748535,0.138073578476906,-0.93442702293396,0.175282880663872,-0.980736374855042,-0.0862092897295952,-0.308002829551697,-0.0291339755058289,-0.950939297676086,-0.328301429748535,0.138073578476906,-0.93442702293396,0.183238700032234,-0.982784926891327,-0.0236091557890177,-0.431425541639328,-0.899305284023285,0.0715684741735458,0.175282880663872,-0.980736374855042,-0.0862092897295952,0.183238700032234,-0.982784926891327,-0.0236091557890177,0.103576436638832,-0.991551697254181,0.0780855491757393,0.450768351554871,-0.0309701077640057,0.892103612422943,-0.431425541639328,-0.899305284023285,0.0715684741735458,0.103576436638832,-0.991551697254181,0.0780855491757393,-0.0557323321700096,0.0113147050142288,0.998381614685059,-0.146215438842773,0.815198719501495,0.560421466827393,
- -0.415861308574677,0.0137168718501925,0.909324645996094,0.226609781384468,-0.0674198567867279,0.971649467945099,0.386932820081711,0.515610098838806,0.764479756355286,-0.146215438842773,0.815198719501495,0.560421466827393,0.141155749559402,0.988003730773926,0.0626390874385834,-0.306279689073563,0.0199660789221525,0.951732158660889,-0.146215438842773,0.815198719501495,0.560421466827393,0.335757672786713,0.941393792629242,0.0323186181485653,0.141155749559402,0.988003730773926,0.0626390874385834,-0.115811720490456,-0.439760446548462,0.890616893768311,0.126467987895012,-0.989752531051636,0.0663020461797714,-0.134633779525757,-0.0179377663880587,0.990733087062836,-0.306279689073563,0.0199660789221525,0.951732158660889,-0.415861308574677,0.0137168718501925,0.909324645996094,-0.146215438842773,0.815198719501495,0.560421466827393,0.151616647839546,0.985515654087067,0.0759691894054413,-0.277247995138168,0.0157529413700104,0.960669219493866,0.0252039842307568,0.492196410894394,0.870119333267212,-0.0165888033807278,0.783125221729279,0.621642827987671,0.00196725316345692,0.996376514434814,0.0850293636322021,0.151616647839546,0.985515654087067,0.0759691894054413,-0.0165888033807278,0.783125221729279,0.621642827987671,-0.651502072811127,0.00915145315229893,-0.758591771125793,0.154497981071472,0.984723329544067,-0.0803144127130508,-0.275013744831085,0.958223402500153,-0.078583799302578,0.286364078521729,0.0269206836819649,-0.957742631435394,-0.105044655501843,-0.500610172748566,-0.859275996685028,0.119782701134682,-0.0127168223261833,-0.992718756198883,0.0979979112744331,-0.0150396479293704,-0.995073020458221,0.0979979112744331,-0.0150396479293704,-0.995073020458221,0.000823413312900811,-0.996627688407898,-0.082053005695343,-0.105044655501843,-0.500610172748566,-0.859275996685028,0.0675654709339142,-0.407609343528748,0.910653412342072,0.0265198238193989,-0.99646270275116,0.0797432959079742,-0.0831274092197418,-0.991470456123352,0.100380465388298,-0.00108590128365904,-0.384833633899689,0.922985434532166,0.0276257693767548,-0.0252091623842716,0.999300479888916,
- 0.0265198238193989,-0.99646270275116,0.0797432959079742,0.0675654709339142,-0.407609343528748,0.910653412342072,0.0276257693767548,-0.0252091623842716,0.999300479888916,0.0675654709339142,-0.407609343528748,0.910653412342072,-0.00108590128365904,-0.384833633899689,0.922985434532166,0.0129085890948772,-0.0146639328449965,0.999809145927429,0.51658046245575,0.028797747567296,-0.855754315853119,-0.207513645291328,0.974349915981293,-0.0870662927627563,0.29123592376709,0.92117166519165,-0.25811704993248,-0.94321221113205,0.265369355678558,0.199824258685112,-0.157046720385551,-0.951844394207001,-0.263303190469742,-0.0416822172701359,-0.993897080421448,-0.10213390737772,-0.105044655501843,-0.500610172748566,-0.859275996685028,-0.105044655501843,-0.500610172748566,-0.859275996685028,-0.329204350709915,-0.0516147315502167,-0.942847073078156,-0.25827220082283,0.0368455909192562,-0.965369343757629,-0.253560930490494,0.660760998725891,0.706471383571625,-0.288252115249634,0.0458763390779495,0.956455051898956,-0.20845328271389,-0.0126864025369287,0.977950096130371,0.125608444213867,0.455460965633392,0.881350100040436,-0.395761460065842,0.0225015226751566,0.918077766895294,0.0270566400140524,0.995889961719513,0.0864360779523849,-0.25291782617569,0.965813100337982,0.0569006949663162,0.0934588685631752,0.0249245166778564,0.995311081409454,0.0270566400140524,0.995889961719513,0.0864360779523849,-0.0784802883863449,0.993316650390625,-0.0846339166164398,-0.0506987124681473,0.99647730588913,-0.0668044537305832,-0.171758770942688,0.984740495681763,0.0280200429260731,-0.25291782617569,0.965813100337982,0.0569006949663162,-0.00136037275660783,0.00434045493602753,0.999989688396454,0.167051643133163,-0.0292609948664904,0.985513865947723,0.252343386411667,-0.423987627029419,0.869803071022034,0.115296244621277,0.990778863430023,0.0711632817983627,-0.314778029918671,0.0206638146191835,0.948940455913544,0.103480257093906,0.0231236089020967,0.994362711906433,0.0299748238176107,0.997532904148102,0.063479520380497,-0.2260502576828,0.971585214138031,-0.0701688379049301,
- -0.158350184559822,0.986873686313629,-0.031710647046566,-0.0305906720459461,0.68047034740448,-0.732136905193329,0.230678766965866,0.934185743331909,0.272184640169144,0.0550325587391853,0.998429596424103,0.0104753831401467,0.52687931060791,0.847075223922729,-0.0697258040308952,0.241610616445541,0.966901242733002,-0.0820137187838554,0.335757672786713,0.941393792629242,0.0323186181485653,0.230678766965866,0.934185743331909,0.272184640169144,0.241610616445541,0.966901242733002,-0.0820137187838554,-0.281324476003647,0.95656281709671,-0.0764475986361504,0.226609781384468,-0.0674198567867279,0.971649467945099,-0.415861308574677,0.0137168718501925,0.909324645996094,0.450768351554871,-0.0309701077640057,0.892103612422943,-0.0557323321700096,0.0113147050142288,0.998381614685059,0.396068066358566,0.00612874887883663,0.918200731277466,0.226609781384468,-0.0674198567867279,0.971649467945099,-0.0557323321700096,0.0113147050142288,0.998381614685059,-0.604979515075684,-0.0197732523083687,0.795995533466339,0.0252039842307568,0.492196410894394,0.870119333267212,-0.277247995138168,0.0157529413700104,0.960669219493866,-0.00135412532836199,-0.0034729007165879,0.999993085861206,-0.108169220387936,-0.0340564846992493,0.993548989295959,0.0525027737021446,-0.994393885135651,0.0917848497629166,0.0265198238193989,-0.99646270275116,0.0797432959079742,0.0276257693767548,-0.0252091623842716,0.999300479888916,0.000823413312900811,-0.996627688407898,-0.082053005695343,-0.150971263647079,-0.967833399772644,-0.201261729001999,-0.105044655501843,-0.500610172748566,-0.859275996685028,-0.0831274092197418,-0.991470456123352,0.100380465388298,-0.066647857427597,-0.99741929769516,-0.0266999863088131,-0.283354848623276,-0.954554677009583,-0.0923868343234062,0.126467987895012,-0.989752531051636,0.0663020461797714,-0.134633779525757,-0.0179377663880587,0.990733087062836,0.126467987895012,-0.989752531051636,0.0663020461797714,-0.431425541639328,-0.899305284023285,0.0715684741735458,0.450768351554871,-0.0309701077640057,0.892103612422943,-0.00135412532836199,-0.0034729007165879,0.999993085861206,
- 0.315066605806351,0.017391886562109,0.948910176753998,0.0252039842307568,0.492196410894394,0.870119333267212,-0.140856549143791,-0.0170095600187778,0.989883959293365,-0.00136037275660783,0.00434045493602753,0.999989688396454,0.252343386411667,-0.423987627029419,0.869803071022034,0.252343386411667,-0.423987627029419,0.869803071022034,0.128176793456078,-0.813094437122345,0.567845165729523,0.0832550823688507,-0.99430513381958,0.0665271356701851,-0.140856549143791,-0.0170095600187778,0.989883959293365,0.128176793456078,-0.813094437122345,0.567845165729523,0.0290656853467226,-0.997528433799744,0.0639716982841492,0.0832550823688507,-0.99430513381958,0.0665271356701851,-0.138458132743835,-0.989298403263092,0.0460234172642231,0.0290656853467226,-0.997528433799744,0.0639716982841492,0.128176793456078,-0.813094437122345,0.567845165729523,0.167051643133163,-0.0292609948664904,0.985513865947723,-0.138458132743835,-0.989298403263092,0.0460234172642231,0.128176793456078,-0.813094437122345,0.567845165729523,0.252343386411667,-0.423987627029419,0.869803071022034,-0.00136037275660783,0.00434045493602753,0.999989688396454,0.103480257093906,0.0231236089020967,0.994362711906433,-0.314778029918671,0.0206638146191835,0.948940455913544,0.167051643133163,-0.0292609948664904,0.985513865947723,-0.396337926387787,0.07393828779459,0.91512268781662,0.390894263982773,-0.0436545461416245,0.919399857521057,-0.0826378613710403,-0.261961907148361,0.961533665657043,-0.317240208387375,-0.0804447829723358,0.944927155971527,-0.396337926387787,0.07393828779459,0.91512268781662,-0.0826378613710403,-0.261961907148361,0.961533665657043,-0.108169220387936,-0.0340564846992493,0.993548989295959,-0.317240208387375,-0.0804447829723358,0.944927155971527,-0.0826378613710403,-0.261961907148361,0.961533665657043,-0.0826378613710403,-0.261961907148361,0.961533665657043,-0.0408592335879803,-0.669765472412109,0.741447746753693,0.0525027737021446,-0.994393885135651,0.0917848497629166,-0.108169220387936,-0.0340564846992493,0.993548989295959,0.0439876355230808,-0.998885750770569,0.0170976780354977,
- 0.0525027737021446,-0.994393885135651,0.0917848497629166,-0.0408592335879803,-0.669765472412109,0.741447746753693,-0.0408592335879803,-0.669765472412109,0.741447746753693,0.360111594200134,-0.924645960330963,-0.123893901705742,0.0439876355230808,-0.998885750770569,0.0170976780354977,-0.0408592335879803,-0.669765472412109,0.741447746753693,-0.20149365067482,-0.977640807628632,0.0601561367511749,0.360111594200134,-0.924645960330963,-0.123893901705742,-0.0717171430587769,-0.991805493831635,0.105728656053543,-0.20149365067482,-0.977640807628632,0.0601561367511749,-0.0408592335879803,-0.669765472412109,0.741447746753693,0.0769970342516899,-0.0233150012791157,0.996758699417114,-0.0717171430587769,-0.991805493831635,0.105728656053543,-0.0408592335879803,-0.669765472412109,0.741447746753693,-0.0826378613710403,-0.261961907148361,0.961533665657043,0.390894263982773,-0.0436545461416245,0.919399857521057,0.0769970342516899,-0.0233150012791157,0.996758699417114,-0.0826378613710403,-0.261961907148361,0.961533665657043,-0.395761460065842,0.0225015226751566,0.918077766895294,-0.288252115249634,0.0458763390779495,0.956455051898956,-0.253560930490494,0.660760998725891,0.706471383571625,-0.253560930490494,0.660760998725891,0.706471383571625,0.0270566400140524,0.995889961719513,0.0864360779523849,-0.395761460065842,0.0225015226751566,0.918077766895294,-0.253560930490494,0.660760998725891,0.706471383571625,0.120956212282181,0.960654258728027,0.250026255846024,0.0270566400140524,0.995889961719513,0.0864360779523849,0.125608444213867,0.455460965633392,0.881350100040436,0.113467559218407,0.993540048599243,-0.00181512907147408,0.120956212282181,0.960654258728027,0.250026255846024,-0.253560930490494,0.660760998725891,0.706471383571625,-0.20845328271389,-0.0126864025369287,0.977950096130371,-0.288252115249634,0.0458763390779495,0.956455051898956,0.390894263982773,-0.0436545461416245,0.919399857521057,-0.396337926387787,0.07393828779459,0.91512268781662,0.125608444213867,0.455460965633392,0.881350100040436,-0.20845328271389,-0.0126864025369287,0.977950096130371,
- 0.474530398845673,0.0339591316878796,0.879583835601807,-0.19428950548172,0.977814257144928,0.078300766646862,0.0208911895751953,0.99722695350647,-0.0714284107089043,0.245068341493607,0.943367421627045,-0.223605737090111,0.113467559218407,0.993540048599243,-0.00181512907147408,0.130847275257111,0.989406943321228,-0.0628720223903656,-0.158350184559822,0.986873686313629,-0.031710647046566,0.0299748238176107,0.997532904148102,0.063479520380497,-0.30642631649971,0.949321627616882,0.0699381083250046,-0.0919268578290939,0.0079838577657938,-0.995733797550201,0.139780506491661,0.988182961940765,-0.0628959611058235,-0.00119605765212327,0.997049391269684,-0.0767545402050018,0.00178478832822293,-0.00135153799783438,-0.999997496604919,-0.0663010701537132,-0.0106536271050572,-0.997742831707001,0.0682073831558228,0.0211957022547722,-0.997446000576019,-0.0919268578290939,0.0079838577657938,-0.995733797550201,0.167913049459457,-0.0304884519428015,-0.985330283641815,-0.147942870855331,-0.0344965755939484,-0.98839408159256,0.279316395521164,0.0228720121085644,-0.959926664829254,0.0682073831558228,0.0211957022547722,-0.997446000576019,-0.0663010701537132,-0.0106536271050572,-0.997742831707001,-0.544867932796478,0.0220579486340284,-0.838231682777405,0.526555001735687,0.847276508808136,-0.069729819893837,-0.21943536400795,0.97310072183609,-0.0701656192541122,0.279316395521164,0.0228720121085644,-0.959926664829254,-0.2260502576828,0.971585214138031,-0.0701688379049301,0.115296244621277,0.990778863430023,0.0711632817983627,0.0299748238176107,0.997532904148102,0.063479520380497,-0.158350184559822,0.986873686313629,-0.031710647046566,-0.134633779525757,-0.0179377663880587,0.990733087062836,0.315066605806351,0.017391886562109,0.948910176753998,-0.00135412532836199,-0.0034729007165879,0.999993085861206,0.0129085890948772,-0.0146639328449965,0.999809145927429,-0.0988028272986412,0.991601288318634,0.0834565833210945,0.315066605806351,0.017391886562109,0.948910176753998,-0.306279689073563,0.0199660789221525,0.951732158660889,0.141155749559402,0.988003730773926,0.0626390874385834,
- 0.0192414373159409,0.999791204929352,-0.00689291022717953,0.00196725316345692,0.996376514434814,0.0850293636322021,-0.0988028272986412,0.991601288318634,0.0834565833210945,0.128659874200821,0.988615989685059,-0.0780077278614044,0.151616647839546,0.985515654087067,0.0759691894054413,-0.0924627110362053,0.993031322956085,-0.0730723813176155,0.0208911895751953,0.99722695350647,-0.0714284107089043,-0.19428950548172,0.977814257144928,0.078300766646862,-0.19428950548172,0.977814257144928,0.078300766646862,0.474530398845673,0.0339591316878796,0.879583835601807,-0.277247995138168,0.0157529413700104,0.960669219493866,0.151616647839546,0.985515654087067,0.0759691894054413,-0.108169220387936,-0.0340564846992493,0.993548989295959,0.474530398845673,0.0339591316878796,0.879583835601807,-0.317240208387375,-0.0804447829723358,0.944927155971527,-0.139258682727814,-0.986656665802002,-0.0843548402190208,0.0408315807580948,-0.996205747127533,-0.0768561661243439,-0.0717171430587769,-0.991805493831635,0.105728656053543,0.0678770989179611,-0.992211878299713,0.104443304240704,-0.139258682727814,-0.986656665802002,-0.0843548402190208,0.0559773743152618,-0.0140788443386555,-0.998332798480988,-0.112119346857071,-0.0151295997202396,-0.993579566478729,0.0408315807580948,-0.996205747127533,-0.0768561661243439,0.0559773743152618,-0.0140788443386555,-0.998332798480988,-0.240580230951309,0.0297398436814547,-0.970173537731171,0.51658046245575,0.028797747567296,-0.855754315853119,-0.112119346857071,-0.0151295997202396,-0.993579566478729,-0.25827220082283,0.0368455909192562,-0.965369343757629,-0.329204350709915,-0.0516147315502167,-0.942847073078156,0.51658046245575,0.028797747567296,-0.855754315853119,-0.428104430437088,0.129341676831245,-0.894425749778748,0.119782701134682,-0.0127168223261833,-0.992718756198883,-0.25827220082283,0.0368455909192562,-0.965369343757629,-0.428104430437088,0.129341676831245,-0.894425749778748,-0.651502072811127,0.00915145315229893,-0.758591771125793,0.0979979112744331,-0.0150396479293704,-0.995073020458221,0.119782701134682,-0.0127168223261833,-0.992718756198883,
- -0.651502072811127,0.00915145315229893,-0.758591771125793,0.286364078521729,0.0269206836819649,-0.957742631435394,0.15650999546051,-0.00964374095201492,-0.987629354000092,0.15650999546051,-0.00964374095201492,-0.987629354000092,0.344686090946198,-0.933612525463104,-0.0977708846330643,0.000823413312900811,-0.996627688407898,-0.082053005695343,0.0979979112744331,-0.0150396479293704,-0.995073020458221,0.000823413312900811,-0.996627688407898,-0.082053005695343,0.0525027737021446,-0.994393885135651,0.0917848497629166,0.0439876355230808,-0.998885750770569,0.0170976780354977,-0.150971263647079,-0.967833399772644,-0.201261729001999,0.0439876355230808,-0.998885750770569,0.0170976780354977,0.360111594200134,-0.924645960330963,-0.123893901705742,-0.157046720385551,-0.951844394207001,-0.263303190469742,-0.150971263647079,-0.967833399772644,-0.201261729001999,0.360111594200134,-0.924645960330963,-0.123893901705742,-0.20149365067482,-0.977640807628632,0.0601561367511749,-0.0416822172701359,-0.993897080421448,-0.10213390737772,-0.157046720385551,-0.951844394207001,-0.263303190469742,-0.30642631649971,0.949321627616882,0.0699381083250046,0.254880726337433,0.0217742566019297,0.966727375984192,-0.0117422128096223,0.0137693444266915,0.999836266040802,0.0240630377084017,0.998982906341553,0.0381351634860039,0.130847275257111,0.989406943321228,-0.0628720223903656,-0.30642631649971,0.949321627616882,0.0699381083250046,0.0240630377084017,0.998982906341553,0.0381351634860039,0.113654017448425,0.99351555109024,-0.00313629629090428,0.113532200455666,0.990620076656342,-0.0760416090488434,0.52687931060791,0.847075223922729,-0.0697258040308952,0.0550325587391853,0.998429596424103,0.0104753831401467,-0.0394941680133343,0.997667193412781,0.0556830018758774,0.115296244621277,0.990778863430023,0.0711632817983627,-0.2260502576828,0.971585214138031,-0.0701688379049301,-0.0394941680133343,0.997667193412781,0.0556830018758774,0.195940807461739,0.0109891481697559,0.980554223060608,-0.314778029918671,0.0206638146191835,0.948940455913544,0.115296244621277,0.990778863430023,0.0711632817983627,
- 0.167051643133163,-0.0292609948664904,0.985513865947723,-0.314778029918671,0.0206638146191835,0.948940455913544,0.195940807461739,0.0109891481697559,0.980554223060608,0.396068066358566,0.00612874887883663,0.918200731277466,-0.604979515075684,-0.0197732523083687,0.795995533466339,0.128659874200821,0.988615989685059,-0.0780077278614044,-0.0988028272986412,0.991601288318634,0.0834565833210945,0.141155749559402,0.988003730773926,0.0626390874385834,0.335757672786713,0.941393792629242,0.0323186181485653,-0.281324476003647,0.95656281709671,-0.0764475986361504,-0.0862819775938988,0.0181896090507507,-0.996104717254639,0.296484857797623,0.952048003673553,-0.075508214533329,-0.443144023418427,0.892993867397308,-0.0786479189991951,0.600071549415588,0.0295461528003216,-0.799400508403778,-0.0545046254992485,-0.0183836724609137,-0.998344302177429,-0.0862819775938988,0.0181896090507507,-0.996104717254639,0.600071549415588,0.0295461528003216,-0.799400508403778,-0.308002829551697,-0.0291339755058289,-0.950939297676086,-0.283354848623276,-0.954554677009583,-0.0923868343234062,-0.0545046254992485,-0.0183836724609137,-0.998344302177429,-0.308002829551697,-0.0291339755058289,-0.950939297676086,0.175282880663872,-0.980736374855042,-0.0862092897295952,0.126467987895012,-0.989752531051636,0.0663020461797714,-0.283354848623276,-0.954554677009583,-0.0923868343234062,0.175282880663872,-0.980736374855042,-0.0862092897295952,-0.431425541639328,-0.899305284023285,0.0715684741735458,0.0265198238193989,-0.99646270275116,0.0797432959079742,0.0525027737021446,-0.994393885135651,0.0917848497629166,0.000823413312900811,-0.996627688407898,-0.082053005695343,0.344686090946198,-0.933612525463104,-0.0977708846330643,0.0276257693767548,-0.0252091623842716,0.999300479888916,-0.277247995138168,0.0157529413700104,0.960669219493866,0.474530398845673,0.0339591316878796,0.879583835601807,-0.108169220387936,-0.0340564846992493,0.993548989295959,-0.00135412532836199,-0.0034729007165879,0.999993085861206,-0.277247995138168,0.0157529413700104,0.960669219493866,0.0276257693767548,-0.0252091623842716,0.999300479888916,
- 0.0129085890948772,-0.0146639328449965,0.999809145927429,0.0192414373159409,0.999791204929352,-0.00689291022717953,-0.0924627110362053,0.993031322956085,-0.0730723813176155,0.151616647839546,0.985515654087067,0.0759691894054413,0.00196725316345692,0.996376514434814,0.0850293636322021,0.286364078521729,0.0269206836819649,-0.957742631435394,-0.275013744831085,0.958223402500153,-0.078583799302578,-0.184976771473885,0.98231840133667,-0.0288850925862789,0.132037475705147,0.00246644229628146,-0.991241753101349,0.15650999546051,-0.00964374095201492,-0.987629354000092,0.286364078521729,0.0269206836819649,-0.957742631435394,0.132037475705147,0.00246644229628146,-0.991241753101349,0.00546441320329905,-0.0171790476888418,-0.999837517738342,-0.066647857427597,-0.99741929769516,-0.0266999863088131,0.344686090946198,-0.933612525463104,-0.0977708846330643,0.15650999546051,-0.00964374095201492,-0.987629354000092,0.00546441320329905,-0.0171790476888418,-0.999837517738342,0.0265198238193989,-0.99646270275116,0.0797432959079742,0.344686090946198,-0.933612525463104,-0.0977708846330643,-0.066647857427597,-0.99741929769516,-0.0266999863088131,-0.0831274092197418,-0.991470456123352,0.100380465388298,-0.306279689073563,0.0199660789221525,0.951732158660889,0.315066605806351,0.017391886562109,0.948910176753998,-0.134633779525757,-0.0179377663880587,0.990733087062836,0.450768351554871,-0.0309701077640057,0.892103612422943,-0.415861308574677,0.0137168718501925,0.909324645996094,-0.395761460065842,0.0225015226751566,0.918077766895294,0.0769970342516899,-0.0233150012791157,0.996758699417114,0.390894263982773,-0.0436545461416245,0.919399857521057,-0.288252115249634,0.0458763390779495,0.956455051898956,0.0270566400140524,0.995889961719513,0.0864360779523849,0.120956212282181,0.960654258728027,0.250026255846024,-0.0784802883863449,0.993316650390625,-0.0846339166164398,-0.112119346857071,-0.0151295997202396,-0.993579566478729,0.51658046245575,0.028797747567296,-0.855754315853119,-0.329204350709915,-0.0516147315502167,-0.942847073078156,-0.0717171430587769,-0.991805493831635,0.105728656053543,
- 0.0408315807580948,-0.996205747127533,-0.0768561661243439,-0.0416822172701359,-0.993897080421448,-0.10213390737772,-0.20149365067482,-0.977640807628632,0.0601561367511749,0.167913049459457,-0.0304884519428015,-0.985330283641815,-0.0919268578290939,0.0079838577657938,-0.995733797550201,0.00178478832822293,-0.00135153799783438,-0.999997496604919,0.000663272105157375,-0.0104331858456135,-0.999945402145386,-0.00175946997478604,-0.0104346694424748,-0.999944090843201,-0.00397407729178667,-0.0104359705001116,-0.999937653541565,-0.046682134270668,-0.022237217053771,-0.998662233352661,-0.22050629556179,-0.968955278396606,-0.111815944314003,0.167913049459457,-0.0304884519428015,-0.985330283641815,-0.046682134270668,-0.022237217053771,-0.998662233352661,-0.00907705631107092,-0.995334029197693,-0.0960620269179344,0.0832550823688507,-0.99430513381958,0.0665271356701851,-0.22050629556179,-0.968955278396606,-0.111815944314003,-0.00907705631107092,-0.995334029197693,-0.0960620269179344,0.0496900044381619,-0.998655617237091,0.0147607009857893,0.0442988052964211,-0.998065054416656,0.0436325073242188,-0.00438903691247106,-0.997768461704254,0.0666254311800003,-0.522095024585724,-0.848113059997559,-0.0901171863079071,0.343690991401672,-0.934330105781555,-0.0943605527281761,-0.138458132743835,-0.989298403263092,0.0460234172642231,-0.522095024585724,-0.848113059997559,-0.0901171863079071,0.28041672706604,-0.0297453682869673,-0.959417462348938,-0.147942870855331,-0.0344965755939484,-0.98839408159256,0.343690991401672,-0.934330105781555,-0.0943605527281761,0.28041672706604,-0.0297453682869673,-0.959417462348938,-0.544867932796478,0.0220579486340284,-0.838231682777405,0.279316395521164,0.0228720121085644,-0.959926664829254,-0.147942870855331,-0.0344965755939484,-0.98839408159256,0.0415458045899868,-0.013326458632946,0.999047815799713,0.0519072934985161,0.00188306090421975,0.998650133609772,0.0436165221035481,0.00188338849693537,0.999046564102173,0.0343614518642426,0.00188360072206706,0.999407708644867,-0.0117422128096223,0.0137693444266915,0.999836266040802,
- 0.254880726337433,0.0217742566019297,0.966727375984192,-0.140856549143791,-0.0170095600187778,0.989883959293365,-0.472606718540192,0.865380048751831,0.166613951325417,-0.206096023321152,0.976877570152283,0.056874793022871,-0.269202798604965,0.959421157836914,0.083911307156086,-0.465890526771545,0.863988757133484,0.190969601273537,-0.465886056423187,0.863989293575287,0.190978482365608,-0.380491524934769,0.921177387237549,0.0815993994474411,-0.213337376713753,0.971785664558411,0.100597761571407,-0.206222176551819,0.974133014678955,0.0923978537321091,-0.420072644948959,0.902232587337494,0.09754678606987,-0.420072644948959,0.902232587337494,0.09754678606987,-0.206222176551819,0.974133014678955,0.0923978537321091,-0.206096023321152,0.976877570152283,0.056874793022871,-0.472606718540192,0.865380048751831,0.166613951325417,-0.213337376713753,0.971785664558411,0.100597761571407,-0.288869023323059,0.952621877193451,0.0952175408601761,-0.0765815749764442,0.982717931270599,0.168525412678719,-0.0739549547433853,0.98423433303833,0.16066586971283,-0.000734591856598854,0.992066323757172,0.125713557004929,-0.213337376713753,0.971785664558411,0.100597761571407,-0.000734591856598854,0.992066323757172,0.125713557004929,0.156864032149315,0.986672043800354,0.0432672277092934,-0.206222176551819,0.974133014678955,0.0923978537321091,-0.206096023321152,0.976877570152283,0.056874793022871,-0.206222176551819,0.974133014678955,0.0923978537321091,0.156864032149315,0.986672043800354,0.0432672277092934,0.105017617344856,0.994286179542542,-0.0191368460655212,-0.269202798604965,0.959421157836914,0.083911307156086,-0.206096023321152,0.976877570152283,0.056874793022871,0.105017617344856,0.994286179542542,-0.0191368460655212,-0.00402335077524185,0.995483994483948,-0.0948447287082672,-0.00898983329534531,0.994693338871002,-0.102491587400436,-0.391302138566971,0.919376373291016,0.0403696224093437,-0.387417256832123,0.921595513820648,0.0238651670515537,-0.288869023323059,0.952621877193451,0.0952175408601761,-0.213337376713753,0.971785664558411,0.100597761571407,
- -0.380491524934769,0.921177387237549,0.0815993994474411,-0.974368691444397,0.21444870531559,-0.0679532587528229,-0.962053418159485,0.255221784114838,0.0965147912502289,-0.982932090759277,0.168607234954834,0.0735948607325554,-0.891786396503448,0.445547580718994,-0.0787681713700294,-0.916653037071228,0.305583775043488,0.257615685462952,-0.982932090759277,0.168607234954834,0.0735948607325554,-0.962053418159485,0.255221784114838,0.0965147912502289,-0.918439030647278,0.350989788770676,0.18241722881794,-0.856774985790253,0.478487312793732,0.192318856716156,-0.916653037071228,0.305583775043488,0.257615685462952,-0.918439030647278,0.350989788770676,0.18241722881794,-0.888695597648621,0.400987267494202,0.222327098250389,-0.079354003071785,0.826519846916199,-0.557286202907562,-0.302568018436432,-0.538250386714935,-0.786599814891815,0.274769097566605,-0.659382700920105,-0.699797391891479,-0.0339895412325859,0.829391121864319,-0.557633578777313,-0.0339895412325859,0.829391121864319,-0.557633578777313,-0.147277608513832,0.943612039089203,-0.29648894071579,-0.159744694828987,0.931968331336975,-0.325448632240295,-0.079354003071785,0.826519846916199,-0.557286202907562,-0.302568018436432,-0.538250386714935,-0.786599814891815,-0.110282346606255,-0.0926034525036812,-0.989576876163483,-0.104824990034103,0.0601566582918167,-0.992669582366943,0.274769097566605,-0.659382700920105,-0.699797391891479,0.0156171321868896,0.77947199344635,0.626242339611053,0.336550742387772,0.566769778728485,0.752001166343689,0.00702203251421452,0.952616453170776,-0.304093152284622,-0.00684645492583513,0.982048749923706,0.188503056764603,0.0339935496449471,0.836982369422913,-0.54617303609848,0.410762310028076,-0.522670924663544,-0.747053921222687,-0.331006318330765,-0.509194254875183,-0.794453382492065,0.393473356962204,0.763785600662231,-0.511674046516418,0.340776026248932,0.891804575920105,-0.297584146261215,0.0339935496449471,0.836982369422913,-0.54617303609848,0.393473356962204,0.763785600662231,-0.511674046516418,0.00702203251421452,0.952616453170776,-0.304093152284622,
- 0.410762310028076,-0.522670924663544,-0.747053921222687,-0.2407536059618,0.00796944834291935,-0.970553576946259,0.156368657946587,-0.0167107358574867,-0.987557470798492,-0.331006318330765,-0.509194254875183,-0.794453382492065,-0.147277608513832,0.943612039089203,-0.29648894071579,-0.109660312533379,0.595262825489044,0.796013057231903,0.358276277780533,0.589506208896637,0.723961710929871,-0.159744694828987,0.931968331336975,-0.325448632240295,0.00702203251421452,0.952616453170776,-0.304093152284622,0.336550742387772,0.566769778728485,0.752001166343689,-0.221819832921028,0.607503592967987,0.762715697288513,0.340776026248932,0.891804575920105,-0.297584146261215,0.393473356962204,0.763785600662231,-0.511674046516418,-0.331006318330765,-0.509194254875183,-0.794453382492065,-0.0305107068270445,-0.083010122179985,-0.996081590652466,0.00817015115171671,0.603626191616058,-0.797225654125214,0.00702203251421452,0.952616453170776,-0.304093152284622,0.393473356962204,0.763785600662231,-0.511674046516418,0.00817015115171671,0.603626191616058,-0.797225654125214,-0.00684645492583513,0.982048749923706,0.188503056764603,-0.331006318330765,-0.509194254875183,-0.794453382492065,0.156368657946587,-0.0167107358574867,-0.987557470798492,0.0170607566833496,-0.684965491294861,-0.728375792503357,-0.0305107068270445,-0.083010122179985,-0.996081590652466,0.358276277780533,0.589506208896637,0.723961710929871,-0.109660312533379,0.595262825489044,0.796013057231903,-0.042758371680975,0.00444697495549917,0.999075591564178,-0.0837774723768234,0.556489884853363,0.826619863510132,-0.159744694828987,0.931968331336975,-0.325448632240295,0.358276277780533,0.589506208896637,0.723961710929871,-0.0262443497776985,0.618989288806915,0.784960806369781,-0.0406257584691048,0.932514250278473,-0.358840972185135,-0.079354003071785,0.826519846916199,-0.557286202907562,-0.159744694828987,0.931968331336975,-0.325448632240295,-0.0406257584691048,0.932514250278473,-0.358840972185135,-0.0388999134302139,0.896906137466431,-0.440506666898727,-0.0455193780362606,0.851030826568604,-0.523139297962189,
- 0.358276277780533,0.589506208896637,0.723961710929871,-0.0837774723768234,0.556489884853363,0.826619863510132,0.00214785826392472,0.564260303974152,0.825594127178192,-0.0261746980249882,0.582714259624481,0.812255442142487,-0.0480350330471992,0.582020103931427,0.811754405498505,-0.0301537718623877,0.582608699798584,0.812193214893341,-0.0262443497776985,0.618989288806915,0.784960806369781,0.340776026248932,0.891804575920105,-0.297584146261215,-0.221819832921028,0.607503592967987,0.762715697288513,-0.109660312533379,0.595262825489044,0.796013057231903,-0.147277608513832,0.943612039089203,-0.29648894071579,-0.147277608513832,0.943612039089203,-0.29648894071579,-0.0339895412325859,0.829391121864319,-0.557633578777313,0.0339935496449471,0.836982369422913,-0.54617303609848,0.340776026248932,0.891804575920105,-0.297584146261215,-0.0339895412325859,0.829391121864319,-0.557633578777313,0.274769097566605,-0.659382700920105,-0.699797391891479,0.410762310028076,-0.522670924663544,-0.747053921222687,0.0339935496449471,0.836982369422913,-0.54617303609848,0.410762310028076,-0.522670924663544,-0.747053921222687,-0.0834706127643585,-0.0541459247469902,-0.995038151741028,-0.2407536059618,0.00796944834291935,-0.970553576946259,0.274769097566605,-0.659382700920105,-0.699797391891479,-0.104824990034103,0.0601566582918167,-0.992669582366943,-0.0834706127643585,-0.0541459247469902,-0.995038151741028,0.410762310028076,-0.522670924663544,-0.747053921222687,-0.221819832921028,0.607503592967987,0.762715697288513,0.138697400689125,0.548883676528931,0.82431173324585,-0.042758371680975,0.00444697495549917,0.999075591564178,-0.109660312533379,0.595262825489044,0.796013057231903,0.138697400689125,0.548883676528931,0.82431173324585,-0.221819832921028,0.607503592967987,0.762715697288513,0.336550742387772,0.566769778728485,0.752001166343689,-0.15700975060463,0.557243883609772,0.815369367599487,0.0255123693495989,0.445471733808517,0.894932508468628,-0.0106958821415901,0.444947004318237,0.895493030548096,-0.0152511261403561,0.446136444807053,0.89483505487442,
- -0.0192007254809141,0.447681367397308,0.893987059593201,0.00883075408637524,0.44565287232399,0.895162343978882,-0.0110857514664531,0.445125907659531,0.895399332046509,-0.0803169533610344,0.824885189533234,0.559565663337708,-0.0340396985411644,0.829251527786255,0.557838082313538,0.123228475451469,-0.647581934928894,0.751965761184692,-0.484296143054962,-0.503228187561035,0.715694546699524,-0.0340396985411644,0.829251527786255,0.557838082313538,-0.0803169533610344,0.824885189533234,0.559565663337708,-0.168527871370316,0.931809425354004,0.321449309587479,-0.147265821695328,0.943638980388641,0.29640930891037,-0.484296143054962,-0.503228187561035,0.715694546699524,0.123228475451469,-0.647581934928894,0.751965761184692,-0.082318976521492,-0.000592002645134926,0.996605932712555,-0.0436789691448212,0.0967540070414543,0.994349479675293,0.0156217869371176,0.779650628566742,-0.626020014286041,-0.0068481033667922,0.982052743434906,-0.188482671976089,0.00701899453997612,0.952650606632233,0.303986102342606,0.33645960688591,0.567049145698547,-0.751831293106079,0.0348315946757793,0.836959838867188,0.546154737472534,0.393254578113556,0.763871610164642,0.511713743209839,-0.33108788728714,-0.509441018104553,0.79426109790802,0.534700810909271,-0.491199433803558,0.687617719173431,0.340820521116257,0.891834616661072,0.297443121671677,0.00701899453997612,0.952650606632233,0.303986102342606,0.393254578113556,0.763871610164642,0.511713743209839,0.0348315946757793,0.836959838867188,0.546154737472534,0.534700810909271,-0.491199433803558,0.687617719173431,-0.33108788728714,-0.509441018104553,0.79426109790802,0.156209751963615,-0.0166881047189236,0.987582921981812,0.0568240843713284,-0.00411469163373113,0.998375773429871,-0.147265821695328,0.943638980388641,0.29640930891037,-0.168527871370316,0.931809425354004,0.321449309587479,0.292782247066498,0.596586406230927,-0.747237086296082,-0.110109478235245,0.595538139343262,-0.795745074748993,0.292782247066498,0.596586406230927,-0.747237086296082,0.00583329098299146,0.557112336158752,-0.830416738986969,
- -0.0439873412251472,0.00461915740743279,-0.999021410942078,-0.110109478235245,0.595538139343262,-0.795745074748993,0.00701899453997612,0.952650606632233,0.303986102342606,0.340820521116257,0.891834616661072,0.297443121671677,-0.221684515476227,0.607782483100891,-0.762532949447632,0.33645960688591,0.567049145698547,-0.751831293106079,0.393254578113556,0.763871610164642,0.511713743209839,0.00813818350434303,0.60495924949646,0.796214878559113,-0.0305750593543053,-0.0823625102639198,0.996133327484131,-0.33108788728714,-0.509441018104553,0.79426109790802,0.00701899453997612,0.952650606632233,0.303986102342606,-0.0068481033667922,0.982052743434906,-0.188482671976089,0.00813818350434303,0.60495924949646,0.796214878559113,0.393254578113556,0.763871610164642,0.511713743209839,-0.33108788728714,-0.509441018104553,0.79426109790802,-0.0305750593543053,-0.0823625102639198,0.996133327484131,0.0170536655932665,-0.684513449668884,0.728800714015961,0.156209751963615,-0.0166881047189236,0.987582921981812,-0.168527871370316,0.931809425354004,0.321449309587479,-0.0526264756917953,0.935016930103302,0.350676119327545,-0.034415528178215,0.60113799571991,-0.798403918743134,0.292782247066498,0.596586406230927,-0.747237086296082,-0.0803169533610344,0.824885189533234,0.559565663337708,-0.0729588493704796,0.832943201065063,0.548527717590332,-0.0380100011825562,0.897055387496948,0.440280586481094,-0.0526264756917953,0.935016930103302,0.350676119327545,-0.168527871370316,0.931809425354004,0.321449309587479,0.292782247066498,0.596586406230927,-0.747237086296082,-0.034415528178215,0.60113799571991,-0.798403918743134,-0.0330757386982441,0.581232249736786,-0.81306517124176,-0.0466038957238197,0.580742597579956,-0.812752187252045,-0.0415233746170998,0.549211204051971,-0.834651410579681,0.00583329098299146,0.557112336158752,-0.830416738986969,0.340820521116257,0.891834616661072,0.297443121671677,-0.147265821695328,0.943638980388641,0.29640930891037,-0.110109478235245,0.595538139343262,-0.795745074748993,-0.221684515476227,0.607782483100891,-0.762532949447632,
- -0.147265821695328,0.943638980388641,0.29640930891037,0.340820521116257,0.891834616661072,0.297443121671677,0.0348315946757793,0.836959838867188,0.546154737472534,-0.0340396985411644,0.829251527786255,0.557838082313538,-0.0340396985411644,0.829251527786255,0.557838082313538,0.0348315946757793,0.836959838867188,0.546154737472534,0.534700810909271,-0.491199433803558,0.687617719173431,0.123228475451469,-0.647581934928894,0.751965761184692,0.123228475451469,-0.647581934928894,0.751965761184692,0.534700810909271,-0.491199433803558,0.687617719173431,0.0568240843713284,-0.00411469163373113,0.998375773429871,0.123228475451469,-0.647581934928894,0.751965761184692,0.0568240843713284,-0.00411469163373113,0.998375773429871,-0.209955304861069,-0.357609629631042,0.909963846206665,-0.082318976521492,-0.000592002645134926,0.996605932712555,0.00857630651444197,0.563552021980286,-0.826036036014557,0.33645960688591,0.567049145698547,-0.751831293106079,-0.221684515476227,0.607782483100891,-0.762532949447632,0.00292926630936563,0.56406706571579,-0.825723826885223,-0.0110950237140059,0.445292383432388,-0.895316481590271,0.00884485989809036,0.445807278156281,-0.895085275173187,-0.019202996045351,0.447680294513702,-0.893987476825714,-0.0152475889772177,0.446258217096329,-0.894774377346039,-0.0107105569913983,0.445139497518539,-0.895397245883942,0.0255190264433622,0.445584535598755,-0.894876062870026,-0.00586083810776472,-0.102337658405304,-0.99473249912262,0.0156217869371176,0.779650628566742,-0.626020014286041,0.33645960688591,0.567049145698547,-0.751831293106079,0.00857630651444197,0.563552021980286,-0.826036036014557,-0.221684515476227,0.607782483100891,-0.762532949447632,-0.110109478235245,0.595538139343262,-0.795745074748993,-0.0439873412251472,0.00461915740743279,-0.999021410942078,0.00292926630936563,0.56406706571579,-0.825723826885223,-0.15700975060463,0.557243883609772,0.815369367599487,0.336550742387772,0.566769778728485,0.752001166343689,0.0156171321868896,0.77947199344635,0.626242339611053,-0.0413891673088074,-0.722692549228668,0.689929306507111,
- -0.491872847080231,-0.487992525100708,0.721057832241058,-0.0558452010154724,-0.55950653553009,0.826942384243011,0.138697400689125,0.548883676528931,0.82431173324585,-0.15700975060463,0.557243883609772,0.815369367599487,0.0379646830260754,-0.553121089935303,0.832235515117645,0.0303428638726473,-0.549584031105042,0.834887206554413,0.00214785826392472,0.564260303974152,0.825594127178192,-0.0837774723768234,0.556489884853363,0.826619863510132,-0.491872847080231,-0.487992525100708,0.721057832241058,-0.15700975060463,0.557243883609772,0.815369367599487,-0.0413891673088074,-0.722692549228668,0.689929306507111,0.231077715754509,-0.564944505691528,0.79211151599884,-0.042758371680975,0.00444697495549917,0.999075591564178,0.138697400689125,0.548883676528931,0.82431173324585,-0.345667481422424,-0.550361514091492,0.760010719299316,-0.0837774723768234,0.556489884853363,0.826619863510132,-0.042758371680975,0.00444697495549917,0.999075591564178,0.0362369008362293,-0.549703538417816,-0.834573566913605,-0.302568018436432,-0.538250386714935,-0.786599814891815,-0.079354003071785,0.826519846916199,-0.557286202907562,-0.0455193780362606,0.851030826568604,-0.523139297962189,-0.00851572025567293,-0.172314554452896,-0.98500519990921,-0.110282346606255,-0.0926034525036812,-0.989576876163483,-0.302568018436432,-0.538250386714935,-0.786599814891815,0.0362369008362293,-0.549703538417816,-0.834573566913605,0.0409670248627663,-0.58874636888504,-0.807279050350189,0.0499590113759041,-0.58816784620285,-0.807194411754608,0.0645899623632431,-0.587123692035675,-0.806916356086731,-0.0729588493704796,0.832943201065063,0.548527717590332,-0.0803169533610344,0.824885189533234,0.559565663337708,-0.484296143054962,-0.503228187561035,0.715694546699524,0.0537839345633984,-0.562211990356445,0.825242400169373,0.0537839345633984,-0.562211990356445,0.825242400169373,-0.484296143054962,-0.503228187561035,0.715694546699524,-0.0436789691448212,0.0967540070414543,0.994349479675293,-0.0599825046956539,0.167817950248718,0.983991503715515,-0.0336368419229984,-0.586438834667206,0.809294760227203,
- 0.00359572423622012,-0.585002422332764,0.811023533344269,-0.266465395689011,0.963790714740753,0.0101833418011665,-0.228875055909157,0.972723186016083,0.0377620086073875,-0.229485630989075,0.972527980804443,0.0390622578561306,0.0074785128235817,0.995690107345581,0.092440739274025,-0.0620128996670246,0.997792541980743,0.0237615127116442,-0.516060590744019,0.856542527675629,-0.00404197350144386,-0.438573747873306,0.898412644863129,-0.0225328803062439,-0.165233001112938,0.986162722110748,0.0134607907384634,-0.110278747975826,0.993432879447937,-0.0304912496358156,-0.110278747975826,0.993432879447937,-0.0304912496358156,0.216116860508919,0.973259031772614,0.0778487175703049,0.266984611749649,0.952216029167175,0.14833702147007,-0.0709703490138054,0.996492564678192,-0.0443369336426258,-0.254286676645279,0.967128872871399,-0.00050351774552837,-0.27151545882225,0.96238499879837,0.00971415545791388,-0.105084851384163,0.993680059909821,0.0394600033760071,-0.135313734412193,0.990590155124664,0.0205251723527908,-0.27151545882225,0.96238499879837,0.00971415545791388,-0.266465395689011,0.963790714740753,0.0101833418011665,-0.0620128996670246,0.997792541980743,0.0237615127116442,-0.105084851384163,0.993680059909821,0.0394600033760071,-0.345588952302933,0.937897801399231,-0.0302675813436508,-0.254286676645279,0.967128872871399,-0.00050351774552837,-0.135313734412193,0.990590155124664,0.0205251723527908,-0.110278747975826,0.993432879447937,-0.0304912496358156,-0.165233001112938,0.986162722110748,0.0134607907384634,0.138271197676659,0.965297341346741,0.221545085310936,0.216116860508919,0.973259031772614,0.0778487175703049,-0.105084851384163,0.993680059909821,0.0394600033760071,0.0801098570227623,0.996785879135132,-0.000668904860503972,0.277453452348709,0.943165481090546,0.182916700839996,-0.135313734412193,0.990590155124664,0.0205251723527908,-0.0620128996670246,0.997792541980743,0.0237615127116442,0.105750814080238,0.993661820888519,0.0381194762885571,0.0801098570227623,0.996785879135132,-0.000668904860503972,-0.105084851384163,0.993680059909821,0.0394600033760071,
- 0.0074785128235817,0.995690107345581,0.092440739274025,0.147636875510216,0.987867116928101,0.0481862500309944,0.143562585115433,0.987423241138458,0.0662203282117844,0.105750814080238,0.993661820888519,0.0381194762885571,-0.0620128996670246,0.997792541980743,0.0237615127116442,-0.389010488986969,0.921039044857025,-0.0189245957881212,-0.516060590744019,0.856542527675629,-0.00404197350144386,-0.110278747975826,0.993432879447937,-0.0304912496358156,-0.0709703490138054,0.996492564678192,-0.0443369336426258,-0.391821950674057,0.919696569442749,-0.0251750536262989,-0.389010488986969,0.921039044857025,-0.0189245957881212,-0.0709703490138054,0.996492564678192,-0.0443369336426258,-0.11542321741581,0.991701483726501,0.0566195547580719,-0.391759514808655,0.919742405414581,-0.0244606211781502,0.266984611749649,0.952216029167175,0.14833702147007,0.274005591869354,0.961070477962494,0.0355597138404846,0.222477853298187,0.962069511413574,0.15787935256958,-0.11542321741581,0.991701483726501,0.0566195547580719,-0.0709703490138054,0.996492564678192,-0.0443369336426258,-0.135313734412193,0.990590155124664,0.0205251723527908,-0.165233001112938,0.986162722110748,0.0134607907384634,-0.438573747873306,0.898412644863129,-0.0225328803062439,-0.345588952302933,0.937897801399231,-0.0302675813436508,0.277453452348709,0.943165481090546,0.182916700839996,0.138271197676659,0.965297341346741,0.221545085310936,-0.165233001112938,0.986162722110748,0.0134607907384634,-0.135313734412193,0.990590155124664,0.0205251723527908,0.00784706324338913,0.00802203547209501,-0.999937117099762,0.0195754431188107,0.00799009297043085,-0.999776482582092,0.00745683489367366,0.00802307855337858,-0.999940037727356,0.0085617508739233,0.0080201206728816,-0.999931275844574,0.0198136530816555,0.00798943173140287,-0.9997718334198,0.0261870380491018,0.00797159690409899,-0.999625384807587,5.8863403040732e-010,0.00213971803896129,0.999997735023499,1.03526598405068e-009,0.00376325030811131,0.999992966651917,7.40702776891311e-010,0.00269249663688242,0.999996423721313,-4.95105746765173e-013,-1.7997374470724e-006,1,
- 6.90013046700244e-010,0.00250823656097054,0.999996900558472,-0.000645952182821929,-0.022013807669282,0.999757468700409,-0.000738176866434515,-0.0257573425769806,0.999668002128601,-0.000547226925846189,-0.0180064719170332,0.999837815761566,-0.000453430635388941,-0.0141992708668113,0.999899089336395,-0.000674013223033398,-0.0231528393924236,0.999731719493866,-0.000786754244472831,-0.0277291908860207,0.999615252017975,0.00900917965918779,0.0143606187775731,0.999856352806091,-0.0037676589563489,0.0142194526270032,0.999891817569733,-0.0122599275782704,0.0141243394464254,0.999825119972229,-0.0101558612659574,0.0141479996964335,0.999848365783691,0.000478731642942876,0.0142666278406978,0.999898195266724,-0.0096595985814929,0.999938309192657,-0.0055032866075635,-0.00635183975100517,0.999964654445648,-0.0055087162181735,-0.018241485580802,0.999818563461304,-0.00548891490325332,-0.0113137317821383,0.999920964241028,-0.00550054758787155,0.00750510022044182,0.999956548213959,-0.00553080812096596,-0.008312176913023,-0.99995094537735,-0.00539625389501452,-0.00189696601592004,-0.999983668327332,-0.00539660174399614,-0.000798802939243615,-0.999985098838806,-0.00539663899689913,-0.0019548733253032,-0.999983549118042,-0.00539659988135099,-0.00657842587679625,-0.999963819980621,-0.00539636891335249,-0.014842844568193,-0.99987530708313,-0.00539566995576024,-0.638957977294922,-0.472687840461731,0.60687643289566,-0.638957977294922,-0.472687840461731,0.60687643289566,-0.638957977294922,-0.472687870264053,0.60687643289566,0.42167341709137,0.316080152988434,0.849873542785645,0.421673446893692,0.316080152988434,0.849873423576355,0.421673387289047,0.316080123186111,0.849873542785645,0.0680723786354065,0.632160007953644,-0.771841883659363,0.0680724233388901,0.632160007953644,-0.771841883659363,0.0680723935365677,0.632160067558289,-0.771841883659363,-0.0631188899278641,0.997905492782593,-0.0141687830910087,-0.0255965273827314,0.999571979045868,-0.0141713218763471,-0.0692155733704567,0.997501134872437,-0.0141664780676365,-0.0431166626513004,0.998969554901123,-0.0141726266592741,
- -0.0570042319595814,0.998273372650146,-0.014170560054481,-0.140288531780243,0.990010261535645,-0.014100281521678,0.0870414078235626,-0.995545268058777,-0.0362406745553017,0.0873198583722115,-0.995521128177643,-0.036236435174942,0.0875580012798309,-0.995500326156616,-0.0362327843904495,0.0875158756971359,-0.995503962039948,-0.0362334288656712,0.0875140279531479,-0.995504081249237,-0.0362334474921227,0.0874178633093834,-0.995512545108795,-0.0362349227070808,1.84827513294294e-008,0.0955934748053551,0.995420515537262,2.13967421558436e-008,0.110664740204811,0.993857800960541,2.1664154914447e-008,0.112047791481018,0.99370288848877,2.19033555737269e-008,0.113284960389137,0.993562519550323,2.25358007810428e-008,0.116555988788605,0.993184208869934,2.13826591988209e-008,0.110591910779476,0.993865966796875,0.0344672314822674,0.429811537265778,0.902260482311249,0.0344672277569771,0.429811596870422,0.902260541915894,0.0344672314822674,0.429811537265778,0.902260482311249,-0.16265133023262,-0.707212328910828,-0.688037276268005,-0.162651315331459,-0.707212328910828,-0.68803733587265,-0.16265133023262,-0.707212328910828,-0.68803733587265,0.00639762356877327,0.0382196642458439,-0.999248921871185,0.00286668282933533,0.038182906806469,-0.999266684055328,-0.00462942244485021,0.0381032899022102,-0.999263107776642,-0.0120364036411047,0.0380225144326687,-0.999204397201538,-0.0154781872406602,0.0379842706024647,-0.999158442020416,-0.00458498857915401,0.0381037630140781,-0.999263286590576,0.0375189781188965,-0.00721460953354836,0.999269962310791,0.037519745528698,-0.011624850332737,0.999228358268738,0.0375198498368263,-0.0144989797845483,0.99919068813324,0.037519745528698,-0.0116062089800835,0.999228537082672,0.037519097328186,-0.00771419145166874,0.99926620721817,0.0375174656510353,-0.00276694097556174,0.999292194843292,-0.649142980575562,0.152322843670845,0.745259165763855,-0.649142980575562,0.152322843670845,0.745259165763855,-0.649143040180206,0.152322858572006,0.745259165763855,0.0562533400952816,-0.0374896228313446,0.99771249294281,0.0364264994859695,-0.0377344824373722,0.998623669147491,
- 0.0492522493004799,-0.0375778079032898,0.998079299926758,0.0621312819421291,-0.0374141298234463,0.997366547584534,0.0632510930299759,-0.037399597465992,0.997296631336212,0.0643094182014465,-0.0373858213424683,0.997229516506195,0.4912468791008,0.295199573040009,0.819471597671509,0.4912468791008,0.295199602842331,0.819471597671509,0.4912468791008,0.295199573040009,0.819471597671509,0.0217378661036491,0.00469388533383608,-0.999752700328827,0.0313573516905308,0.00473296502605081,-0.99949711561203,0.0361115597188473,0.00475212140008807,-0.999336540699005,0.0265297461301088,0.00471340632066131,-0.999636948108673,0.0168727859854698,0.00467395829036832,-0.999846816062927,0.0284793041646481,0.999579906463623,0.00539169320836663,0.0154592432081699,0.99983823299408,0.00919894874095917,0.0257087424397469,0.999632656574249,0.00859151128679514,0.0234491098672152,0.999709665775299,0.00554772140458226,-0.053339421749115,-0.0469193533062935,0.99747359752655,-0.0641755685210228,-0.0470314659178257,0.996829748153687,-0.0539899095892906,-0.0469262488186359,0.997438311576843,-0.0499541684985161,-0.0468832142651081,0.997650563716888,-0.050749659538269,-0.0468917563557625,0.997610032558441,-0.0597752518951893,-0.046986598521471,0.997105360031128,-0.0668529570102692,-0.0470583289861679,0.996652483940125,0.0363246165215969,-0.000303845328744501,-0.999340057373047,0.0363246165215969,-0.000317080732202157,-0.999339997768402,0.0363240875303745,-0.00456180376932025,-0.999329686164856,0.0363229103386402,-0.00879321061074734,-0.999301433563232,0.0363243408501148,-0.00314248190261424,-0.999335110187531,0.0186970178037882,-0.0210656970739365,-0.999603271484375,0.0186472535133362,-0.0168028045445681,-0.999684989452362,0.0186062585562468,-0.0133127411827445,-0.999738335609436,0.0186153575778008,-0.0140858683735132,-0.999727547168732,0.0186366345733404,-0.0158971641212702,-0.999699890613556,-0.381806910037994,-0.476688832044601,-0.791827797889709,-0.381806910037994,-0.476688891649246,-0.791827797889709,-0.381806910037994,-0.476688891649246,-0.791827797889709,
- 0.0257087424397469,0.999632656574249,0.00859151128679514,0.0154592432081699,0.99983823299408,0.00919894874095917,0.00167091039475054,0.999934554100037,0.0113266762346029,0.00406235130503774,0.999926745891571,0.0114009017124772,0.0131610315293074,0.999845206737518,0.0116827208548784,-0.000499206362292171,-0.999565839767456,-0.0294600483030081,-0.000990439555607736,-0.999565064907074,-0.029475923627615,-0.00197564135305583,-0.999562621116638,-0.0295077413320541,-0.00099135166965425,-0.999565064907074,-0.0294759534299374,-0.000993176712654531,-0.999565064907074,-0.029476011171937,-0.387523889541626,0.0429437570273876,-0.920858860015869,-0.387523919343948,0.0429437607526779,-0.920858860015869,-0.387523919343948,0.0429437533020973,-0.920858919620514,0.0608834587037563,-0.998046040534973,-0.0140484236180782,0.0246679726988077,-0.999596953392029,-0.0140507882460952,0.0667229145765305,-0.997672736644745,-0.0140463123098016,0.0415670499205589,-0.999036908149719,-0.0140519822016358,0.05502799898386,-0.998385965824127,-0.0140500580891967,0.135410845279694,-0.99069082736969,-0.0139850825071335,-0.0838958770036697,0.99582302570343,-0.036028578877449,-0.0841659307479858,0.995800375938416,-0.036024633795023,-0.0843977555632591,0.995780885219574,-0.036021251231432,-0.0843561664223671,0.995784342288971,-0.0360218584537506,-0.0843527764081955,0.99578469991684,-0.0360219068825245,-0.0842610374093056,0.995792388916016,-0.0360232517123222,-6.33970884678092e-008,-0.094807356595993,0.995495736598969,-7.34001162072673e-008,-0.109766431152821,0.99395740032196,-7.43130996738728e-008,-0.111131750047207,0.993805706501007,-7.51287174693971e-008,-0.112351469695568,0.993668556213379,-7.73068080661687e-008,-0.115608692169189,0.993294835090637,-7.33514937678592e-008,-0.109693728387356,0.99396550655365,-0.0316268764436245,-0.431789726018906,0.901419758796692,-0.0316268764436245,-0.431789696216583,0.901419758796692,-0.0316268615424633,-0.431789726018906,0.901419758796692,0.160511940717697,0.712608575820923,-0.682953119277954,0.16051197052002,0.712608516216278,-0.682953119277954,
- 0.160511985421181,0.712608575820923,-0.682953178882599,-0.00613401317968965,-0.0385306850075722,-0.999238610267639,-0.0027458337135613,-0.038496695458889,-0.999255001544952,0.00442948658019304,-0.0384232550859451,-0.99925172328949,0.011508665047586,-0.0383488573133945,-0.999198198318481,0.0148006733506918,-0.0383136086165905,-0.99915623664856,0.00438152858987451,-0.0384237505495548,-0.999251961708069,-0.0392899215221405,0.00714929634705186,0.999202370643616,-0.0392902046442032,0.011535425670445,0.999161243438721,-0.0392899997532368,0.0143813723698258,0.99912440776825,-0.0392902083694935,0.0115163270384073,0.999161541461945,-0.0392899885773659,0.00764993112534285,0.999198615550995,-0.0392888449132442,0.00272483215667307,0.999224185943604,0.662604033946991,-0.162102490663528,0.731217265129089,0.662604033946991,-0.16210250556469,0.731217265129089,0.662604033946991,-0.16210250556469,0.731217265129089,-0.0537793599069119,0.0378599837422371,0.997834920883179,-0.0348263643682003,0.0380855575203896,0.998667478561401,-0.0470859259366989,0.0379412285983562,0.998170018196106,-0.0593970902264118,0.0377904549241066,0.997518837451935,-0.0604698657989502,0.0377770401537418,0.997454881668091,-0.0614838860929012,0.0377643182873726,0.997393429279327,-0.4947469830513,-0.31184720993042,0.811157643795013,-0.4947469830513,-0.31184720993042,0.811157703399658,-0.494747012853622,-0.311847180128098,0.811157703399658,-0.00895108934491873,-0.00898908451199532,-0.999919533729553,-0.0222582127898932,-0.00894287694245577,-0.999712288379669,-0.00846850499510765,-0.00899073109030724,-0.999923765659332,-0.00975263025611639,-0.00898634735494852,-0.999912142753601,-0.0225253663957119,-0.00894193258136511,-0.999706387519836,-0.0297948773950338,-0.00891599711030722,-0.999516308307648,-1.57509705278613e-009,-0.00190975505392998,0.999998211860657,-2.77098743950432e-009,-0.00335973431356251,0.999994397163391,-1.99185312688144e-009,-0.0024150584358722,0.999997079372406,-1.68216968132739e-011,-2.0395775209181e-005,1,-1.85293380638996e-009,-0.00224662362597883,0.999997556209564,
- 0.00050218403339386,0.019588416442275,0.999808073043823,0.000468495418317616,0.0178597886115313,0.999840497970581,0.000513009319547564,0.0201438888907433,0.99979704618454,0.00036741083022207,0.0126730538904667,0.999919652938843,0.00055210996652022,0.0221502501517534,0.99975448846817,0.000557928637135774,0.0224488228559494,0.999747931957245,-0.0101751368492842,-0.0161397568881512,0.999818027019501,0.00433521531522274,-0.0159354042261839,0.999863624572754,0.01398198120296,-0.0157976802438498,0.999777436256409,0.0115900691598654,-0.0158319696784019,0.999807476997375,-0.000488545221742243,-0.0160037148743868,0.999871850013733,0.0123115265741944,-0.999912202358246,-0.00490249320864677,0.00809302274137735,-0.999955177307129,-0.00491030840203166,0.0232518222182989,-0.999717712402344,-0.00488181691616774,0.0144213046878576,-0.999884009361267,-0.00489855138584971,-0.0095709664747119,-0.999942064285278,-0.00494208093732595,0.00833008904010057,0.999953925609589,-0.00479309912770987,0.00178640126250684,0.999986946582794,-0.00479346513748169,0.00101967772934586,0.999988079071045,-0.00479349493980408,0.00236264988780022,0.999985814094543,-0.00479344138875604,0.0112185515463352,0.999925553798676,-0.00479287235066295,0.0189212933182716,0.999809443950653,-0.00479207187891006,0.671285390853882,0.390431731939316,0.630030989646912,0.671285390853882,0.390431731939316,0.630030989646912,0.671285390853882,0.390431702136993,0.630030989646912,-0.43682524561882,-0.256772041320801,0.862120509147644,-0.436825275421143,-0.256772041320801,0.862120568752289,-0.43682524561882,-0.256772011518478,0.862120568752289,-0.0158102530986071,-0.650102555751801,-0.75968211889267,-0.0158102083951235,-0.650102555751801,-0.759682059288025,-0.0158102381974459,-0.650102555751801,-0.75968211889267,0.00564067298546433,-0.00865100789815187,0.999946773052216,0.00545043591409922,-0.00865177344530821,0.999947726726532,-0.000482062983792275,-0.00867551937699318,0.999962270259857,0.00573579827323556,-0.00865062512457371,0.999946236610413,0.0178852938115597,-0.00860100891441107,0.999803066253662,
- -0.0430135056376457,0.999069929122925,-0.00302575714886189,-0.0439594350755215,0.999002993106842,-0.00778082897886634,-0.0542561709880829,0.998505175113678,-0.006620142608881,-0.00600253837183118,0.999964773654938,-0.00587355950847268,0.0263077598065138,-0.058580432087183,-0.997936069965363,0.0412449091672897,-0.0585687234997749,-0.997430980205536,0.0300633572041988,-0.0585787259042263,-0.997830033302307,0.0237470138818026,-0.0585811361670494,-0.998000264167786,0.0248209219425917,-0.0585808828473091,-0.997974097728729,0.0362311862409115,-0.0585741177201271,-0.997625410556793,0.0431413985788822,-0.0585663020610809,-0.997350931167603,0.00322157237678766,-0.00043598809861578,0.999994814395905,0.00322181917726994,-0.000427301478339359,0.99999475479126,0.0030912752263248,-0.00501929549500346,0.99998265504837,0.00296041811816394,-0.00961987022310495,0.999949395656586,0.00313471490517259,-0.00349152414128184,0.999989032745361,0.0145693589001894,-0.0219728145748377,0.999652445316315,0.0146115645766258,-0.0178913176059723,0.999733209609985,0.0146573362872005,-0.0134380385279655,0.99980229139328,0.0146611426025629,-0.0130665525794029,0.999807119369507,0.0146281290799379,-0.0162830986082554,0.999760448932648,0.431075185537338,-0.403426170349121,0.807106971740723,0.431075185537338,-0.403426140546799,0.807106971740723,0.431075245141983,-0.403426200151443,0.807106971740723,-0.0542561709880829,0.998505175113678,-0.006620142608881,-0.0439594350755215,0.999002993106842,-0.00778082897886634,0.0168573651462793,0.999791741371155,-0.0115023972466588,-0.00959473662078381,0.999887824058533,-0.0115089314058423,-0.0560803897678852,0.99836003780365,-0.0115008903667331,0.0417627766728401,-0.998649299144745,0.030909588560462,0.0131382988765836,-0.999437034130096,0.0308715123683214,0.0316518284380436,-0.999021232128143,0.0308990310877562,0.0114285238087177,-0.999458193778992,0.0308684390038252,0.0409085564315319,-0.998684704303741,0.0309088192880154,0.351169884204865,0.0320152007043362,0.935764253139496,0.351169914007187,0.0320152007043362,0.935764193534851,
- 0.351169884204865,0.0320152007043362,0.935764312744141,-0.0786839425563812,-0.996798872947693,0.0141774788498878,-0.0319922864437103,-0.999387562274933,0.0141813866794109,-0.086332231760025,-0.996165573596954,0.0141738737002015,-0.0537385269999504,-0.998454391956329,0.0141834281384945,-0.0710005164146423,-0.99737548828125,0.0141802551224828,-0.174574568867683,-0.984543442726135,0.0140711404383183,0.108562014997005,0.993452668190002,0.035584844648838,0.108910135924816,0.993414700031281,0.0355781987309456,0.109206229448318,0.993382453918457,0.0355725362896919,0.109159424901009,0.993387520313263,0.0355734303593636,0.109164662659168,0.993386924266815,0.0355733297765255,0.109034784138203,0.993401169776917,0.0355758108198643,3.56851153071602e-008,-0.0955973938107491,-0.995420098304749,4.13107947849767e-008,-0.110668115317822,-0.993857502937317,4.18239878285931e-008,-0.112042896449566,-0.993703365325928,4.22836663460657e-008,-0.113274335861206,-0.993563771247864,4.35080949046096e-008,-0.116554498672485,-0.993184387683868,4.12840783781121e-008,-0.110596537590027,-0.993865489959717,0.0415613763034344,-0.433856248855591,-0.900022983551025,0.0415613986551762,-0.433856248855591,-0.900022983551025,0.0415613688528538,-0.433856278657913,-0.900022983551025,-0.188442409038544,0.683993816375732,0.704728245735168,-0.188442409038544,0.683993816375732,0.704728305339813,-0.188442379236221,0.683993816375732,0.704728245735168,0.00798767153173685,-0.0382562540471554,0.999236106872559,0.00357936252839863,-0.0381988883018494,0.999263823032379,-0.0057855537161231,-0.038074541836977,0.99925822019577,-0.0150462631136179,-0.0379482805728912,0.999166429042816,-0.0193503014743328,-0.0378884933888912,0.999094665050507,-0.0057337018661201,-0.0380752347409725,0.999258458614349,0.0301374923437834,0.00723949167877436,-0.99951958656311,0.030137600377202,0.0116362832486629,-0.999478042125702,0.0301373582333326,0.0144918989390135,-0.999440729618073,0.0301375929266214,0.0116110518574715,-0.999478280544281,0.0301375351846218,0.00773636857047677,-0.99951583147049,
- 0.0301367901265621,0.00279209925793111,-0.999541938304901,-0.576860189437866,-0.104916676878929,-0.81007707118988,-0.576860189437866,-0.10491668432951,-0.81007707118988,-0.576860189437866,-0.104916676878929,-0.81007707118988,0.0702477470040321,0.0371242240071297,-0.996838510036469,0.0455174669623375,0.0375060364603996,-0.998259305953979,0.0615164078772068,0.0372617058455944,-0.997410356998444,0.0775760859251022,0.0370065756142139,-0.99629944562912,0.0789725929498672,0.0369839109480381,-0.996190547943115,0.0802924260497093,0.0369624383747578,-0.99608588218689,0.471968144178391,-0.210521876811981,-0.856111407279968,0.471968084573746,-0.210521847009659,-0.856111407279968,0.471968084573746,-0.21052186191082,-0.856111347675323,0.195376738905907,0.975508630275726,-0.101049214601517,0.648879647254944,0.760888457298279,0.0020318035967648,0.016120295971632,0.999866783618927,0.00256274174898863,0.00889001507312059,0.998514592647552,0.0537564605474472,0.648879647254944,0.760888457298279,0.0020318035967648,0.193423897027969,0.975672960281372,0.103197000920773,0.00833025015890598,0.999326169490814,-0.0357483141124249,0.016120295971632,0.999866783618927,0.00256274174898863,0.193423897027969,0.975672960281372,0.103197000920773,-0.352990508079529,0.932034492492676,-0.0819123461842537,-0.0227982588112354,0.999720811843872,0.0062230839394033,0.00833025015890598,0.999326169490814,-0.0357483141124249,-0.352990508079529,0.932034492492676,-0.0819123461842537,-0.372297763824463,0.926700830459595,0.0511874929070473,-0.0227628462016582,0.999727189540863,-0.0052504213526845,-0.0227982588112354,0.999720811843872,0.0062230839394033,-0.372297763824463,0.926700830459595,0.0511874929070473,0.195376738905907,0.975508630275726,-0.101049214601517,0.00889001507312059,0.998514592647552,0.0537564605474472,-0.0227628462016582,0.999727189540863,-0.0052504213526845
- }
- BinormalsW: *2608 {
- 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
- }
- }
- LayerElementBinormal: 1 {
- Version: 102
- Name: "uvSet"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *7824 {
- a: -1,1.95606526176562e-006,7.7499926476321e-009,-1,2.32985144066333e-006,3.16456016946631e-009,-1,2.42159239860484e-006,6.12288930668115e-009,-1,1.95855682250112e-006,2.46985454310789e-008,-1,2.56733210335369e-006,-6.53731424549164e-009,-1,2.41092470787407e-006,-2.65858624004522e-009,-1,2.32985144066333e-006,3.16456016946631e-009,-1,1.95606526176562e-006,7.7499926476321e-009,1,-2.45505333396068e-007,8.49850856354806e-009,1,4.45229886736342e-007,3.45616202324095e-009,1,2.45117689701146e-007,6.34475361138698e-009,1,1.88527212685585e-006,2.73908273840107e-008,1,-7.36513413812645e-007,-1.03333235301761e-008,1,5.79416450818826e-007,-4.21941370731815e-009,1,4.45229886736342e-007,3.45616202324095e-009,1,-2.45505333396068e-007,8.49850856354806e-009,-0.999999821186066,2.06066688406281e-005,0.000637496414128691,-0.999999821186066,-1.17110503197182e-005,0.000637492339592427,-0.999999821186066,-4.40053263446316e-005,0.000637488265056163,-0.999999701976776,-1.98871330212569e-005,-0.000732930144295096,-1,-3.65717351087369e-005,7.17407192496466e-006,-0.999999523162842,0.000818172993604094,0.000637597113382071,-0.999999821186066,-0.000105544379039202,0.000637480465229601,-0.999999761581421,-0.000494375650305301,0.00063743133796379,-0.999999821186066,2.08033020498988e-006,-0.000665412982925773,-0.999999761581421,2.05583978640789e-006,-0.000675299263093621,-1,2.42159239860484e-006,6.12288930668115e-009,-1,2.12262943932728e-006,0,-1,2.32985144066333e-006,3.16456016946631e-009,-1,2.41092470787407e-006,-2.65858624004522e-009,-1,2.18941499952052e-006,0,-1,2.61513628174725e-006,0,-1,2.87658076558728e-006,0,-1,1.8608225218486e-006,0,-1,2.70894179266179e-006,-4.88057994019186e-009,-1,4.06298340749345e-006,0,-0.0150091350078583,0.757263422012329,-0.652937114238739,0.00775290699675679,0.480881631374359,-0.876751244068146,0.0315553955733776,0.03226138651371,-0.998981297016144,0.0336594618856907,0.120733194053173,-0.992114245891571,-0.0346383489668369,-0.0835229903459549,-0.995903670787811,-0.999918699264526,-0.0102033764123917,-0.00766002666205168,
- -0.999922752380371,-0.0099458359181881,-0.00746593112125993,-0.999224245548248,-0.0314964354038239,-0.0236430875957012,-0.999224305152893,-0.0314964428544044,-0.0236430894583464,-0.999874353408813,0.0126798423007131,0.00951566733419895,-0.9998819231987,0.0122939636930823,0.00922651961445808,-0.999922752380371,-0.0099458359181881,-0.00746593112125993,-0.999918699264526,-0.0102033764123917,-0.00766002666205168,0.0413038842380047,-0.562810063362122,0.825553774833679,0.0259604193270206,-0.563067555427551,0.826003015041351,-0.0356703363358974,-0.562193095684052,0.826236367225647,-0.0359785482287407,-0.562173306941986,0.826236546039581,-1,-3.65717351087369e-005,7.17407192496466e-006,-0.999999701976776,-1.98871330212569e-005,-0.000732930144295096,-0.999999761581421,2.05583978640789e-006,-0.000675299263093621,-0.999999821186066,2.08033020498988e-006,-0.000665412982925773,0.0870524793863297,-0.553413927555084,0.828344702720642,0.0564424656331539,-0.556893289089203,0.828664064407349,0.0259604193270206,-0.563067555427551,0.826003015041351,0.0413038842380047,-0.562810063362122,0.825553774833679,0,-0.999685764312744,-0.02506716363132,0,-1,9.67094729276141e-006,0,-0.999685406684875,0.0250837244093418,0,-0.999965071678162,0.00837020110338926,0,-1,1.26779650599929e-005,0,-0.999965250492096,-0.00834793038666248,0.0143099464476109,0.502615988254547,0.864391446113586,0.0143084516748786,0.502615928649902,0.864391326904297,0.0143069624900818,0.502616047859192,0.864391446113586,0.0143084516748786,0.502615928649902,0.864391326904297,1,1.90769287655712e-006,-3.29313962765809e-008,1,5.27325482835295e-007,-8.16385270496767e-009,1,5.79416450818826e-007,-4.21941370731815e-009,1,-7.36513413812645e-007,-1.03333235301761e-008,-1,2.12262943932728e-006,0,-1,2.42159239860484e-006,6.12288930668115e-009,-1,2.32985144066333e-006,3.16456016946631e-009,-1,2.61513628174725e-006,0,-0.99885082244873,0.0383320637047291,0.0287727639079094,-0.99885082244873,0.0383324287831783,0.0287722703069448,-0.9998819231987,0.0122939636930823,0.00922651961445808,-0.999874353408813,0.0126798423007131,0.00951566733419895,
- -0,-1,-4.05182709073415e-006,-0,-1,-4.73990803584456e-006,-0,-1,-6.18275362285203e-006,-0,-1,-9.06841978576267e-006,-0,-1,-5.49466403754195e-006,-0,-1,-2.67564064415637e-006,-1,2.97352767120174e-006,-2.10698676283982e-008,-1,2.70894179266179e-006,-4.88057994019186e-009,-1,2.41092470787407e-006,-2.65858624004522e-009,-1,2.56733210335369e-006,-6.53731424549164e-009,-1,2.70894179266179e-006,-4.88057994019186e-009,-1,1.8608225218486e-006,0,-1,2.18941499952052e-006,0,-1,2.41092470787407e-006,-2.65858624004522e-009,0.999881863594055,-0.0122926309704781,0.00922740437090397,0.99885082244873,-0.0383298546075821,0.0287730116397142,0.99885082244873,-0.0383309759199619,0.0287715289741755,0.999874413013458,-0.0126785105094314,0.00951657723635435,0.999922752380371,0.00994367804378271,-0.00746810249984264,0.999881863594055,-0.0122926309704781,0.00922740437090397,0.999874413013458,-0.0126785105094314,0.00951657723635435,0.999918699264526,0.0102017251774669,-0.0076615372672677,0.999224245548248,0.0314923822879791,-0.0236463118344545,0.999922752380371,0.00994367804378271,-0.00746810249984264,0.999918699264526,0.0102017251774669,-0.0076615372672677,0.999224305152893,0.0314919203519821,-0.0236469339579344,1,-7.3004537171073e-007,0,1,-8.45454167119897e-007,0,1,-5.99937266088091e-007,0,1,2.45117689701146e-007,6.34475361138698e-009,1,1.62840535722353e-007,0,1,-7.3004537171073e-007,0,1,2.45117689701146e-007,6.34475361138698e-009,1,4.45229886736342e-007,3.45616202324095e-009,1,-9.77039462668472e-007,0,1,-1.62838759365513e-007,0,1,5.79416450818826e-007,-4.21941370731815e-009,1,5.27325482835295e-007,-8.16385270496767e-009,0.99999988079071,-8.15820271782286e-007,0.000665542727801949,1,-9.77039462668472e-007,0,1,5.27325482835295e-007,-8.16385270496767e-009,0.999999821186066,-4.88518935526372e-007,0.0006754330242984,1,-1.62838759365513e-007,0,1,1.62840535722353e-007,0,1,4.45229886736342e-007,3.45616202324095e-009,1,5.79416450818826e-007,-4.21941370731815e-009,0.999997079372406,-0.00243552401661873,-1.68671995197656e-005,0.99999988079071,-8.15820271782286e-007,0.000665542727801949,
- 0.999999821186066,-4.88518935526372e-007,0.0006754330242984,0.999998152256012,-0.00189946033060551,0.000512810656800866,0.999999821186066,1.52000720845535e-005,-0.000713576737325639,0.999997079372406,-0.00243552401661873,-1.68671995197656e-005,0.999998152256012,-0.00189946033060551,0.000512810656800866,0.999866843223572,-0.0163085665553808,-0.000716387468855828,0.997340142726898,-0.0728852525353432,-0.000724655285011977,0.999324500560761,-0.0367428325116634,-0.000719637901056558,0.999999642372131,0.000565162801649421,-0.00071347871562466,0.999999463558197,-0.000787133583799005,-0.000713719229679555,1,0,4.93963966619049e-007,1,0,0,1,0,0,1,0,0,1,0,9.87928842732799e-007,1,0,4.93963966619049e-007,1,0,0,1,0,9.87928842732799e-007,1,0,-2.63447503812131e-007,1,0,9.87928842732799e-007,1,0,9.87928842732799e-007,1,0,4.93964819270332e-007,1,0,-5.26895973962382e-007,1,0,-2.63447503812131e-007,1,0,4.93964819270332e-007,1,0,-5.26895973962382e-007,1,2.01102549102226e-016,-2.03063621029287e-007,1,0,-5.26895973962382e-007,1,0,-5.26895973962382e-007,1,2.60904200144013e-016,-2.63448441728542e-007,1,-9.38865866828564e-007,-1.57267515987769e-006,1,2.01102549102226e-016,-2.03063621029287e-007,1,2.60904200144013e-016,-2.63448441728542e-007,1,-9.38538335049088e-007,-4.09145059165894e-007,1,-9.38865866828564e-007,-1.57267515987769e-006,1,-9.38538335049088e-007,-4.09145059165894e-007,1,-1.48254355281097e-006,-2.8407589525159e-006,1,-1.48254343912413e-006,-2.53163398156175e-006,1,-1.4825427570031e-006,5.8075163601734e-012,0.0539546348154545,0.0100728934630752,0.998492658138275,0.194893583655357,0.974734723567963,0.109127297997475,-0.292926222085953,0.9496710896492,0.110991641879082,-0.0476961545646191,0.0104082440957427,0.998807728290558,0.0118011478334665,0.0290981139987707,0.999506890773773,0.0539546348154545,0.0100728934630752,0.998492658138275,0.146980300545692,-0.037218663841486,0.988438963890076,-0.0325586795806885,-0.299473106861115,0.953549087047577,-0.0362297557294369,0.994302034378052,0.100254185497761,-0.0262819584459066,0.990051507949829,0.138229385018349,
- 0.0121807940304279,0.998962700366974,-0.0438770838081837,0.000876084784977138,0.937015473842621,-0.349286794662476,0.000876084784977138,0.937015473842621,-0.349286794662476,0.0121807940304279,0.998962700366974,-0.0438770838081837,-0.00471680657938123,0.574755489826202,-0.81831169128418,-0.0548076517879963,0.693919718265533,-0.717963516712189,-0.214588463306427,-0.976329743862152,0.0270589850842953,0.146980300545692,-0.037218663841486,0.988438963890076,-0.0857870876789093,-0.0371759012341499,0.995619714260101,0.293263047933578,-0.955567061901093,0.0298070274293423,-0.0308162681758404,0.999367773532867,-0.0177337341010571,-0.0109654404222965,0.999824106693268,-0.015219452790916,0.00789727922528982,0.999654293060303,0.0250824205577374,0.0171999149024487,0.999509155750275,0.0261875186115503,-0.0476961545646191,0.0104082440957427,0.998807728290558,-0.0126453768461943,0.0302318874746561,0.999462962150574,0.0305289626121521,-0.300033360719681,0.953440070152283,-0.0857870876789093,-0.0371759012341499,0.995619714260101,0.0305594764649868,0.989727199077606,0.139664530754089,0.028116337954998,0.994524419307709,0.10065184533596,-0.00056468608090654,0.936818182468414,-0.349816501140594,-0.00997523311525583,0.999020576477051,-0.0431108139455318,-0.00997523311525583,0.999020576477051,-0.0431108139455318,-0.00056468608090654,0.936818182468414,-0.349816501140594,0.0826850533485413,0.691817343235016,-0.717322766780853,0.00654258765280247,0.576192080974579,-0.817288160324097,0.0147539852187037,0.999797165393829,-0.0137114515528083,0.0344822853803635,0.9990513920784,-0.0265948679298162,-0.0154535062611103,0.999675035476685,0.0202748626470566,-0.00726818200200796,0.999656975269318,0.0251613948494196,0.0437196344137192,-0.0617320239543915,-0.997134804725647,0.120342545211315,-0.0380125939846039,-0.992004454135895,-0.0548076517879963,0.693919718265533,-0.717963516712189,-0.00471680657938123,0.574755489826202,-0.81831169128418,0.359796494245529,0.05269930139184,0.931541323661804,0.00789727922528982,0.999654293060303,0.0250824205577374,-0.00726818200200796,0.999656975269318,0.0251613948494196,
- -0.237049594521523,0.0498578473925591,0.970217347145081,-0.0902930051088333,-0.0391442030668259,-0.995145738124847,-0.0431234538555145,-0.0611112080514431,-0.997198939323425,0.00654258765280247,0.576192080974579,-0.817288160324097,0.0826850533485413,0.691817343235016,-0.717322766780853,0.146980300545692,-0.037218663841486,0.988438963890076,0.0539546348154545,0.0100728934630752,0.998492658138275,-0.0476961545646191,0.0104082440957427,0.998807728290558,-0.0857870876789093,-0.0371759012341499,0.995619714260101,0.0147539852187037,0.999797165393829,-0.0137114515528083,-0.00726818200200796,0.999656975269318,0.0251613948494196,0.00789727922528982,0.999654293060303,0.0250824205577374,-0.0109654404222965,0.999824106693268,-0.015219452790916,0.0826850533485413,0.691817343235016,-0.717322766780853,-0.00056468608090654,0.936818182468414,-0.349816501140594,0.000876084784977138,0.937015473842621,-0.349286794662476,-0.0548076517879963,0.693919718265533,-0.717963516712189,0.120342545211315,-0.0380125939846039,-0.992004454135895,-0.0902930051088333,-0.0391442030668259,-0.995145738124847,0.0826850533485413,0.691817343235016,-0.717322766780853,-0.0548076517879963,0.693919718265533,-0.717963516712189,-0.0362297557294369,0.994302034378052,0.100254185497761,0.000876084784977138,0.937015473842621,-0.349286794662476,-0.00056468608090654,0.936818182468414,-0.349816501140594,0.028116337954998,0.994524419307709,0.10065184533596,-0.00971503183245659,0.998623788356781,-0.0515378676354885,-0.028633838519454,0.997932553291321,-0.0575395114719868,-0.0164540652185678,0.999862134456635,-0.00226904288865626,0.0341063551604748,0.998802304267883,-0.0350826941430569,0.0326468423008919,0.999417245388031,0.00997660774737597,0.0126652205362916,0.999535024166107,-0.0277356337755919,-0.0281723458319902,0.999554395675659,0.00986667349934578,-0.0296406261622906,0.998598098754883,-0.0438554659485817,0.0204577166587114,0.998705863952637,-0.0465628281235695,0.0325970351696014,0.999458193778992,0.0045554949901998,0.0539546348154545,0.0100728934630752,0.998492658138275,
- 0.0118011478334665,0.0290981139987707,0.999506890773773,0.194893583655357,0.974734723567963,0.109127297997475,-0.214588463306427,-0.976329743862152,0.0270589850842953,-0.0325586795806885,-0.299473106861115,0.953549087047577,0.146980300545692,-0.037218663841486,0.988438963890076,-0.0476961545646191,0.0104082440957427,0.998807728290558,-0.292926222085953,0.9496710896492,0.110991641879082,-0.0126453768461943,0.0302318874746561,0.999462962150574,0.293263047933578,-0.955567061901093,0.0298070274293423,-0.0857870876789093,-0.0371759012341499,0.995619714260101,0.0305289626121521,-0.300033360719681,0.953440070152283,0.0171999149024487,0.999509155750275,0.0261875186115503,0.00789727922528982,0.999654293060303,0.0250824205577374,0.359796494245529,0.05269930139184,0.931541323661804,-0.237049594521523,0.0498578473925591,0.970217347145081,-0.00726818200200796,0.999656975269318,0.0251613948494196,-0.0154535062611103,0.999675035476685,0.0202748626470566,0.0539401993155479,0.0100523056462407,0.998493552207947,0.194892153143883,0.97472757101059,0.109193593263626,-0.293306440114975,0.949538230895996,0.111124373972416,-0.0476489029824734,0.0103687411174178,0.998810410499573,0.0119252847507596,0.0292302127927542,0.999501645565033,0.0539401993155479,0.0100523056462407,0.998493552207947,0.146930903196335,-0.0372150093317032,0.988446414470673,-0.0325349792838097,-0.299359351396561,0.953585565090179,-0.03641127794981,0.994289338588715,0.100314632058144,-0.0261760745197535,0.990063965320587,0.138160198926926,0.0122280335053802,0.998959600925446,-0.0439354255795479,0.000889334012754261,0.937015056610107,-0.349288105964661,0.000889334012754261,0.937015056610107,-0.349288105964661,0.0122280335053802,0.998959600925446,-0.0439354255795479,-0.00472540967166424,0.574775815010071,-0.818297266960144,-0.0550240874290466,0.693921685218811,-0.717945039272308,-0.214616119861603,-0.97632360458374,0.0270572453737259,0.146930903196335,-0.0372150093317032,0.988446414470673,-0.0857566222548485,-0.0371742993593216,0.995622456073761,0.293300420045853,-0.955555438995361,0.0298102404922247,
- -0.0307281576097012,0.999370157718658,-0.0177519172430038,-0.0109258061274886,0.999824523925781,-0.015219135209918,0.0078674266114831,0.999654531478882,0.0250826943665743,0.0172849241644144,0.99950498342514,0.0262903664261103,-0.0476489029824734,0.0103687411174178,0.998810410499573,-0.0126936817541718,0.0303592626005411,0.999458432197571,0.0305073298513889,-0.299848616123199,0.953498959541321,-0.0857566222548485,-0.0371742993593216,0.995622456073761,0.0305371657013893,0.989722847938538,0.139700382947922,0.0281801782548428,0.994508802890778,0.10078752040863,-0.000659774930682033,0.936815321445465,-0.349823802709579,-0.00996738951653242,0.999019742012024,-0.043132446706295,-0.00996738951653242,0.999019742012024,-0.043132446706295,-0.000659774930682033,0.936815321445465,-0.349823802709579,0.0825496166944504,0.691832840442657,-0.717323482036591,0.00657721702009439,0.576262474060059,-0.817238330841064,0.0147305559366941,0.999797403812408,-0.013716003857553,0.0344657748937607,0.999051749706268,-0.0266056321561337,-0.0154655827209353,0.999674618244171,0.0202880632132292,-0.0072664194740355,0.999657690525055,0.0251354705542326,0.0436570905148983,-0.0617271512746811,-0.997137844562531,0.120667494833469,-0.03799794241786,-0.991965532302856,-0.0550240874290466,0.693921685218811,-0.717945039272308,-0.00472540967166424,0.574775815010071,-0.818297266960144,0.358930677175522,0.0526775307953358,0.931876599788666,0.0078674266114831,0.999654531478882,0.0250826943665743,-0.0072664194740355,0.999657690525055,0.0251354705542326,-0.237049028277397,0.0498945340514183,0.970215678215027,-0.0901685878634453,-0.0391865894198418,-0.995155274868011,-0.0430812761187553,-0.0610765628516674,-0.99720299243927,0.00657721702009439,0.576262474060059,-0.817238330841064,0.0825496166944504,0.691832840442657,-0.717323482036591,0.146930903196335,-0.0372150093317032,0.988446414470673,0.0539401993155479,0.0100523056462407,0.998493552207947,-0.0476489029824734,0.0103687411174178,0.998810410499573,-0.0857566222548485,-0.0371742993593216,0.995622456073761,0.0147305559366941,0.999797403812408,-0.013716003857553,
- -0.0072664194740355,0.999657690525055,0.0251354705542326,0.0078674266114831,0.999654531478882,0.0250826943665743,-0.0109258061274886,0.999824523925781,-0.015219135209918,0.0825496166944504,0.691832840442657,-0.717323482036591,-0.000659774930682033,0.936815321445465,-0.349823802709579,0.000889334012754261,0.937015056610107,-0.349288105964661,-0.0550240874290466,0.693921685218811,-0.717945039272308,0.120667494833469,-0.03799794241786,-0.991965532302856,-0.0901685878634453,-0.0391865894198418,-0.995155274868011,0.0825496166944504,0.691832840442657,-0.717323482036591,-0.0550240874290466,0.693921685218811,-0.717945039272308,-0.03641127794981,0.994289338588715,0.100314632058144,0.000889334012754261,0.937015056610107,-0.349288105964661,-0.000659774930682033,0.936815321445465,-0.349823802709579,0.0281801782548428,0.994508802890778,0.10078752040863,-0.00970732886344194,0.998623907566071,-0.0515365339815617,-0.0286524444818497,0.997932076454163,-0.0575380623340607,-0.0164656806737185,0.999861896038055,-0.00226687779650092,0.0340908206999302,0.998802959918976,-0.0350786782801151,0.0326317958533764,0.999417722225189,0.00997655745595694,0.0127152251079679,0.999534487724304,-0.0277370177209377,-0.0280805286020041,0.999556958675385,0.00986682623624802,-0.0295550059527159,0.998600721359253,-0.0438532680273056,0.0205432921648026,0.998704016208649,-0.0465662777423859,0.0326433219015598,0.999456703662872,0.00454649375751615,0.0539401993155479,0.0100523056462407,0.998493552207947,0.0119252847507596,0.0292302127927542,0.999501645565033,0.194892153143883,0.97472757101059,0.109193593263626,-0.214616119861603,-0.97632360458374,0.0270572453737259,-0.0325349792838097,-0.299359351396561,0.953585565090179,0.146930903196335,-0.0372150093317032,0.988446414470673,-0.0476489029824734,0.0103687411174178,0.998810410499573,-0.293306440114975,0.949538230895996,0.111124373972416,-0.0126936817541718,0.0303592626005411,0.999458432197571,0.293300420045853,-0.955555438995361,0.0298102404922247,-0.0857566222548485,-0.0371742993593216,0.995622456073761,0.0305073298513889,-0.299848616123199,0.953498959541321,
- 0.0172849241644144,0.99950498342514,0.0262903664261103,0.0078674266114831,0.999654531478882,0.0250826943665743,0.358930677175522,0.0526775307953358,0.931876599788666,-0.237049028277397,0.0498945340514183,0.970215678215027,-0.0072664194740355,0.999657690525055,0.0251354705542326,-0.0154655827209353,0.999674618244171,0.0202880632132292,0.053848460316658,0.0100795859470963,0.998498320579529,0.195429593324661,0.974624216556549,0.109155401587486,-0.2929567694664,0.949654221534729,0.111055351793766,-0.0478753671050072,0.0103799300268292,0.998799383640289,0.0119532598182559,0.0292982365936041,0.999499261379242,0.053848460316658,0.0100795859470963,0.998498320579529,0.146715700626373,-0.037155706435442,0.988480627536774,-0.0326040498912334,-0.299455940723419,0.953552961349487,-0.0362173952162266,0.994301319122314,0.100265979766846,-0.0261956546455622,0.990082383155823,0.138024464249611,0.0122186029329896,0.998962461948395,-0.0438730679452419,0.000880232080817223,0.937017560005188,-0.349281162023544,0.000880232080817223,0.937017560005188,-0.349281162023544,0.0122186029329896,0.998962461948395,-0.0438730679452419,-0.00482123391702771,0.574858605861664,-0.81823867559433,-0.0548163317143917,0.693902552127838,-0.717979431152344,-0.214291572570801,-0.976394534111023,0.0270704962313175,0.146715700626373,-0.037155706435442,0.988480627536774,-0.0860563814640045,-0.0371851027011871,0.99559611082077,0.294032841920853,-0.95532900094986,0.0298529639840126,-0.0307244546711445,0.999368727207184,-0.0178384874016047,-0.0109179336577654,0.999824047088623,-0.0152528258040547,0.00788576062768698,0.999653816223145,0.025103872641921,0.017253652215004,0.999505281448364,0.0262967124581337,-0.0478753671050072,0.0103799300268292,0.998799383640289,-0.0126461563631892,0.0300499554723501,0.999468386173248,0.0304748509079218,-0.299921214580536,0.953477144241333,-0.0860563814640045,-0.0371851027011871,0.99559611082077,0.0306028481572866,0.989710211753845,0.139776170253754,0.0280741490423679,0.994518280029297,0.100723497569561,-0.000666853040456772,0.936818063259125,-0.349816411733627,
- -0.00990209076553583,0.999026298522949,-0.0429951585829258,-0.00990209076553583,0.999026298522949,-0.0429951585829258,-0.000666853040456772,0.936818063259125,-0.349816411733627,0.0824079886078835,0.691810429096222,-0.717361390590668,0.00659079104661942,0.576248586177826,-0.817247986793518,0.0147807858884335,0.999796688556671,-0.0137168224900961,0.0345317609608173,0.999049305915833,-0.0266113858669996,-0.0153942853212357,0.999677240848541,0.0202092826366425,-0.00727028679102659,0.99965763092041,0.0251375492662191,0.0437412671744823,-0.0619101077318192,-0.997122824192047,0.12028294801712,-0.0379761047661304,-0.992013037204742,-0.0548163317143917,0.693902552127838,-0.717979431152344,-0.00482123391702771,0.574858605861664,-0.81823867559433,0.358943104743958,0.0526487156748772,0.931873381137848,0.00788576062768698,0.999653816223145,0.025103872641921,-0.00727028679102659,0.99965763092041,0.0251375492662191,-0.23704893887043,0.0498991534113884,0.970215380191803,-0.0900123938918114,-0.0391958728432655,-0.995169043540955,-0.0430719070136547,-0.0611227303743362,-0.997200548648834,0.00659079104661942,0.576248586177826,-0.817247986793518,0.0824079886078835,0.691810429096222,-0.717361390590668,0.146715700626373,-0.037155706435442,0.988480627536774,0.053848460316658,0.0100795859470963,0.998498320579529,-0.0478753671050072,0.0103799300268292,0.998799383640289,-0.0860563814640045,-0.0371851027011871,0.99559611082077,0.0147807858884335,0.999796688556671,-0.0137168224900961,-0.00727028679102659,0.99965763092041,0.0251375492662191,0.00788576062768698,0.999653816223145,0.025103872641921,-0.0109179336577654,0.999824047088623,-0.0152528258040547,0.0824079886078835,0.691810429096222,-0.717361390590668,-0.000666853040456772,0.936818063259125,-0.349816411733627,0.000880232080817223,0.937017560005188,-0.349281162023544,-0.0548163317143917,0.693902552127838,-0.717979431152344,0.12028294801712,-0.0379761047661304,-0.992013037204742,-0.0900123938918114,-0.0391958728432655,-0.995169043540955,0.0824079886078835,0.691810429096222,-0.717361390590668,
- -0.0548163317143917,0.693902552127838,-0.717979431152344,-0.0362173952162266,0.994301319122314,0.100265979766846,0.000880232080817223,0.937017560005188,-0.349281162023544,-0.000666853040456772,0.936818063259125,-0.349816411733627,0.0280741490423679,0.994518280029297,0.100723497569561,-0.00963805895298719,0.998624622821808,-0.0515363030135632,-0.0286007039248943,0.997933745384216,-0.0575351603329182,-0.0163903851062059,0.999863147735596,-0.00226273387670517,0.0341570824384689,0.99880063533783,-0.0350796766579151,0.0326922051608562,0.999415695667267,0.00997449457645416,0.0127053922042251,0.999534547328949,-0.0277392528951168,-0.0281018670648336,0.999556303024292,0.00987457670271397,-0.0295533109456301,0.998600959777832,-0.0438494831323624,0.020518708974123,0.998704373836517,-0.0465676747262478,0.0326554290950298,0.999456405639648,0.00454912986606359,0.053848460316658,0.0100795859470963,0.998498320579529,0.0119532598182559,0.0292982365936041,0.999499261379242,0.195429593324661,0.974624216556549,0.109155401587486,-0.214291572570801,-0.976394534111023,0.0270704962313175,-0.0326040498912334,-0.299455940723419,0.953552961349487,0.146715700626373,-0.037155706435442,0.988480627536774,-0.0478753671050072,0.0103799300268292,0.998799383640289,-0.2929567694664,0.949654221534729,0.111055351793766,-0.0126461563631892,0.0300499554723501,0.999468386173248,0.294032841920853,-0.95532900094986,0.0298529639840126,-0.0860563814640045,-0.0371851027011871,0.99559611082077,0.0304748509079218,-0.299921214580536,0.953477144241333,0.017253652215004,0.999505281448364,0.0262967124581337,0.00788576062768698,0.999653816223145,0.025103872641921,0.358943104743958,0.0526487156748772,0.931873381137848,-0.23704893887043,0.0498991534113884,0.970215380191803,-0.00727028679102659,0.99965763092041,0.0251375492662191,-0.0153942853212357,0.999677240848541,0.0202092826366425,-0.014313424937427,-0.50258082151413,0.8644118309021,-0.0143141727894545,-0.50258082151413,0.864411771297455,-0.014314915984869,-0.502580761909485,0.864411771297455,-0.0143141727894545,-0.50258082151413,0.864411771297455,
- 0.0175334047526121,0.101591356098652,-0.994671761989594,0.997523963451386,0.0674328655004501,-0.0199689883738756,0.999791622161865,0.0185602530837059,-0.00851014908403158,0.0620253048837185,0.990281403064728,0.124481894075871,0.0148027651011944,-0.640781342983246,-0.767580687999725,0.894452273845673,-0.268491894006729,-0.357585489749908,0.878241837024689,-0.130159884691238,-0.46016263961792,0.0148027651011944,-0.640781342983246,-0.767580687999725,0.878241837024689,-0.130159884691238,-0.46016263961792,0.997523963451386,0.0674328655004501,-0.0199689883738756,0.0175334047526121,0.101591356098652,-0.994671761989594,0.996364831924438,-0.00578880356624722,-0.0849926248192787,0.894452273845673,-0.268491894006729,-0.357585489749908,0.995793402194977,-0.0916187390685081,0.00124091294128448,0.999067604541779,-0.023926293477416,0.0359386838972569,0.996981024742126,0.0772093459963799,0.00822552293539047,0.816036403179169,-0.541190564632416,-0.202971607446671,0.998148858547211,-0.0547986142337322,0.0263824518769979,0.996981024742126,0.0772093459963799,0.00822552293539047,0.999067604541779,-0.023926293477416,0.0359386838972569,0.999359488487244,-0.00444665318354964,0.0355092138051987,0.999854326248169,0.00621245382353663,-0.0158991552889347,0.99852842092514,0.0480410046875477,0.025163060054183,0.980388820171356,0.175297409296036,0.0900483205914497,0.992135286331177,0.0753263980150223,-0.0999681204557419,0.993884086608887,0.0582769736647606,-0.09379942715168,0.998148858547211,-0.0547986142337322,0.0263824518769979,0.816036403179169,-0.541190564632416,-0.202971607446671,0.933058321475983,-0.275540173053741,-0.23125733435154,0.995437681674957,-0.0695490911602974,-0.0653207153081894,0.997074604034424,0.0188825018703938,-0.074066549539566,0.991781830787659,0.0450861603021622,-0.119733735918999,0.990085363388062,0.111814826726913,0.0850202664732933,0.999820411205292,-0.0184421166777611,0.00436946144327521,0.993304431438446,0.050894632935524,-0.103711389005184,0.920974314212799,-0.378574520349503,-0.0921288877725601,0.95780611038208,0.28658401966095,0.0218447204679251,
- -0.0632652118802071,-0.806811034679413,-0.587412595748901,-0.0273026786744595,-0.807783901691437,-0.588846266269684,0.0698570758104324,-0.846854686737061,-0.52721643447876,0.0668123215436935,-0.798542678356171,-0.59821879863739,0.0148027651011944,-0.640781342983246,-0.767580687999725,0.00998945813626051,-0.809015870094299,-0.587701916694641,0.980388820171356,0.175297409296036,0.0900483205914497,0.99852842092514,0.0480410046875477,0.025163060054183,0.999820411205292,-0.0184421166777611,0.00436946144327521,0.894452273845673,-0.268491894006729,-0.357585489749908,0.996364831924438,-0.00578880356624722,-0.0849926248192787,0.998687744140625,0.0511994585394859,-0.0011905375868082,0.878241837024689,-0.130159884691238,-0.46016263961792,0.878241837024689,-0.130159884691238,-0.46016263961792,0.998687744140625,0.0511994585394859,-0.0011905375868082,0.997523963451386,0.0674328655004501,-0.0199689883738756,0.894452273845673,-0.268491894006729,-0.357585489749908,0.0148027651011944,-0.640781342983246,-0.767580687999725,0.0668123215436935,-0.798542678356171,-0.59821879863739,0.995793402194977,-0.0916187390685081,0.00124091294128448,0.998471081256866,0.0550640150904655,-0.00485892128199339,0.0620253048837185,0.990281403064728,0.124481894075871,0.999791622161865,0.0185602530837059,-0.00851014908403158,0.980388820171356,0.175297409296036,0.0900483205914497,0.999471664428711,-0.0315993763506413,-0.0076139634475112,0.99311363697052,-0.00822914019227028,-0.116865642368793,0.992135286331177,0.0753263980150223,-0.0999681204557419,0.064609594643116,0.676891326904297,0.733241975307465,0.0151713453233242,0.118282563984394,0.992864072322845,0.999990224838257,0.00118487747386098,-0.00426660198718309,0.994937837123871,0.0327775217592716,0.0949968099594116,0.996964395046234,0.0495618730783463,-0.0600472949445248,0.999796032905579,0.0176310688257217,-0.00985699240118265,0.999417901039124,0.0331017151474953,0.00826370622962713,0.997782528400421,0.066404677927494,0.00453035160899162,0.997611939907074,-0.00479267537593842,-0.0689023584127426,0.999990224838257,0.00118487747386098,-0.00426660198718309,
- 0.999796032905579,0.0176310688257217,-0.00985699240118265,0.996964395046234,0.0495618730783463,-0.0600472949445248,0.997782528400421,0.066404677927494,0.00453035160899162,0.999417901039124,0.0331017151474953,0.00826370622962713,0.999901592731476,0.01331209205091,0.00444864854216576,0.995694160461426,0.0767669305205345,0.0519615821540356,0.997028946876526,0.0648542121052742,0.0415604449808598,0.999854326248169,0.00621245382353663,-0.0158991552889347,0.999359488487244,-0.00444665318354964,0.0355092138051987,0.999244809150696,0.00245480588637292,-0.0387778170406818,0.99901682138443,-0.0240694992244244,-0.0372322276234627,0.920974314212799,-0.378574520349503,-0.0921288877725601,0.998770833015442,0.0215318668633699,-0.0446465536952019,0.999813556671143,-0.0192633513361216,0.0013549366267398,0.997072279453278,-0.0676359906792641,0.0356700234115124,0.999942243099213,-0.00992618035525084,0.00414154445752501,0.997048139572144,0.0690942406654358,0.0334825478494167,0.995524168014526,0.0807269215583801,-0.0491415113210678,0.989614844322205,0.0910591930150986,0.111223831772804,0.991781830787659,0.0450861603021622,-0.119733735918999,0.95780611038208,0.28658401966095,0.0218447204679251,0.995535492897034,0.0785461738705635,0.0523427650332451,0.990085363388062,0.111814826726913,0.0850202664732933,0.998770833015442,0.0215318668633699,-0.0446465536952019,0.998471081256866,0.0550640150904655,-0.00485892128199339,0.999791622161865,0.0185602530837059,-0.00851014908403158,0.999813556671143,-0.0192633513361216,0.0013549366267398,0.998770833015442,0.0215318668633699,-0.0446465536952019,0.920974314212799,-0.378574520349503,-0.0921288877725601,0.993304431438446,0.050894632935524,-0.103711389005184,0.997074604034424,0.0188825018703938,-0.074066549539566,0.999903976917267,-0.00581139279529452,-0.0125798815861344,0.998887419700623,-0.0326959379017353,-0.033985648304224,0.999471664428711,-0.0315993763506413,-0.0076139634475112,0.980388820171356,0.175297409296036,0.0900483205914497,0.999820411205292,-0.0184421166777611,0.00436946144327521,0.990085363388062,0.111814826726913,0.0850202664732933,
- 0.995535492897034,0.0785461738705635,0.0523427650332451,0.997048139572144,0.0690942406654358,0.0334825478494167,0.999942243099213,-0.00992618035525084,0.00414154445752501,0.997072279453278,-0.0676359906792641,0.0356700234115124,0.999813556671143,-0.0192633513361216,0.0013549366267398,0.999990224838257,0.00118487747386098,-0.00426660198718309,0.997611939907074,-0.00479267537593842,-0.0689023584127426,0.999674320220947,0.0140783190727234,0.0212862323969603,0.994937837123871,0.0327775217592716,0.0949968099594116,0.999796032905579,0.0176310688257217,-0.00985699240118265,0.0205376446247101,-0.661621570587158,0.749556660652161,0.0623586848378181,-0.970636129379272,-0.232329413294792,0.999417901039124,0.0331017151474953,0.00826370622962713,0.999990224838257,0.00118487747386098,-0.00426660198718309,0.0151713453233242,0.118282563984394,0.992864072322845,0.0205376446247101,-0.661621570587158,0.749556660652161,0.999796032905579,0.0176310688257217,-0.00985699240118265,0.999417901039124,0.0331017151474953,0.00826370622962713,0.0623586848378181,-0.970636129379272,-0.232329413294792,0.0228527188301086,-0.80486387014389,-0.593019366264343,0.999901592731476,0.01331209205091,0.00444864854216576,0.999359488487244,-0.00444665318354964,0.0355092138051987,0.99852842092514,0.0480410046875477,0.025163060054183,0.993884086608887,0.0582769736647606,-0.09379942715168,0.999244809150696,0.00245480588637292,-0.0387778170406818,0.999067604541779,-0.023926293477416,0.0359386838972569,0.999820411205292,-0.0184421166777611,0.00436946144327521,0.99852842092514,0.0480410046875477,0.025163060054183,0.999359488487244,-0.00444665318354964,0.0355092138051987,0.999820411205292,-0.0184421166777611,0.00436946144327521,0.999067604541779,-0.023926293477416,0.0359386838972569,0.998148858547211,-0.0547986142337322,0.0263824518769979,0.997074604034424,0.0188825018703938,-0.074066549539566,0.997074604034424,0.0188825018703938,-0.074066549539566,0.998148858547211,-0.0547986142337322,0.0263824518769979,0.995437681674957,-0.0695490911602974,-0.0653207153081894,0.999903976917267,-0.00581139279529452,-0.0125798815861344,
- 0.997611939907074,-0.00479267537593842,-0.0689023584127426,0.999854326248169,0.00621245382353663,-0.0158991552889347,0.99901682138443,-0.0240694992244244,-0.0372322276234627,0.999674320220947,0.0140783190727234,0.0212862323969603,0.999854326248169,0.00621245382353663,-0.0158991552889347,0.997611939907074,-0.00479267537593842,-0.0689023584127426,0.996964395046234,0.0495618730783463,-0.0600472949445248,0.996981024742126,0.0772093459963799,0.00822552293539047,0.996981024742126,0.0772093459963799,0.00822552293539047,0.996964395046234,0.0495618730783463,-0.0600472949445248,0.997782528400421,0.066404677927494,0.00453035160899162,0.816036403179169,-0.541190564632416,-0.202971607446671,0.816036403179169,-0.541190564632416,-0.202971607446671,0.997782528400421,0.066404677927494,0.00453035160899162,0.997028946876526,0.0648542121052742,0.0415604449808598,0.997028946876526,0.0648542121052742,0.0415604449808598,0.995694160461426,0.0767669305205345,0.0519615821540356,0.398858964443207,0.721042931079865,0.566576182842255,0.816036403179169,-0.541190564632416,-0.202971607446671,0.997028946876526,0.0648542121052742,0.0415604449808598,0.398858964443207,0.721042931079865,0.566576182842255,0.933058321475983,-0.275540173053741,-0.23125733435154,0.997074604034424,0.0188825018703938,-0.074066549539566,0.998887419700623,-0.0326959379017353,-0.033985648304224,0.999009728431702,-0.0278168208897114,-0.0347262322902679,0.993304431438446,0.050894632935524,-0.103711389005184,0.991781830787659,0.0450861603021622,-0.119733735918999,0.997048139572144,0.0690942406654358,0.0334825478494167,0.998687744140625,0.0511994585394859,-0.0011905375868082,0.996364831924438,-0.00578880356624722,-0.0849926248192787,0.995524168014526,0.0807269215583801,-0.0491415113210678,0.997523963451386,0.0674328655004501,-0.0199689883738756,0.998687744140625,0.0511994585394859,-0.0011905375868082,0.997048139572144,0.0690942406654358,0.0334825478494167,0.999813556671143,-0.0192633513361216,0.0013549366267398,0.999791622161865,0.0185602530837059,-0.00851014908403158,0.999471664428711,-0.0315993763506413,-0.0076139634475112,
- 0.999942243099213,-0.00992618035525084,0.00414154445752501,0.989614844322205,0.0910591930150986,0.111223831772804,0.99311363697052,-0.00822914019227028,-0.116865642368793,0.999942243099213,-0.00992618035525084,0.00414154445752501,0.999471664428711,-0.0315993763506413,-0.0076139634475112,0.995535492897034,0.0785461738705635,0.0523427650332451,0.997072279453278,-0.0676359906792641,0.0356700234115124,0.95780611038208,0.28658401966095,0.0218447204679251,0.920974314212799,-0.378574520349503,-0.0921288877725601,0.997072279453278,-0.0676359906792641,0.0356700234115124,0.995535492897034,0.0785461738705635,0.0523427650332451,0.993304431438446,0.050894632935524,-0.103711389005184,0.95780611038208,0.28658401966095,0.0218447204679251,0.991781830787659,0.0450861603021622,-0.119733735918999,0.0698570758104324,-0.846854686737061,-0.52721643447876,0.995127737522125,-0.0546804927289486,-0.082042008638382,0.995793402194977,-0.0916187390685081,0.00124091294128448,0.0668123215436935,-0.798542678356171,-0.59821879863739,0.998046219348907,0.0558956302702427,0.0279207061976194,0.0275504197925329,0.815114974975586,0.578643918037415,0.0620253048837185,0.990281403064728,0.124481894075871,0.998471081256866,0.0550640150904655,-0.00485892128199339,0.999009728431702,-0.0278168208897114,-0.0347262322902679,0.998046219348907,0.0558956302702427,0.0279207061976194,0.998471081256866,0.0550640150904655,-0.00485892128199339,0.998770833015442,0.0215318668633699,-0.0446465536952019,0.993304431438446,0.050894632935524,-0.103711389005184,0.0341059342026711,0.45541900396347,-0.889623701572418,-0.0127808172255754,0.450249701738358,-0.892811298370361,0.00945570785552263,0.445808321237564,-0.895078480243683,-0.0208841972053051,0.447637319564819,-0.893971383571625,-0.0166150834411383,0.44624450802803,-0.894756853580475,-0.011331151239574,0.448456048965454,-0.893733143806458,0.0175390988588333,0.104134686291218,0.99440860748291,0.06211082264781,0.990057945251465,-0.126204416155815,0.999750256538391,0.021399412304163,0.00644313171505928,0.997597575187683,0.0661415830254555,0.020599290728569,
- 0.0148437032476068,-0.632393181324005,0.774505376815796,0.876517415046692,-0.104974463582039,0.469784796237946,0.895429491996765,-0.23438686132431,0.378508627414703,0.0148437032476068,-0.632393181324005,0.774505376815796,0.0175390988588333,0.104134686291218,0.99440860748291,0.997597575187683,0.0661415830254555,0.020599290728569,0.876517415046692,-0.104974463582039,0.469784796237946,0.995550930500031,0.00111047551035881,0.0942188426852226,0.995762228965759,-0.0919516384601593,-0.00157750397920609,0.895429491996765,-0.23438686132431,0.378508627414703,0.999065756797791,-0.0221583116799593,-0.0371031500399113,0.998919486999512,-0.0449771881103516,-0.0116997212171555,0.817067265510559,-0.537776529788971,0.207840442657471,0.997626900672913,0.0688037201762199,-0.00256909406743944,0.997626900672913,0.0688037201762199,-0.00256909406743944,0.999849915504456,0.00197785068303347,0.0172156132757664,0.999382019042969,-0.00827247742563486,-0.0341637544333935,0.999065756797791,-0.0221583116799593,-0.0371031500399113,0.998943984508514,0.0401231050491333,-0.0223878063261509,0.99444580078125,0.0551362931728363,0.0896528139710426,0.992822647094727,0.0720171704888344,0.0954822823405266,0.982117295265198,0.167089000344276,-0.0867586433887482,0.998919486999512,-0.0449771881103516,-0.0116997212171555,0.99546480178833,-0.0695474669337273,0.0649080276489258,0.933045029640198,-0.275601893663406,0.231237322092056,0.817067265510559,-0.537776529788971,0.207840442657471,0.998372972011566,0.0068328594788909,0.0566116832196712,0.999788999557495,0.00463667092844844,-0.0200130008161068,0.989307761192322,0.116422481834888,-0.0878403037786484,0.995661497116089,0.023772245272994,0.0899612754583359,0.993757963180542,0.0485135093331337,0.100457347929478,0.957883059978485,0.286212176084518,-0.023297093808651,0.920991361141205,-0.378352254629135,0.0928686708211899,-0.0633423551917076,-0.807405650615692,0.586586713790894,0.00997566990554333,-0.809772133827209,0.586659610271454,0.0148437032476068,-0.632393181324005,0.774505376815796,0.0668165236711502,-0.797466158866882,0.599652767181396,
- 0.0670473352074623,-0.812757015228271,0.578732073307037,-0.0273155905306339,-0.808266282081604,0.588183283805847,0.982117295265198,0.167089000344276,-0.0867586433887482,0.999788999557495,0.00463667092844844,-0.0200130008161068,0.998943984508514,0.0401231050491333,-0.0223878063261509,0.895429491996765,-0.23438686132431,0.378508627414703,0.876517415046692,-0.104974463582039,0.469784796237946,0.998964428901672,0.0453491024672985,0.00370555790141225,0.995550930500031,0.00111047551035881,0.0942188426852226,0.876517415046692,-0.104974463582039,0.469784796237946,0.997597575187683,0.0661415830254555,0.020599290728569,0.998964428901672,0.0453491024672985,0.00370555790141225,0.895429491996765,-0.23438686132431,0.378508627414703,0.995762228965759,-0.0919516384601593,-0.00157750397920609,0.0668165236711502,-0.797466158866882,0.599652767181396,0.0148437032476068,-0.632393181324005,0.774505376815796,0.998604774475098,0.0527864582836628,0.00147574953734875,0.999750256538391,0.021399412304163,0.00644313171505928,0.06211082264781,0.990057945251465,-0.126204416155815,0.982117295265198,0.167089000344276,-0.0867586433887482,0.992822647094727,0.0720171704888344,0.0954822823405266,0.992743492126465,-0.0057965568266809,0.120112292468548,0.999581336975098,-0.0282474122941494,0.00626852875575423,0.0647061988711357,0.682750642299652,-0.727780640125275,0.994859099388123,0.0320015586912632,-0.09607994556427,0.99996417760849,-0.00552583346143365,0.00641169585287571,0.0151599291712046,0.121077105402946,-0.992527425289154,0.996765434741974,0.0603523254394531,0.0530683286488056,0.99800980091095,0.0621394813060761,-0.0107360547408462,0.999432265758514,0.0324378088116646,-0.00911423191428185,0.999714255332947,0.0230977218598127,0.00616979040205479,0.99734753370285,-0.0132988523691893,0.0715623125433922,0.996765434741974,0.0603523254394531,0.0530683286488056,0.999714255332947,0.0230977218598127,0.00616979040205479,0.99996417760849,-0.00552583346143365,0.00641169585287571,0.99800980091095,0.0621394813060761,-0.0107360547408462,0.997024297714233,0.0650103241205215,-0.0414268001914024,
- 0.995742976665497,0.0767662823200226,-0.0510193668305874,0.999896883964539,0.0133123137056828,-0.00539608439430594,0.999432265758514,0.0324378088116646,-0.00911423191428185,0.999849915504456,0.00197785068303347,0.0172156132757664,0.99910968542099,-0.0286852456629276,0.0309356078505516,0.999396026134491,-0.000656357093248516,0.0347468592226505,0.999382019042969,-0.00827247742563486,-0.0341637544333935,0.920991361141205,-0.378352254629135,0.0928686708211899,0.996810674667358,-0.0734080746769905,-0.0313035659492016,0.999830782413483,-0.0182757098227739,-0.00209086271934211,0.999323129653931,0.0141841135919094,0.0339427590370178,0.999931871891022,-0.0110996495932341,-0.0036137537099421,0.989580273628235,0.0903033465147018,-0.112143829464912,0.995231747627258,0.0826532244682312,0.0517922788858414,0.997013926506042,0.0695064812898636,-0.0336492508649826,0.995661497116089,0.023772245272994,0.0899612754583359,0.989307761192322,0.116422481834888,-0.0878403037786484,0.996889233589172,0.0648453608155251,-0.0448006354272366,0.957883059978485,0.286212176084518,-0.023297093808651,0.999323129653931,0.0141841135919094,0.0339427590370178,0.999830782413483,-0.0182757098227739,-0.00209086271934211,0.999750256538391,0.021399412304163,0.00644313171505928,0.998604774475098,0.0527864582836628,0.00147574953734875,0.999323129653931,0.0141841135919094,0.0339427590370178,0.993757963180542,0.0485135093331337,0.100457347929478,0.920991361141205,-0.378352254629135,0.0928686708211899,0.998372972011566,0.0068328594788909,0.0566116832196712,0.998822271823883,-0.0326940231025219,0.0358498953282833,0.999898612499237,-0.00581194739788771,0.0130049092695117,0.999581336975098,-0.0282474122941494,0.00626852875575423,0.996889233589172,0.0648453608155251,-0.0448006354272366,0.989307761192322,0.116422481834888,-0.0878403037786484,0.999788999557495,0.00463667092844844,-0.0200130008161068,0.982117295265198,0.167089000344276,-0.0867586433887482,0.997013926506042,0.0695064812898636,-0.0336492508649826,0.999830782413483,-0.0182757098227739,-0.00209086271934211,
- 0.996810674667358,-0.0734080746769905,-0.0313035659492016,0.999931871891022,-0.0110996495932341,-0.0036137537099421,0.99996417760849,-0.00552583346143365,0.00641169585287571,0.994859099388123,0.0320015586912632,-0.09607994556427,0.999648094177246,0.0125468447804451,-0.023375591263175,0.99734753370285,-0.0132988523691893,0.0715623125433922,0.999714255332947,0.0230977218598127,0.00616979040205479,0.999432265758514,0.0324378088116646,-0.00911423191428185,0.0623068921267986,-0.971273481845856,0.229664400219917,0.0205466225743294,-0.662133574485779,-0.749104201793671,0.99996417760849,-0.00552583346143365,0.00641169585287571,0.999714255332947,0.0230977218598127,0.00616979040205479,0.0205466225743294,-0.662133574485779,-0.749104201793671,0.0151599291712046,0.121077105402946,-0.992527425289154,0.999432265758514,0.0324378088116646,-0.00911423191428185,0.999896883964539,0.0133123137056828,-0.00539608439430594,0.0228589922189713,-0.805195510387421,0.592568814754486,0.0623068921267986,-0.971273481845856,0.229664400219917,0.999382019042969,-0.00827247742563486,-0.0341637544333935,0.999396026134491,-0.000656357093248516,0.0347468592226505,0.99444580078125,0.0551362931728363,0.0896528139710426,0.998943984508514,0.0401231050491333,-0.0223878063261509,0.999065756797791,-0.0221583116799593,-0.0371031500399113,0.999382019042969,-0.00827247742563486,-0.0341637544333935,0.998943984508514,0.0401231050491333,-0.0223878063261509,0.999788999557495,0.00463667092844844,-0.0200130008161068,0.999788999557495,0.00463667092844844,-0.0200130008161068,0.998372972011566,0.0068328594788909,0.0566116832196712,0.998919486999512,-0.0449771881103516,-0.0116997212171555,0.999065756797791,-0.0221583116799593,-0.0371031500399113,0.998372972011566,0.0068328594788909,0.0566116832196712,0.999898612499237,-0.00581194739788771,0.0130049092695117,0.99546480178833,-0.0695474669337273,0.0649080276489258,0.998919486999512,-0.0449771881103516,-0.0116997212171555,0.99734753370285,-0.0132988523691893,0.0715623125433922,0.999648094177246,0.0125468447804451,-0.023375591263175,
- 0.99910968542099,-0.0286852456629276,0.0309356078505516,0.999849915504456,0.00197785068303347,0.0172156132757664,0.999849915504456,0.00197785068303347,0.0172156132757664,0.997626900672913,0.0688037201762199,-0.00256909406743944,0.996765434741974,0.0603523254394531,0.0530683286488056,0.99734753370285,-0.0132988523691893,0.0715623125433922,0.997626900672913,0.0688037201762199,-0.00256909406743944,0.817067265510559,-0.537776529788971,0.207840442657471,0.99800980091095,0.0621394813060761,-0.0107360547408462,0.996765434741974,0.0603523254394531,0.0530683286488056,0.817067265510559,-0.537776529788971,0.207840442657471,0.997024297714233,0.0650103241205215,-0.0414268001914024,0.99800980091095,0.0621394813060761,-0.0107360547408462,0.997024297714233,0.0650103241205215,-0.0414268001914024,0.398180246353149,0.719708442687988,-0.568746209144592,0.995742976665497,0.0767662823200226,-0.0510193668305874,0.817067265510559,-0.537776529788971,0.207840442657471,0.933045029640198,-0.275601893663406,0.231237322092056,0.398180246353149,0.719708442687988,-0.568746209144592,0.997024297714233,0.0650103241205215,-0.0414268001914024,0.998372972011566,0.0068328594788909,0.0566116832196712,0.995661497116089,0.023772245272994,0.0899612754583359,0.993757963180542,0.0485135093331337,0.100457347929478,0.998996734619141,-0.0278162844479084,0.0350960344076157,0.998822271823883,-0.0326940231025219,0.0358498953282833,0.997013926506042,0.0695064812898636,-0.0336492508649826,0.995231747627258,0.0826532244682312,0.0517922788858414,0.995550930500031,0.00111047551035881,0.0942188426852226,0.998964428901672,0.0453491024672985,0.00370555790141225,0.997597575187683,0.0661415830254555,0.020599290728569,0.999750256538391,0.021399412304163,0.00644313171505928,0.999830782413483,-0.0182757098227739,-0.00209086271934211,0.997013926506042,0.0695064812898636,-0.0336492508649826,0.998964428901672,0.0453491024672985,0.00370555790141225,0.999581336975098,-0.0282474122941494,0.00626852875575423,0.992743492126465,-0.0057965568266809,0.120112292468548,0.989580273628235,0.0903033465147018,-0.112143829464912,
- 0.999931871891022,-0.0110996495932341,-0.0036137537099421,0.999931871891022,-0.0110996495932341,-0.0036137537099421,0.996810674667358,-0.0734080746769905,-0.0313035659492016,0.996889233589172,0.0648453608155251,-0.0448006354272366,0.999581336975098,-0.0282474122941494,0.00626852875575423,0.957883059978485,0.286212176084518,-0.023297093808651,0.996889233589172,0.0648453608155251,-0.0448006354272366,0.996810674667358,-0.0734080746769905,-0.0313035659492016,0.920991361141205,-0.378352254629135,0.0928686708211899,0.993757963180542,0.0485135093331337,0.100457347929478,0.995661497116089,0.023772245272994,0.0899612754583359,0.957883059978485,0.286212176084518,-0.023297093808651,0.0275627560913563,0.815578520298004,-0.57798957824707,0.998056352138519,0.0558960475027561,-0.0275558549910784,0.998604774475098,0.0527864582836628,0.00147574953734875,0.06211082264781,0.990057945251465,-0.126204416155815,0.998056352138519,0.0558960475027561,-0.0275558549910784,0.998996734619141,-0.0278162844479084,0.0350960344076157,0.993757963180542,0.0485135093331337,0.100457347929478,0.999323129653931,0.0141841135919094,0.0339427590370178,0.998604774475098,0.0527864582836628,0.00147574953734875,-0.0128245214000344,0.451622486114502,0.892116904258728,0.0342243276536465,0.457014948129654,0.888800442218781,-0.0112581672146916,0.449729144573212,0.893094003200531,-0.0166214518249035,0.447462528944016,0.894148230552673,-0.0208982266485691,0.449001550674438,0.893286645412445,0.00939328223466873,0.447002828121185,0.894483208656311,0.0604541972279549,0.80725759267807,-0.587095081806183,0.995079278945923,0.0778159946203232,-0.0613355413079262,0.994859099388123,0.0320015586912632,-0.09607994556427,0.0647061988711357,0.682750642299652,-0.727780640125275,0.994969606399536,0.0908950343728065,0.0421135313808918,0.0710418671369553,0.948645353317261,0.308261543512344,0.064609594643116,0.676891326904297,0.733241975307465,0.994937837123871,0.0327775217592716,0.0949968099594116,0.995801270008087,-0.0709555596113205,0.0578375048935413,0.0670473352074623,-0.812757015228271,0.578732073307037,
- 0.0668165236711502,-0.797466158866882,0.599652767181396,0.995762228965759,-0.0919516384601593,-0.00157750397920609,0.997194170951843,0.0605841055512428,-0.043971624225378,0.998560845851898,0.0476076230406761,0.0246931798756123,0.992823004722595,0.119593650102615,-2.05375254154205e-005,0.994969606399536,0.0908950343728065,0.0421135313808918,0.815557956695557,-0.308529406785965,-0.489566117525101,0.997194170951843,0.0605841055512428,-0.043971624225378,0.99569046497345,-0.0917472690343857,0.0135314092040062,0.960024952888489,-0.206510946154594,-0.18895897269249,0.960024952888489,-0.206510946154594,-0.18895897269249,0.99569046497345,-0.0917472690343857,0.0135314092040062,0.997845888137817,-0.0526366978883743,0.0391549691557884,0.984896063804626,0.0785674676299095,0.15429562330246,0.996863305568695,-0.0328840352594852,-0.0719873607158661,0.996808767318726,-0.079827755689621,1.36978942464339e-005,0.999956369400024,-0.00934016425162554,1.6018750557123e-006,0.998406589031219,-0.0370321199297905,0.0425795949995518,0.801085948944092,-0.370595693588257,-0.470021367073059,0.996863305568695,-0.0328840352594852,-0.0719873607158661,0.979119062423706,0.176710084080696,0.1004958152771,0.978999137878418,0.160045206546783,-0.126278102397919,0.978999137878418,0.160045206546783,-0.126278102397919,0.979119062423706,0.176710084080696,0.1004958152771,0.999544858932495,-0.0114007294178009,0.0279307756572962,0.979921579360962,0.115104526281357,0.162803009152412,0.999624013900757,-0.00991872511804104,-0.0255644023418427,0.999544858932495,-0.0114007294178009,0.0279307756572962,0.995127737522125,-0.0546804927289486,-0.082042008638382,0.992959082126617,-0.117770947515965,-0.0127451252192259,0.998602867126465,-0.0344865545630455,0.0400378629565239,0.99954754114151,0.0115638710558414,0.0277673806995153,0.999655485153198,-0.0262491516768932,2.25286953536852e-006,0.997845888137817,-0.0526366978883743,0.0391549691557884,0.99954754114151,0.0115638710558414,0.0277673806995153,0.998602867126465,-0.0344865545630455,0.0400378629565239,0.998406589031219,-0.0370321199297905,0.0425795949995518,
- 0.978227496147156,0.106858760118485,0.177910849452019,0.993884086608887,0.0582769736647606,-0.09379942715168,0.992135286331177,0.0753263980150223,-0.0999681204557419,0.998406589031219,-0.0370321199297905,0.0425795949995518,0.998602867126465,-0.0344865545630455,0.0400378629565239,0.999244809150696,0.00245480588637292,-0.0387778170406818,0.997845888137817,-0.0526366978883743,0.0391549691557884,0.99569046497345,-0.0917472690343857,0.0135314092040062,0.99901682138443,-0.0240694992244244,-0.0372322276234627,0.999244809150696,0.00245480588637292,-0.0387778170406818,0.993884086608887,0.0582769736647606,-0.09379942715168,0.998602867126465,-0.0344865545630455,0.0400378629565239,0.997845888137817,-0.0526366978883743,0.0391549691557884,0.99901682138443,-0.0240694992244244,-0.0372322276234627,0.99569046497345,-0.0917472690343857,0.0135314092040062,0.997194170951843,0.0605841055512428,-0.043971624225378,0.999674320220947,0.0140783190727234,0.0212862323969603,0.992135286331177,0.0753263980150223,-0.0999681204557419,0.99311363697052,-0.00822914019227028,-0.116865642368793,0.996863305568695,-0.0328840352594852,-0.0719873607158661,0.998406589031219,-0.0370321199297905,0.0425795949995518,0.996863305568695,-0.0328840352594852,-0.0719873607158661,0.99311363697052,-0.00822914019227028,-0.116865642368793,0.989614844322205,0.0910591930150986,0.111223831772804,0.979119062423706,0.176710084080696,0.1004958152771,0.997194170951843,0.0605841055512428,-0.043971624225378,0.994969606399536,0.0908950343728065,0.0421135313808918,0.994937837123871,0.0327775217592716,0.0949968099594116,0.999674320220947,0.0140783190727234,0.0212862323969603,0.999544858932495,-0.0114007294178009,0.0279307756572962,0.979119062423706,0.176710084080696,0.1004958152771,0.989614844322205,0.0910591930150986,0.111223831772804,0.995524168014526,0.0807269215583801,-0.0491415113210678,0.995127737522125,-0.0546804927289486,-0.082042008638382,0.999544858932495,-0.0114007294178009,0.0279307756572962,0.995524168014526,0.0807269215583801,-0.0491415113210678,0.996364831924438,-0.00578880356624722,-0.0849926248192787,
- 0.995793402194977,-0.0916187390685081,0.00124091294128448,0.999396026134491,-0.000656357093248516,0.0347468592226505,0.99910968542099,-0.0286852456629276,0.0309356078505516,0.99762761592865,-0.0590019635856152,0.0354681015014648,0.999763369560242,-0.0175937730818987,0.0127947144210339,0.999396026134491,-0.000656357093248516,0.0347468592226505,0.999763369560242,-0.0175937730818987,0.0127947144210339,0.999979615211487,-0.00382335996255279,0.00513172149658203,0.99444580078125,0.0551362931728363,0.0896528139710426,0.99910968542099,-0.0286852456629276,0.0309356078505516,0.999648094177246,0.0125468447804451,-0.023375591263175,0.999664187431335,0.0183224994689226,-0.0183247663080692,0.99762761592865,-0.0590019635856152,0.0354681015014648,0.992822647094727,0.0720171704888344,0.0954822823405266,0.99996817111969,-0.00743645709007978,0.0029215884860605,0.997755527496338,-0.0551845952868462,0.0379286110401154,0.992743492126465,-0.0057965568266809,0.120112292468548,0.997755527496338,-0.0551845952868462,0.0379286110401154,0.979181170463562,0.169372364878654,-0.111880168318748,0.989580273628235,0.0903033465147018,-0.112143829464912,0.992743492126465,-0.0057965568266809,0.120112292468548,0.995079278945923,0.0778159946203232,-0.0613355413079262,0.999664187431335,0.0183224994689226,-0.0183247663080692,0.999648094177246,0.0125468447804451,-0.023375591263175,0.994859099388123,0.0320015586912632,-0.09607994556427,0.979181170463562,0.169372364878654,-0.111880168318748,0.999976098537445,0.00692439824342728,-0.000219547655433416,0.995231747627258,0.0826532244682312,0.0517922788858414,0.989580273628235,0.0903033465147018,-0.112143829464912,0.99444580078125,0.0551362931728363,0.0896528139710426,0.999979615211487,-0.00382335996255279,0.00513172149658203,0.99996817111969,-0.00743645709007978,0.0029215884860605,0.992822647094727,0.0720171704888344,0.0954822823405266,0.999976098537445,0.00692439824342728,-0.000219547655433416,0.995801270008087,-0.0709555596113205,0.0578375048935413,0.995762228965759,-0.0919516384601593,-0.00157750397920609,0.995550930500031,0.00111047551035881,0.0942188426852226,
- 0.995231747627258,0.0826532244682312,0.0517922788858414,0.992823004722595,0.119593650102615,-2.05375254154205e-005,0.0710418671369553,0.948645353317261,0.308261543512344,0.994969606399536,0.0908950343728065,0.0421135313808918,0.816143691539764,-0.380299061536789,-0.43506583571434,0.995127737522125,-0.0546804927289486,-0.082042008638382,0.0698570758104324,-0.846854686737061,-0.52721643447876,0.0246052388101816,0.791714549064636,-0.610395669937134,-0.0083596995100379,0.990200519561768,-0.139403253793716,-0.0316702947020531,0.930579006671906,0.364718645811081,0.350637674331665,0.474998712539673,-0.807111740112305,0.147955447435379,0.817015171051025,0.557310938835144,0.242072328925133,0.795837700366974,0.555016696453094,-0.327667146921158,-0.431741625070572,0.840376973152161,0.509507119655609,-0.405766576528549,0.758785963058472,0.22738116979599,0.90477728843689,0.36010554432869,-0.0316702947020531,0.930579006671906,0.364718645811081,0.242072328925133,0.795837700366974,0.555016696453094,0.147955447435379,0.817015171051025,0.557310938835144,0.509507119655609,-0.405766576528549,0.758785963058472,-0.327667146921158,-0.431741625070572,0.840376973152161,0.149277850985527,-0.00849322229623795,0.988758862018585,0.0746567621827126,0.0012407184112817,0.997208535671234,-0.0316702947020531,0.930579006671906,0.364718645811081,0.22738116979599,0.90477728843689,0.36010554432869,-0.397762298583984,0.475051373243332,-0.784927606582642,0.350637674331665,0.474998712539673,-0.807111740112305,0.242072328925133,0.795837700366974,0.555016696453094,0.0101984888315201,0.507052600383759,0.861854791641235,-0.0173865649849176,-0.169674202799797,0.985346913337708,-0.327667146921158,-0.431741625070572,0.840376973152161,-0.0316702947020531,0.930579006671906,0.364718645811081,-0.0083596995100379,0.990200519561768,-0.139403253793716,0.0101984888315201,0.507052600383759,0.861854791641235,0.242072328925133,0.795837700366974,0.555016696453094,-0.327667146921158,-0.431741625070572,0.840376973152161,-0.0173865649849176,-0.169674202799797,0.985346913337708,
- 0.0230644512921572,-0.753374218940735,0.657187581062317,0.149277850985527,-0.00849322229623795,0.988758862018585,-0.397762298583984,0.475051373243332,-0.784927606582642,0.00232107588090003,0.733074128627777,-0.680144786834717,0.0713343173265457,0.462510198354721,-0.883739709854126,0.22738116979599,0.90477728843689,0.36010554432869,0.0186190735548735,0.997289776802063,0.0711795389652252,0.00232107588090003,0.733074128627777,-0.680144786834717,-0.397762298583984,0.475051373243332,-0.784927606582642,0.0186190735548735,0.997289776802063,0.0711795389652252,0.22738116979599,0.90477728843689,0.36010554432869,0.147955447435379,0.817015171051025,0.557310938835144,0.0123243723064661,0.796967685222626,0.60389631986618,0.0123243723064661,0.796967685222626,0.60389631986618,0.147955447435379,0.817015171051025,0.557310938835144,0.509507119655609,-0.405766576528549,0.758785963058472,0.0507135018706322,0.344022870063782,0.937590837478638,0.0746567621827126,0.0012407184112817,0.997208535671234,-0.0450583808124065,-0.647903144359589,0.760388910770416,0.0507135018706322,0.344022870063782,0.937590837478638,0.509507119655609,-0.405766576528549,0.758785963058472,0.0713343173265457,0.462510198354721,-0.883739709854126,0.00232107588090003,0.733074128627777,-0.680144786834717,0.0162923708558083,-0.464306473731995,-0.885524749755859,0.0713343173265457,0.462510198354721,-0.883739709854126,-0.130560919642448,0.460121989250183,-0.878203690052032,0.350637674331665,0.474998712539673,-0.807111740112305,-0.397762298583984,0.475051373243332,-0.784927606582642,0.0225964263081551,0.426370322704315,-0.904266357421875,-0.0138834826648235,0.453520059585571,-0.891138017177582,-6.68317170493538e-006,0.480076014995575,-0.877227008342743,-0.0209107175469399,0.476541191339493,-0.87890350818634,-0.0181862711906433,0.473239988088608,-0.880745887756348,-0.00189526192843914,0.465143084526062,-0.885233461856842,0.0248728487640619,0.794709503650665,0.606480181217194,0.350768029689789,0.475205838680267,0.806933224201202,-0.034442875534296,0.930596947669983,-0.364421516656876,
- -0.00843027234077454,0.989632189273834,0.143377617001534,0.148498445749283,0.816905617713928,-0.557327091693878,0.506622076034546,-0.406744867563248,-0.760192573070526,-0.327042251825333,-0.432113081216812,-0.840429544448853,0.241154938936234,0.795987188816071,-0.555201649665833,0.22971485555172,0.904374361038208,-0.359636306762695,0.148498445749283,0.816905617713928,-0.557327091693878,0.241154938936234,0.795987188816071,-0.555201649665833,-0.034442875534296,0.930596947669983,-0.364421516656876,0.506622076034546,-0.406744867563248,-0.760192573070526,0.0709596052765846,0.00113807513844222,-0.997478544712067,0.152957931160927,-0.00870206207036972,-0.988194406032562,-0.327042251825333,-0.432113081216812,-0.840429544448853,-0.034442875534296,0.930596947669983,-0.364421516656876,0.350768029689789,0.475205838680267,0.806933224201202,-0.393519014120102,0.479817181825638,0.784167289733887,0.22971485555172,0.904374361038208,-0.359636306762695,0.241154938936234,0.795987188816071,-0.555201649665833,-0.327042251825333,-0.432113081216812,-0.840429544448853,-0.0171146430075169,-0.175383135676384,-0.984351575374603,0.0101508041843772,0.50911957025528,-0.860636055469513,-0.034442875534296,0.930596947669983,-0.364421516656876,0.241154938936234,0.795987188816071,-0.555201649665833,0.0101508041843772,0.50911957025528,-0.860636055469513,-0.00843027234077454,0.989632189273834,0.143377617001534,-0.327042251825333,-0.432113081216812,-0.840429544448853,0.152957931160927,-0.00870206207036972,-0.988194406032562,0.0233034994453192,-0.761098027229309,-0.648218274116516,-0.0171146430075169,-0.175383135676384,-0.984351575374603,-0.00865545589476824,0.725621819496155,0.688039302825928,-0.393519014120102,0.479817181825638,0.784167289733887,-0.0746800899505615,0.468236804008484,0.88044148683548,0.0136918053030968,-0.0640916973352432,0.997850060462952,0.22971485555172,0.904374361038208,-0.359636306762695,-0.393519014120102,0.479817181825638,0.784167289733887,-0.00865545589476824,0.725621819496155,0.688039302825928,0.018664825707674,0.997571229934692,-0.0671074241399765,
- 0.018664825707674,0.997571229934692,-0.0671074241399765,0.012176345102489,0.793694794178009,-0.608194470405579,0.148498445749283,0.816905617713928,-0.557327091693878,0.22971485555172,0.904374361038208,-0.359636306762695,0.012176345102489,0.793694794178009,-0.608194470405579,0.0501212775707245,0.333919882774353,-0.941268026828766,0.506622076034546,-0.406744867563248,-0.760192573070526,0.148498445749283,0.816905617713928,-0.557327091693878,0.0709596052765846,0.00113807513844222,-0.997478544712067,0.506622076034546,-0.406744867563248,-0.760192573070526,0.0501212775707245,0.333919882774353,-0.941268026828766,-0.0455279052257538,-0.654325067996979,-0.754841685295105,0.0728868097066879,0.465616852045059,0.881979882717133,-0.0746800899505615,0.468236804008484,0.88044148683548,-0.393519014120102,0.479817181825638,0.784167289733887,0.350768029689789,0.475205838680267,0.806933224201202,-0.0139703825116158,0.456243902444839,0.88974517583847,0.0226881504058838,0.428143233060837,0.903426110744476,-0.00175690301693976,0.467339903116226,0.884075999259949,-0.0182005409151316,0.472927331924438,0.880913555622101,-0.0209146868437529,0.478215992450714,0.877993226051331,-0.000212335959076881,0.483723133802414,0.875221133232117,-0.00716433813795447,-0.135166987776756,0.99079692363739,0.0728868097066879,0.465616852045059,0.881979882717133,0.350768029689789,0.475205838680267,0.806933224201202,0.0248728487640619,0.794709503650665,0.606480181217194,0.00881499424576759,-0.000804942916147411,-0.999960899353027,-0.0301457867026329,0.000552900368347764,-0.999545395374298,5.53176278117462e-006,0.000295857927994803,-1,0.0301084201782942,-0.00044037209590897,-0.999546587467194,-0.00889682024717331,-0.000137467388412915,-0.999960422515869,-0.0109413182362914,0.000488749356009066,-0.999940097332001,-0.0337217785418034,0.000862565473653376,-0.999430894851685,-0.0102312648668885,0.00028865528292954,-0.999947667121887,0.0156377181410789,0.000187807891052216,-0.99987781047821,0.010874055325985,3.86665378755424e-005,-0.999940931797028,-0.130560919642448,0.460121989250183,-0.878203690052032,
- -0.00760991964489222,-0.143621146678925,-0.989603579044342,0.0246052388101816,0.791714549064636,-0.610395669937134,0.350637674331665,0.474998712539673,-0.807111740112305,-0.461421817541122,-0.419033497571945,-0.781985223293304,-0.130560919642448,0.460121989250183,-0.878203690052032,0.0713343173265457,0.462510198354721,-0.883739709854126,0.100971139967442,-0.468373477458954,-0.877742111682892,-0.461421817541122,-0.419033497571945,-0.781985223293304,-0.836426258087158,-0.0911556482315063,-0.540446043014526,-0.130560919642448,0.460121989250183,-0.878203690052032,0.100971139967442,-0.468373477458954,-0.877742111682892,0.0713343173265457,0.462510198354721,-0.883739709854126,0.0162923708558083,-0.464306473731995,-0.885524749755859,-0.0253916587680578,0.563462257385254,0.825751602649689,-0.0559515953063965,0.558067679405212,0.827907025814056,-0.0866658613085747,0.554643571376801,0.827562510967255,-0.0410799980163574,0.563212513923645,0.825290322303772,0.0369015000760555,0.562077701091766,0.82626086473465,-0.0253916587680578,0.563462257385254,0.825751602649689,-0.0410799980163574,0.563212513923645,0.825290322303772,0.0365929678082466,0.562097668647766,0.826260924339294,-0.741649091243744,0.660838961601257,0.115101769566536,-0.738426148891449,0.666569352149963,0.102040216326714,-0.774476230144501,0.632602214813232,0.00112015020567924,-0.918439209461212,0.350989729166031,0.182416349649429,-0.274122357368469,0.959908843040466,0.0585845299065113,-0.293955832719803,0.955438673496246,-0.0269619859755039,-0.888694703578949,0.400987654924393,0.222329899668694,-0.0921487882733345,0.995223820209503,0.0322224162518978,0.0221703797578812,0.999464511871338,0.0240693800151348,-0.0581249669194222,0.996496200561523,0.0601398274302483,-0.0903266072273254,0.994720458984375,0.0487070567905903,-0.274122357368469,0.959908843040466,0.0585845299065113,-0.298401147127151,0.950139164924622,0.0905118361115456,-0.213075444102287,0.975660979747772,0.0518130995333195,-0.293955832719803,0.955438673496246,-0.0269619859755039,-0.774301588535309,0.620185315608978,0.125806137919426,
- -0.761256575584412,0.628917515277863,0.157959207892418,-0.741649091243744,0.660838961601257,0.115101769566536,-0.276516765356064,0.95754861831665,0.0814816430211067,-0.371238797903061,0.921205163002014,0.116460271179676,-0.96205347776413,0.25522181391716,0.0965144410729408,-0.974368572235107,0.21444870531559,-0.0679533258080482,-0.257885605096817,0.965712070465088,0.0299229435622692,-0.262971788644791,0.962210476398468,0.0706887468695641,-0.371238797903061,0.921205163002014,0.116460271179676,-0.276516765356064,0.95754861831665,0.0814816430211067,-0.0921487882733345,0.995223820209503,0.0322224162518978,-0.500732064247131,0.865590512752533,-0.00453311949968338,-0.0812004953622818,0.993871927261353,0.0750015452504158,0.0546065159142017,0.987046897411346,0.150852590799332,0.0221703797578812,0.999464511871338,0.0240693800151348,-0.0812004953622818,0.993871927261353,0.0750015452504158,-0.741649091243744,0.660838961601257,0.115101769566536,-0.761256575584412,0.628917515277863,0.157959207892418,-0.738426148891449,0.666569352149963,0.102040216326714,-0.96205347776413,0.25522181391716,0.0965144410729408,-0.274122357368469,0.959908843040466,0.0585845299065113,-0.918439209461212,0.350989729166031,0.182416349649429,-0.371238797903061,0.921205163002014,0.116460271179676,-0.262971788644791,0.962210476398468,0.0706887468695641,-0.274122357368469,0.959908843040466,0.0585845299065113,-0.262971788644791,0.962210476398468,0.0706887468695641,-0.432826220989227,0.899052262306213,0.0660792589187622,-0.298401147127151,0.950139164924622,0.0905118361115456,-0.35737556219101,0.933955132961273,-0.00324321538209915,-0.0812004953622818,0.993871927261353,0.0750015452504158,-0.500732064247131,0.865590512752533,-0.00453311949968338,0.0546065159142017,0.987046897411346,0.150852590799332,-0.0812004953622818,0.993871927261353,0.0750015452504158,-0.35737556219101,0.933955132961273,-0.00324321538209915,-0.89178591966629,0.445548295974731,-0.0787700340151787,-0.982932209968567,0.168607488274574,0.0735925659537315,-0.761256575584412,0.628917515277863,0.157959207892418,
- -0.774301588535309,0.620185315608978,0.125806137919426,-0.738426148891449,0.666569352149963,0.102040216326714,-0.761256575584412,0.628917515277863,0.157959207892418,-0.982932209968567,0.168607488274574,0.0735925659537315,-0.916653633117676,0.305583536624908,0.257613837718964,-0.774476230144501,0.632602214813232,0.00112015020567924,-0.738426148891449,0.666569352149963,0.102040216326714,-0.916653633117676,0.305583536624908,0.257613837718964,-0.856775879859924,0.478486597537994,0.192316517233849,-0.274122357368469,0.959908843040466,0.0585845299065113,-0.262971788644791,0.962210476398468,0.0706887468695641,-0.298401147127151,0.950139164924622,0.0905118361115456,-0.298401147127151,0.950139164924622,0.0905118361115456,-0.0921487882733345,0.995223820209503,0.0322224162518978,-0.213075444102287,0.975660979747772,0.0518130995333195,-0.213075444102287,0.975660979747772,0.0518130995333195,-0.0921487882733345,0.995223820209503,0.0322224162518978,-0.0903266072273254,0.994720458984375,0.0487070567905903,-0.0812004953622818,0.993871927261353,0.0750015452504158,0.0221703797578812,0.999464511871338,0.0240693800151348,-0.0921487882733345,0.995223820209503,0.0322224162518978,-0.96205347776413,0.25522181391716,0.0965144410729408,-0.371238797903061,0.921205163002014,0.116460271179676,-0.274122357368469,0.959908843040466,0.0585845299065113,-0.262971788644791,0.962210476398468,0.0706887468695641,-0.500732064247131,0.865590512752533,-0.00453311949968338,-0.432826220989227,0.899052262306213,0.0660792589187622,-0.35737556219101,0.933955132961273,-0.00324321538209915,-0.500732064247131,0.865590512752533,-0.00453311949968338,-0.262971788644791,0.962210476398468,0.0706887468695641,-0.257885605096817,0.965712070465088,0.0299229435622692,-0.432826220989227,0.899052262306213,0.0660792589187622,-0.500732064247131,0.865590512752533,-0.00453311949968338,-0.0921487882733345,0.995223820209503,0.0322224162518978,-0.298401147127151,0.950139164924622,0.0905118361115456,-0.432826220989227,0.899052262306213,0.0660792589187622,-0.0921487882733345,0.995223820209503,0.0322224162518978,
- 0.999739944934845,-0.0228053014725447,-0.000237243832089007,0.0484338328242302,-0.767465353012085,0.639258325099945,0.0515006445348263,-0.976284682750702,-0.210276231169701,0.999837577342987,-0.0167987141758204,0.00654101138934493,0.999944746494293,-0.00959260202944279,-0.0043030483648181,0.999990463256836,0.00204086862504482,0.00387389562092721,0.999654293060303,0.0143331596627831,-0.0220458414405584,0.0484338328242302,-0.767465353012085,0.639258325099945,0.999031186103821,-0.0342491343617439,0.0276343654841185,0.99912691116333,0.0361179895699024,0.0210015717893839,0.0485985949635506,0.580472648143768,0.812828123569489,0.999837577342987,-0.0167987141758204,0.00654101138934493,0.991353332996368,-0.12507089972496,-0.0396981276571751,0.996444225311279,-0.0756164193153381,0.0371619127690792,0.997779309749603,0.00556427659466863,0.0663750097155571,0.971767067909241,0.0464598648250103,-0.231322810053825,0.999944746494293,-0.00959260202944279,-0.0043030483648181,0.999654293060303,0.0143331596627831,-0.0220458414405584,0.999990463256836,0.00204086862504482,0.00387389562092721,0.99590390920639,0.0902222841978073,0.0059580928646028,0.999654293060303,0.0143331596627831,-0.0220458414405584,0.00738590024411678,0.06250911206007,-0.998017072677612,-0.0292783845216036,-0.00496512558311224,-0.999559044837952,-0.0315014831721783,0.0271064341068268,-0.999136090278625,-0.00646969256922603,-0.0390380211174488,-0.999216854572296,0.0097812982276082,-0.0211226437240839,-0.999729037284851,0.999739944934845,-0.0228053014725447,-0.000237243832089007,0.999031186103821,-0.0342491343617439,0.0276343654841185,0.0484338328242302,-0.767465353012085,0.639258325099945,0.0515006445348263,-0.976284682750702,-0.210276231169701,0.991353332996368,-0.12507089972496,-0.0396981276571751,0.999837577342987,-0.0167987141758204,0.00654101138934493,0.0485985949635506,0.580472648143768,0.812828123569489,0.999658823013306,0.0198722183704376,-0.0169569682329893,0.999881207942963,0.00505927391350269,-0.0145629476755857,0.0422676168382168,0.993748307228088,-0.103334188461304,
- 0.999241173267365,-0.0104785524308681,-0.0375142842531204,0.999881207942963,0.00505927391350269,-0.0145629476755857,0.999658823013306,0.0198722183704376,-0.0169569682329893,0.999058842658997,-0.0128751415759325,-0.041421577334404,0.999654412269592,-0.0136074796319008,-0.0224952846765518,0.999658823013306,0.0198722183704376,-0.0169569682329893,0.99912691116333,0.0361179895699024,0.0210015717893839,0.999662220478058,0.0249065384268761,-0.00743413250893354,0.999058842658997,-0.0128751415759325,-0.041421577334404,0.0210000071674585,0.634339690208435,-0.772769093513489,0.997701644897461,-0.0535630285739899,-0.0415018834173679,0.998269021511078,0.029651390388608,-0.0507926791906357,0.00623420858755708,0.0849793180823326,-0.99636322259903,0.998174071311951,-0.0195405073463917,0.0571547597646713,0.998890578746796,0.0457556173205376,-0.0111359544098377,0.999812662601471,0.0191916897892952,0.00251305056735873,0.999688744544983,-0.0184372495859861,-0.0168109126389027,0.992374837398529,0.0839833915233612,0.0902164727449417,0.995253503322601,0.023647278547287,0.094400092959404,0.997873246669769,-0.0647925734519959,-0.00713894981890917,0.996892392635345,-0.0756016299128532,-0.0221351850777864,0.999881207942963,0.00505927391350269,-0.0145629476755857,0.999241173267365,-0.0104785524308681,-0.0375142842531204,0.99912691116333,0.0361179895699024,0.0210015717893839,0.999658823013306,0.0198722183704376,-0.0169569682329893,0.0485985949635506,0.580472648143768,0.812828123569489,0.0210000071674585,0.634339690208435,-0.772769093513489,0.996892392635345,-0.0756016299128532,-0.0221351850777864,0.997701644897461,-0.0535630285739899,-0.0415018834173679,0.0210000071674585,0.634339690208435,-0.772769093513489,0.0422676168382168,0.993748307228088,-0.103334188461304,0.999881207942963,0.00505927391350269,-0.0145629476755857,0.996892392635345,-0.0756016299128532,-0.0221351850777864,0.999971747398376,-0.00178337818942964,0.00730808824300766,0.964259684085846,-0.247486665844917,0.0946239680051804,0.999382674694061,-0.034733984619379,0.0052851471118629,
- 0.999982297420502,-0.0017176172696054,0.00569747947156429,0.987233757972717,-0.158795639872551,0.0123907886445522,0.99092048406601,-0.0798216089606285,0.108190275728703,0.972676336765289,-0.231611400842667,0.0160330589860678,0.998305082321167,-0.0295353792607784,0.050148069858551,0.893526434898376,0.41876620054245,0.162004247307777,0.999775171279907,-0.005927799269557,-0.0203604530543089,0.999995708465576,-0.0028143017552793,-0.000772114319261163,0.997990012168884,0.0633562356233597,0.00144562136847526,0.964259684085846,-0.247486665844917,0.0946239680051804,0.987233757972717,-0.158795639872551,0.0123907886445522,0.998305082321167,-0.0295353792607784,0.050148069858551,0.999382674694061,-0.034733984619379,0.0052851471118629,0.999556064605713,0.00248618121258914,-0.029690969735384,0.999695003032684,-0.0109094902873039,-0.0221591349691153,0.999775171279907,-0.005927799269557,-0.0203604530543089,0.893526434898376,0.41876620054245,0.162004247307777,0.99861079454422,0.0424015745520592,-0.0312821827828884,0.998712599277496,0.0283546485006809,-0.0420623756945133,0.976267635822296,0.154999971389771,-0.151250332593918,0.998712599277496,0.0283546485006809,-0.0420623756945133,0.765058994293213,0.0958133935928345,-0.636792480945587,0.976267635822296,0.154999971389771,-0.151250332593918,0.961838006973267,-0.272198230028152,-0.0278535429388285,0.537876069545746,-0.750831484794617,-0.383329570293427,0.929482638835907,-0.366440773010254,-0.0422297939658165,0.99575275182724,0.00285253766924143,0.0920238271355629,0.971481263637543,-0.206333860754967,0.116835489869118,0.920349359512329,-0.1855139285326,0.344298779964447,0.999654293060303,0.0143331596627831,-0.0220458414405584,0.999654293060303,0.0143331596627831,-0.0220458414405584,0.984303295612335,-0.170567944645882,0.0453179962933064,0.997076570987701,-0.00517847156152129,0.0762338936328888,0.99861079454422,0.0424015745520592,-0.0312821827828884,0.992329120635986,0.120383940637112,-0.0281201936304569,0.984260976314545,-0.174959629774094,-0.0248895138502121,0.980161190032959,0.197994217276573,-0.00907873455435038,
- 0.714832305908203,-0.0764359757304192,0.695105969905853,0.765058994293213,0.0958133935928345,-0.636792480945587,0.792633950710297,0.0384133197367191,-0.608486652374268,0.999250650405884,0.0257987417280674,0.0288565531373024,0.995392322540283,-0.0734681263566017,0.06161779910326,0.997305512428284,-0.0707467794418335,0.0194074157625437,0.999702930450439,0.00229508732445538,-0.0242682062089443,0.999943792819977,0.0103158066049218,0.0024818773381412,0.999943792819977,0.0103158066049218,0.0024818773381412,0.993250906467438,-0.0262562334537506,0.112975396215916,0.995392322540283,-0.0734681263566017,0.06161779910326,0.987910032272339,-0.107283510267735,0.111911594867706,0.902537107467651,-0.417259156703949,0.106402888894081,0.999617636203766,-0.0251907892525196,0.0114055182784796,0.999477744102478,-0.0141558572649956,0.0290491171181202,0.906528890132904,-0.395592451095581,-0.14735010266304,0.85711669921875,-0.513735592365265,-0.0377717427909374,0.885238170623779,-0.465105772018433,0.00548545643687248,0.990113615989685,-0.0228539202362299,0.138393431901932,0.98380970954895,0.0149056650698185,-0.178595095872879,0.987910032272339,-0.107283510267735,0.111911594867706,0.999477744102478,-0.0141558572649956,0.0290491171181202,0.994998931884766,0.0930095836520195,0.0364184118807316,0.902537107467651,-0.417259156703949,0.106402888894081,0.906528890132904,-0.395592451095581,-0.14735010266304,0.990113615989685,-0.0228539202362299,0.138393431901932,0.999617636203766,-0.0251907892525196,0.0114055182784796,0.925187349319458,-0.279530584812164,0.256692498922348,0.93481832742691,-0.347781956195831,0.071849413216114,0.999909341335297,0.00796573050320148,-0.0108572253957391,0.769611239433289,0.412454873323441,-0.487421542406082,0.911856532096863,-0.355550080537796,-0.205187648534775,0.98380970954895,0.0149056650698185,-0.178595095872879,0.994998931884766,0.0930095836520195,0.0364184118807316,0.99739271402359,0.0101484777405858,-0.0714483633637428,0.769611239433289,0.412454873323441,-0.487421542406082,0.999093532562256,0.0111267641186714,-0.0410900041460991,
- 0.978669106960297,-0.0598135218024254,0.196543052792549,0.925187349319458,-0.279530584812164,0.256692498922348,0.99750167131424,0.0647929236292839,-0.0281473230570555,0.987793624401093,0.152202218770981,-0.0331401489675045,0.99895453453064,-0.0439279526472092,0.0126604847609997,0.999594449996948,0.0150280278176069,0.0241909846663475,0.966557443141937,0.130624264478683,0.22068989276886,0.95785528421402,-0.0921777710318565,0.272060066461563,0.851020038127899,-0.524627506732941,0.0230436250567436,0.996078014373779,-0.0178685523569584,0.0866566896438599,0.996070504188538,0.0876396894454956,0.0127598019316792,0.999894559383392,-0.0124177141115069,-0.00753948045894504,0.99750167131424,0.0647929236292839,-0.0281473230570555,0.999594449996948,0.0150280278176069,0.0241909846663475,0.996078014373779,-0.0178685523569584,0.0866566896438599,0.984473764896393,0.174467101693153,-0.0193046238273382,0.966557443141937,0.130624264478683,0.22068989276886,0.997999727725983,0.0140761928632855,-0.0616312734782696,0.999812662601471,0.0191916897892952,0.00251305056735873,0.998890578746796,0.0457556173205376,-0.0111359544098377,0.998083353042603,0.0507810674607754,0.0353691168129444,0.997999727725983,0.0140761928632855,-0.0616312734782696,0.996070504188538,0.0876396894454956,0.0127598019316792,0.999983072280884,0.0055908216163516,0.00166681793052703,0.994898974895477,0.00143423804547638,-0.100866712629795,0.999999165534973,0.00134762574452907,-0.000160289200721309,0.999901831150055,0.0121594704687595,-0.0069641936570406,0.769611239433289,0.412454873323441,-0.487421542406082,0.999901831150055,0.0121594704687595,-0.0069641936570406,0.999093532562256,0.0111267641186714,-0.0410900041460991,0.769611239433289,0.412454873323441,-0.487421542406082,0.982030212879181,0.0371016524732113,0.185040712356567,0.95900946855545,-0.2812340259552,0.0347617268562317,0.95785528421402,-0.0921777710318565,0.272060066461563,0.966557443141937,0.130624264478683,0.22068989276886,0.984473764896393,0.174467101693153,-0.0193046238273382,0.982030212879181,0.0371016524732113,0.185040712356567,
- 0.966557443141937,0.130624264478683,0.22068989276886,0.999360918998718,0.0328327529132366,-0.0141368936747313,0.996345639228821,0.0844452977180481,-0.0128208147361875,0.987793624401093,0.152202218770981,-0.0331401489675045,0.99750167131424,0.0647929236292839,-0.0281473230570555,0.992964088916779,0.115448862314224,-0.0263440124690533,0.999360918998718,0.0328327529132366,-0.0141368936747313,0.99750167131424,0.0647929236292839,-0.0281473230570555,0.999894559383392,-0.0124177141115069,-0.00753948045894504,0.99739271402359,0.0101484777405858,-0.0714483633637428,0.994998931884766,0.0930095836520195,0.0364184118807316,0.992964088916779,0.115448862314224,-0.0263440124690533,0.99866783618927,-0.00674587953835726,-0.0511573404073715,0.769611239433289,0.412454873323441,-0.487421542406082,0.999909341335297,0.00796573050320148,-0.0108572253957391,0.999999165534973,0.00134762574452907,-0.000160289200721309,0.925187349319458,-0.279530584812164,0.256692498922348,0.978669106960297,-0.0598135218024254,0.196543052792549,0.997938454151154,0.0442757979035378,0.0464594550430775,0.534650981426239,-0.609091758728027,0.585794985294342,0.807612836360931,0.0109113026410341,0.589612305164337,0.968592703342438,-0.242365658283234,0.055560864508152,0.85711669921875,-0.513735592365265,-0.0377717427909374,0.906528890132904,-0.395592451095581,-0.14735010266304,0.999572277069092,0.0290945880115032,-0.00298826466314495,0.807612836360931,0.0109113026410341,0.589612305164337,0.906528890132904,-0.395592451095581,-0.14735010266304,0.902537107467651,-0.417259156703949,0.106402888894081,0.999175548553467,0.0322822704911232,-0.0246210098266602,0.999572277069092,0.0290945880115032,-0.00298826466314495,0.902537107467651,-0.417259156703949,0.106402888894081,0.987910032272339,-0.107283510267735,0.111911594867706,0.994651973247528,0.0985386967658997,-0.0309443082660437,0.999175548553467,0.0322822704911232,-0.0246210098266602,0.987910032272339,-0.107283510267735,0.111911594867706,0.98380970954895,0.0149056650698185,-0.178595095872879,0.973610997200012,-0.0285175964236259,-0.226425305008888,
- 0.994651973247528,0.0985386967658997,-0.0309443082660437,0.98380970954895,0.0149056650698185,-0.178595095872879,0.911856532096863,-0.355550080537796,-0.205187648534775,0.534650981426239,-0.609091758728027,0.585794985294342,0.999555230140686,-0.0278153400868177,-0.0107558378949761,0.93481832742691,-0.347781956195831,0.071849413216114,0.925187349319458,-0.279530584812164,0.256692498922348,0.534650981426239,-0.609091758728027,0.585794985294342,0.998382985591888,0.0496767312288284,0.0276339948177338,0.999917685985565,-0.0127489063888788,0.00148564879782498,0.534650981426239,-0.609091758728027,0.585794985294342,0.997938454151154,0.0442757979035378,0.0464594550430775,0.998382985591888,0.0496767312288284,0.0276339948177338,0.893526434898376,0.41876620054245,0.162004247307777,0.997990012168884,0.0633562356233597,0.00144562136847526,0.999556064605713,0.00248618121258914,-0.029690969735384,0.999917685985565,-0.0127489063888788,0.00148564879782498,0.999555230140686,-0.0278153400868177,-0.0107558378949761,0.534650981426239,-0.609091758728027,0.585794985294342,0.999467074871063,-0.014812882989645,0.0290881954133511,0.99982213973999,0.00488938530907035,-0.0182175599038601,0.997305512428284,-0.0707467794418335,0.0194074157625437,0.995392322540283,-0.0734681263566017,0.06161779910326,0.993250906467438,-0.0262562334537506,0.112975396215916,0.999467074871063,-0.014812882989645,0.0290881954133511,0.995392322540283,-0.0734681263566017,0.06161779910326,0.99575275182724,0.00285253766924143,0.0920238271355629,0.929482638835907,-0.366440773010254,-0.0422297939658165,0.989869058132172,-0.132042065262794,0.0521924681961536,0.994912922382355,0.0377987585961819,0.0933789387345314,0.999654293060303,0.0143331596627831,-0.0220458414405584,0.997076570987701,-0.00517847156152129,0.0762338936328888,0.997168838977814,0.0201411023736,0.0724488869309425,0.997168838977814,0.0201411023736,0.0724488869309425,0.990263402462006,-0.139107212424278,-0.0052526774816215,0.999654293060303,0.0143331596627831,-0.0220458414405584,0.948501765727997,-0.272729933261871,-0.161129996180534,
- 0.999577760696411,0.0290287844836712,-0.00128941400907934,0.999995708465576,-0.0028143017552793,-0.000772114319261163,0.999775171279907,-0.005927799269557,-0.0203604530543089,0.99948114156723,0.00648675719276071,-0.0315498039126396,0.999577760696411,0.0290287844836712,-0.00128941400907934,0.948501765727997,-0.272729933261871,-0.161129996180534,0.99948114156723,0.00648675719276071,-0.0315498039126396,0.948501765727997,-0.272729933261871,-0.161129996180534,0.999775171279907,-0.005927799269557,-0.0203604530543089,0.999695003032684,-0.0109094902873039,-0.0221591349691153,0.997779309749603,0.00556427659466863,0.0663750097155571,0.996444225311279,-0.0756164193153381,0.0371619127690792,0.537876069545746,-0.750831484794617,-0.383329570293427,0.961838006973267,-0.272198230028152,-0.0278535429388285,0.920349359512329,-0.1855139285326,0.344298779964447,0.971767067909241,0.0464598648250103,-0.231322810053825,0.999654293060303,0.0143331596627831,-0.0220458414405584,0.999654293060303,0.0143331596627831,-0.0220458414405584,0.99590390920639,0.0902222841978073,0.0059580928646028,0.984303295612335,-0.170567944645882,0.0453179962933064,0.713400959968567,-0.497577041387558,0.493432998657227,0.990502119064331,-0.136091113090515,-0.0196199379861355,0.992329120635986,0.120383940637112,-0.0281201936304569,0.976267635822296,0.154999971389771,-0.151250332593918,0.999654412269592,-0.0136074796319008,-0.0224952846765518,0.999920666217804,0.012518803589046,0.00139692006632686,0.996892392635345,-0.0756016299128532,-0.0221351850777864,0.999241173267365,-0.0104785524308681,-0.0375142842531204,0.999920666217804,0.012518803589046,0.00139692006632686,0.999250650405884,0.0257987417280674,0.0288565531373024,0.998269021511078,0.029651390388608,-0.0507926791906357,0.997701644897461,-0.0535630285739899,-0.0415018834173679,0.996892392635345,-0.0756016299128532,-0.0221351850777864,0.998083353042603,0.0507810674607754,0.0353691168129444,0.99866783618927,-0.00674587953835726,-0.0511573404073715,0.997916042804718,0.0477179735898972,-0.0434360764920712,0.999806523323059,0.0034113188739866,0.0193723067641258,
- 0.999707043170929,-0.0124591551721096,0.0207516197115183,0.998890578746796,0.0457556173205376,-0.0111359544098377,0.998174071311951,-0.0195405073463917,0.0571547597646713,0.999865889549255,0.00392250204458833,0.0159010775387287,0.995253503322601,0.023647278547287,0.094400092959404,0.992374837398529,0.0839833915233612,0.0902164727449417,0.978669106960297,-0.0598135218024254,0.196543052792549,0.999093532562256,0.0111267641186714,-0.0410900041460991,0.999599993228912,0.0030815782956779,-0.0281141567975283,0.996542632579803,0.007518011610955,-0.0827423855662346,0.997938454151154,0.0442757979035378,0.0464594550430775,0.978669106960297,-0.0598135218024254,0.196543052792549,0.996542632579803,0.007518011610955,-0.0827423855662346,0.999142944812775,-0.00710210343822837,0.0407816655933857,0.93481832742691,-0.347781956195831,0.071849413216114,0.999555230140686,-0.0278153400868177,-0.0107558378949761,0.973610997200012,-0.0285175964236259,-0.226425305008888,0.911856532096863,-0.355550080537796,-0.205187648534775,0.999909341335297,0.00796573050320148,-0.0108572253957391,0.93481832742691,-0.347781956195831,0.071849413216114,0.911856532096863,-0.355550080537796,-0.205187648534775,0.99739271402359,0.0101484777405858,-0.0714483633637428,0.997305512428284,-0.0707467794418335,0.0194074157625437,0.99982213973999,0.00488938530907035,-0.0182175599038601,0.999715209007263,-0.0187980439513922,-0.0147067634388804,0.999184906482697,0.0388244353234768,-0.0110541461035609,0.999214947223663,0.0378162004053593,0.0118123395368457,0.999577760696411,0.0290287844836712,-0.00128941400907934,0.99948114156723,0.00648675719276071,-0.0315498039126396,0.990263402462006,-0.139107212424278,-0.0052526774816215,0.971481263637543,-0.206333860754967,0.116835489869118,0.999654293060303,0.0143331596627831,-0.0220458414405584,0.999995708465576,-0.0028143017552793,-0.000772114319261163,0.999971747398376,-0.00178337818942964,0.00730808824300766,0.999982297420502,-0.0017176172696054,0.00569747947156429,0.997990012168884,0.0633562356233597,0.00144562136847526,0.999556064605713,0.00248618121258914,-0.029690969735384,
- 0.997990012168884,0.0633562356233597,0.00144562136847526,0.994651973247528,0.0985386967658997,-0.0309443082660437,0.973610997200012,-0.0285175964236259,-0.226425305008888,0.999715209007263,-0.0187980439513922,-0.0147067634388804,0.999702930450439,0.00229508732445538,-0.0242682062089443,0.997305512428284,-0.0707467794418335,0.0194074157625437,0.997999727725983,0.0140761928632855,-0.0616312734782696,0.998083353042603,0.0507810674607754,0.0353691168129444,0.997916042804718,0.0477179735898972,-0.0434360764920712,0.997916042804718,0.0477179735898972,-0.0434360764920712,0.994823098182678,0.0947157442569733,-0.0368224158883095,0.996070504188538,0.0876396894454956,0.0127598019316792,0.997999727725983,0.0140761928632855,-0.0616312734782696,0.994823098182678,0.0947157442569733,-0.0368224158883095,0.999894559383392,-0.0124177141115069,-0.00753948045894504,0.996070504188538,0.0876396894454956,0.0127598019316792,0.992964088916779,0.115448862314224,-0.0263440124690533,0.999894559383392,-0.0124177141115069,-0.00753948045894504,0.994823098182678,0.0947157442569733,-0.0368224158883095,0.99866783618927,-0.00674587953835726,-0.0511573404073715,0.992964088916779,0.115448862314224,-0.0263440124690533,0.994823098182678,0.0947157442569733,-0.0368224158883095,0.997916042804718,0.0477179735898972,-0.0434360764920712,0.998083353042603,0.0507810674607754,0.0353691168129444,0.998890578746796,0.0457556173205376,-0.0111359544098377,0.999707043170929,-0.0124591551721096,0.0207516197115183,0.99866783618927,-0.00674587953835726,-0.0511573404073715,0.984260976314545,-0.174959629774094,-0.0248895138502121,0.993009746074677,-0.0955512076616287,-0.069294273853302,0.998330116271973,-0.0149909732863307,-0.0557876452803612,0.980161190032959,0.197994217276573,-0.00907873455435038,0.984260976314545,-0.174959629774094,-0.0248895138502121,0.998330116271973,-0.0149909732863307,-0.0557876452803612,0.999184906482697,0.0388244353234768,-0.0110541461035609,0.980161190032959,0.197994217276573,-0.00907873455435038,0.998330116271973,-0.0149909732863307,-0.0557876452803612,
- 0.998330116271973,-0.0149909732863307,-0.0557876452803612,0.99977445602417,-0.00164538715034723,-0.0211765114217997,0.999214947223663,0.0378162004053593,0.0118123395368457,0.999184906482697,0.0388244353234768,-0.0110541461035609,0.983470618724823,0.0282183233648539,0.17885559797287,0.999214947223663,0.0378162004053593,0.0118123395368457,0.99977445602417,-0.00164538715034723,-0.0211765114217997,0.99977445602417,-0.00164538715034723,-0.0211765114217997,0.983936429023743,-0.0151741271838546,-0.177873730659485,0.983470618724823,0.0282183233648539,0.17885559797287,0.99977445602417,-0.00164538715034723,-0.0211765114217997,0.9857257604599,-0.0400467775762081,-0.163527473807335,0.983936429023743,-0.0151741271838546,-0.177873730659485,0.999662220478058,0.0249065384268761,-0.00743413250893354,0.9857257604599,-0.0400467775762081,-0.163527473807335,0.99977445602417,-0.00164538715034723,-0.0211765114217997,0.999058842658997,-0.0128751415759325,-0.041421577334404,0.999662220478058,0.0249065384268761,-0.00743413250893354,0.99977445602417,-0.00164538715034723,-0.0211765114217997,0.998330116271973,-0.0149909732863307,-0.0557876452803612,0.993009746074677,-0.0955512076616287,-0.069294273853302,0.999058842658997,-0.0128751415759325,-0.041421577334404,0.998330116271973,-0.0149909732863307,-0.0557876452803612,0.999654412269592,-0.0136074796319008,-0.0224952846765518,0.990502119064331,-0.136091113090515,-0.0196199379861355,0.713400959968567,-0.497577041387558,0.493432998657227,0.713400959968567,-0.497577041387558,0.493432998657227,0.999920666217804,0.012518803589046,0.00139692006632686,0.999654412269592,-0.0136074796319008,-0.0224952846765518,0.713400959968567,-0.497577041387558,0.493432998657227,0.714832305908203,-0.0764359757304192,0.695105969905853,0.999920666217804,0.012518803589046,0.00139692006632686,0.976267635822296,0.154999971389771,-0.151250332593918,0.765058994293213,0.0958133935928345,-0.636792480945587,0.714832305908203,-0.0764359757304192,0.695105969905853,0.713400959968567,-0.497577041387558,0.493432998657227,0.992329120635986,0.120383940637112,-0.0281201936304569,
- 0.990502119064331,-0.136091113090515,-0.0196199379861355,0.993009746074677,-0.0955512076616287,-0.069294273853302,0.984260976314545,-0.174959629774094,-0.0248895138502121,0.976267635822296,0.154999971389771,-0.151250332593918,0.992329120635986,0.120383940637112,-0.0281201936304569,0.99861079454422,0.0424015745520592,-0.0312821827828884,0.998712599277496,0.0283546485006809,-0.0420623756945133,0.996091067790985,0.0451109819114208,-0.0759450346231461,0.792633950710297,0.0384133197367191,-0.608486652374268,0.765058994293213,0.0958133935928345,-0.636792480945587,0.997873246669769,-0.0647925734519959,-0.00713894981890917,0.995253503322601,0.023647278547287,0.094400092959404,0.998174071311951,-0.0195405073463917,0.0571547597646713,0.999688744544983,-0.0184372495859861,-0.0168109126389027,0.996078014373779,-0.0178685523569584,0.0866566896438599,0.851020038127899,-0.524627506732941,0.0230436250567436,0.958610534667969,-0.283735692501068,0.0236633811146021,0.999944806098938,0.000602294283453375,-0.0104923192411661,0.987793624401093,0.152202218770981,-0.0331401489675045,0.984473764896393,0.174467101693153,-0.0193046238273382,0.996078014373779,-0.0178685523569584,0.0866566896438599,0.99895453453064,-0.0439279526472092,0.0126604847609997,0.996345639228821,0.0844452977180481,-0.0128208147361875,0.982030212879181,0.0371016524732113,0.185040712356567,0.984473764896393,0.174467101693153,-0.0193046238273382,0.987793624401093,0.152202218770981,-0.0331401489675045,0.990113615989685,-0.0228539202362299,0.138393431901932,0.885238170623779,-0.465105772018433,0.00548545643687248,0.95900946855545,-0.2812340259552,0.0347617268562317,0.982030212879181,0.0371016524732113,0.185040712356567,0.999865889549255,0.00392250204458833,0.0159010775387287,0.999806523323059,0.0034113188739866,0.0193723067641258,0.998174071311951,-0.0195405073463917,0.0571547597646713,0.995253503322601,0.023647278547287,0.094400092959404,0.999556064605713,0.00248618121258914,-0.029690969735384,0.999702930450439,0.00229508732445538,-0.0242682062089443,0.999715209007263,-0.0187980439513922,-0.0147067634388804,
- 0.999695003032684,-0.0109094902873039,-0.0221591349691153,0.999943792819977,0.0103158066049218,0.0024818773381412,0.999702930450439,0.00229508732445538,-0.0242682062089443,0.999917685985565,-0.0127489063888788,0.00148564879782498,0.998382985591888,0.0496767312288284,0.0276339948177338,0.994005918502808,-0.0172188207507133,0.107962645590305,0.993250906467438,-0.0262562334537506,0.112975396215916,0.999943792819977,0.0103158066049218,0.0024818773381412,0.999982118606567,-0.00570516521111131,-0.00178761314600706,0.999467074871063,-0.014812882989645,0.0290881954133511,0.999059081077576,0.0054112714715302,0.0430333539843559,0.996091067790985,0.0451109819114208,-0.0759450346231461,0.998712599277496,0.0283546485006809,-0.0420623756945133,0.998712599277496,0.0283546485006809,-0.0420623756945133,0.99861079454422,0.0424015745520592,-0.0312821827828884,0.99982213973999,0.00488938530907035,-0.0182175599038601,0.999467074871063,-0.014812882989645,0.0290881954133511,0.999184906482697,0.0388244353234768,-0.0110541461035609,0.99861079454422,0.0424015745520592,-0.0312821827828884,0.980161190032959,0.197994217276573,-0.00907873455435038,0.999031186103821,-0.0342491343617439,0.0276343654841185,0.999944746494293,-0.00959260202944279,-0.0043030483648181,0.999662220478058,0.0249065384268761,-0.00743413250893354,0.99912691116333,0.0361179895699024,0.0210015717893839,0.999031186103821,-0.0342491343617439,0.0276343654841185,0.999739944934845,-0.0228053014725447,-0.000237243832089007,0.999990463256836,0.00204086862504482,0.00387389562092721,0.999944746494293,-0.00959260202944279,-0.0043030483648181,0.999739944934845,-0.0228053014725447,-0.000237243832089007,0.999837577342987,-0.0167987141758204,0.00654101138934493,0.997779309749603,0.00556427659466863,0.0663750097155571,0.999990463256836,0.00204086862504482,0.00387389562092721,0.984303295612335,-0.170567944645882,0.0453179962933064,0.99590390920639,0.0902222841978073,0.0059580928646028,0.997779309749603,0.00556427659466863,0.0663750097155571,0.961838006973267,-0.272198230028152,-0.0278535429388285,
- 0.997076570987701,-0.00517847156152129,0.0762338936328888,0.984303295612335,-0.170567944645882,0.0453179962933064,0.961838006973267,-0.272198230028152,-0.0278535429388285,0.99575275182724,0.00285253766924143,0.0920238271355629,0.997168838977814,0.0201411023736,0.0724488869309425,0.997076570987701,-0.00517847156152129,0.0762338936328888,0.99575275182724,0.00285253766924143,0.0920238271355629,0.994912922382355,0.0377987585961819,0.0933789387345314,0.998609721660614,0.051645927131176,-0.0105590177699924,0.998609721660614,0.051645927131176,-0.0105590177699924,0.999736309051514,0.0229553505778313,-0.000649881083518267,0.990263402462006,-0.139107212424278,-0.0052526774816215,0.997168838977814,0.0201411023736,0.0724488869309425,0.990263402462006,-0.139107212424278,-0.0052526774816215,0.999214947223663,0.0378162004053593,0.0118123395368457,0.983470618724823,0.0282183233648539,0.17885559797287,0.971481263637543,-0.206333860754967,0.116835489869118,0.983470618724823,0.0282183233648539,0.17885559797287,0.983936429023743,-0.0151741271838546,-0.177873730659485,0.920349359512329,-0.1855139285326,0.344298779964447,0.971481263637543,-0.206333860754967,0.116835489869118,0.983936429023743,-0.0151741271838546,-0.177873730659485,0.9857257604599,-0.0400467775762081,-0.163527473807335,0.971767067909241,0.0464598648250103,-0.231322810053825,0.920349359512329,-0.1855139285326,0.344298779964447,0.999688744544983,-0.0184372495859861,-0.0168109126389027,0.999812662601471,0.0191916897892952,0.00251305056735873,0.999272882938385,-0.000484641554066911,-0.0381238758563995,0.992126882076263,-0.125204116106033,-0.00284875766374171,0.997873246669769,-0.0647925734519959,-0.00713894981890917,0.999688744544983,-0.0184372495859861,-0.0168109126389027,0.992126882076263,-0.125204116106033,-0.00284875766374171,0.993531107902527,-0.113536603748798,0.00235345121473074,0.99346911907196,-0.113604843616486,0.010633047670126,0.999599993228912,0.0030815782956779,-0.0281141567975283,0.999093532562256,0.0111267641186714,-0.0410900041460991,0.999901831150055,0.0121594704687595,-0.0069641936570406,
- 0.999806523323059,0.0034113188739866,0.0193723067641258,0.999865889549255,0.00392250204458833,0.0159010775387287,0.999901831150055,0.0121594704687595,-0.0069641936570406,0.999999165534973,0.00134762574452907,-0.000160289200721309,0.999707043170929,-0.0124591551721096,0.0207516197115183,0.999806523323059,0.0034113188739866,0.0193723067641258,0.99866783618927,-0.00674587953835726,-0.0511573404073715,0.999707043170929,-0.0124591551721096,0.0207516197115183,0.999999165534973,0.00134762574452907,-0.000160289200721309,0.999909341335297,0.00796573050320148,-0.0108572253957391,0.99739271402359,0.0101484777405858,-0.0714483633637428,0.999982118606567,-0.00570516521111131,-0.00178761314600706,0.999943792819977,0.0103158066049218,0.0024818773381412,0.998382985591888,0.0496767312288284,0.0276339948177338,0.997938454151154,0.0442757979035378,0.0464594550430775,0.999142944812775,-0.00710210343822837,0.0407816655933857,0.998305082321167,-0.0295353792607784,0.050148069858551,0.972676336765289,-0.231611400842667,0.0160330589860678,0.968592703342438,-0.242365658283234,0.055560864508152,0.807612836360931,0.0109113026410341,0.589612305164337,0.999382674694061,-0.034733984619379,0.0052851471118629,0.998305082321167,-0.0295353792607784,0.050148069858551,0.807612836360931,0.0109113026410341,0.589612305164337,0.999572277069092,0.0290945880115032,-0.00298826466314495,0.999982297420502,-0.0017176172696054,0.00569747947156429,0.999382674694061,-0.034733984619379,0.0052851471118629,0.999572277069092,0.0290945880115032,-0.00298826466314495,0.999175548553467,0.0322822704911232,-0.0246210098266602,0.997990012168884,0.0633562356233597,0.00144562136847526,0.999982297420502,-0.0017176172696054,0.00569747947156429,0.999175548553467,0.0322822704911232,-0.0246210098266602,0.994651973247528,0.0985386967658997,-0.0309443082660437,0.999577760696411,0.0290287844836712,-0.00128941400907934,0.999214947223663,0.0378162004053593,0.0118123395368457,0.990263402462006,-0.139107212424278,-0.0052526774816215,0.999736309051514,0.0229553505778313,-0.000649881083518267,
- 0.99948114156723,0.00648675719276071,-0.0315498039126396,0.99982213973999,0.00488938530907035,-0.0182175599038601,0.99861079454422,0.0424015745520592,-0.0312821827828884,0.999184906482697,0.0388244353234768,-0.0110541461035609,0.999715209007263,-0.0187980439513922,-0.0147067634388804,0.99982213973999,0.00488938530907035,-0.0182175599038601,0.99948114156723,0.00648675719276071,-0.0315498039126396,0.999695003032684,-0.0109094902873039,-0.0221591349691153,0.994005918502808,-0.0172188207507133,0.107962645590305,0.999059081077576,0.0054112714715302,0.0430333539843559,0.999467074871063,-0.014812882989645,0.0290881954133511,0.993250906467438,-0.0262562334537506,0.112975396215916,0.994912922382355,0.0377987585961819,0.0933789387345314,0.989869058132172,-0.132042065262794,0.0521924681961536,0.99092048406601,-0.0798216089606285,0.108190275728703,0.987233757972717,-0.158795639872551,0.0123907886445522,0.998609721660614,0.051645927131176,-0.0105590177699924,0.994912922382355,0.0377987585961819,0.0933789387345314,0.987233757972717,-0.158795639872551,0.0123907886445522,0.964259684085846,-0.247486665844917,0.0946239680051804,0.999971747398376,-0.00178337818942964,0.00730808824300766,0.999736309051514,0.0229553505778313,-0.000649881083518267,0.998609721660614,0.051645927131176,-0.0105590177699924,0.964259684085846,-0.247486665844917,0.0946239680051804,0.999577760696411,0.0290287844836712,-0.00128941400907934,0.999736309051514,0.0229553505778313,-0.000649881083518267,0.999971747398376,-0.00178337818942964,0.00730808824300766,0.999995708465576,-0.0028143017552793,-0.000772114319261163,0.999917685985565,-0.0127489063888788,0.00148564879782498,0.999702930450439,0.00229508732445538,-0.0242682062089443,0.999556064605713,0.00248618121258914,-0.029690969735384,0.973610997200012,-0.0285175964236259,-0.226425305008888,0.999555230140686,-0.0278153400868177,-0.0107558378949761,0.999654412269592,-0.0136074796319008,-0.0224952846765518,0.999058842658997,-0.0128751415759325,-0.041421577334404,0.993009746074677,-0.0955512076616287,-0.069294273853302,
- 0.990502119064331,-0.136091113090515,-0.0196199379861355,0.999920666217804,0.012518803589046,0.00139692006632686,0.714832305908203,-0.0764359757304192,0.695105969905853,0.999250650405884,0.0257987417280674,0.0288565531373024,0.999990463256836,0.00204086862504482,0.00387389562092721,0.997779309749603,0.00556427659466863,0.0663750097155571,0.99590390920639,0.0902222841978073,0.0059580928646028,0.999662220478058,0.0249065384268761,-0.00743413250893354,0.999944746494293,-0.00959260202944279,-0.0043030483648181,0.971767067909241,0.0464598648250103,-0.231322810053825,0.9857257604599,-0.0400467775762081,-0.163527473807335,0.99895453453064,-0.0439279526472092,0.0126604847609997,0.996078014373779,-0.0178685523569584,0.0866566896438599,0.999944806098938,0.000602294283453375,-0.0104923192411661,0.999935030937195,0.000499055604450405,-0.0113921714946628,0.999928712844849,0.00049340253463015,-0.0119335791096091,0.999935507774353,0.000499517074786127,-0.0113479727879167,0.999996662139893,0.000684149272274226,0.0024875036906451,0.999594449996948,0.0150280278176069,0.0241909846663475,0.99895453453064,-0.0439279526472092,0.0126604847609997,0.999996662139893,0.000684149272274226,0.0024875036906451,0.998753368854523,0.0494964942336082,0.00647327350452542,0.996070504188538,0.0876396894454956,0.0127598019316792,0.999594449996948,0.0150280278176069,0.0241909846663475,0.998753368854523,0.0494964942336082,0.00647327350452542,0.99984735250473,0.0173975620418787,0.00163577031344175,0.999983072280884,0.0055908216163516,0.00166681793052703,0.994998931884766,0.0930095836520195,0.0364184118807316,0.999477744102478,-0.0141558572649956,0.0290491171181202,0.999360918998718,0.0328327529132366,-0.0141368936747313,0.992964088916779,0.115448862314224,-0.0263440124690533,0.999477744102478,-0.0141558572649956,0.0290491171181202,0.999617636203766,-0.0251907892525196,0.0114055182784796,0.996345639228821,0.0844452977180481,-0.0128208147361875,0.999360918998718,0.0328327529132366,-0.0141368936747313,0.999617636203766,-0.0251907892525196,0.0114055182784796,
- 0.990113615989685,-0.0228539202362299,0.138393431901932,0.982030212879181,0.0371016524732113,0.185040712356567,0.996345639228821,0.0844452977180481,-0.0128208147361875,0.994898974895477,0.00143423804547638,-0.100866712629795,0.999994933605194,4.4531851017382e-005,-0.00319314445368946,0.999955117702484,3.26912122545764e-005,-0.00948031898587942,0.999845683574677,1.74561228050152e-005,-0.0175683330744505,0.999272882938385,-0.000484641554066911,-0.0381238758563995,0.999812662601471,0.0191916897892952,0.00251305056735873,0.997999727725983,0.0140761928632855,-0.0616312734782696,0.306039959192276,-0.0184704419225454,0.951839506626129,0.325630724430084,0.0398030392825603,0.944658875465393,0.48551419377327,0.089302197098732,0.869655787944794,0.45442321896553,0.0516078025102615,0.889289796352386,0.454680979251862,0.0511310026049614,0.889185547828674,-0.0206732153892517,-0.0863028839230537,0.996054470539093,-0.0634496435523033,-0.126332134008408,0.989956796169281,0.145664811134338,-0.0432366132736206,0.988388776779175,0.148887693881989,-0.061592273414135,0.986934125423431,0.148887693881989,-0.061592273414135,0.986934125423431,0.145664811134338,-0.0432366132736206,0.988388776779175,0.325630724430084,0.0398030392825603,0.944658875465393,0.306039959192276,-0.0184704419225454,0.951839506626129,-0.0634496435523033,-0.126332134008408,0.989956796169281,-0.248979032039642,-0.164242967963219,0.954480886459351,-0.312769562005997,-0.166769504547119,0.935073852539063,-0.313126146793365,-0.161766171455383,0.935833215713501,-0.137337446212769,-0.0808643698692322,0.987218081951141,-0.0634496435523033,-0.126332134008408,0.989956796169281,-0.137337446212769,-0.0808643698692322,0.987218081951141,0.145974397659302,-0.054738387465477,0.987772881984711,0.145664811134338,-0.0432366132736206,0.988388776779175,0.325630724430084,0.0398030392825603,0.944658875465393,0.145664811134338,-0.0432366132736206,0.988388776779175,0.145974397659302,-0.054738387465477,0.987772881984711,0.417030662298203,-0.0428601019084454,0.907881319522858,0.48551419377327,0.089302197098732,0.869655787944794,
- 0.325630724430084,0.0398030392825603,0.944658875465393,0.417030662298203,-0.0428601019084454,0.907881319522858,0.541478872299194,0.00791222602128983,0.84067714214325,0.54260778427124,0.0576137490570545,0.838008046150208,-0.22180400788784,-0.142429143190384,0.964633047580719,-0.221686720848084,-0.142703622579575,0.96461945772171,-0.248979032039642,-0.164242967963219,0.954480886459351,-0.0634496435523033,-0.126332134008408,0.989956796169281,-0.0206732153892517,-0.0863028839230537,0.996054470539093,-0.974368572235107,0.21444870531559,-0.0679533258080482,-0.96205347776413,0.25522181391716,0.0965144410729408,-0.982932209968567,0.168607488274574,0.0735925659537315,-0.89178591966629,0.445548295974731,-0.0787700340151787,-0.916653633117676,0.305583536624908,0.257613837718964,-0.982932209968567,0.168607488274574,0.0735925659537315,-0.96205347776413,0.25522181391716,0.0965144410729408,-0.918439209461212,0.350989729166031,0.182416349649429,-0.856775879859924,0.478486597537994,0.192316517233849,-0.916653633117676,0.305583536624908,0.257613837718964,-0.918439209461212,0.350989729166031,0.182416349649429,-0.888694703578949,0.400987654924393,0.222329899668694,-0.0793413072824478,0.826520562171936,-0.557286977767944,-0.302565306425095,-0.538250803947449,-0.786600589752197,0.274760246276855,-0.659381747245789,-0.699801743030548,-0.0339596197009087,0.829392552375793,-0.557633221149445,-0.0339596197009087,0.829392552375793,-0.557633221149445,-0.147260010242462,0.943614661693573,-0.296489387750626,-0.159690961241722,0.931976139545441,-0.32545268535614,-0.0793413072824478,0.826520562171936,-0.557286977767944,-0.302565306425095,-0.538250803947449,-0.786600589752197,-0.110284313559532,-0.0926033854484558,-0.989576697349548,-0.104838103055954,0.060160793364048,-0.99266791343689,0.274760246276855,-0.659381747245789,-0.699801743030548,0.0156080350279808,0.779376029968262,0.626362144947052,0.336527854204178,0.566775143146515,0.752007365226746,0.00706890225410461,0.952615678310394,-0.304094523191452,-0.00684601906687021,0.982054710388184,0.188472390174866,
- 0.0340075008571148,0.836982011795044,-0.546172678470612,0.410768568515778,-0.522669553756714,-0.747051358222961,-0.330998003482819,-0.50919634103775,-0.794455468654633,0.39347231388092,0.7637859582901,-0.511674225330353,0.340702056884766,0.891829490661621,-0.297594159841537,0.0340075008571148,0.836982011795044,-0.546172678470612,0.39347231388092,0.7637859582901,-0.511674225330353,0.00706890225410461,0.952615678310394,-0.304094523191452,0.410768568515778,-0.522669553756714,-0.747051358222961,-0.240747377276421,0.00796931982040405,-0.970555126667023,0.156337901949883,-0.0167074501514435,-0.987562417984009,-0.330998003482819,-0.50919634103775,-0.794455468654633,-0.147260010242462,0.943614661693573,-0.296489387750626,-0.109689436852932,0.595262050628662,0.796009719371796,0.358302444219589,0.589501202106476,0.723952829837799,-0.159690961241722,0.931976139545441,-0.32545268535614,0.00706890225410461,0.952615678310394,-0.304094523191452,0.336527854204178,0.566775143146515,0.752007365226746,-0.221844732761383,0.607501626014709,0.762710213661194,0.340702056884766,0.891829490661621,-0.297594159841537,0.39347231388092,0.7637859582901,-0.511674225330353,-0.330998003482819,-0.50919634103775,-0.794455468654633,-0.0305125955492258,-0.082974448800087,-0.996084451675415,0.00817038677632809,0.603615403175354,-0.797233819961548,0.00706890225410461,0.952615678310394,-0.304094523191452,0.39347231388092,0.7637859582901,-0.511674225330353,0.00817038677632809,0.603615403175354,-0.797233819961548,-0.00684601906687021,0.982054710388184,0.188472390174866,-0.330998003482819,-0.50919634103775,-0.794455468654633,0.156337901949883,-0.0167074501514435,-0.987562417984009,0.0170566011220217,-0.684798777103424,-0.728532612323761,-0.0305125955492258,-0.082974448800087,-0.996084451675415,0.358302444219589,0.589501202106476,0.723952829837799,-0.109689436852932,0.595262050628662,0.796009719371796,-0.0427678339183331,0.00444796402007341,0.999075174331665,-0.0837742239236832,0.556490182876587,0.826620042324066,-0.159690961241722,0.931976139545441,-0.32545268535614,
- 0.358302444219589,0.589501202106476,0.723952829837799,-0.0262383855879307,0.61898946762085,0.784960985183716,-0.0406270325183868,0.932514190673828,-0.358840972185135,-0.0793413072824478,0.826520562171936,-0.557286977767944,-0.159690961241722,0.931976139545441,-0.32545268535614,-0.0406270325183868,0.932514190673828,-0.358840972185135,-0.0388965643942356,0.89690637588501,-0.44050669670105,-0.0455168709158897,0.851030826568604,-0.523139238357544,0.358302444219589,0.589501202106476,0.723952829837799,-0.0837742239236832,0.556490182876587,0.826620042324066,0.0021514103282243,0.564260363578796,0.825594067573547,-0.0261861346662045,0.582713961601257,0.812255382537842,-0.048054501414299,0.582019329071045,0.811753749847412,-0.030152291059494,0.582608819007874,0.812193334102631,-0.0262383855879307,0.61898946762085,0.784960985183716,0.340702056884766,0.891829490661621,-0.297594159841537,-0.221844732761383,0.607501626014709,0.762710213661194,-0.109689436852932,0.595262050628662,0.796009719371796,-0.147260010242462,0.943614661693573,-0.296489387750626,-0.147260010242462,0.943614661693573,-0.296489387750626,-0.0339596197009087,0.829392552375793,-0.557633221149445,0.0340075008571148,0.836982011795044,-0.546172678470612,0.340702056884766,0.891829490661621,-0.297594159841537,-0.0339596197009087,0.829392552375793,-0.557633221149445,0.274760246276855,-0.659381747245789,-0.699801743030548,0.410768568515778,-0.522669553756714,-0.747051358222961,0.0340075008571148,0.836982011795044,-0.546172678470612,0.410768568515778,-0.522669553756714,-0.747051358222961,-0.0834658667445183,-0.0541391223669052,-0.995038866996765,-0.240747377276421,0.00796931982040405,-0.970555126667023,0.274760246276855,-0.659381747245789,-0.699801743030548,-0.104838103055954,0.060160793364048,-0.99266791343689,-0.0834658667445183,-0.0541391223669052,-0.995038866996765,0.410768568515778,-0.522669553756714,-0.747051358222961,-0.221844732761383,0.607501626014709,0.762710213661194,0.138684377074242,0.548885583877563,0.824312686920166,-0.0427678339183331,0.00444796402007341,0.999075174331665,
- -0.109689436852932,0.595262050628662,0.796009719371796,0.138684377074242,0.548885583877563,0.824312686920166,-0.221844732761383,0.607501626014709,0.762710213661194,0.336527854204178,0.566775143146515,0.752007365226746,-0.157040730118752,0.557241320610046,0.815365195274353,0.0255082063376904,0.445399016141891,0.894968807697296,-0.0106804063543677,0.445176631212235,0.895379185676575,-0.0152516616508365,0.445978224277496,0.894913911819458,-0.0192004293203354,0.446975111961365,0.894340336322784,0.00882953871041536,0.445670902729034,0.895153403282166,-0.0110894618555903,0.445274859666824,0.895325243473053,-0.0803009122610092,0.824885785579681,0.559566974639893,-0.031116783618927,0.829387664794922,0.557806372642517,0.11760288476944,-0.645416259765625,0.75472354888916,-0.48463186621666,-0.503133296966553,0.715534031391144,-0.031116783618927,0.829387664794922,0.557806372642517,-0.0803009122610092,0.824885785579681,0.559566974639893,-0.170311614871025,0.931551575660706,0.32125648856163,-0.151076927781105,0.943069636821747,0.296302944421768,-0.48463186621666,-0.503133296966553,0.715534031391144,0.11760288476944,-0.645416259765625,0.75472354888916,-0.0777049139142036,-0.00207311264239252,0.996974229812622,-0.0440768636763096,0.0967617928981781,0.994331181049347,0.0152684599161148,0.775915086269379,-0.630652606487274,-0.00678899884223938,0.982841610908508,-0.184326648712158,0.00990608613938093,0.952598512172699,0.3040691614151,0.336644977331162,0.567005813121796,-0.751780927181244,0.0346295312047005,0.836964786052704,0.546160101890564,0.393159329891205,0.763908326625824,0.51173210144043,-0.331831216812134,-0.509252309799194,0.794071912765503,0.535420715808868,-0.490972101688385,0.687219858169556,0.337938606739044,0.892801225185394,0.297831535339355,0.00990608613938093,0.952598512172699,0.3040691614151,0.393159329891205,0.763908326625824,0.51173210144043,0.0346295312047005,0.836964786052704,0.546160101890564,0.535420715808868,-0.490972101688385,0.687219858169556,-0.331831216812134,-0.509252309799194,0.794071912765503,0.154962927103043,-0.0165548827499151,0.987781584262848,
- 0.056682400405407,-0.00411168392747641,0.99838387966156,-0.151076927781105,0.943069636821747,0.296302944421768,-0.170311614871025,0.931551575660706,0.32125648856163,0.292520374059677,0.596619069576263,-0.747313499450684,-0.112421125173569,0.595467746257782,-0.795474529266357,0.292520374059677,0.596619069576263,-0.747313499450684,0.00560939311981201,0.557094693183899,-0.830430090427399,-0.047074094414711,0.00494176289066672,-0.998879253864288,-0.112421125173569,0.595467746257782,-0.795474529266357,0.00990608613938093,0.952598512172699,0.3040691614151,0.337938606739044,0.892801225185394,0.297831535339355,-0.223101764917374,0.607665300369263,-0.762212991714478,0.336644977331162,0.567005813121796,-0.751780927181244,0.393159329891205,0.763908326625824,0.51173210144043,0.00818021781742573,0.60303270816803,0.797674536705017,-0.0306388195604086,-0.0811573788523674,0.996230363845825,-0.331831216812134,-0.509252309799194,0.794071912765503,0.00990608613938093,0.952598512172699,0.3040691614151,-0.00678899884223938,0.982841610908508,-0.184326648712158,0.00818021781742573,0.60303270816803,0.797674536705017,0.393159329891205,0.763908326625824,0.51173210144043,-0.331831216812134,-0.509252309799194,0.794071912765503,-0.0306388195604086,-0.0811573788523674,0.996230363845825,0.0170438960194588,-0.684121191501617,0.729169249534607,0.154962927103043,-0.0165548827499151,0.987781584262848,-0.170311614871025,0.931551575660706,0.32125648856163,-0.0518223941326141,0.935064733028412,0.350668698549271,-0.0340150929987431,0.601151049137115,-0.798411130905151,0.292520374059677,0.596619069576263,-0.747313499450684,-0.0803009122610092,0.824885785579681,0.559566974639893,-0.073018841445446,0.832938134670258,0.548527538776398,-0.0377423949539661,0.89706826210022,0.440277189016342,-0.0518223941326141,0.935064733028412,0.350668698549271,-0.170311614871025,0.931551575660706,0.32125648856163,0.292520374059677,0.596619069576263,-0.747313499450684,-0.0340150929987431,0.601151049137115,-0.798411130905151,-0.0330697186291218,0.581232488155365,-0.813065350055695,
- -0.0468444712460041,0.580732941627502,-0.812745332717896,-0.041612409055233,0.549207985401154,-0.834649085998535,0.00560939311981201,0.557094693183899,-0.830430090427399,0.337938606739044,0.892801225185394,0.297831535339355,-0.151076927781105,0.943069636821747,0.296302944421768,-0.112421125173569,0.595467746257782,-0.795474529266357,-0.223101764917374,0.607665300369263,-0.762212991714478,-0.151076927781105,0.943069636821747,0.296302944421768,0.337938606739044,0.892801225185394,0.297831535339355,0.0346295312047005,0.836964786052704,0.546160101890564,-0.031116783618927,0.829387664794922,0.557806372642517,-0.031116783618927,0.829387664794922,0.557806372642517,0.0346295312047005,0.836964786052704,0.546160101890564,0.535420715808868,-0.490972101688385,0.687219858169556,0.11760288476944,-0.645416259765625,0.75472354888916,0.11760288476944,-0.645416259765625,0.75472354888916,0.535420715808868,-0.490972101688385,0.687219858169556,0.056682400405407,-0.00411168392747641,0.99838387966156,0.11760288476944,-0.645416259765625,0.75472354888916,0.056682400405407,-0.00411168392747641,0.99838387966156,-0.209914565086365,-0.357553720474243,0.909995198249817,-0.0777049139142036,-0.00207311264239252,0.996974229812622,0.00490111298859119,0.563586354255676,-0.826042652130127,0.336644977331162,0.567005813121796,-0.751780927181244,-0.223101764917374,0.607665300369263,-0.762212991714478,0.00148512446321547,0.56416916847229,-0.825658023357391,-0.0110946660861373,0.445278018712997,-0.895323634147644,0.00884552765637636,0.445797473192215,-0.895090281963348,-0.0192029941827059,0.447676837444305,-0.893989205360413,-0.0152476159855723,0.44624999165535,-0.894778430461884,-0.0107114939019084,0.445125609636307,-0.895404160022736,0.0255181416869164,0.445569068193436,-0.894883930683136,-0.00635270914062858,-0.110926195979118,-0.993808388710022,0.0152684599161148,0.775915086269379,-0.630652606487274,0.336644977331162,0.567005813121796,-0.751780927181244,0.00490111298859119,0.563586354255676,-0.826042652130127,-0.223101764917374,0.607665300369263,-0.762212991714478,
- -0.112421125173569,0.595467746257782,-0.795474529266357,-0.047074094414711,0.00494176289066672,-0.998879253864288,0.00148512446321547,0.56416916847229,-0.825658023357391,-0.157040730118752,0.557241320610046,0.815365195274353,0.336527854204178,0.566775143146515,0.752007365226746,0.0156080350279808,0.779376029968262,0.626362144947052,-0.0413902588188648,-0.722711622714996,0.689909279346466,-0.491893529891968,-0.487985908985138,0.721048295497894,-0.0558450482785702,-0.55950653553009,0.826942384243011,0.138684377074242,0.548885583877563,0.824312686920166,-0.157040730118752,0.557241320610046,0.815365195274353,0.0379870347678661,-0.553118705749512,0.832235932350159,0.0303557813167572,-0.549583673477173,0.834887027740479,0.0021514103282243,0.564260363578796,0.825594067573547,-0.0837742239236832,0.556490182876587,0.826620042324066,-0.491893529891968,-0.487985908985138,0.721048295497894,-0.157040730118752,0.557241320610046,0.815365195274353,-0.0413902588188648,-0.722711622714996,0.689909279346466,0.230995386838913,-0.564949989318848,0.792131721973419,-0.0427678339183331,0.00444796402007341,0.999075174331665,0.138684377074242,0.548885583877563,0.824312686920166,-0.345634311437607,-0.550365686416626,0.760022878646851,-0.0837742239236832,0.556490182876587,0.826620042324066,-0.0427678339183331,0.00444796402007341,0.999075174331665,0.0362349562346935,-0.549703598022461,-0.83457350730896,-0.302565306425095,-0.538250803947449,-0.786600589752197,-0.0793413072824478,0.826520562171936,-0.557286977767944,-0.0455168709158897,0.851030826568604,-0.523139238357544,-0.0085093742236495,-0.172314167022705,-0.9850053191185,-0.110284313559532,-0.0926033854484558,-0.989576697349548,-0.302565306425095,-0.538250803947449,-0.786600589752197,0.0362349562346935,-0.549703598022461,-0.83457350730896,0.0409616529941559,-0.588746726512909,-0.807279109954834,0.0499570444226265,-0.588167905807495,-0.807194352149963,0.0645967796444893,-0.587123215198517,-0.806916177272797,-0.073018841445446,0.832938134670258,0.548527538776398,-0.0803009122610092,0.824885785579681,0.559566974639893,
- -0.48463186621666,-0.503133296966553,0.715534031391144,0.0531363114714623,-0.562263906002045,0.825249016284943,0.0531363114714623,-0.562263906002045,0.825249016284943,-0.48463186621666,-0.503133296966553,0.715534031391144,-0.0440768636763096,0.0967617928981781,0.994331181049347,-0.0597520880401134,0.16783444583416,0.984002768993378,-0.0328253656625748,-0.586416244506836,0.809344470500946,0.00349732814356685,-0.585007309913635,0.81102043390274,-0.311277896165848,-0.0511622428894043,0.948940753936768,-0.440161019563675,-0.046118188649416,0.89673376083374,-0.438734918832779,-0.0534105710685253,0.897027850151062,-0.298441767692566,0.0299969781190157,0.953956365585327,-0.174855560064316,0.00742592196911573,0.984566152095795,0.0930052325129509,0.0953847393393517,0.991086184978485,0.0522856526076794,0.0568734407424927,0.997011363506317,-0.175845235586166,0.00925311166793108,0.984374344348907,-0.145508006215096,0.00260887644253671,0.989353597164154,-0.145508006215096,0.00260887644253671,0.989353597164154,-0.285482913255692,0.100499540567398,0.95309990644455,-0.20695386826992,0.0622152835130692,0.976370573043823,0.057583212852478,0.0257524345070124,0.998008549213409,-0.369850754737854,-0.0842856168746948,0.925260186195374,-0.343324244022369,-0.0574174448847771,0.93746030330658,-0.222023233771324,0.0210128463804722,0.97481495141983,-0.152994453907013,0.01843480207026,0.988055169582367,-0.343324244022369,-0.0574174448847771,0.93746030330658,-0.311277896165848,-0.0511622428894043,0.948940753936768,-0.174855560064316,0.00742592196911573,0.984566152095795,-0.222023233771324,0.0210128463804722,0.97481495141983,0.109982952475548,0.0640336722135544,0.991868674755096,-0.369850754737854,-0.0842856168746948,0.925260186195374,-0.152994453907013,0.01843480207026,0.988055169582367,-0.145508006215096,0.00260887644253671,0.989353597164154,-0.175845235586166,0.00925311166793108,0.984374344348907,-0.406908988952637,0.110873557627201,0.906715095043182,-0.285482913255692,0.100499540567398,0.95309990644455,-0.222023233771324,0.0210128463804722,0.97481495141983,
- -0.0223556328564882,0.0215010996907949,0.999518930912018,-0.230150163173676,0.106537088751793,0.967305898666382,-0.152994453907013,0.01843480207026,0.988055169582367,-0.174855560064316,0.00742592196911573,0.984566152095795,-0.115736462175846,0.0336622409522533,0.992709457874298,-0.0223556328564882,0.0215010996907949,0.999518930912018,-0.222023233771324,0.0210128463804722,0.97481495141983,-0.298441767692566,0.0299969781190157,0.953956365585327,-0.206392720341682,0.0644602477550507,0.976343750953674,-0.205680832266808,0.068708598613739,0.97620415687561,-0.115736462175846,0.0336622409522533,0.992709457874298,-0.174855560064316,0.00742592196911573,0.984566152095795,0.31890395283699,0.170534297823906,0.932318866252899,0.0930052325129509,0.0953847393393517,0.991086184978485,-0.145508006215096,0.00260887644253671,0.989353597164154,0.057583212852478,0.0257524345070124,0.998008549213409,0.0916728302836418,0.0525156259536743,0.994403481483459,0.31890395283699,0.170534297823906,0.932318866252899,0.057583212852478,0.0257524345070124,0.998008549213409,-0.121132470667362,0.032799270004034,0.992094337940216,0.0896187871694565,0.0573510229587555,0.994323551654816,-0.20695386826992,0.0622152835130692,0.976370573043823,-0.411539942026138,-0.090734101831913,0.906863927841187,-0.377065926790237,0.049254048615694,0.924875915050507,-0.121132470667362,0.032799270004034,0.992094337940216,0.057583212852478,0.0257524345070124,0.998008549213409,-0.152994453907013,0.01843480207026,0.988055169582367,-0.175845235586166,0.00925311166793108,0.984374344348907,0.0522856526076794,0.0568734407424927,0.997011363506317,0.109982952475548,0.0640336722135544,0.991868674755096,-0.230150163173676,0.106537088751793,0.967305898666382,-0.406908988952637,0.110873557627201,0.906715095043182,-0.175845235586166,0.00925311166793108,0.984374344348907,-0.152994453907013,0.01843480207026,0.988055169582367,0.999905347824097,-0.00272180722095072,0.0134912133216858,0.999618113040924,-0.00283363764174283,0.0274884663522244,0.999891579151154,-0.00272966828197241,0.0144730256870389,
- 0.99994170665741,-0.00269747199490666,0.0104537634178996,0.999645471572876,-0.0028255672659725,0.0264762490987778,0.999484241008759,-0.00286946631968021,0.0319866128265858,5.89412352258734e-010,0.00214254739694297,0.999997675418854,1.03454411704007e-009,0.00376062630675733,0.999992907047272,7.40289218814638e-010,0.00269099324941635,0.999996423721313,8.99757807322488e-013,3.27067073158105e-006,1,6.89996837444085e-010,0.0025081776548177,0.999996900558472,-0.000646030763164163,-0.0220169965177774,0.999757409095764,-0.000738388451281935,-0.0257659312337637,0.999667763710022,-0.000547352945432067,-0.018011586740613,0.999837636947632,-0.000453233224106953,-0.0141912586987019,0.999899208545685,-0.000674132897984236,-0.0231576971709728,0.999731659889221,-0.000786846852861345,-0.0277329497039318,0.999615073204041,0.999607503414154,0.0107145635411143,-0.0258860159665346,0.994103014469147,0.0125589966773987,0.107711233198643,0.999881088733673,0.0109316520392895,-0.0108781484887004,0.984485387802124,0.0134114120155573,0.17495334148407,0.98577207326889,0.0133202150464058,0.167558968067169,0.999975800514221,0.00676886271685362,-0.00163482700008899,0.999987125396729,-0.00482849730178714,-0.00157083850353956,0.999901235103607,0.0139602068811655,-0.0016743972664699,0.999919652938843,0.0125683834776282,-0.00166674517095089,0.999969899654388,-0.00761233456432819,-0.00155544700101018,0.998794376850128,0.0490912608802319,0.000238176726270467,0.999454617500305,0.0330239534378052,0.000151447937241755,0.999931693077087,-0.0116859348490834,-8.98524958756752e-005,0.999986052513123,-0.00527889188379049,-5.52768033230677e-005,0.999452352523804,0.0330925136804581,0.000151817992446013,0.999934136867523,-0.0114802541211247,-8.87425558175892e-005,0.534112751483917,-0.844715416431427,0.0343431532382965,0.534112751483917,-0.844715476036072,0.0343431234359741,0.534112751483917,-0.844715476036072,0.0343431681394577,-0.402905344963074,0.860338389873505,0.312226295471191,-0.402905255556107,0.86033833026886,0.312226235866547,-0.402905344963074,0.86033833026886,0.312226265668869,
- 0.068091444671154,0.632169485092163,-0.771832406520844,0.0680914893746376,0.632169485092163,-0.771832406520844,0.068091444671154,0.632169544696808,-0.771832525730133,0.998829483985901,0.0483714416623116,-0.000124397221952677,0.999757826328278,0.0220046825706959,0.000249556760536507,0.998944699764252,0.0459309294819832,-8.97674544830807e-005,0.997884035110474,0.0650182068347931,-0.000360696401912719,0.998708307743073,0.0508110746741295,-0.000159017799887806,0.999142169952393,0.0414135754108429,-2.56772655120585e-005,0.993036091327667,0.11667637526989,0.0163076929748058,0.994598865509033,0.102584257721901,0.0157986786216497,0.995424330234528,0.0942880660295486,0.0154978763312101,0.994849026203156,0.100143358111382,0.015710262581706,0.994844794273376,0.100185245275497,0.0157117806375027,0.994724631309509,0.101363807916641,0.0157544780522585,1.84813426784558e-008,0.0955861955881119,0.995421230792999,2.13988240460594e-008,0.110675506293774,0.993856608867645,2.16654463258692e-008,0.112054474651814,0.993702173233032,2.1899417390614e-008,0.113264597952366,0.99356484413147,2.25370300199756e-008,0.116562351584435,0.993183374404907,2.13825170902737e-008,0.110591173171997,0.99386602640152,0.961800456047058,0.273545771837235,-0.0106144398450851,0.961800456047058,0.273545742034912,-0.010614424943924,0.961800456047058,0.273545771837235,-0.0106144398450851,0.918144464492798,-0.368703424930573,0.145150557160378,0.918144464492798,-0.36870339512825,0.145150542259216,0.918144464492798,-0.368703365325928,0.145150482654572,0.999899744987488,0.0109448479488492,-0.00899085868149996,0.99990713596344,0.0109136989340186,-0.00817294791340828,0.99993634223938,0.0107346996665001,-0.00347660831175745,0.999943852424622,0.0105746006593108,0.000718707742635161,0.999943673610687,0.0105625009164214,0.0010355485137552,0.999935388565063,0.0107442550361156,-0.00372715620324016,0.0375189781188965,-0.00721499184146523,0.999269962310791,0.0375197492539883,-0.0116291614249349,0.999228298664093,0.0375198498368263,-0.0144941546022892,0.999190747737885,0.037519745528698,-0.0116144977509975,0.999228417873383,
- 0.037519097328186,-0.00772158103063703,0.999266147613525,0.0375174656510353,-0.00277134799398482,0.999292194843292,-0.130962237715721,-0.982199668884277,-0.134657591581345,-0.130962237715721,-0.982199668884277,-0.134657606482506,-0.13096222281456,-0.982199668884277,-0.134657591581345,0.989288985729218,0.0160207524895668,-0.145088329911232,0.923833727836609,0.0243714936077595,-0.382017493247986,0.977655708789825,0.0183528363704681,-0.209409937262535,0.99720686674118,0.0133712375536561,-0.0734825059771538,0.996606588363647,0.0136584201827645,-0.0811723098158836,0.998894572257996,0.0123157510533929,-0.0453639030456543,0.576344728469849,-0.814323544502258,-0.0685848295688629,0.576344847679138,-0.814323484897614,-0.0685848742723465,0.576344847679138,-0.814323544502258,-0.0685848295688629,-0.99953430891037,-0.00404370902106166,-0.0302462000399828,-0.999425828456879,-0.00402762182056904,-0.0336415693163872,-0.999427676200867,-0.00402786955237389,-0.0335894711315632,-0.999499976634979,-0.00403843400999904,-0.0313606634736061,-0.999632596969604,-0.00405999319627881,-0.0267983563244343,-0.999170780181885,0.0264005456119776,0.0309965014457703,-0.999572157859802,0.0289394613355398,-0.00425355974584818,-0.999632835388184,0.0270345415920019,0.00183687265962362,-0.999220609664917,0.0244575496762991,0.0309858471155167,-0.997861981391907,-0.0100787105038762,-0.0645756646990776,-0.997508764266968,-0.00982947088778019,-0.0698545724153519,-0.996332585811615,-0.00910858158022165,-0.0850793942809105,-0.997496902942657,-0.00982143077999353,-0.070024736225605,-0.998645007610321,-0.0107215801253915,-0.0509234704077244,-0.99741005897522,-0.0097630899399519,-0.0712592229247093,-0.997882783412933,-0.0100940745323896,-0.0642499998211861,0.0363246165215969,-0.000306049740174785,-0.999340057373047,0.0363246165215969,-0.000322197331115603,-0.999339997768402,0.0363240875303745,-0.00456350389868021,-0.999329626560211,0.0363229103386402,-0.0087885819375515,-0.999301493167877,0.0363243408501148,-0.0031443506013602,-0.999335169792175,-0.0117988875135779,0.999854624271393,-0.0123096844181418,
- -0.0117675242945552,0.99983286857605,-0.0139952674508095,-0.0118093211203814,0.999861299991608,-0.0117484992370009,-0.0118823321536183,0.999898910522461,-0.00781600922346115,-0.0118058435618877,0.999859094619751,-0.0119355628266931,0.379471302032471,-0.813902139663696,-0.439960211515427,0.379471331834793,-0.813902080059052,-0.439960181713104,0.379471331834793,-0.813902080059052,-0.439960181713104,-0.999632835388184,0.0270345415920019,0.00183687265962362,-0.999572157859802,0.0289394613355398,-0.00425355974584818,-0.99905925989151,0.0306308623403311,-0.0307001154869795,-0.999078691005707,0.0299814771860838,-0.0307080447673798,-0.999112188816071,0.0288276318460703,-0.0307220928370953,-0.999342620372772,0.0173477865755558,-0.0318366624414921,-0.999090433120728,0.0287490896880627,-0.0314926542341709,-0.999460995197296,0.00661295792087913,-0.0321567095816135,-0.99939489364624,0.0137683413922787,-0.0319437943398952,-0.99932998418808,-0.0161950904875994,-0.03282430768013,0.0941720977425575,0.994911551475525,-0.0358157306909561,0.0941720828413963,0.99491149187088,-0.0358157269656658,0.0941720828413963,0.99491149187088,-0.0358157232403755,-0.998744070529938,-0.050104558467865,-0.000168244863743894,-0.999739348888397,-0.0228335130959749,0.000215262116398662,-0.998867273330688,-0.0475845597684383,-0.000132789849885739,-0.997731864452362,-0.067312940955162,-0.000410448701586574,-0.998614430427551,-0.0526235699653625,-0.000203689356567338,-0.999078392982483,-0.0429243743419647,-6.72326423227787e-005,-0.992519497871399,-0.121046893298626,0.0159017071127892,-0.994199931621552,-0.10644306987524,0.0153785161674023,-0.99509072303772,-0.0978129357099533,0.0150681622326374,-0.994472682476044,-0.103876814246178,0.0152863208204508,-0.994465351104736,-0.103947527706623,0.0152888614684343,-0.994337141513824,-0.10515996068716,0.0153324287384748,-6.33963708196461e-008,-0.0948062837123871,0.995495736598969,-7.34035054961169e-008,-0.109771497547627,0.993956863880157,-7.43150465609688e-008,-0.11113466322422,0.993805408477783,-7.51276729715755e-008,-0.112349905073643,0.993668735027313,
- -7.73100836681806e-008,-0.115613587200642,0.993294298648834,-7.33541014596995e-008,-0.109697625041008,0.993965089321136,-0.963637232780457,-0.267189472913742,-0.00361169874668121,-0.963637351989746,-0.26718944311142,-0.0036116917617619,-0.963637292385101,-0.267189413309097,-0.00361169129610062,-0.921661257743835,0.364666551351547,0.132510229945183,-0.921661257743835,0.364666551351547,0.132510229945183,-0.921661198139191,0.36466658115387,0.132510259747505,-0.999900043010712,-0.0105784330517054,-0.00939376745373011,-0.999907433986664,-0.0105479545891285,-0.00860008504241705,-0.999939501285553,-0.0103597324341536,-0.00370235904119909,-0.999947905540466,-0.0101893162354827,0.000726566533558071,-0.999947667121887,-0.0101768104359508,0.00105139124207199,-0.999938547611237,-0.0103687476366758,-0.00393680110573769,-0.0392899177968502,0.00715494295582175,0.999202311038971,-0.0392902046442032,0.0115431351587176,0.999161183834076,-0.0392900034785271,0.0143796438351274,0.999124467372894,-0.0392902083694935,0.0115252761170268,0.99916136264801,-0.0392899848520756,0.00766024086624384,0.999198496341705,-0.0392888486385345,0.0027308939024806,0.999224185943604,0.130135670304298,0.981639087200165,-0.139461442828178,0.130135670304298,0.98163914680481,-0.13946145772934,0.130135670304298,0.98163914680481,-0.13946145772934,-0.988384246826172,-0.0159099400043488,-0.151140302419662,-0.917636275291443,-0.0246380865573883,-0.396656960248947,-0.975820541381836,-0.0183476191014051,-0.217801809310913,-0.996959328651428,-0.0131362965330482,-0.0768087953329086,-0.996295869350433,-0.0134422946721315,-0.084934376180172,-0.998797714710236,-0.0120278727263212,-0.0475252829492092,-0.578934788703918,0.810916423797607,-0.0851428881287575,-0.578934788703918,0.810916364192963,-0.0851428955793381,-0.578934848308563,0.810916364192963,-0.0851428881287575,-0.999923825263977,0.0034387621562928,0.0118627306073904,-0.999699950218201,0.00354962632991374,0.024236848577857,-0.999912977218628,0.00344666210003197,0.0127425817772746,-0.999951899051666,0.00341477314941585,0.00919273868203163,
- -0.999721169471741,0.00354167120531201,0.023347033187747,-0.999595642089844,0.00358510692603886,0.02820910140872,-1.57003277045931e-009,-0.00190361484419554,0.999998271465302,-2.76754730244022e-009,-0.0033555633854121,0.999994397163391,-1.98837901699278e-009,-0.00241084629669786,0.999997079372406,-1.16897628729684e-011,-1.41734672070015e-005,1,-1.84893000909625e-009,-0.00224176910705864,0.999997556209564,0.000502218957990408,0.0195902120321989,0.999807953834534,0.000468445388833061,0.0178572218865156,0.999840497970581,0.000513048202265054,0.0201458856463432,0.99979692697525,0.000367397617083043,0.0126723749563098,0.999919652938843,0.000552235869690776,0.022156709805131,0.999754369258881,0.000557983585167676,0.0224516410380602,0.9997478723526,-0.999644041061401,-0.0137629583477974,-0.0228564720600843,-0.995270073413849,-0.0156008908525109,0.0958866328001022,-0.999855697154999,-0.0139770284295082,-0.0096629848703742,-0.987688302993774,-0.016448562964797,0.155567720532417,-0.988694846630096,-0.0163584668189287,0.149047091603279,-0.999984502792358,-0.00526226591318846,-0.0018282828386873,-0.999990701675415,0.0039251372218132,-0.00178304500877857,-0.999939143657684,-0.0108799440786242,-0.00185586896259338,-0.999949812889099,-0.00985637772828341,-0.00185084715485573,-0.999980688095093,0.00597235700115561,-0.00177294411696494,-0.999707221984863,-0.024200513958931,8.43539091874845e-005,-0.999152660369873,-0.0411592572927475,0.000165664634550922,-0.999958157539368,0.00915657170116901,-7.55540313548408e-005,-0.999707520008087,-0.0241851042956114,8.42800436657853e-005,-0.999955594539642,0.00942573323845863,-7.68441968830302e-005,-0.999958574771881,0.00911035854369402,-7.53325221012346e-005,-0.555566847324371,0.828240633010864,-0.0732334032654762,-0.555566847324371,0.828240633010864,-0.0732334032654762,-0.555566847324371,0.828240513801575,-0.0732333809137344,0.361059963703156,-0.899468183517456,0.246156051754951,0.361059963703156,-0.899468183517456,0.246156081557274,0.361059933900833,-0.899468123912811,0.246156051754951,-0.0158015806227922,-0.650097072124481,-0.759686946868896,
- -0.0158015359193087,-0.650097072124481,-0.759686946868896,-0.0158015806227922,-0.650097072124481,-0.759686946868896,0.999927461147308,0.00407963758334517,-0.0113401161506772,0.999989449977875,0.00400111917406321,-0.00225942581892014,0.999904870986938,0.0040954202413559,-0.0131700346246362,0.999865472316742,0.00411877175793052,-0.0158802606165409,0.999962389469147,0.00404803222045302,-0.00768037792295218,0.996824145317078,0.0214765649288893,-0.0766838416457176,0.999341785907745,0.0140783069655299,-0.0334361270070076,0.998952925205231,0.0218843407928944,-0.0401776134967804,0.996847867965698,0.0203682873398066,-0.076678641140461,0.999751269817352,0.000109193380922079,0.0223037973046303,0.999644041061401,0.000365855608833954,0.0266762785613537,0.999236762523651,0.00109223753679544,0.0390487648546696,0.999634623527527,0.000386620289646089,0.027030011638999,0.999932527542114,-0.000518654007464647,0.011606159619987,0.999609410762787,0.00044040649663657,0.0279462561011314,0.999753832817078,0.000102442456409335,0.0221887808293104,0.00322169600985944,-0.000431634020060301,0.999994814395905,0.00322176609188318,-0.00042916918755509,0.99999475479126,0.00309122307226062,-0.00502112973481417,0.99998265504837,0.00296054407954216,-0.00961544830352068,0.99994945526123,0.00313472119159997,-0.0034912945702672,0.999988973140717,0.0101553229615092,0.999921977519989,0.00728745386004448,0.0106072472408414,0.999209403991699,0.0383164323866367,0.0106147946789861,0.999189078807831,0.0388404466211796,0.0101707577705383,0.999913573265076,0.00833623576909304,0.0104627478867769,0.999544143676758,0.0283226557075977,-0.377309530973434,-0.844707727432251,0.379613697528839,-0.377309501171112,-0.844707727432251,0.379613667726517,-0.377309530973434,-0.844707787036896,0.379613697528839,0.998952925205231,0.0218843407928944,-0.0401776134967804,0.999341785907745,0.0140783069655299,-0.0334361270070076,0.999929666519165,-0.0118577368557453,0.000341685430612415,0.999981582164764,0.00607053376734257,0.000135373018565588,0.999727487564087,0.0233470816165209,-6.35020624031313e-005,
- 0.99983811378479,0.0179242845624685,0.00162582169286907,0.998847007751465,0.0480036959052086,0.000695403607096523,0.999987125396729,0.00465966621413827,0.00203549629077315,0.999756991863251,-0.0218600034713745,0.00285339797846973,0.999851644039154,-0.0170158855617046,0.00270411418750882,-0.0926980674266815,0.995425164699554,0.0231484081596136,-0.0926980897784233,0.995425224304199,0.0231484118849039,-0.0926980748772621,0.995425224304199,0.0231484081596136,0.999251008033752,-0.0386976413428783,-0.000152987850015052,0.999844968318939,-0.0176093298941851,-0.000452175794634968,0.999322414398193,-0.0368057824671268,-0.000179841183125973,0.998645603656769,-0.0520283170044422,3.63006838597357e-005,0.999176025390625,-0.0405890643596649,-0.000126138387713581,0.999451816082001,-0.0331087000668049,-0.000232310791034251,0.995460271835327,-0.0933710262179375,-0.018458116799593,0.996466159820557,-0.0820340439677238,-0.0180485304445028,0.996992647647858,-0.0754224732518196,-0.0178087633103132,0.996628701686859,-0.0800506621599197,-0.0179766751825809,0.996637344360352,-0.0799445286393166,-0.0179728288203478,0.996547996997833,-0.0810423567891121,-0.0180126093327999,3.56864973127813e-008,-0.0956010967493057,-0.99541974067688,4.13082013039912e-008,-0.110661163926125,-0.993858218193054,4.18204990637605e-008,-0.112033553421497,-0.993704497814178,4.22800781052501e-008,-0.113264717161655,-0.99356484413147,4.35038529644771e-008,-0.116543136537075,-0.993185698986053,4.12818828010586e-008,-0.110590651631355,-0.993866086006165,0.94658350944519,-0.318097919225693,0.052852064371109,0.94658350944519,-0.318097859621048,0.0528520494699478,0.94658362865448,-0.318097919225693,0.052852064371109,0.891860365867615,0.393944621086121,-0.222244665026665,0.89186042547226,0.393944680690765,-0.222244754433632,0.891860365867615,0.393944650888443,-0.222244694828987,0.999883651733398,-0.0135230896994472,0.00706250360235572,0.99988842010498,-0.0134983053430915,0.00641168095171452,0.99990701675415,-0.0133586162701249,0.00274652196094394,0.99991238117218,-0.013229476287961,-0.00063778436742723,
- 0.999912202358246,-0.0132153509184718,-0.00100773293524981,0.999906599521637,-0.0133639732375741,0.00288696587085724,0.0301374942064285,0.00724412174895406,-0.99951958656311,0.0301375985145569,0.0116338133811951,-0.999478101730347,0.0301373600959778,0.0144912237301469,-0.999440789222717,0.0301375947892666,0.0116085121408105,-0.999478340148926,0.0301375351846218,0.00773798860609531,-0.99951583147049,0.0301367919892073,0.00280368910171092,-0.999541878700256,-0.126256003975868,0.986218392848969,0.106923513114452,-0.126256003975868,0.986218452453613,0.106923520565033,-0.126256003975868,0.986218392848969,0.106923513114452,0.992889046669006,-0.0176459383219481,0.117728337645531,0.949164032936096,-0.0245527625083923,0.313823103904724,0.985112965106964,-0.0195686239749193,0.170790955424309,0.998148262500763,-0.0154670588672161,0.0588280335068703,0.997769176959991,-0.0156933777034283,0.0648880004882813,0.999238550662994,-0.0146168014034629,0.0361773781478405,0.543087720870972,0.839257597923279,-0.0265026837587357,0.543087720870972,0.839257597923279,-0.0265026986598969,0.543087661266327,0.839257597923279,-0.0265026949346066,-0.105958521366119,-0.974606156349182,0.197270676493645,-0.353954076766968,-0.415045559406281,0.838125228881836,0.00775290699675679,0.480881631374359,-0.876751244068146,-0.0150091350078583,0.757263422012329,-0.652937114238739,-0.353954076766968,-0.415045559406281,0.838125228881836,-0.406068116426468,0.647182762622833,0.645184636116028,0.0315553955733776,0.03226138651371,-0.998981297016144,0.00775290699675679,0.480881631374359,-0.876751244068146,-0.406068116426468,0.647182762622833,0.645184636116028,-0.158423379063606,0.922551155090332,-0.351854413747787,0.0336594618856907,0.120733194053173,-0.992114245891571,0.0315553955733776,0.03226138651371,-0.998981297016144,-0.158423379063606,0.922551155090332,-0.351854413747787,-0.136436954140663,-0.741586148738861,-0.656837046146393,-0.0346383489668369,-0.0835229903459549,-0.995903670787811,0.0336594618856907,0.120733194053173,-0.992114245891571,-0.136436954140663,-0.741586148738861,-0.656837046146393,
- -0.105958521366119,-0.974606156349182,0.197270676493645,-0.0150091350078583,0.757263422012329,-0.652937114238739,-0.0346383489668369,-0.0835229903459549,-0.995903670787811
- }
- BinormalsW: *2608 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *7824 {
- a: 1,-2.29092870540626e-006,-7.7499926476321e-009,1,-2.49402341978566e-006,-3.16456016946631e-009,1,-2.29983515964705e-006,-6.12288930668115e-009,1,-2.81753318631672e-006,-2.46985454310789e-008,1,-1.887957296276e-006,6.53731424549164e-009,1,-2.1464288693096e-006,2.65858624004522e-009,1,-2.49402341978566e-006,-3.16456016946631e-009,1,-2.29092870540626e-006,-7.7499926476321e-009,-1,-2.68073190312634e-008,-8.49850856354806e-009,-1,-5.82523682624014e-008,-3.45616202324095e-009,-0.999993979930878,-0.00347154284827411,-6.34471541971493e-009,-1,9.4335192102335e-008,-2.73908220549401e-008,-1,1.72173272972032e-007,1.03333235301761e-008,-1,-4.04081703209158e-007,4.21941415140736e-009,-1,-5.82523682624014e-008,-3.45616202324095e-009,-1,-2.68073190312634e-008,-8.49850856354806e-009,0.99999988079071,5.9449921536725e-005,-0.000637486344203353,0.999999821186066,-3.12124830088578e-005,-0.000637497752904892,0.99999988079071,0.000141355441883206,-0.000637475808616728,0.999999821186066,0.000110056796984281,0.000732966000214219,1,-8.1204780144617e-005,-7.2034608820104e-006,0.999999821186066,-1.19541743970331e-006,-0.000637493911199272,0.999999701976776,-0.000483282579807565,-0.000637554854620248,0.999999761581421,-0.000418871582951397,-0.000637546821963042,0.999999761581421,-2.40490680880612e-006,0.000665412750095129,0.999999761581421,-1.92663060261111e-006,0.000675299321301281,1,-2.29983515964705e-006,-6.12288930668115e-009,1,-1.77265633283241e-006,-0,1,-2.49402341978566e-006,-3.16456016946631e-009,1,-2.1464288693096e-006,2.65858624004522e-009,1,-2.52338304562727e-006,-0,1,-2.49794038609252e-006,-0,0.999902844429016,0.0139460489153862,-0,1,-2.10256121135899e-006,0,0.999975800514221,0.00697170943021774,4.88046181246204e-009,0.999610960483551,0.027891144156456,-0,0.0309046357870102,-0.05400725081563,0.998062074184418,-4.1221243009204e-005,-0.00256241019815207,0.999996721744537,-0.031059505417943,0.0359908826649189,0.9988694190979,-0.0364897884428501,-0.00705265766009688,0.999309182167053,0.0365118607878685,0.00607959646731615,0.999314785003662,
- 0.999574899673462,-0.0055391862988472,0.0286243800073862,0.999578893184662,-0.00579714262858033,0.0284310188144445,0.997851729393005,-1.30146497667738e-006,0.0655131042003632,0.997851729393005,-1.3016148159295e-006,0.0655131042003632,0.998970210552216,0.0128570348024368,-0.0435110777616501,0.999655961990356,0.00047079281648621,-0.0262254718691111,0.999578893184662,-0.00579714262858033,0.0284310188144445,0.999574899673462,-0.0055391862988472,0.0286243800073862,-0.99914675951004,-0.0232610125094652,0.034127876162529,-0.999662578105927,-0.0153592694550753,0.0209456495940685,-0.997945308685303,0.064069926738739,0.000507882505189627,-0.997934341430664,0.0642427131533623,0.000253945268923417,1,-8.1204780144617e-005,-7.2034608820104e-006,0.999999821186066,0.000110056796984281,0.000732966000214219,0.999999761581421,-1.92663060261111e-006,0.000675299321301281,0.999999761581421,-2.40490680880612e-006,0.000665412750095129,-0.992325127124786,-0.121473774313927,0.0231259129941463,-0.994535684585571,-0.104369536042213,-0.00240021105855703,-0.999662578105927,-0.0153592694550753,0.0209456495940685,-0.99914675951004,-0.0232610125094652,0.034127876162529,-0,0.0250570196658373,-0.999686002731323,0,-9.93880894384347e-006,-1,0,-0.0250759199261665,-0.999685525894165,0,-0.00836656335741282,-0.999964952468872,0,-1.11115796244121e-005,-1,0,0.00834558252245188,-0.999965190887451,-0.0143129732459784,-0.502615869045258,-0.864391386508942,-0.0143129723146558,-0.502615809440613,-0.864391386508942,-0.0143129732459784,-0.502615869045258,-0.864391386508942,-0.0143129723146558,-0.502615809440613,-0.864391386508942,-1,-3.8560040138691e-007,3.29313962765809e-008,-1,-1.58526091809108e-007,8.16385270496767e-009,-1,-4.04081703209158e-007,4.21941415140736e-009,-1,1.72173272972032e-007,1.03333235301761e-008,1,-1.77265633283241e-006,-0,1,-2.29983515964705e-006,-6.12288930668115e-009,1,-2.49402341978566e-006,-3.16456016946631e-009,1,-2.49794038609252e-006,-0,0.996821165084839,-2.63404649558652e-006,-0.0796715840697289,0.996821165084839,-2.89314198198554e-006,-0.079671248793602,
- 0.999655961990356,0.00047079281648621,-0.0262254718691111,0.998970210552216,0.0128570348024368,-0.0435110777616501,0,-4.96840038977098e-006,1,0,-5.98312635702314e-006,1,0,-6.92993762640981e-006,1,0,-8.82352651387919e-006,1,0,-5.91520029047388e-006,1,0,-2.93891594083107e-006,1,1,-1.8224060340799e-006,2.10698640756846e-008,0.999975800514221,0.00697170943021774,4.88046181246204e-009,1,-2.1464288693096e-006,2.65858624004522e-009,1,-1.887957296276e-006,6.53731424549164e-009,0.999975800514221,0.00697170943021774,4.88046181246204e-009,1,-2.10256121135899e-006,0,1,-2.52338304562727e-006,-0,1,-2.1464288693096e-006,2.65858624004522e-009,-0.999655902385712,-0.000474214757559821,-0.0262275524437428,-0.996821403503418,-1.05567380614957e-006,-0.0796690583229065,-0.996821522712708,2.23796746467997e-007,-0.0796673744916916,-0.998970210552216,-0.0128595996648073,-0.0435104444622993,-0.999579071998596,0.00579579686746001,0.0284265708178282,-0.999655902385712,-0.000474214757559821,-0.0262275524437428,-0.998970210552216,-0.0128595996648073,-0.0435104444622993,-0.999575018882751,0.00553743867203593,0.0286194123327732,-0.997852146625519,9.84759140010283e-007,0.0655066221952438,-0.999579071998596,0.00579579686746001,0.0284265708178282,-0.999575018882751,0.00553743867203593,0.0286194123327732,-0.997852206230164,1.83574869083714e-007,0.0655055567622185,-0.999999284744263,0.00118654652033001,0,-0.999975919723511,-0.00694323563948274,0,-0.999847829341888,-0.0174453388899565,0,-0.999993979930878,-0.00347154284827411,-6.34471541971493e-009,-1,-2.24243535740243e-007,0,-0.999999284744263,0.00118654652033001,0,-0.999993979930878,-0.00347154284827411,-6.34471541971493e-009,-1,-5.82523682624014e-008,-3.45616202324095e-009,-1,5.32330318492313e-007,0,-1,-5.06395451793651e-007,0,-1,-4.04081703209158e-007,4.21941415140736e-009,-1,-1.58526091809108e-007,8.16385270496767e-009,-0.999999761581421,-1.26058625937731e-006,-0.000665543251670897,-1,5.32330318492313e-007,0,-1,-1.58526091809108e-007,8.16385270496767e-009,-0.999999761581421,-7.28479278677696e-007,-0.000675433198921382,
- -1,-5.06395451793651e-007,0,-1,-2.24243535740243e-007,0,-1,-5.82523682624014e-008,-3.45616202324095e-009,-1,-4.04081703209158e-007,4.21941415140736e-009,-0.99999725818634,0.0023661688901484,1.68467795447214e-005,-0.999999761581421,-1.26058625937731e-006,-0.000665543251670897,-0.999999761581421,-7.28479278677696e-007,-0.000675433198921382,-0.999994337558746,0.00331812375225127,-0.000512268452439457,-0.999999761581421,9.28321355786466e-007,0.000713579589501023,-0.99999725818634,0.0023661688901484,1.68467795447214e-005,-0.999994337558746,0.00331812375225127,-0.000512268452439457,-0.999997973442078,0.00186527916230261,0.000713910150807351,-0.999988257884979,0.00479492172598839,0.000714424590114504,-0.999998927116394,0.00127031852025539,0.000713804853148758,-0.999996781349182,-0.00246574287302792,0.000713138317223638,-0.999999105930328,-0.00105701596476138,0.000713390705641359,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,8.96952343509838e-008,-1,0,0,-1,0,0,-1,0,8.96952343509838e-008,-1,0,0,-1,0,8.96952343509838e-008,-1,0,8.96952343509838e-008,-1,0,8.96952343509838e-008,-1,0,-3.58860120286408e-007,-1,0,0,-1,0,8.96952343509838e-008,-1,0,-3.58860120286408e-007,-1,-1.65120920375109e-016,1.66731112472007e-007,-1,0,-3.58860120286408e-007,-1,0,-3.58860120286408e-007,-1,1.90273537274045e-016,-1.92129022025256e-007,-1,9.38865355237795e-007,-2.27793066187587e-006,-1,-1.65120920375109e-016,1.66731112472007e-007,-1,1.90273537274045e-016,-1.92129022025256e-007,-1,9.38538391892507e-007,8.07482479103783e-007,-1,9.38865355237795e-007,-2.27793066187587e-006,-1,9.38538391892507e-007,8.07482479103783e-007,-1,1.48254196119524e-006,-4.84159136249218e-006,-1,1.48254162013473e-006,-5.51698849449167e-006,-1,1.48254287068994e-006,5.71459679576947e-007,-0.0170248597860336,-0.0116114746779203,-0.999787628650665,-0.0913472548127174,-0.990178823471069,-0.105836898088455,0.152575269341469,-0.982393383979797,-0.107815742492676,0.000692089088261127,-0.012328683398664,-0.999923765659332,-0.00425195368006825,-0.278346806764603,-0.960471212863922,-0.0170248597860336,-0.0116114746779203,-0.999787628650665,
- 0.0808258056640625,0.0293115936219692,-0.996297121047974,0.0334564670920372,0.279472172260284,-0.959570646286011,-0.99824845790863,-0.0313077829778194,-0.0502008497714996,-0.0164107419550419,0.137831196188927,-0.990319788455963,-0.0300781987607479,-0.043486874550581,-0.998601138591766,-0.999155700206757,-0.0135310776531696,-0.0387930274009705,-0.999155700206757,-0.0135310776531696,-0.0387930274009705,-0.0300781987607479,-0.043486874550581,-0.998601138591766,-0.0429685860872269,-0.817702651023865,-0.574034810066223,-0.997770488262177,-0.0654783099889755,0.0129101257771254,0.16020455956459,0.986785173416138,-0.0242801383137703,0.0808258056640625,0.0293115936219692,-0.996297121047974,0.050757747143507,0.0360134430229664,-0.998061537742615,-0.047556210309267,0.998722612857819,-0.0170817896723747,0.0315411239862442,-0.999501526355743,0.00138350971974432,-0.000265098409727216,-0.999874770641327,0.0158282555639744,0.0278430245816708,-0.999247550964355,-0.0270024165511131,-0.00470657367259264,-0.957940638065338,-0.286927580833435,0.000692089088261127,-0.012328683398664,-0.999923765659332,0.00395501032471657,-0.278882205486298,-0.960317194461823,-0.0313958823680878,0.282255947589874,-0.95882523059845,0.050757747143507,0.0360134430229664,-0.998061537742615,-0.0180741418153048,-0.139159768819809,0.990104973316193,-0.998534619808197,0.0232835300266743,0.0488492660224438,-0.999148190021515,0.013905274681747,0.0388521365821362,-0.0307862460613251,0.0427804067730904,0.998610079288483,-0.0307862460613251,0.0427804067730904,0.998610079288483,-0.999148190021515,0.013905274681747,0.0388521365821362,-0.995848298072815,0.0848463177680969,-0.032972976565361,-0.0417578108608723,0.81675112247467,0.575477123260498,0.000703647965565324,-0.9998939037323,0.0145528223365545,-0.0356144495308399,-0.999365389347076,0.000672387424856424,-0.0044972850009799,-0.900631546974182,-0.434560060501099,-0.00662051839753985,-0.999642312526703,-0.0259108040481806,-0.0210834946483374,-0.997927725315094,0.0607941038906574,-0.992084860801697,-0.0407481156289577,-0.118774063885212,
- -0.997770488262177,-0.0654783099889755,0.0129101257771254,-0.0429685860872269,-0.817702651023865,-0.574034810066223,-0.0606645159423351,-0.0447420030832291,-0.997154951095581,0.0278430245816708,-0.999247550964355,-0.0270024165511131,-0.00662051839753985,-0.999642312526703,-0.0259108040481806,0.0357127860188484,-0.0438156723976135,-0.998401165008545,-0.995267033576965,0.0395836234092712,0.088750071823597,-0.0189908891916275,0.998000144958496,-0.0602911375463009,-0.0417578108608723,0.81675112247467,0.575477123260498,-0.995848298072815,0.0848463177680969,-0.032972976565361,0.0808258056640625,0.0293115936219692,-0.996297121047974,-0.0170248597860336,-0.0116114746779203,-0.999787628650665,0.000692089088261127,-0.012328683398664,-0.999923765659332,0.050757747143507,0.0360134430229664,-0.998061537742615,0.000703647965565324,-0.9998939037323,0.0145528223365545,-0.00662051839753985,-0.999642312526703,-0.0259108040481806,0.0278430245816708,-0.999247550964355,-0.0270024165511131,-0.000265098409727216,-0.999874770641327,0.0158282555639744,-0.995848298072815,0.0848463177680969,-0.032972976565361,-0.999148190021515,0.013905274681747,0.0388521365821362,-0.999155700206757,-0.0135310776531696,-0.0387930274009705,-0.997770488262177,-0.0654783099889755,0.0129101257771254,-0.992084860801697,-0.0407481156289577,-0.118774063885212,-0.995267033576965,0.0395836234092712,0.088750071823597,-0.995848298072815,0.0848463177680969,-0.032972976565361,-0.997770488262177,-0.0654783099889755,0.0129101257771254,-0.99824845790863,-0.0313077829778194,-0.0502008497714996,-0.999155700206757,-0.0135310776531696,-0.0387930274009705,-0.999148190021515,0.013905274681747,0.0388521365821362,-0.998534619808197,0.0232835300266743,0.0488492660224438,-0.0308692026883364,0.0512160435318947,0.998210430145264,-0.0310903023928404,0.056644082069397,0.99791020154953,0.0441546700894833,0.00299000320956111,0.999020338058472,0.0443731769919395,0.0335537791252136,0.998451411724091,-0.0139548713341355,-0.00952515285462141,0.999857366085052,-0.029877707362175,-0.0273467432707548,-0.999179422855377,
- -0.012898632325232,0.00950625911355019,-0.999871730804443,0.0453328751027584,-0.0424865745007992,-0.99806809425354,0.0440172888338566,-0.0474264547228813,-0.997904360294342,-0.0283900126814842,0.00548323662951589,-0.999581873416901,-0.0170248597860336,-0.0116114746779203,-0.999787628650665,-0.00425195368006825,-0.278346806764603,-0.960471212863922,-0.0913472548127174,-0.990178823471069,-0.105836898088455,0.16020455956459,0.986785173416138,-0.0242801383137703,0.0334564670920372,0.279472172260284,-0.959570646286011,0.0808258056640625,0.0293115936219692,-0.996297121047974,0.000692089088261127,-0.012328683398664,-0.999923765659332,0.152575269341469,-0.982393383979797,-0.107815742492676,0.00395501032471657,-0.278882205486298,-0.960317194461823,-0.047556210309267,0.998722612857819,-0.0170817896723747,0.050757747143507,0.0360134430229664,-0.998061537742615,-0.0313958823680878,0.282255947589874,-0.95882523059845,-0.00470657367259264,-0.957940638065338,-0.286927580833435,0.0278430245816708,-0.999247550964355,-0.0270024165511131,-0.0606645159423351,-0.0447420030832291,-0.997154951095581,0.0357127860188484,-0.0438156723976135,-0.998401165008545,-0.00662051839753985,-0.999642312526703,-0.0259108040481806,-0.0044972850009799,-0.900631546974182,-0.434560060501099,-0.0177069585770369,-0.011561818420887,-0.999776422977448,-0.091301903128624,-0.990176022052765,-0.105903200805187,0.157736137509346,-0.981546103954315,-0.108104422688484,0.00167655420955271,-0.0122473537921906,-0.999923586845398,-0.00439826864749193,-0.278325527906418,-0.960476696491241,-0.0177069585770369,-0.011561818420887,-0.999776422977448,0.0808288305997849,0.0293105915188789,-0.996297001838684,0.0334254913032055,0.279472500085831,-0.959571659564972,-0.998242497444153,-0.0314748585224152,-0.0502119623124599,-0.0165205225348473,0.137760236859322,-0.990327835083008,-0.0301437247544527,-0.0435223467648029,-0.998597621917725,-0.999155700206757,-0.0135038504377007,-0.0388008542358875,-0.999155700206757,-0.0135038504377007,-0.0388008542358875,-0.0301437247544527,-0.0435223467648029,-0.998597621917725,
- -0.0430320650339127,-0.817672848701477,-0.574072599411011,-0.997760236263275,-0.0656048730015755,0.0130586083978415,0.160202518105507,0.986785590648651,-0.0242769047617912,0.0808288305997849,0.0293105915188789,-0.996297001838684,0.0507313385605812,0.0360121950507164,-0.998062908649445,-0.0475511364638805,0.998722791671753,-0.0170842781662941,0.0314531289041042,-0.999504268169403,0.00137759908102453,-0.000328615627950057,-0.999874711036682,0.0158291887491941,0.0282684862613678,-0.999235033988953,-0.0270230751484632,-0.00480756862089038,-0.957940101623535,-0.28692814707756,0.00167655420955271,-0.0122473537921906,-0.999923586845398,0.00401118164882064,-0.278826236724854,-0.960333168506622,-0.0313647873699665,0.282253473997116,-0.958827018737793,0.0507313385605812,0.0360121950507164,-0.998062908649445,-0.018124658614397,-0.139194279909134,0.990099191665649,-0.998533964157104,0.0233337786048651,0.0488412566483021,-0.99914824962616,0.0138079272583127,0.0388889499008656,-0.0308535695075989,0.0427809990942478,0.998607993125916,-0.0308535695075989,0.0427809990942478,0.998607993125916,-0.99914824962616,0.0138079272583127,0.0388889499008656,-0.995859920978546,0.0847504958510399,-0.0328679718077183,-0.0418121442198753,0.816703677177429,0.575540542602539,0.000653523369692266,-0.9998939037323,0.0145532879978418,-0.0355976298451424,-0.999365985393524,0.000668052933178842,-0.00446680886670947,-0.900645077228546,-0.434532403945923,-0.00580425793305039,-0.999649167060852,-0.0258408430963755,-0.0211743637919426,-0.997917354106903,0.0609312765300274,-0.992045879364014,-0.0407524518668652,-0.119097664952278,-0.997760236263275,-0.0656048730015755,0.0130586083978415,-0.0430320650339127,-0.817672848701477,-0.574072599411011,-0.0607245303690434,-0.0447412878274918,-0.997151374816895,0.0282684862613678,-0.999235033988953,-0.0270230751484632,-0.00580425793305039,-0.999649167060852,-0.0258408430963755,0.0370512865483761,-0.0438993610441685,-0.998348653316498,-0.995279431343079,0.0395822115242481,0.0886118784546852,-0.0190025791525841,0.997996866703033,-0.0603438504040241,
- -0.0418121442198753,0.816703677177429,0.575540542602539,-0.995859920978546,0.0847504958510399,-0.0328679718077183,0.0808288305997849,0.0293105915188789,-0.996297001838684,-0.0177069585770369,-0.011561818420887,-0.999776422977448,0.00167655420955271,-0.0122473537921906,-0.999923586845398,0.0507313385605812,0.0360121950507164,-0.998062908649445,0.000653523369692266,-0.9998939037323,0.0145532879978418,-0.00580425793305039,-0.999649167060852,-0.0258408430963755,0.0282684862613678,-0.999235033988953,-0.0270230751484632,-0.000328615627950057,-0.999874711036682,0.0158291887491941,-0.995859920978546,0.0847504958510399,-0.0328679718077183,-0.99914824962616,0.0138079272583127,0.0388889499008656,-0.999155700206757,-0.0135038504377007,-0.0388008542358875,-0.997760236263275,-0.0656048730015755,0.0130586083978415,-0.992045879364014,-0.0407524518668652,-0.119097664952278,-0.995279431343079,0.0395822115242481,0.0886118784546852,-0.995859920978546,0.0847504958510399,-0.0328679718077183,-0.997760236263275,-0.0656048730015755,0.0130586083978415,-0.998242497444153,-0.0314748585224152,-0.0502119623124599,-0.999155700206757,-0.0135038504377007,-0.0388008542358875,-0.99914824962616,0.0138079272583127,0.0388889499008656,-0.998533964157104,0.0233337786048651,0.0488412566483021,-0.0309366974979639,0.051215510815382,0.998208403587341,-0.0311538204550743,0.0566436983644962,0.997908294200897,0.0441123992204666,0.00299211032688618,0.99902218580246,0.0443351268768311,0.0335541553795338,0.998453080654144,-0.0140067990869284,-0.00952360592782497,0.999856650829315,-0.0299418345093727,-0.0273460634052753,-0.999177515506744,-0.0130230262875557,0.00950406212359667,-0.999870121479034,0.0452713817358017,-0.0424905121326447,-0.99807071685791,0.0439557172358036,-0.0474330373108387,-0.997906804084778,-0.0284343399107456,0.00547699956223369,-0.999580681324005,-0.0177069585770369,-0.011561818420887,-0.999776422977448,-0.00439826864749193,-0.278325527906418,-0.960476696491241,-0.091301903128624,-0.990176022052765,-0.105903200805187,0.160202518105507,0.986785590648651,-0.0242769047617912,
- 0.0334254913032055,0.279472500085831,-0.959571659564972,0.0808288305997849,0.0293105915188789,-0.996297001838684,0.00167655420955271,-0.0122473537921906,-0.999923586845398,0.157736137509346,-0.981546103954315,-0.108104422688484,0.00401118164882064,-0.278826236724854,-0.960333168506622,-0.0475511364638805,0.998722791671753,-0.0170842781662941,0.0507313385605812,0.0360121950507164,-0.998062908649445,-0.0313647873699665,0.282253473997116,-0.958827018737793,-0.00480756862089038,-0.957940101623535,-0.28692814707756,0.0282684862613678,-0.999235033988953,-0.0270230751484632,-0.0607245303690434,-0.0447412878274918,-0.997151374816895,0.0370512865483761,-0.0438993610441685,-0.998348653316498,-0.00580425793305039,-0.999649167060852,-0.0258408430963755,-0.00446680886670947,-0.900645077228546,-0.434532403945923,-0.0170823410153389,-0.0116111757233739,-0.999786674976349,-0.0904695242643356,-0.990261554718018,-0.105817086994648,0.155155599117279,-0.981973171234131,-0.107960306107998,0.00137375062331557,-0.0122800581157207,-0.999923646450043,-0.00442090490832925,-0.278346627950668,-0.96047055721283,-0.0170823410153389,-0.0116111757233739,-0.999786674976349,0.0834054499864578,0.0291546657681465,-0.996089160442352,0.0335018038749695,0.279418647289276,-0.959584653377533,-0.998247563838959,-0.0313073545694351,-0.0502147525548935,-0.0165501963347197,0.137623384594917,-0.990346372127533,-0.0302392803132534,-0.0435051582753658,-0.998595476150513,-0.999155461788177,-0.0135333798825741,-0.0387975014746189,-0.999155461788177,-0.0135333798825741,-0.0387975014746189,-0.0302392803132534,-0.0435051582753658,-0.998595476150513,-0.0431169010698795,-0.817608416080475,-0.574158132076263,-0.997770607471466,-0.0654783397912979,0.0129043161869049,0.163170397281647,0.986294627189636,-0.0244606118649244,0.0834054499864578,0.0291546657681465,-0.996089160442352,0.0515981540083885,0.036042645573616,-0.998017311096191,-0.047558318823576,0.99872237443924,-0.0170888677239418,0.0314542353153229,-0.999504327774048,0.00138498237356544,-0.000328119494952261,-0.999874234199524,0.0158622860908508,
- 0.0293152686208487,-0.999202787876129,-0.0271009206771851,-0.00475429277867079,-0.957935035228729,-0.286945581436157,0.00137375062331557,-0.0122800581157207,-0.999923646450043,0.00393968028947711,-0.278853118419647,-0.960325598716736,-0.0313368998467922,0.282255351543427,-0.958827316761017,0.0515981540083885,0.036042645573616,-0.998017311096191,-0.0180800147354603,-0.139270648360252,0.990089297294617,-0.998535811901093,0.0232596565037966,0.0488386861979961,-0.999147713184357,0.0138262817636132,0.0388917624950409,-0.0308223608881235,0.0427156537771225,0.998611748218536,-0.0308223608881235,0.0427156537771225,0.998611748218536,-0.999147713184357,0.0138262817636132,0.0388917624950409,-0.995872557163239,0.0846478566527367,-0.0327491499483585,-0.0417562834918499,0.816697180271149,0.575553894042969,0.000651686626952142,-0.9998939037323,0.0145568884909153,-0.0356636270880699,-0.999363660812378,0.000668304041028023,-0.00452880328521132,-0.900644421577454,-0.434533208608627,-0.00581627106294036,-0.999649107456207,-0.0258439015597105,-0.0211511515080929,-0.997917294502258,0.0609399154782295,-0.992088735103607,-0.0407476499676704,-0.118741951882839,-0.997770607471466,-0.0654783397912979,0.0129043161869049,-0.0431169010698795,-0.817608416080475,-0.574158132076263,-0.0587331056594849,-0.0446393862366676,-0.997275233268738,0.0293152686208487,-0.999202787876129,-0.0271009206771851,-0.00581627106294036,-0.999649107456207,-0.0258439015597105,0.0377138331532478,-0.0439258590340614,-0.998322725296021,-0.995291352272034,0.0395823009312153,0.0884784758090973,-0.0189261883497238,0.997998714447021,-0.0603354498744011,-0.0417562834918499,0.816697180271149,0.575553894042969,-0.995872557163239,0.0846478566527367,-0.0327491499483585,0.0834054499864578,0.0291546657681465,-0.996089160442352,-0.0170823410153389,-0.0116111757233739,-0.999786674976349,0.00137375062331557,-0.0122800581157207,-0.999923646450043,0.0515981540083885,0.036042645573616,-0.998017311096191,0.000651686626952142,-0.9998939037323,0.0145568884909153,-0.00581627106294036,-0.999649107456207,-0.0258439015597105,
- 0.0293152686208487,-0.999202787876129,-0.0271009206771851,-0.000328119494952261,-0.999874234199524,0.0158622860908508,-0.995872557163239,0.0846478566527367,-0.0327491499483585,-0.999147713184357,0.0138262817636132,0.0388917624950409,-0.999155461788177,-0.0135333798825741,-0.0387975014746189,-0.997770607471466,-0.0654783397912979,0.0129043161869049,-0.992088735103607,-0.0407476499676704,-0.118741951882839,-0.995291352272034,0.0395823009312153,0.0884784758090973,-0.995872557163239,0.0846478566527367,-0.0327491499483585,-0.997770607471466,-0.0654783397912979,0.0129043161869049,-0.998247563838959,-0.0313073545694351,-0.0502147525548935,-0.999155461788177,-0.0135333798825741,-0.0387975014746189,-0.999147713184357,0.0138262817636132,0.0388917624950409,-0.998535811901093,0.0232596565037966,0.0488386861979961,-0.0309054963290691,0.0512169487774372,0.998209238052368,-0.0311290938407183,0.0566445179283619,0.997909009456635,0.0440995842218399,0.00298888422548771,0.999022662639618,0.0443277843296528,0.0335535109043121,0.998453438282013,-0.0139513192698359,-0.00952253676950932,0.999857425689697,-0.0300376527011395,-0.0273458417505026,-0.999174654483795,-0.0130539843812585,0.00951066799461842,-0.999869585037231,0.0453485399484634,-0.0424832068383694,-0.998067498207092,0.0440434403717518,-0.0474327877163887,-0.997902929782867,-0.0285643078386784,0.00548622570931911,-0.999576926231384,-0.0170823410153389,-0.0116111757233739,-0.999786674976349,-0.00442090490832925,-0.278346627950668,-0.96047055721283,-0.0904695242643356,-0.990261554718018,-0.105817086994648,0.163170397281647,0.986294627189636,-0.0244606118649244,0.0335018038749695,0.279418647289276,-0.959584653377533,0.0834054499864578,0.0291546657681465,-0.996089160442352,0.00137375062331557,-0.0122800581157207,-0.999923646450043,0.155155599117279,-0.981973171234131,-0.107960306107998,0.00393968028947711,-0.278853118419647,-0.960325598716736,-0.047558318823576,0.99872237443924,-0.0170888677239418,0.0515981540083885,0.036042645573616,-0.998017311096191,-0.0313368998467922,0.282255351543427,-0.958827316761017,
- -0.00475429277867079,-0.957935035228729,-0.286945581436157,0.0293152686208487,-0.999202787876129,-0.0271009206771851,-0.0587331056594849,-0.0446393862366676,-0.997275233268738,0.0377138331532478,-0.0439258590340614,-0.998322725296021,-0.00581627106294036,-0.999649107456207,-0.0258439015597105,-0.00452880328521132,-0.900644421577454,-0.434533208608627,0.0143119757995009,0.50258082151413,-0.864411771297455,0.0143119767308235,0.50258082151413,-0.864411771297455,0.0143119757995009,0.50258082151413,-0.864411771297455,0.0143119767308235,0.50258082151413,-0.864411771297455,-0.017217380926013,-0.227401748299599,0.9736487865448,-0.988223612308502,0.113075911998749,0.103091672062874,-0.981840133666992,-0.162418931722641,-0.0980309024453163,-0.0635635703802109,-0.972776114940643,-0.222859337925911,-0.0132050095126033,0.85661381483078,0.515789210796356,-0.865810096263886,0.439712226390839,0.238801509141922,-0.875627994537354,0.26739040017128,0.402216255664825,-0.0132050095126033,0.85661381483078,0.515789210796356,-0.875627994537354,0.26739040017128,0.402216255664825,-0.988223612308502,0.113075911998749,0.103091672062874,-0.017217380926013,-0.227401748299599,0.9736487865448,-0.996270954608917,0.0049278368242085,0.0861386805772781,-0.865810096263886,0.439712226390839,0.238801509141922,-0.996671676635742,0.0801490843296051,0.0148880323395133,-0.998491168022156,-0.00392647786065936,-0.0547713339328766,-0.998811960220337,-0.0472490303218365,0.0119218854233623,-0.750162422657013,0.164187163114548,0.640545964241028,-0.873334765434265,0.294140309095383,-0.388288199901581,-0.998811960220337,-0.0472490303218365,0.0119218854233623,-0.998491168022156,-0.00392647786065936,-0.0547713339328766,-0.980725109577179,-0.170858785510063,-0.0947910621762276,-0.989810705184937,-0.140012964606285,-0.0259073991328478,-0.965932071208954,-0.241875097155571,-0.0920418128371239,-0.937414169311523,-0.31605863571167,-0.146155953407288,-0.999949932098389,-0.00697270547971129,0.00718695297837257,-0.9994757771492,-0.0098966546356678,0.0308268778026104,-0.873334765434265,0.294140309095383,-0.388288199901581,
- -0.750162422657013,0.164187163114548,0.640545964241028,-0.919317007064819,0.27155476808548,-0.284805208444595,-0.99608439207077,0.0695909708738327,-0.054524090141058,-0.997635245323181,0.0576542690396309,-0.0374150052666664,-0.995629251003265,-0.024000771343708,0.0902569964528084,-0.991535842418671,-0.10272178798914,-0.0794029831886292,-0.993358790874481,-0.0866694003343582,-0.0756749287247658,-0.999671041965485,0.0256410092115402,0.000578335602767766,-0.920726835727692,0.38120499253273,0.0833353027701378,-0.954229891300201,-0.298078626394272,0.0243804138153791,0.0646634846925735,0.893641471862793,0.444098562002182,0.0303991381078959,0.899415194988251,0.436037003993988,-0.0788651406764984,0.95604532957077,0.282413721084595,-0.066511869430542,0.855492293834686,0.513526082038879,-0.0132050095126033,0.85661381483078,0.515789210796356,-0.00654990086331964,0.918764650821686,0.394751220941544,-0.937414169311523,-0.31605863571167,-0.146155953407288,-0.965932071208954,-0.241875097155571,-0.0920418128371239,-0.993358790874481,-0.0866694003343582,-0.0756749287247658,-0.865810096263886,0.439712226390839,0.238801509141922,-0.996270954608917,0.0049278368242085,0.0861386805772781,-0.989039063453674,0.126016527414322,0.0769520029425621,-0.875627994537354,0.26739040017128,0.402216255664825,-0.875627994537354,0.26739040017128,0.402216255664825,-0.989039063453674,0.126016527414322,0.0769520029425621,-0.988223612308502,0.113075911998749,0.103091672062874,-0.865810096263886,0.439712226390839,0.238801509141922,-0.0132050095126033,0.85661381483078,0.515789210796356,-0.066511869430542,0.855492293834686,0.513526082038879,-0.996671676635742,0.0801490843296051,0.0148880323395133,-0.996641874313354,-0.0747519508004189,0.03342355042696,-0.0635635703802109,-0.972776114940643,-0.222859337925911,-0.981840133666992,-0.162418931722641,-0.0980309024453163,-0.937414169311523,-0.31605863571167,-0.146155953407288,-0.898091971874237,0.408057302236557,0.164073437452316,-0.987903296947479,0.141519010066986,-0.0633988156914711,-0.999949932098389,-0.00697270547971129,0.00718695297837257,
- -0.0635918825864792,-0.623683273792267,-0.779086172580719,-0.0146402604877949,-0.186569586396217,-0.982332587242126,-0.998320519924164,-0.0561904162168503,-0.0140932891517878,-0.960350751876831,0.0987197384238243,-0.260731339454651,-0.996857762336731,-0.0562227666378021,0.055799163877964,-0.916204273700714,0.325615704059601,0.233546778559685,-0.970983684062958,0.106860101222992,-0.213943004608154,-0.836979925632477,-0.344876259565353,0.424882292747498,-0.966656744480133,0.21701991558075,0.13593102991581,-0.998320519924164,-0.0561904162168503,-0.0140932891517878,-0.916204273700714,0.325615704059601,0.233546778559685,-0.996857762336731,-0.0562227666378021,0.055799163877964,-0.836979925632477,-0.344876259565353,0.424882292747498,-0.970983684062958,0.106860101222992,-0.213943004608154,-0.988019287586212,-0.0131584415212274,0.153768971562386,-0.974912762641907,-0.0751714929938316,-0.209509998559952,-0.949201762676239,-0.239929139614105,0.203592985868454,-0.989810705184937,-0.140012964606285,-0.0259073991328478,-0.980725109577179,-0.170858785510063,-0.0947910621762276,-0.939950048923492,0.223407223820686,-0.258036851882935,-0.968283116817474,-0.114417485892773,0.222117990255356,-0.920726835727692,0.38120499253273,0.0833353027701378,-0.954102337360382,0.176476299762726,-0.241960689425468,-0.966762781143188,0.212079957127571,0.142800033092499,-0.997601628303528,0.0421041399240494,-0.0549381636083126,-0.994216501712799,-0.0944255590438843,-0.0511601157486439,-0.960850656032562,-0.254919022321701,-0.108546450734138,-0.991243422031403,-0.104222126305103,0.0810807794332504,-0.990025699138641,-0.125611647963524,-0.0638019666075706,-0.995629251003265,-0.024000771343708,0.0902569964528084,-0.954229891300201,-0.298078626394272,0.0243804138153791,-0.997381746768951,-0.0591041781008244,-0.0416698716580868,-0.991535842418671,-0.10272178798914,-0.0794029831886292,-0.954102337360382,0.176476299762726,-0.241960689425468,-0.996641874313354,-0.0747519508004189,0.03342355042696,-0.981840133666992,-0.162418931722641,-0.0980309024453163,-0.966762781143188,0.212079957127571,0.142800033092499,
- -0.954102337360382,0.176476299762726,-0.241960689425468,-0.920726835727692,0.38120499253273,0.0833353027701378,-0.999671041965485,0.0256410092115402,0.000578335602767766,-0.997635245323181,0.0576542690396309,-0.0374150052666664,-0.964559733867645,0.00561228208243847,-0.263804733753204,-0.919725060462952,0.0301060825586319,-0.391406893730164,-0.898091971874237,0.408057302236557,0.164073437452316,-0.937414169311523,-0.31605863571167,-0.146155953407288,-0.993358790874481,-0.0866694003343582,-0.0756749287247658,-0.991535842418671,-0.10272178798914,-0.0794029831886292,-0.997381746768951,-0.0591041781008244,-0.0416698716580868,-0.960850656032562,-0.254919022321701,-0.108546450734138,-0.994216501712799,-0.0944255590438843,-0.0511601157486439,-0.997601628303528,0.0421041399240494,-0.0549381636083126,-0.966762781143188,0.212079957127571,0.142800033092499,-0.998320519924164,-0.0561904162168503,-0.0140932891517878,-0.966656744480133,0.21701991558075,0.13593102991581,-0.990231692790985,-0.102475792169571,0.094551146030426,-0.960350751876831,0.0987197384238243,-0.260731339454651,-0.916204273700714,0.325615704059601,0.233546778559685,-0.019346671178937,0.796004712581635,-0.604981124401093,-0.0580275468528271,0.994828641414642,0.0833602249622345,-0.970983684062958,0.106860101222992,-0.213943004608154,-0.998320519924164,-0.0561904162168503,-0.0140932891517878,-0.0146402604877949,-0.186569586396217,-0.982332587242126,-0.019346671178937,0.796004712581635,-0.604981124401093,-0.916204273700714,0.325615704059601,0.233546778559685,-0.970983684062958,0.106860101222992,-0.213943004608154,-0.0580275468528271,0.994828641414642,0.0833602249622345,-0.0207349043339491,0.730264246463776,0.682850062847137,-0.988019287586212,-0.0131584415212274,0.153768971562386,-0.980725109577179,-0.170858785510063,-0.0947910621762276,-0.965932071208954,-0.241875097155571,-0.0920418128371239,-0.9994757771492,-0.0098966546356678,0.0308268778026104,-0.939950048923492,0.223407223820686,-0.258036851882935,-0.998491168022156,-0.00392647786065936,-0.0547713339328766,
- -0.993358790874481,-0.0866694003343582,-0.0756749287247658,-0.965932071208954,-0.241875097155571,-0.0920418128371239,-0.980725109577179,-0.170858785510063,-0.0947910621762276,-0.993358790874481,-0.0866694003343582,-0.0756749287247658,-0.998491168022156,-0.00392647786065936,-0.0547713339328766,-0.873334765434265,0.294140309095383,-0.388288199901581,-0.997635245323181,0.0576542690396309,-0.0374150052666664,-0.997635245323181,0.0576542690396309,-0.0374150052666664,-0.873334765434265,0.294140309095383,-0.388288199901581,-0.99608439207077,0.0695909708738327,-0.054524090141058,-0.964559733867645,0.00561228208243847,-0.263804733753204,-0.966656744480133,0.21701991558075,0.13593102991581,-0.989810705184937,-0.140012964606285,-0.0259073991328478,-0.968283116817474,-0.114417485892773,0.222117990255356,-0.990231692790985,-0.102475792169571,0.094551146030426,-0.989810705184937,-0.140012964606285,-0.0259073991328478,-0.966656744480133,0.21701991558075,0.13593102991581,-0.996857762336731,-0.0562227666378021,0.055799163877964,-0.998811960220337,-0.0472490303218365,0.0119218854233623,-0.998811960220337,-0.0472490303218365,0.0119218854233623,-0.996857762336731,-0.0562227666378021,0.055799163877964,-0.836979925632477,-0.344876259565353,0.424882292747498,-0.750162422657013,0.164187163114548,0.640545964241028,-0.750162422657013,0.164187163114548,0.640545964241028,-0.836979925632477,-0.344876259565353,0.424882292747498,-0.949201762676239,-0.239929139614105,0.203592985868454,-0.949201762676239,-0.239929139614105,0.203592985868454,-0.974912762641907,-0.0751714929938316,-0.209509998559952,-0.438566505908966,-0.792805910110474,-0.423223435878754,-0.750162422657013,0.164187163114548,0.640545964241028,-0.949201762676239,-0.239929139614105,0.203592985868454,-0.438566505908966,-0.792805910110474,-0.423223435878754,-0.919317007064819,0.27155476808548,-0.284805208444595,-0.997635245323181,0.0576542690396309,-0.0374150052666664,-0.919725060462952,0.0301060825586319,-0.391406893730164,-0.999541640281677,0.0278315730392933,0.0119122825562954,-0.999671041965485,0.0256410092115402,0.000578335602767766,
- -0.995629251003265,-0.024000771343708,0.0902569964528084,-0.960850656032562,-0.254919022321701,-0.108546450734138,-0.989039063453674,0.126016527414322,0.0769520029425621,-0.996270954608917,0.0049278368242085,0.0861386805772781,-0.991243422031403,-0.104222126305103,0.0810807794332504,-0.988223612308502,0.113075911998749,0.103091672062874,-0.989039063453674,0.126016527414322,0.0769520029425621,-0.960850656032562,-0.254919022321701,-0.108546450734138,-0.966762781143188,0.212079957127571,0.142800033092499,-0.981840133666992,-0.162418931722641,-0.0980309024453163,-0.898091971874237,0.408057302236557,0.164073437452316,-0.994216501712799,-0.0944255590438843,-0.0511601157486439,-0.990025699138641,-0.125611647963524,-0.0638019666075706,-0.987903296947479,0.141519010066986,-0.0633988156914711,-0.994216501712799,-0.0944255590438843,-0.0511601157486439,-0.898091971874237,0.408057302236557,0.164073437452316,-0.997381746768951,-0.0591041781008244,-0.0416698716580868,-0.997601628303528,0.0421041399240494,-0.0549381636083126,-0.954229891300201,-0.298078626394272,0.0243804138153791,-0.920726835727692,0.38120499253273,0.0833353027701378,-0.997601628303528,0.0421041399240494,-0.0549381636083126,-0.997381746768951,-0.0591041781008244,-0.0416698716580868,-0.999671041965485,0.0256410092115402,0.000578335602767766,-0.954229891300201,-0.298078626394272,0.0243804138153791,-0.995629251003265,-0.024000771343708,0.0902569964528084,-0.0788651406764984,0.95604532957077,0.282413721084595,-0.992251396179199,0.122592382133007,-0.0202099122107029,-0.996671676635742,0.0801490843296051,0.0148880323395133,-0.066511869430542,0.855492293834686,0.513526082038879,-0.965077579021454,-0.0540498606860638,-0.256327748298645,-0.0308642480522394,-0.913178861141205,-0.406388729810715,-0.0635635703802109,-0.972776114940643,-0.222859337925911,-0.996641874313354,-0.0747519508004189,0.03342355042696,-0.999541640281677,0.0278315730392933,0.0119122825562954,-0.965077579021454,-0.0540498606860638,-0.256327748298645,-0.996641874313354,-0.0747519508004189,0.03342355042696,
- -0.954102337360382,0.176476299762726,-0.241960689425468,-0.999671041965485,0.0256410092115402,0.000578335602767766,0.0664362087845802,0.88714599609375,0.45668175816536,-0.0253392048180103,0.892456233501434,0.450421899557114,-0.0661623850464821,0.893433272838593,0.444296598434448,-0.00136397895403206,0.894137263298035,0.447791159152985,0.00233871280215681,0.894889950752258,0.446280837059021,0.0647728741168976,0.892247140407562,0.446877539157867,-0.0172282513231039,-0.226937159895897,-0.973756968975067,-0.0636196285486221,-0.97278618812561,0.22279916703701,-0.981908917427063,-0.162143900990486,0.0977975130081177,-0.988144755363464,0.113544389605522,-0.103333160281181,-0.013221669010818,0.856397449970245,-0.516147792339325,-0.875529646873474,0.267336040735245,-0.402466386556625,-0.865823686122894,0.439665913581848,-0.238837212324142,-0.013221669010818,0.856397449970245,-0.516147792339325,-0.0172282513231039,-0.226937159895897,-0.973756968975067,-0.988144755363464,0.113544389605522,-0.103333160281181,-0.875529646873474,0.267336040735245,-0.402466386556625,-0.996274471282959,0.00500206323340535,-0.0860930010676384,-0.996660172939301,0.0803128406405449,-0.0147792864590883,-0.865823686122894,0.439665913581848,-0.238837212324142,-0.998492836952209,-0.00393129978328943,0.0547415725886822,-0.873334169387817,0.294296473264694,0.388171195983887,-0.750194907188416,0.163176715373993,-0.640765845775604,-0.998811841011047,-0.0472522489726543,-0.0119178844615817,-0.998811841011047,-0.0472522489726543,-0.0119178844615817,-0.989812552928925,-0.140000596642494,0.025904593989253,-0.980725884437561,-0.170873671770096,0.094757579267025,-0.998492836952209,-0.00393129978328943,0.0547415725886822,-0.96593314409256,-0.241883054375649,0.0920095294713974,-0.999490976333618,-0.00960336532443762,-0.030423104763031,-0.999963343143463,-0.00607636291533709,-0.00603427644819021,-0.937407851219177,-0.316067844629288,0.14617694914341,-0.873334169387817,0.294296473264694,0.388171195983887,-0.996072173118591,0.069593071937561,0.0547454655170441,-0.918656229972839,0.271278411149979,0.287191331386566,
- -0.750194907188416,0.163176715373993,-0.640765845775604,-0.997641265392303,0.0576369278132916,0.0372801721096039,-0.993361830711365,-0.0866666287183762,0.0756377726793289,-0.991536974906921,-0.102728329598904,0.0793801322579384,-0.995623230934143,-0.0240263994783163,-0.0903167650103569,-0.999671339988709,0.0256313886493444,-0.000610820949077606,-0.954229891300201,-0.298078685998917,-0.0243799686431885,-0.920726656913757,0.381205409765244,-0.0833359807729721,0.0647267028689384,0.893881678581238,-0.443605661392212,-0.00655743945389986,0.918655395507813,-0.395005524158478,-0.013221669010818,0.856397449970245,-0.516147792339325,-0.06651621311903,0.855340182781219,-0.513778746128082,-0.0732977017760277,0.888530313968658,-0.45292529463768,0.0303918812423944,0.899274885654449,-0.436326652765274,-0.937407851219177,-0.316067844629288,0.14617694914341,-0.993361830711365,-0.0866666287183762,0.0756377726793289,-0.96593314409256,-0.241883054375649,0.0920095294713974,-0.865823686122894,0.439665913581848,-0.238837212324142,-0.875529646873474,0.267336040735245,-0.402466386556625,-0.989039719104767,0.126012444496155,-0.0769504085183144,-0.996274471282959,0.00500206323340535,-0.0860930010676384,-0.875529646873474,0.267336040735245,-0.402466386556625,-0.988144755363464,0.113544389605522,-0.103333160281181,-0.989039719104767,0.126012444496155,-0.0769504085183144,-0.865823686122894,0.439665913581848,-0.238837212324142,-0.996660172939301,0.0803128406405449,-0.0147792864590883,-0.06651621311903,0.855340182781219,-0.513778746128082,-0.013221669010818,0.856397449970245,-0.516147792339325,-0.996631562709808,-0.0748641714453697,-0.0334787890315056,-0.981908917427063,-0.162143900990486,0.0977975130081177,-0.0636196285486221,-0.97278618812561,0.22279916703701,-0.937407851219177,-0.316067844629288,0.14617694914341,-0.999963343143463,-0.00607636291533709,-0.00603427644819021,-0.98793089389801,0.141436278820038,0.0631527975201607,-0.89808976650238,0.408029764890671,-0.164153814315796,-0.0635757446289063,-0.622832536697388,0.779767692089081,-0.960366249084473,0.0987014099955559,0.260681420564651,
- -0.998320281505585,-0.0561752803623676,0.0141818877309561,-0.0146486293524504,-0.186579361557961,0.982330679893494,-0.996863305568695,-0.056214552372694,-0.0557102896273136,-0.836985290050507,-0.344959855079651,-0.424803823232651,-0.970942378044128,0.107099518179893,0.214010536670685,-0.916225492954254,0.325614333152771,-0.233465641736984,-0.966660678386688,0.217051669955254,-0.13585202395916,-0.996863305568695,-0.056214552372694,-0.0557102896273136,-0.916225492954254,0.325614333152771,-0.233465641736984,-0.998320281505585,-0.0561752803623676,0.0141818877309561,-0.836985290050507,-0.344959855079651,-0.424803823232651,-0.948907017707825,-0.240560159087181,-0.204221129417419,-0.974976241588593,-0.0751584693789482,0.209218591451645,-0.988046109676361,-0.0131499106064439,-0.153596341609955,-0.970942378044128,0.107099518179893,0.214010536670685,-0.989812552928925,-0.140000596642494,0.025904593989253,-0.968319237232208,-0.114444449543953,-0.221946641802788,-0.939980328083038,0.223459661006927,0.257881253957748,-0.980725884437561,-0.170873671770096,0.094757579267025,-0.920726656913757,0.381205409765244,-0.0833359807729721,-0.997601509094238,0.0421060174703598,0.0549386255443096,-0.966762781143188,0.212079778313637,-0.142799958586693,-0.954073250293732,0.176577091217041,0.242001801729202,-0.994216799736023,-0.0944220051169395,0.0511599667370319,-0.990032017230988,-0.125583380460739,0.0637620165944099,-0.991273522377014,-0.104076892137527,-0.0808995366096497,-0.960851550102234,-0.254916250705719,0.108545288443565,-0.995623230934143,-0.0240263994783163,-0.0903167650103569,-0.991536974906921,-0.102728329598904,0.0793801322579384,-0.997382879257202,-0.0591013729572296,0.041645985096693,-0.954229891300201,-0.298078685998917,-0.0243799686431885,-0.954073250293732,0.176577091217041,0.242001801729202,-0.966762781143188,0.212079778313637,-0.142799958586693,-0.981908917427063,-0.162143900990486,0.0977975130081177,-0.996631562709808,-0.0748641714453697,-0.0334787890315056,-0.954073250293732,0.176577091217041,0.242001801729202,-0.999671339988709,0.0256313886493444,-0.000610820949077606,
- -0.920726656913757,0.381205409765244,-0.0833359807729721,-0.997641265392303,0.0576369278132916,0.0372801721096039,-0.919788658618927,0.0301056951284409,0.391257524490356,-0.964599668979645,0.00560043193399906,0.263659030199051,-0.89808976650238,0.408029764890671,-0.164153814315796,-0.997382879257202,-0.0591013729572296,0.041645985096693,-0.991536974906921,-0.102728329598904,0.0793801322579384,-0.993361830711365,-0.0866666287183762,0.0756377726793289,-0.937407851219177,-0.316067844629288,0.14617694914341,-0.960851550102234,-0.254916250705719,0.108545288443565,-0.966762781143188,0.212079778313637,-0.142799958586693,-0.997601509094238,0.0421060174703598,0.0549386255443096,-0.994216799736023,-0.0944220051169395,0.0511599667370319,-0.998320281505585,-0.0561752803623676,0.0141818877309561,-0.960366249084473,0.0987014099955559,0.260681420564651,-0.990243256092072,-0.102496415376663,-0.0944080352783203,-0.966660678386688,0.217051669955254,-0.13585202395916,-0.916225492954254,0.325614333152771,-0.233465641736984,-0.970942378044128,0.107099518179893,0.214010536670685,-0.0580343976616859,0.99483585357666,-0.0832689180970192,-0.0193577222526073,0.796000838279724,0.60498583316803,-0.998320281505585,-0.0561752803623676,0.0141818877309561,-0.916225492954254,0.325614333152771,-0.233465641736984,-0.0193577222526073,0.796000838279724,0.60498583316803,-0.0146486293524504,-0.186579361557961,0.982330679893494,-0.970942378044128,0.107099518179893,0.214010536670685,-0.988046109676361,-0.0131499106064439,-0.153596341609955,-0.0207423567771912,0.730654060840607,-0.68243271112442,-0.0580343976616859,0.99483585357666,-0.0832689180970192,-0.980725884437561,-0.170873671770096,0.094757579267025,-0.939980328083038,0.223459661006927,0.257881253957748,-0.999490976333618,-0.00960336532443762,-0.030423104763031,-0.96593314409256,-0.241883054375649,0.0920095294713974,-0.998492836952209,-0.00393129978328943,0.0547415725886822,-0.980725884437561,-0.170873671770096,0.094757579267025,-0.96593314409256,-0.241883054375649,0.0920095294713974,-0.993361830711365,-0.0866666287183762,0.0756377726793289,
- -0.993361830711365,-0.0866666287183762,0.0756377726793289,-0.997641265392303,0.0576369278132916,0.0372801721096039,-0.873334169387817,0.294296473264694,0.388171195983887,-0.998492836952209,-0.00393129978328943,0.0547415725886822,-0.997641265392303,0.0576369278132916,0.0372801721096039,-0.964599668979645,0.00560043193399906,0.263659030199051,-0.996072173118591,0.069593071937561,0.0547454655170441,-0.873334169387817,0.294296473264694,0.388171195983887,-0.966660678386688,0.217051669955254,-0.13585202395916,-0.990243256092072,-0.102496415376663,-0.0944080352783203,-0.968319237232208,-0.114444449543953,-0.221946641802788,-0.989812552928925,-0.140000596642494,0.025904593989253,-0.989812552928925,-0.140000596642494,0.025904593989253,-0.998811841011047,-0.0472522489726543,-0.0119178844615817,-0.996863305568695,-0.056214552372694,-0.0557102896273136,-0.966660678386688,0.217051669955254,-0.13585202395916,-0.998811841011047,-0.0472522489726543,-0.0119178844615817,-0.750194907188416,0.163176715373993,-0.640765845775604,-0.836985290050507,-0.344959855079651,-0.424803823232651,-0.996863305568695,-0.056214552372694,-0.0557102896273136,-0.750194907188416,0.163176715373993,-0.640765845775604,-0.948907017707825,-0.240560159087181,-0.204221129417419,-0.836985290050507,-0.344959855079651,-0.424803823232651,-0.948907017707825,-0.240560159087181,-0.204221129417419,-0.438644379377365,-0.792866468429565,0.423029482364655,-0.974976241588593,-0.0751584693789482,0.209218591451645,-0.750194907188416,0.163176715373993,-0.640765845775604,-0.918656229972839,0.271278411149979,0.287191331386566,-0.438644379377365,-0.792866468429565,0.423029482364655,-0.948907017707825,-0.240560159087181,-0.204221129417419,-0.997641265392303,0.0576369278132916,0.0372801721096039,-0.995623230934143,-0.0240263994783163,-0.0903167650103569,-0.999671339988709,0.0256313886493444,-0.000610820949077606,-0.999541521072388,0.0278315097093582,-0.0119306975975633,-0.919788658618927,0.0301056951284409,0.391257524490356,-0.960851550102234,-0.254916250705719,0.108545288443565,-0.991273522377014,-0.104076892137527,-0.0808995366096497,
- -0.996274471282959,0.00500206323340535,-0.0860930010676384,-0.989039719104767,0.126012444496155,-0.0769504085183144,-0.988144755363464,0.113544389605522,-0.103333160281181,-0.981908917427063,-0.162143900990486,0.0977975130081177,-0.966762781143188,0.212079778313637,-0.142799958586693,-0.960851550102234,-0.254916250705719,0.108545288443565,-0.989039719104767,0.126012444496155,-0.0769504085183144,-0.89808976650238,0.408029764890671,-0.164153814315796,-0.98793089389801,0.141436278820038,0.0631527975201607,-0.990032017230988,-0.125583380460739,0.0637620165944099,-0.994216799736023,-0.0944220051169395,0.0511599667370319,-0.994216799736023,-0.0944220051169395,0.0511599667370319,-0.997601509094238,0.0421060174703598,0.0549386255443096,-0.997382879257202,-0.0591013729572296,0.041645985096693,-0.89808976650238,0.408029764890671,-0.164153814315796,-0.954229891300201,-0.298078685998917,-0.0243799686431885,-0.997382879257202,-0.0591013729572296,0.041645985096693,-0.997601509094238,0.0421060174703598,0.0549386255443096,-0.920726656913757,0.381205409765244,-0.0833359807729721,-0.999671339988709,0.0256313886493444,-0.000610820949077606,-0.995623230934143,-0.0240263994783163,-0.0903167650103569,-0.954229891300201,-0.298078685998917,-0.0243799686431885,-0.0308606456965208,-0.913141548633575,0.40647280216217,-0.965079665184021,-0.0540485978126526,0.256319969892502,-0.996631562709808,-0.0748641714453697,-0.0334787890315056,-0.0636196285486221,-0.97278618812561,0.22279916703701,-0.965079665184021,-0.0540485978126526,0.256319969892502,-0.999541521072388,0.0278315097093582,-0.0119306975975633,-0.999671339988709,0.0256313886493444,-0.000610820949077606,-0.954073250293732,0.176577091217041,0.242001801729202,-0.996631562709808,-0.0748641714453697,-0.0334787890315056,-0.0253360476344824,0.892429053783417,-0.450475841760635,0.066432498395443,0.887088775634766,-0.456793695688248,0.0647669658064842,0.892230272293091,-0.446911931037903,0.00234017963521183,0.894890964031219,-0.446278780698776,-0.00136466126423329,0.894138276576996,-0.447789132595062,
- -0.0661830976605415,0.893434405326843,-0.444291353225708,-0.0744523704051971,-0.994183838367462,-0.0778158605098724,-0.99397075176239,-0.108388110995293,0.0165615659207106,-0.960366249084473,0.0987014099955559,0.260681420564651,-0.0635757446289063,-0.622832536697388,0.779767692089081,-0.976912021636963,-0.187617257237434,0.102188564836979,-0.0582424104213715,-0.777721464633942,0.62590503692627,-0.0635918825864792,-0.623683273792267,-0.779086172580719,-0.960350751876831,0.0987197384238243,-0.260731339454651,-0.995832324028015,0.0778009369969368,-0.0475904606282711,-0.0732977017760277,0.888530313968658,-0.45292529463768,-0.06651621311903,0.855340182781219,-0.513778746128082,-0.996660172939301,0.0803128406405449,-0.0147792864590883,-0.93339204788208,0.181980043649673,-0.309293329715729,-0.999591112136841,-0.0283682122826576,0.00358208571560681,-0.925892531871796,0.131370887160301,0.354210138320923,-0.976912021636963,-0.187617257237434,0.102188564836979,-0.893822252750397,0.233409002423286,0.382886439561844,-0.93339204788208,0.181980043649673,-0.309293329715729,-0.967961490154266,-0.0793962702155113,0.238215699791908,-0.981402158737183,0.156279221177101,0.11147391051054,-0.981402158737183,0.156279221177101,0.11147391051054,-0.967961490154266,-0.0793962702155113,0.238215699791908,-0.998229742050171,-0.0130765689536929,0.0580206699669361,-0.96181046962738,-0.135649770498276,-0.237738534808159,-0.973330140113831,0.174746707081795,-0.148633226752281,-0.996659874916077,0.081618070602417,0.00275065563619137,-0.998867690563202,0.0321781523525715,0.0350418537855148,-0.993180215358734,0.0699939727783203,-0.0932414308190346,-0.857027232646942,0.32782107591629,0.397539794445038,-0.973330140113831,0.174746707081795,-0.148633226752281,-0.957486629486084,-0.0534853115677834,-0.283476054668427,-0.962817966938019,-0.0690931901335716,0.261165678501129,-0.962817966938019,-0.0690931901335716,0.261165678501129,-0.957486629486084,-0.0534853115677834,-0.283476054668427,-0.991780757904053,0.065781906247139,-0.10974346101284,-0.320294439792633,-0.525841295719147,-0.787973582744598,
- -0.994260609149933,0.0542430430650711,0.0922146365046501,-0.991780757904053,0.065781906247139,-0.10974346101284,-0.992251396179199,0.122592382133007,-0.0202099122107029,-0.9900883436203,0.134941637516022,0.0389343611896038,-0.998073875904083,0.0396781228482723,-0.0476877205073833,-0.973671078681946,-0.123224005103111,-0.191782370209694,-0.999657034873962,0.0261917114257813,-8.71912343427539e-005,-0.998229742050171,-0.0130765689536929,0.0580206699669361,-0.973671078681946,-0.123224005103111,-0.191782370209694,-0.998073875904083,0.0396781228482723,-0.0476877205073833,-0.993180215358734,0.0699939727783203,-0.0932414308190346,-0.627287566661835,-0.421224385499954,-0.655042111873627,-0.9994757771492,-0.0098966546356678,0.0308268778026104,-0.999949932098389,-0.00697270547971129,0.00718695297837257,-0.993180215358734,0.0699939727783203,-0.0932414308190346,-0.998073875904083,0.0396781228482723,-0.0476877205073833,-0.939950048923492,0.223407223820686,-0.258036851882935,-0.998229742050171,-0.0130765689536929,0.0580206699669361,-0.967961490154266,-0.0793962702155113,0.238215699791908,-0.968283116817474,-0.114417485892773,0.222117990255356,-0.939950048923492,0.223407223820686,-0.258036851882935,-0.9994757771492,-0.0098966546356678,0.0308268778026104,-0.998073875904083,0.0396781228482723,-0.0476877205073833,-0.998229742050171,-0.0130765689536929,0.0580206699669361,-0.968283116817474,-0.114417485892773,0.222117990255356,-0.967961490154266,-0.0793962702155113,0.238215699791908,-0.93339204788208,0.181980043649673,-0.309293329715729,-0.990231692790985,-0.102475792169571,0.094551146030426,-0.999949932098389,-0.00697270547971129,0.00718695297837257,-0.987903296947479,0.141519010066986,-0.0633988156914711,-0.973330140113831,0.174746707081795,-0.148633226752281,-0.993180215358734,0.0699939727783203,-0.0932414308190346,-0.973330140113831,0.174746707081795,-0.148633226752281,-0.987903296947479,0.141519010066986,-0.0633988156914711,-0.990025699138641,-0.125611647963524,-0.0638019666075706,-0.957486629486084,-0.0534853115677834,-0.283476054668427,
- -0.93339204788208,0.181980043649673,-0.309293329715729,-0.976912021636963,-0.187617257237434,0.102188564836979,-0.960350751876831,0.0987197384238243,-0.260731339454651,-0.990231692790985,-0.102475792169571,0.094551146030426,-0.991780757904053,0.065781906247139,-0.10974346101284,-0.957486629486084,-0.0534853115677834,-0.283476054668427,-0.990025699138641,-0.125611647963524,-0.0638019666075706,-0.991243422031403,-0.104222126305103,0.0810807794332504,-0.992251396179199,0.122592382133007,-0.0202099122107029,-0.991780757904053,0.065781906247139,-0.10974346101284,-0.991243422031403,-0.104222126305103,0.0810807794332504,-0.996270954608917,0.0049278368242085,0.0861386805772781,-0.996671676635742,0.0801490843296051,0.0148880323395133,-0.939980328083038,0.223459661006927,0.257881253957748,-0.968319237232208,-0.114444449543953,-0.221946641802788,-0.967937409877777,-0.079568974673748,-0.238256096839905,-0.996936976909637,0.0600730329751968,0.0500780045986176,-0.939980328083038,0.223459661006927,0.257881253957748,-0.996936976909637,0.0600730329751968,0.0500780045986176,-0.99930214881897,0.0257163047790527,0.0270882453769445,-0.999490976333618,-0.00960336532443762,-0.030423104763031,-0.968319237232208,-0.114444449543953,-0.221946641802788,-0.990243256092072,-0.102496415376663,-0.0944080352783203,-0.958548188209534,0.139706045389175,0.248329699039459,-0.967937409877777,-0.079568974673748,-0.238256096839905,-0.999963343143463,-0.00607636291533709,-0.00603427644819021,-0.999290287494659,0.0266748312860727,0.0265951827168465,-0.986387848854065,0.137648642063141,0.0899543240666389,-0.98793089389801,0.141436278820038,0.0631527975201607,-0.986387848854065,0.137648642063141,0.0899543240666389,-0.973262071609497,-0.110063835978508,0.201610580086708,-0.990032017230988,-0.125583380460739,0.0637620165944099,-0.98793089389801,0.141436278820038,0.0631527975201607,-0.99397075176239,-0.108388110995293,0.0165615659207106,-0.958548188209534,0.139706045389175,0.248329699039459,-0.990243256092072,-0.102496415376663,-0.0944080352783203,-0.960366249084473,0.0987014099955559,0.260681420564651,
- -0.973262071609497,-0.110063835978508,0.201610580086708,-0.996920466423035,-0.04816759750247,-0.0618833601474762,-0.991273522377014,-0.104076892137527,-0.0808995366096497,-0.990032017230988,-0.125583380460739,0.0637620165944099,-0.999490976333618,-0.00960336532443762,-0.030423104763031,-0.99930214881897,0.0257163047790527,0.0270882453769445,-0.999290287494659,0.0266748312860727,0.0265951827168465,-0.999963343143463,-0.00607636291533709,-0.00603427644819021,-0.996920466423035,-0.04816759750247,-0.0618833601474762,-0.995832324028015,0.0778009369969368,-0.0475904606282711,-0.996660172939301,0.0803128406405449,-0.0147792864590883,-0.996274471282959,0.00500206323340535,-0.0860930010676384,-0.991273522377014,-0.104076892137527,-0.0808995366096497,-0.925892531871796,0.131370887160301,0.354210138320923,-0.0582424104213715,-0.777721464633942,0.62590503692627,-0.976912021636963,-0.187617257237434,0.102188564836979,-0.867037773132324,0.339127868413925,0.365017533302307,-0.992251396179199,0.122592382133007,-0.0202099122107029,-0.0788651406764984,0.95604532957077,0.282413721084595,-0.0579316578805447,-0.604666650295258,-0.794368982315063,-0.0163879953324795,-0.143608286976814,-0.989498853683472,-0.999180257320404,-0.0237778015434742,-0.0327615067362785,-0.936522722244263,0.176357254385948,-0.30302357673645,-0.988594770431519,0.105333410203457,0.107635073363781,-0.970047414302826,0.213403165340424,0.116048462688923,-0.944398760795593,0.184315249323845,-0.272284686565399,-0.861843883991241,-0.230494931340218,0.451771199703217,-0.972781479358673,0.203142657876015,0.111485935747623,-0.999180257320404,-0.0237778015434742,-0.0327615067362785,-0.970047414302826,0.213403165340424,0.116048462688923,-0.988594770431519,0.105333410203457,0.107635073363781,-0.861843883991241,-0.230494931340218,0.451771199703217,-0.944398760795593,0.184315249323845,-0.272284686565399,-0.986573457717896,0.0561296753585339,0.153369575738907,-0.997322678565979,-0.0162908155471087,0.071288675069809,-0.999180257320404,-0.0237778015434742,-0.0327615067362785,-0.972781479358673,0.203142657876015,0.111485935747623,
- -0.917701900005341,-0.181794241070747,0.353233635425568,-0.936522722244263,0.176357254385948,-0.30302357673645,-0.970047414302826,0.213403165340424,0.116048462688923,-0.0182773843407631,0.861386060714722,-0.507621943950653,-0.0507746301591396,0.983350455760956,0.174481242895126,-0.944398760795593,0.184315249323845,-0.272284686565399,-0.999180257320404,-0.0237778015434742,-0.0327615067362785,-0.0163879953324795,-0.143608286976814,-0.989498853683472,-0.0182773843407631,0.861386060714722,-0.507621943950653,-0.970047414302826,0.213403165340424,0.116048462688923,-0.944398760795593,0.184315249323845,-0.272284686565399,-0.0507746301591396,0.983350455760956,0.174481242895126,-0.0198231283575296,0.647413849830627,0.761880815029144,-0.986573457717896,0.0561296753585339,0.153369575738907,-0.917701900005341,-0.181794241070747,0.353233635425568,-0.0191677622497082,0.683857202529907,0.729364037513733,-0.996809005737305,0.0611658096313477,-0.051288366317749,-0.972781479358673,0.203142657876015,0.111485935747623,-0.0121534047648311,-0.0670955553650856,0.997672498226166,-0.0191677622497082,0.683857202529907,0.729364037513733,-0.917701900005341,-0.181794241070747,0.353233635425568,-0.0121534047648311,-0.0670955553650856,0.997672498226166,-0.972781479358673,0.203142657876015,0.111485935747623,-0.988594770431519,0.105333410203457,0.107635073363781,-0.0204849541187286,-0.608170449733734,0.79354202747345,-0.0204849541187286,-0.608170449733734,0.79354202747345,-0.988594770431519,0.105333410203457,0.107635073363781,-0.861843883991241,-0.230494931340218,0.451771199703217,-0.0510392636060715,-0.940089285373688,0.337086170911789,-0.997322678565979,-0.0162908155471087,0.071288675069809,-0.0523490384221077,-0.752404391765594,-0.656617999076843,-0.0510392636060715,-0.940089285373688,0.337086170911789,-0.861843883991241,-0.230494931340218,0.451771199703217,-0.996809005737305,0.0611658096313477,-0.051288366317749,-0.0191677622497082,0.683857202529907,0.729364037513733,-0.0528382696211338,0.879753291606903,-0.472485244274139,-0.996809005737305,0.0611658096313477,-0.051288366317749,
- -0.991319954395294,-0.0730313062667847,0.109321810305119,-0.936522722244263,0.176357254385948,-0.30302357673645,-0.917701900005341,-0.181794241070747,0.353233635425568,0.047853622585535,0.903000891208649,0.42696538567543,-0.027271680533886,0.890719473361969,0.453734666109085,-0.0535718128085136,0.875963091850281,0.479394197463989,-0.000692317727953196,0.879091799259186,0.476652145385742,0.00297386618331075,0.880923449993134,0.473249673843384,0.0630195811390877,0.883532047271729,0.464111775159836,-0.0579271800816059,-0.604408144950867,0.79456615447998,-0.936441123485565,0.176553219556808,0.303161472082138,-0.999169647693634,-0.0240727588534355,0.0328700058162212,-0.0164032783359289,-0.143332943320274,0.989538550376892,-0.988473892211914,0.105959974229336,-0.108128771185875,-0.862124919891357,-0.230433762073517,-0.4512659907341,-0.944271981716156,0.184555307030678,0.272561550140381,-0.970137476921082,0.213103726506233,-0.115845620632172,-0.972858190536499,0.20284104347229,-0.111365906894207,-0.988473892211914,0.105959974229336,-0.108128771185875,-0.970137476921082,0.213103726506233,-0.115845620632172,-0.999169647693634,-0.0240727588534355,0.0328700058162212,-0.862124919891357,-0.230433762073517,-0.4512659907341,-0.997345447540283,-0.0162941999733448,-0.0709693133831024,-0.986597239971161,0.0561311058700085,-0.153215751051903,-0.944271981716156,0.184555307030678,0.272561550140381,-0.999169647693634,-0.0240727588534355,0.0328700058162212,-0.936441123485565,0.176553219556808,0.303161472082138,-0.918573617935181,-0.170972988009453,-0.356357574462891,-0.972858190536499,0.20284104347229,-0.111365906894207,-0.970137476921082,0.213103726506233,-0.115845620632172,-0.944271981716156,0.184555307030678,0.272561550140381,-0.0507831051945686,0.983374714851379,-0.17434199154377,-0.0182980820536613,0.860632479190826,0.508897721767426,-0.999169647693634,-0.0240727588534355,0.0328700058162212,-0.970137476921082,0.213103726506233,-0.115845620632172,-0.0182980820536613,0.860632479190826,0.508897721767426,-0.0164032783359289,-0.143332943320274,0.989538550376892,
- -0.944271981716156,0.184555307030678,0.272561550140381,-0.986597239971161,0.0561311058700085,-0.153215751051903,-0.0198343712836504,0.647879004478455,-0.761484980583191,-0.0507831051945686,0.983374714851379,-0.17434199154377,-0.0545672997832298,0.686687409877777,-0.724901914596558,-0.918573617935181,-0.170972988009453,-0.356357574462891,-0.995830655097961,0.0113575905561447,-0.0905113443732262,-0.0537187717854977,0.996455073356628,0.0647439807653427,-0.972858190536499,0.20284104347229,-0.111365906894207,-0.918573617935181,-0.170972988009453,-0.356357574462891,-0.0545672997832298,0.686687409877777,-0.724901914596558,-0.0122263450175524,-0.0668581649661064,-0.997687518596649,-0.0122263450175524,-0.0668581649661064,-0.997687518596649,-0.0205286480486393,-0.607889473438263,-0.793756246566772,-0.988473892211914,0.105959974229336,-0.108128771185875,-0.972858190536499,0.20284104347229,-0.111365906894207,-0.0205286480486393,-0.607889473438263,-0.793756246566772,-0.0510860532522202,-0.940360486507416,-0.336321949958801,-0.862124919891357,-0.230433762073517,-0.4512659907341,-0.988473892211914,0.105959974229336,-0.108128771185875,-0.997345447540283,-0.0162941999733448,-0.0709693133831024,-0.862124919891357,-0.230433762073517,-0.4512659907341,-0.0510860532522202,-0.940360486507416,-0.336321949958801,-0.0523714572191238,-0.75301057100296,0.65592098236084,-0.997242152690887,0.0217678938060999,0.0709513276815414,-0.995830655097961,0.0113575905561447,-0.0905113443732262,-0.918573617935181,-0.170972988009453,-0.356357574462891,-0.936441123485565,0.176553219556808,0.303161472082138,-0.0272694323211908,0.890704333782196,-0.45376455783844,0.0478530935943127,0.902971029281616,-0.427028834819794,0.0630148127675056,0.883525013923645,-0.464125633239746,0.00297781894914806,0.880922853946686,-0.473250538110733,-0.000698365562129766,0.879091739654541,-0.476652204990387,-0.0535893365740776,0.875963807106018,-0.479390859603882,-0.0524327866733074,-0.989405333995819,-0.135380476713181,-0.997242152690887,0.0217678938060999,0.0709513276815414,-0.936441123485565,0.176553219556808,0.303161472082138,
- -0.0579271800816059,-0.604408144950867,0.79456615447998,-0.0221573691815138,-0.999754309654236,0.00061792554333806,-0.0649390742182732,-0.997888326644897,0.00140785274561495,-0.0693948864936829,-0.997589230537415,-0.000289140967652202,-0.0649262592196465,-0.9978888630867,-0.00151537638157606,-0.0221482422202826,-0.999754667282104,0.000346086657373235,-0.0194463059306145,-0.999810934066772,-0.000273922749329358,0.0437647253274918,-0.999039113521576,-0.00234205322340131,0.0544840060174465,-0.998514294624329,-0.000845710979774594,0.0113452943041921,-0.999935686588287,9.41372309171129e-006,-0.0194395370781422,-0.999810993671417,-0.000235987667110749,-0.991319954395294,-0.0730313062667847,0.109321810305119,-0.0524236224591732,-0.989226043224335,0.13668791949749,-0.0579316578805447,-0.604666650295258,-0.794368982315063,-0.936522722244263,0.176357254385948,-0.30302357673645,-0.884680390357971,0.206324145197868,0.418056130409241,-0.991319954395294,-0.0730313062667847,0.109321810305119,-0.996809005737305,0.0611658096313477,-0.051288366317749,-0.993327736854553,-0.00185509584844112,-0.115311086177826,-0.884680390357971,0.206324145197868,0.418056130409241,-0.529886484146118,-0.0576435178518295,0.846107304096222,-0.991319954395294,-0.0730313062667847,0.109321810305119,-0.993327736854553,-0.00185509584844112,-0.115311086177826,-0.996809005737305,0.0611658096313477,-0.051288366317749,-0.0528382696211338,0.879753291606903,-0.472485244274139,-0.999677419662476,-0.0142600918188691,-0.0210114922374487,-0.994764566421509,-0.102179735898972,0.00164780660998076,-0.992560207843781,-0.119377791881561,-0.0239391177892685,-0.999155163764954,-0.0222517549991608,-0.0345512703061104,-0.997900664806366,0.0647613704204559,0.000508454628288746,-0.999677419662476,-0.0142600918188691,-0.0210114922374487,-0.999155163764954,-0.0222517549991608,-0.0345512703061104,-0.997912049293518,0.0645884349942207,0.000254226848483086,-0.0705529898405075,0.0937907323241234,-0.993088901042938,-0.299530416727066,-0.18864718079567,-0.935250699520111,-0.31738069653511,-0.387022942304611,-0.865726709365845,
- -0.223856806755066,-0.0809877142310143,-0.971251308917999,-0.256680697202683,-0.014322604984045,-0.966390132904053,-0.27507358789444,-0.1115807518363,-0.954926192760468,-0.293304860591888,-0.124491766095161,-0.94787871837616,-0.39917653799057,-0.00727486843243241,-0.916845202445984,-0.297197729349136,0.0295757278800011,-0.954357862472534,-0.549428522586823,0.0183646902441978,-0.83533900976181,-0.592008888721466,-0.0143021615222096,-0.805804491043091,-0.256680697202683,-0.014322604984045,-0.966390132904053,-0.37284854054451,-0.0287487804889679,-0.927446842193604,-0.514973759651184,-0.0670827403664589,-0.85457706451416,-0.27507358789444,-0.1115807518363,-0.954926192760468,0.257249236106873,0.49012091755867,-0.832829177379608,0.127046197652817,0.383528143167496,-0.914748847484589,-0.0705529898405075,0.0937907323241234,-0.993088901042938,0.170009046792984,0.132195383310318,-0.976535379886627,0.0926550999283791,0.161547437310219,-0.982505738735199,-0.0776421576738358,0.083038367331028,-0.993517100811005,0.100175850093365,0.143159165978432,-0.984616756439209,0.216443777084351,0.0879295691847801,-0.972327291965485,0.119681306183338,0.105234079062939,-0.987219452857971,0.0926550999283791,0.161547437310219,-0.982505738735199,0.170009046792984,0.132195383310318,-0.976535379886627,-0.39917653799057,-0.00727486843243241,-0.916845202445984,0.207614660263062,0.11501581966877,-0.971425533294678,0.119698569178581,0.0844303518533707,-0.989213705062866,0.106571435928345,0.144453972578049,-0.983755886554718,-0.297197729349136,0.0295757278800011,-0.954357862472534,0.119698569178581,0.0844303518533707,-0.989213705062866,-0.0705529898405075,0.0937907323241234,-0.993088901042938,0.127046197652817,0.383528143167496,-0.914748847484589,-0.299530416727066,-0.18864718079567,-0.935250699520111,-0.0776421576738358,0.083038367331028,-0.993517100811005,-0.256680697202683,-0.014322604984045,-0.966390132904053,-0.223856806755066,-0.0809877142310143,-0.971251308917999,0.0926550999283791,0.161547437310219,-0.982505738735199,0.119681306183338,0.105234079062939,-0.987219452857971,
- -0.256680697202683,-0.014322604984045,-0.966390132904053,0.119681306183338,0.105234079062939,-0.987219452857971,0.0131802354007959,0.0796034783124924,-0.996739506721497,-0.37284854054451,-0.0287487804889679,-0.927446842193604,0.358845740556717,0.134103983640671,-0.923713088035584,0.119698569178581,0.0844303518533707,-0.989213705062866,0.207614660263062,0.11501581966877,-0.971425533294678,0.106571435928345,0.144453972578049,-0.983755886554718,0.119698569178581,0.0844303518533707,-0.989213705062866,0.358845740556717,0.134103983640671,-0.923713088035584,0.246296837925911,0.331998705863953,-0.910557329654694,-0.0539247021079063,0.118410922586918,-0.991499304771423,0.127046197652817,0.383528143167496,-0.914748847484589,0.257249236106873,0.49012091755867,-0.832829177379608,-0.299530416727066,-0.18864718079567,-0.935250699520111,0.127046197652817,0.383528143167496,-0.914748847484589,-0.0539247021079063,0.118410922586918,-0.991499304771423,-0.308430373668671,-0.130892261862755,-0.94219845533371,-0.31738069653511,-0.387022942304611,-0.865726709365845,-0.299530416727066,-0.18864718079567,-0.935250699520111,-0.308430373668671,-0.130892261862755,-0.94219845533371,-0.347514271736145,-0.26017352938652,-0.900857150554657,-0.256680697202683,-0.014322604984045,-0.966390132904053,0.119681306183338,0.105234079062939,-0.987219452857971,-0.37284854054451,-0.0287487804889679,-0.927446842193604,-0.37284854054451,-0.0287487804889679,-0.927446842193604,-0.39917653799057,-0.00727486843243241,-0.916845202445984,-0.514973759651184,-0.0670827403664589,-0.85457706451416,-0.514973759651184,-0.0670827403664589,-0.85457706451416,-0.39917653799057,-0.00727486843243241,-0.916845202445984,-0.592008888721466,-0.0143021615222096,-0.805804491043091,0.119698569178581,0.0844303518533707,-0.989213705062866,-0.297197729349136,0.0295757278800011,-0.954357862472534,-0.39917653799057,-0.00727486843243241,-0.916845202445984,-0.0776421576738358,0.083038367331028,-0.993517100811005,0.0926550999283791,0.161547437310219,-0.982505738735199,-0.256680697202683,-0.014322604984045,-0.966390132904053,
- 0.119681306183338,0.105234079062939,-0.987219452857971,0.207614660263062,0.11501581966877,-0.971425533294678,0.0131802354007959,0.0796034783124924,-0.996739506721497,0.358845740556717,0.134103983640671,-0.923713088035584,0.207614660263062,0.11501581966877,-0.971425533294678,0.119681306183338,0.105234079062939,-0.987219452857971,0.216443777084351,0.0879295691847801,-0.972327291965485,0.0131802354007959,0.0796034783124924,-0.996739506721497,0.207614660263062,0.11501581966877,-0.971425533294678,-0.39917653799057,-0.00727486843243241,-0.916845202445984,-0.37284854054451,-0.0287487804889679,-0.927446842193604,0.0131802354007959,0.0796034783124924,-0.996739506721497,-0.39917653799057,-0.00727486843243241,-0.916845202445984,-0.998171627521515,0.0220448356121778,-0.056279219686985,-0.0484127216041088,0.761405944824219,-0.646465241909027,-0.0514993071556091,0.975509703159332,0.213842585682869,-0.9704869389534,0.0097443638369441,0.240956664085388,-0.999159753322601,-0.0409839600324631,0.000405730243073776,-0.993692874908447,-0.000287805596599355,0.112136520445347,-0.994190871715546,0.0324853546917439,0.102611899375916,-0.0484127216041088,0.761405944824219,-0.646465241909027,-0.989791393280029,0.141296550631523,-0.0186609849333763,-0.997389733791351,-0.0700673609972,-0.0174424555152655,-0.0486468337476254,-0.58374547958374,-0.810478091239929,-0.9704869389534,0.0097443638369441,0.240956664085388,-0.958708047866821,0.283096224069595,0.0271179415285587,-0.977744102478027,-0.209397837519646,-0.0129960877820849,-0.856205642223358,0.00860725436359644,-0.516563236713409,-0.971071124076843,0.016243439167738,0.238237127661705,-0.999159753322601,-0.0409839600324631,0.000405730243073776,-0.994190871715546,0.0324853546917439,0.102611899375916,-0.993692874908447,-0.000287805596599355,0.112136520445347,-0.939953863620758,-0.0773243010044098,0.332427173852921,-0.994190871715546,0.0324853546917439,0.102611899375916,-0.00990075711160898,-0.0130737563595176,0.999865531921387,0.0299202241003513,-0.011741747148335,0.999483346939087,0.0325944237411022,0.001277617062442,0.999467849731445,
- 0.00423962436616421,-0.0128625137731433,0.999908328056335,-0.0106276320293546,-0.0198441855609417,0.99974662065506,-0.998171627521515,0.0220448356121778,-0.056279219686985,-0.989791393280029,0.141296550631523,-0.0186609849333763,-0.0484127216041088,0.761405944824219,-0.646465241909027,-0.0514993071556091,0.975509703159332,0.213842585682869,-0.958708047866821,0.283096224069595,0.0271179415285587,-0.9704869389534,0.0097443638369441,0.240956664085388,-0.0486468337476254,-0.58374547958374,-0.810478091239929,-0.999410927295685,-0.0190976355224848,-0.0285122413188219,-0.945645093917847,-0.00456866156309843,0.32516810297966,-0.0426942072808743,-0.997800350189209,0.050710953772068,-0.995577752590179,0.0118875727057457,0.0931862220168114,-0.945645093917847,-0.00456866156309843,0.32516810297966,-0.999410927295685,-0.0190976355224848,-0.0285122413188219,-0.996935665607452,0.0120450435206294,0.0772924497723579,-0.918258726596832,0.00465706363320351,-0.395953595638275,-0.999410927295685,-0.0190976355224848,-0.0285122413188219,-0.997389733791351,-0.0700673609972,-0.0174424555152655,-0.997413635253906,0.0718183964490891,-0.00285424129106104,-0.996935665607452,0.0120450435206294,0.0772924497723579,-0.0194395575672388,-0.518031120300293,0.855140864849091,-0.984310030937195,-0.172711402177811,0.036118071526289,-0.997528851032257,-0.0472673512995243,0.0519813224673271,-0.00426946580410004,-0.123072512447834,0.992388546466827,-0.997851371765137,0.0335650965571404,-0.0562680251896381,-0.993569254875183,-0.0437882505357265,0.104415960609913,-0.966782927513123,-0.0140555696561933,0.255211979150772,-0.951768100261688,-0.30675482749939,-0.00625946559011936,-0.991938710212708,-0.110784098505974,-0.0615202076733112,-0.982820749282837,-0.160620957612991,-0.090908020734787,-0.991339683532715,0.13128961622715,0.0029386633541435,-0.967319011688232,-0.253534197807312,0.00376873696222901,-0.945645093917847,-0.00456866156309843,0.32516810297966,-0.995577752590179,0.0118875727057457,0.0931862220168114,-0.997389733791351,-0.0700673609972,-0.0174424555152655,
- -0.999410927295685,-0.0190976355224848,-0.0285122413188219,-0.0486468337476254,-0.58374547958374,-0.810478091239929,-0.0194395575672388,-0.518031120300293,0.855140864849091,-0.967319011688232,-0.253534197807312,0.00376873696222901,-0.984310030937195,-0.172711402177811,0.036118071526289,-0.0194395575672388,-0.518031120300293,0.855140864849091,-0.0426942072808743,-0.997800350189209,0.050710953772068,-0.945645093917847,-0.00456866156309843,0.32516810297966,-0.967319011688232,-0.253534197807312,0.00376873696222901,-0.997749507427216,0.0668193697929382,-0.005582754034549,-0.968235969543457,0.249854490160942,-0.00958466064184904,-0.997905731201172,0.035883367061615,0.0538199171423912,-0.958997368812561,0.282617807388306,0.0212410315871239,-0.978494584560394,0.160198971629143,-0.129940882325172,-0.976810157299042,-0.187005415558815,-0.104263372719288,-0.955034911632538,0.295740455389023,-0.0211140271276236,-0.995855033397675,0.0273062419146299,0.086758978664875,-0.886076211929321,-0.35943728685379,-0.292700827121735,-0.999910831451416,0.0127016194164753,0.00411946419626474,-0.996538400650024,0.0828108489513397,-0.00732362549751997,-0.991954684257507,-0.126563355326653,0.00277699320577085,-0.968235969543457,0.249854490160942,-0.00958466064184904,-0.978494584560394,0.160198971629143,-0.129940882325172,-0.995855033397675,0.0273062419146299,0.086758978664875,-0.997905731201172,0.035883367061615,0.0538199171423912,-0.990893423557281,0.000462515745311975,-0.134647190570831,-0.999853610992432,0.0110432468354702,0.0130711309611797,-0.999910831451416,0.0127016194164753,0.00411946419626474,-0.886076211929321,-0.35943728685379,-0.292700827121735,-0.879193067550659,-0.0304146688431501,0.475493848323822,-0.979957520961761,-0.197054043412209,0.0292051918804646,-0.970484852790833,-0.127938911318779,0.20442758500576,-0.979957520961761,-0.197054043412209,0.0292051918804646,-0.757083773612976,0.0876457765698433,0.647412121295929,-0.970484852790833,-0.127938911318779,0.20442758500576,-0.861658811569214,0.240035280585289,0.447132140398026,-0.738808810710907,0.387981355190277,0.551028072834015,
- -0.985314905643463,0.159550622105598,0.0608116425573826,-0.758634567260742,-0.0135555015876889,0.651375293731689,-0.976362824440002,0.177844256162643,-0.122829519212246,-0.912713706493378,0.241719350218773,-0.329432129859924,-0.994190871715546,0.0324853546917439,0.102611899375916,-0.994190871715546,0.0324853546917439,0.102611899375916,-0.950799286365509,0.167288482189178,0.260759145021439,-0.992781221866608,0.00462566316127777,-0.119849495589733,-0.879193067550659,-0.0304146688431501,0.475493848323822,-0.970545887947083,-0.120800204575062,-0.208442136645317,-0.901287615299225,0.158569812774658,-0.403157770633698,-0.927483201026917,-0.181526988744736,-0.326837748289108,-0.703737437725067,-0.0820355787873268,-0.705708026885986,0.750491857528687,0.255812466144562,-0.609361946582794,0.791543662548065,0.0576738230884075,-0.60838508605957,-0.996436834335327,-0.0807903110980988,-0.0242185108363628,-0.995435357093811,0.045506089925766,-0.0838906988501549,-0.99714982509613,0.0742932707071304,-0.0131415715441108,-0.949065685272217,0.00290992762893438,0.315064907073975,-0.995105803012848,-0.0983192250132561,-0.00989488512277603,-0.995105803012848,-0.0983192250132561,-0.00989488512277603,-0.993385374546051,0.0117094926536083,-0.114229045808315,-0.995435357093811,0.045506089925766,-0.0838906988501549,-0.976040005683899,-0.179009526968002,-0.123698949813843,-0.845588862895966,0.397901952266693,0.355884164571762,-0.959540784358978,0.0178183931857347,-0.281005203723907,-0.85235333442688,0.522585690021515,0.0199482180178165,-0.913924694061279,0.399899005889893,-0.0694449841976166,-0.996086239814758,-0.0275310557335615,0.0839894637465477,-0.849684655666351,0.527186572551727,-0.0105100888758898,-0.838250398635864,0.011108216829598,0.545172393321991,-0.978854775428772,-0.0876966416835785,0.184804275631905,-0.976040005683899,-0.179009526968002,-0.123698949813843,-0.85235333442688,0.522585690021515,0.0199482180178165,-0.999077200889587,0.00152858393266797,-0.0429237559437752,-0.845588862895966,0.397901952266693,0.355884164571762,-0.913924694061279,0.399899005889893,-0.0694449841976166,
- -0.838250398635864,0.011108216829598,0.545172393321991,-0.959540784358978,0.0178183931857347,-0.281005203723907,-0.840430021286011,0.538327753543854,0.0622942894697189,-0.909021437168121,0.343594610691071,0.235844567418098,-0.91818630695343,-0.00607006344944239,0.396102339029312,-0.739277601242065,-0.184321403503418,0.64768373966217,-0.929266214370728,0.36513963341713,-0.0560122691094875,-0.978854775428772,-0.0876966416835785,0.184804275631905,-0.999077200889587,0.00152858393266797,-0.0429237559437752,-0.796191573143005,0.00387731450609863,-0.605032205581665,-0.739277601242065,-0.184321403503418,0.64768373966217,-0.997632920742035,0.0545493774116039,0.041868019849062,-0.951174974441528,0.275449305772781,-0.139261916279793,-0.840430021286011,0.538327753543854,0.0622942894697189,-0.991344630718231,0.12633253633976,0.0357199609279633,-0.9861079454422,-0.151927635073662,0.0671501681208611,-0.984809696674347,0.0396424122154713,-0.169050961732864,-0.97512823343277,0.22162763774395,0.00245617819018662,-0.981781601905823,-0.136858537793159,-0.131813138723373,-0.99185311794281,-0.112607449293137,-0.0595577657222748,-0.990119576454163,0.140205398201942,0.00237164134159684,-0.995614051818848,0.0167143698781729,0.0920498222112656,-0.996356189250946,-0.0842955410480499,-0.0129836751148105,-0.999542832374573,-0.0284722540527582,0.0101687721908093,-0.991344630718231,0.12633253633976,0.0357199609279633,-0.97512823343277,0.22162763774395,0.00245617819018662,-0.995614051818848,0.0167143698781729,0.0920498222112656,-0.982323706150055,-0.173262074589729,-0.0708551034331322,-0.981781601905823,-0.136858537793159,-0.131813138723373,-0.98994255065918,-0.0108669064939022,-0.141051605343819,-0.966782927513123,-0.0140555696561933,0.255211979150772,-0.993569254875183,-0.0437882505357265,0.104415960609913,-0.998715221881866,-0.0506621785461903,-0.00113873975351453,-0.98994255065918,-0.0108669064939022,-0.141051605343819,-0.996356189250946,-0.0842955410480499,-0.0129836751148105,-0.999016523361206,-0.0443399101495743,2.57407227763906e-005,-0.999136567115784,-0.00064303824910894,0.0415409170091152,
- -0.980614840984344,0.000819905661046505,0.195943728089333,-0.999190628528595,-0.0398570522665977,0.0054212692193687,-0.739277601242065,-0.184321403503418,0.64768373966217,-0.999190628528595,-0.0398570522665977,0.0054212692193687,-0.997632920742035,0.0545493774116039,0.041868019849062,-0.739277601242065,-0.184321403503418,0.64768373966217,-0.959364056587219,-0.0350381135940552,-0.279987514019012,-0.975493729114532,-0.220026388764381,-0.000712797569576651,-0.99185311794281,-0.112607449293137,-0.0595577657222748,-0.981781601905823,-0.136858537793159,-0.131813138723373,-0.982323706150055,-0.173262074589729,-0.0708551034331322,-0.959364056587219,-0.0350381135940552,-0.279987514019012,-0.981781601905823,-0.136858537793159,-0.131813138723373,-0.938925683498383,-0.34373214840889,-0.0163311269134283,-0.985361039638519,-0.0804628953337669,0.150297164916992,-0.9861079454422,-0.151927635073662,0.0671501681208611,-0.991344630718231,0.12633253633976,0.0357199609279633,-0.990136027336121,0.139282405376434,0.0151982856914401,-0.938925683498383,-0.34373214840889,-0.0163311269134283,-0.991344630718231,0.12633253633976,0.0357199609279633,-0.999542832374573,-0.0284722540527582,0.0101687721908093,-0.796191573143005,0.00387731450609863,-0.605032205581665,-0.999077200889587,0.00152858393266797,-0.0429237559437752,-0.990136027336121,0.139282405376434,0.0151982856914401,-0.985913991928101,0.00335665489546955,0.167219132184982,-0.739277601242065,-0.184321403503418,0.64768373966217,-0.91818630695343,-0.00607006344944239,0.396102339029312,-0.980614840984344,0.000819905661046505,0.195943728089333,-0.840430021286011,0.538327753543854,0.0622942894697189,-0.951174974441528,0.275449305772781,-0.139261916279793,-0.940839111804962,0.336829483509064,-0.0369824580848217,-0.514485716819763,0.421204090118408,-0.746921360492706,-0.799519062042236,-0.0105100860819221,-0.600548923015594,-0.895548284053802,-0.444925934076309,-0.00583961978554726,-0.996086239814758,-0.0275310557335615,0.0839894637465477,-0.913924694061279,0.399899005889893,-0.0694449841976166,
- -0.950938701629639,-0.0211992468684912,0.308652132749558,-0.799519062042236,-0.0105100860819221,-0.600548923015594,-0.913924694061279,0.399899005889893,-0.0694449841976166,-0.845588862895966,0.397901952266693,0.355884164571762,-0.984141707420349,-0.176963821053505,0.0121989911422133,-0.950938701629639,-0.0211992468684912,0.308652132749558,-0.845588862895966,0.397901952266693,0.355884164571762,-0.976040005683899,-0.179009526968002,-0.123698949813843,-0.901820600032806,0.432048290967941,-0.00733754225075245,-0.984141707420349,-0.176963821053505,0.0121989911422133,-0.976040005683899,-0.179009526968002,-0.123698949813843,-0.978854775428772,-0.0876966416835785,0.184804275631905,-0.892015516757965,0.0217786300927401,0.451479911804199,-0.901820600032806,0.432048290967941,-0.00733754225075245,-0.978854775428772,-0.0876966416835785,0.184804275631905,-0.929266214370728,0.36513963341713,-0.0560122691094875,-0.514485716819763,0.421204090118408,-0.746921360492706,-0.909003257751465,0.0242862813174725,-0.416080683469772,-0.909021437168121,0.343594610691071,0.235844567418098,-0.840430021286011,0.538327753543854,0.0622942894697189,-0.514485716819763,0.421204090118408,-0.746921360492706,-0.989680588245392,0.142404571175575,-0.0159189477562904,-0.951855897903442,0.00699066044762731,-0.306466192007065,-0.514485716819763,0.421204090118408,-0.746921360492706,-0.940839111804962,0.336829483509064,-0.0369824580848217,-0.989680588245392,0.142404571175575,-0.0159189477562904,-0.886076211929321,-0.35943728685379,-0.292700827121735,-0.991954684257507,-0.126563355326653,0.00277699320577085,-0.990893423557281,0.000462515745311975,-0.134647190570831,-0.951855897903442,0.00699066044762731,-0.306466192007065,-0.909003257751465,0.0242862813174725,-0.416080683469772,-0.514485716819763,0.421204090118408,-0.746921360492706,-0.987981379032135,0.153437420725822,-0.0186991505324841,-0.960784256458282,-0.00997326150536537,-0.277117669582367,-0.99714982509613,0.0742932707071304,-0.0131415715441108,-0.995435357093811,0.045506089925766,-0.0838906988501549,-0.993385374546051,0.0117094926536083,-0.114229045808315,
- -0.987981379032135,0.153437420725822,-0.0186991505324841,-0.995435357093811,0.045506089925766,-0.0838906988501549,-0.758634567260742,-0.0135555015876889,0.651375293731689,-0.985314905643463,0.159550622105598,0.0608116425573826,-0.960464596748352,-0.27749690413475,-0.0224357508122921,-0.957306981086731,-0.0331553928554058,-0.287165760993958,-0.994190871715546,0.0324853546917439,0.102611899375916,-0.992781221866608,0.00462566316127777,-0.119849495589733,-0.995005965232849,-0.0205285754054785,-0.0976810306310654,-0.995005965232849,-0.0205285754054785,-0.0976810306310654,-0.99998015165329,-0.000308563670841977,-0.00628708023577929,-0.994190871715546,0.0324853546917439,0.102611899375916,-0.946959972381592,0.261211335659027,0.187177672982216,-0.999647796154022,-0.0265174861997366,0.00108844658825547,-0.996538400650024,0.0828108489513397,-0.00732362549751997,-0.999910831451416,0.0127016194164753,0.00411946419626474,-0.999602079391479,-0.00638397503644228,0.0274730585515499,-0.999647796154022,-0.0265174861997366,0.00108844658825547,-0.946959972381592,0.261211335659027,0.187177672982216,-0.999602079391479,-0.00638397503644228,0.0274730585515499,-0.946959972381592,0.261211335659027,0.187177672982216,-0.999910831451416,0.0127016194164753,0.00411946419626474,-0.999853610992432,0.0110432468354702,0.0130711309611797,-0.856205642223358,0.00860725436359644,-0.516563236713409,-0.977744102478027,-0.209397837519646,-0.0129960877820849,-0.738808810710907,0.387981355190277,0.551028072834015,-0.18994714319706,0.0626522973179817,-0.979793250560761,-0.912713706493378,0.241719350218773,-0.329432129859924,-0.971071124076843,0.016243439167738,0.238237127661705,-0.994190871715546,0.0324853546917439,0.102611899375916,-0.994190871715546,0.0324853546917439,0.102611899375916,-0.939953863620758,-0.0773243010044098,0.332427173852921,-0.950799286365509,0.167288482189178,0.260759145021439,-0.681457221508026,0.396320760250092,-0.61526083946228,-0.947849273681641,0.128182008862495,-0.291806787252426,-0.970545887947083,-0.120800204575062,-0.208442136645317,
- -0.970484852790833,-0.127938911318779,0.20442758500576,-0.918258726596832,0.00465706363320351,-0.395953595638275,-0.9996337890625,0.0269820559769869,0.00203123292885721,-0.967319011688232,-0.253534197807312,0.00376873696222901,-0.995577752590179,0.0118875727057457,0.0931862220168114,-0.9996337890625,0.0269820559769869,0.00203123292885721,-0.996436834335327,-0.0807903110980988,-0.0242185108363628,-0.997528851032257,-0.0472673512995243,0.0519813224673271,-0.984310030937195,-0.172711402177811,0.036118071526289,-0.967319011688232,-0.253534197807312,0.00376873696222901,-0.998715221881866,-0.0506621785461903,-0.00113873975351453,-0.985913991928101,0.00335665489546955,0.167219132184982,-0.967351496219635,-0.132399097084999,0.216105431318283,-0.993147730827332,0.116355471313,-0.0109093012288213,-0.949078738689423,0.00665478920564055,-0.314968794584274,-0.993569254875183,-0.0437882505357265,0.104415960609913,-0.997851371765137,0.0335650965571404,-0.0562680251896381,-0.973982036113739,-0.226624980568886,-0.000236621737712994,-0.982820749282837,-0.160620957612991,-0.090908020734787,-0.991938710212708,-0.110784098505974,-0.0615202076733112,-0.951174974441528,0.275449305772781,-0.139261916279793,-0.997632920742035,0.0545493774116039,0.041868019849062,-0.849483489990234,0.527509927749634,-0.0105367060750723,-0.966894149780273,0.247033506631851,0.0639542043209076,-0.940839111804962,0.336829483509064,-0.0369824580848217,-0.951174974441528,0.275449305772781,-0.139261916279793,-0.966894149780273,0.247033506631851,0.0639542043209076,-0.958769977092743,-0.283521980047226,-0.0193742383271456,-0.909021437168121,0.343594610691071,0.235844567418098,-0.909003257751465,0.0242862813174725,-0.416080683469772,-0.892015516757965,0.0217786300927401,0.451479911804199,-0.929266214370728,0.36513963341713,-0.0560122691094875,-0.91818630695343,-0.00607006344944239,0.396102339029312,-0.909021437168121,0.343594610691071,0.235844567418098,-0.929266214370728,0.36513963341713,-0.0560122691094875,-0.796191573143005,0.00387731450609863,-0.605032205581665,-0.99714982509613,0.0742932707071304,-0.0131415715441108,
- -0.960784256458282,-0.00997326150536537,-0.277117669582367,-0.999821364879608,0.0188560001552105,-0.0012884073657915,-0.993387639522552,-0.0349789001047611,-0.109350644052029,-0.998504817485809,-0.0536751970648766,-0.0103504694998264,-0.999647796154022,-0.0265174861997366,0.00108844658825547,-0.999602079391479,-0.00638397503644228,0.0274730585515499,-0.99998015165329,-0.000308563670841977,-0.00628708023577929,-0.976362824440002,0.177844256162643,-0.122829519212246,-0.994190871715546,0.0324853546917439,0.102611899375916,-0.996538400650024,0.0828108489513397,-0.00732362549751997,-0.997749507427216,0.0668193697929382,-0.005582754034549,-0.958997368812561,0.282617807388306,0.0212410315871239,-0.991954684257507,-0.126563355326653,0.00277699320577085,-0.990893423557281,0.000462515745311975,-0.134647190570831,-0.991954684257507,-0.126563355326653,0.00277699320577085,-0.901820600032806,0.432048290967941,-0.00733754225075245,-0.892015516757965,0.0217786300927401,0.451479911804199,-0.999821364879608,0.0188560001552105,-0.0012884073657915,-0.949065685272217,0.00290992762893438,0.315064907073975,-0.99714982509613,0.0742932707071304,-0.0131415715441108,-0.98994255065918,-0.0108669064939022,-0.141051605343819,-0.998715221881866,-0.0506621785461903,-0.00113873975351453,-0.967351496219635,-0.132399097084999,0.216105431318283,-0.967351496219635,-0.132399097084999,0.216105431318283,-0.99146443605423,-0.118828020989895,0.0536489896476269,-0.996356189250946,-0.0842955410480499,-0.0129836751148105,-0.98994255065918,-0.0108669064939022,-0.141051605343819,-0.99146443605423,-0.118828020989895,0.0536489896476269,-0.999542832374573,-0.0284722540527582,0.0101687721908093,-0.996356189250946,-0.0842955410480499,-0.0129836751148105,-0.990136027336121,0.139282405376434,0.0151982856914401,-0.999542832374573,-0.0284722540527582,0.0101687721908093,-0.99146443605423,-0.118828020989895,0.0536489896476269,-0.985913991928101,0.00335665489546955,0.167219132184982,-0.990136027336121,0.139282405376434,0.0151982856914401,-0.99146443605423,-0.118828020989895,0.0536489896476269,
- -0.967351496219635,-0.132399097084999,0.216105431318283,-0.998715221881866,-0.0506621785461903,-0.00113873975351453,-0.993569254875183,-0.0437882505357265,0.104415960609913,-0.949078738689423,0.00665478920564055,-0.314968794584274,-0.985913991928101,0.00335665489546955,0.167219132184982,-0.901287615299225,0.158569812774658,-0.403157770633698,-0.915392637252808,0.0859805569052696,0.393273055553436,-0.996149182319641,0.0500656552612782,-0.0719728767871857,-0.927483201026917,-0.181526988744736,-0.326837748289108,-0.901287615299225,0.158569812774658,-0.403157770633698,-0.996149182319641,0.0500656552612782,-0.0719728767871857,-0.993387639522552,-0.0349789001047611,-0.109350644052029,-0.927483201026917,-0.181526988744736,-0.326837748289108,-0.996149182319641,0.0500656552612782,-0.0719728767871857,-0.996149182319641,0.0500656552612782,-0.0719728767871857,-0.99904590845108,0.038843147456646,-0.0199669506400824,-0.998504817485809,-0.0536751970648766,-0.0103504694998264,-0.993387639522552,-0.0349789001047611,-0.109350644052029,-0.982834696769714,-0.0463374219834805,-0.178574696183205,-0.998504817485809,-0.0536751970648766,-0.0103504694998264,-0.99904590845108,0.038843147456646,-0.0199669506400824,-0.99904590845108,0.038843147456646,-0.0199669506400824,-0.916040778160095,-0.375608503818512,0.140668466687202,-0.982834696769714,-0.0463374219834805,-0.178574696183205,-0.99904590845108,0.038843147456646,-0.0199669506400824,-0.965550780296326,0.208575561642647,0.155588909983635,-0.916040778160095,-0.375608503818512,0.140668466687202,-0.997413635253906,0.0718183964490891,-0.00285424129106104,-0.965550780296326,0.208575561642647,0.155588909983635,-0.99904590845108,0.038843147456646,-0.0199669506400824,-0.996935665607452,0.0120450435206294,0.0772924497723579,-0.997413635253906,0.0718183964490891,-0.00285424129106104,-0.99904590845108,0.038843147456646,-0.0199669506400824,-0.996149182319641,0.0500656552612782,-0.0719728767871857,-0.915392637252808,0.0859805569052696,0.393273055553436,-0.996935665607452,0.0120450435206294,0.0772924497723579,
- -0.996149182319641,0.0500656552612782,-0.0719728767871857,-0.918258726596832,0.00465706363320351,-0.395953595638275,-0.947849273681641,0.128182008862495,-0.291806787252426,-0.681457221508026,0.396320760250092,-0.61526083946228,-0.681457221508026,0.396320760250092,-0.61526083946228,-0.9996337890625,0.0269820559769869,0.00203123292885721,-0.918258726596832,0.00465706363320351,-0.395953595638275,-0.681457221508026,0.396320760250092,-0.61526083946228,-0.704641222953796,0.26050141453743,-0.660014986991882,-0.9996337890625,0.0269820559769869,0.00203123292885721,-0.970484852790833,-0.127938911318779,0.20442758500576,-0.757083773612976,0.0876457765698433,0.647412121295929,-0.704641222953796,0.26050141453743,-0.660014986991882,-0.681457221508026,0.396320760250092,-0.61526083946228,-0.970545887947083,-0.120800204575062,-0.208442136645317,-0.947849273681641,0.128182008862495,-0.291806787252426,-0.915392637252808,0.0859805569052696,0.393273055553436,-0.901287615299225,0.158569812774658,-0.403157770633698,-0.970484852790833,-0.127938911318779,0.20442758500576,-0.970545887947083,-0.120800204575062,-0.208442136645317,-0.879193067550659,-0.0304146688431501,0.475493848323822,-0.979957520961761,-0.197054043412209,0.0292051918804646,-0.997135162353516,0.0259775333106518,0.0710383206605911,-0.755379676818848,0.330370664596558,0.565912365913391,-0.757083773612976,0.0876457765698433,0.647412121295929,-0.991339683532715,0.13128961622715,0.0029386633541435,-0.982820749282837,-0.160620957612991,-0.090908020734787,-0.997851371765137,0.0335650965571404,-0.0562680251896381,-0.951768100261688,-0.30675482749939,-0.00625946559011936,-0.995614051818848,0.0167143698781729,0.0920498222112656,-0.990119576454163,0.140205398201942,0.00237164134159684,-0.999997496604919,-0.00133794767316431,-0.00179722520988435,-0.999998331069946,-0.000618932710494846,-0.00178395328111947,-0.9861079454422,-0.151927635073662,0.0671501681208611,-0.982323706150055,-0.173262074589729,-0.0708551034331322,-0.995614051818848,0.0167143698781729,0.0920498222112656,-0.984809696674347,0.0396424122154713,-0.169050961732864,
- -0.985361039638519,-0.0804628953337669,0.150297164916992,-0.959364056587219,-0.0350381135940552,-0.279987514019012,-0.982323706150055,-0.173262074589729,-0.0708551034331322,-0.9861079454422,-0.151927635073662,0.0671501681208611,-0.838250398635864,0.011108216829598,0.545172393321991,-0.849684655666351,0.527186572551727,-0.0105100888758898,-0.975493729114532,-0.220026388764381,-0.000712797569576651,-0.959364056587219,-0.0350381135940552,-0.279987514019012,-0.973982036113739,-0.226624980568886,-0.000236621737712994,-0.993147730827332,0.116355471313,-0.0109093012288213,-0.997851371765137,0.0335650965571404,-0.0562680251896381,-0.982820749282837,-0.160620957612991,-0.090908020734787,-0.990893423557281,0.000462515745311975,-0.134647190570831,-0.949065685272217,0.00290992762893438,0.315064907073975,-0.999821364879608,0.0188560001552105,-0.0012884073657915,-0.999853610992432,0.0110432468354702,0.0130711309611797,-0.995105803012848,-0.0983192250132561,-0.00989488512277603,-0.949065685272217,0.00290992762893438,0.315064907073975,-0.951855897903442,0.00699066044762731,-0.306466192007065,-0.989680588245392,0.142404571175575,-0.0159189477562904,-0.99398410320282,0.0183852892369032,-0.107970766723156,-0.993385374546051,0.0117094926536083,-0.114229045808315,-0.995105803012848,-0.0983192250132561,-0.00989488512277603,-0.991686224937439,0.128437682986259,-0.00787956826388836,-0.987981379032135,0.153437420725822,-0.0186991505324841,-0.994773983955383,-0.0953178331255913,-0.0365951396524906,-0.997135162353516,0.0259775333106518,0.0710383206605911,-0.979957520961761,-0.197054043412209,0.0292051918804646,-0.979957520961761,-0.197054043412209,0.0292051918804646,-0.879193067550659,-0.0304146688431501,0.475493848323822,-0.960784256458282,-0.00997326150536537,-0.277117669582367,-0.987981379032135,0.153437420725822,-0.0186991505324841,-0.993387639522552,-0.0349789001047611,-0.109350644052029,-0.879193067550659,-0.0304146688431501,0.475493848323822,-0.927483201026917,-0.181526988744736,-0.326837748289108,-0.989791393280029,0.141296550631523,-0.0186609849333763,
- -0.999159753322601,-0.0409839600324631,0.000405730243073776,-0.997413635253906,0.0718183964490891,-0.00285424129106104,-0.997389733791351,-0.0700673609972,-0.0174424555152655,-0.989791393280029,0.141296550631523,-0.0186609849333763,-0.998171627521515,0.0220448356121778,-0.056279219686985,-0.993692874908447,-0.000287805596599355,0.112136520445347,-0.999159753322601,-0.0409839600324631,0.000405730243073776,-0.998171627521515,0.0220448356121778,-0.056279219686985,-0.9704869389534,0.0097443638369441,0.240956664085388,-0.856205642223358,0.00860725436359644,-0.516563236713409,-0.993692874908447,-0.000287805596599355,0.112136520445347,-0.950799286365509,0.167288482189178,0.260759145021439,-0.939953863620758,-0.0773243010044098,0.332427173852921,-0.856205642223358,0.00860725436359644,-0.516563236713409,-0.861658811569214,0.240035280585289,0.447132140398026,-0.992781221866608,0.00462566316127777,-0.119849495589733,-0.950799286365509,0.167288482189178,0.260759145021439,-0.861658811569214,0.240035280585289,0.447132140398026,-0.758634567260742,-0.0135555015876889,0.651375293731689,-0.995005965232849,-0.0205285754054785,-0.0976810306310654,-0.992781221866608,0.00462566316127777,-0.119849495589733,-0.758634567260742,-0.0135555015876889,0.651375293731689,-0.957306981086731,-0.0331553928554058,-0.287165760993958,-0.986315488815308,-0.0540000908076763,-0.155774503946304,-0.986315488815308,-0.0540000908076763,-0.155774503946304,-0.938713133335114,-0.343143910169601,-0.0327080637216568,-0.99998015165329,-0.000308563670841977,-0.00628708023577929,-0.995005965232849,-0.0205285754054785,-0.0976810306310654,-0.99998015165329,-0.000308563670841977,-0.00628708023577929,-0.998504817485809,-0.0536751970648766,-0.0103504694998264,-0.982834696769714,-0.0463374219834805,-0.178574696183205,-0.976362824440002,0.177844256162643,-0.122829519212246,-0.982834696769714,-0.0463374219834805,-0.178574696183205,-0.916040778160095,-0.375608503818512,0.140668466687202,-0.912713706493378,0.241719350218773,-0.329432129859924,-0.976362824440002,0.177844256162643,-0.122829519212246,
- -0.916040778160095,-0.375608503818512,0.140668466687202,-0.965550780296326,0.208575561642647,0.155588909983635,-0.971071124076843,0.016243439167738,0.238237127661705,-0.912713706493378,0.241719350218773,-0.329432129859924,-0.951768100261688,-0.30675482749939,-0.00625946559011936,-0.966782927513123,-0.0140555696561933,0.255211979150772,-0.999931037425995,-0.00020212066010572,-0.0117405420169234,-0.999708592891693,0.0241194553673267,-0.00102003244683146,-0.991339683532715,0.13128961622715,0.0029386633541435,-0.951768100261688,-0.30675482749939,-0.00625946559011936,-0.999708592891693,0.0241194553673267,-0.00102003244683146,-0.99351841211319,0.113646909594536,-0.002353799296543,-0.993532538414001,0.113053031265736,-0.0105906892567873,-0.849483489990234,0.527509927749634,-0.0105367060750723,-0.997632920742035,0.0545493774116039,0.041868019849062,-0.999190628528595,-0.0398570522665977,0.0054212692193687,-0.993147730827332,0.116355471313,-0.0109093012288213,-0.973982036113739,-0.226624980568886,-0.000236621737712994,-0.999190628528595,-0.0398570522665977,0.0054212692193687,-0.980614840984344,0.000819905661046505,0.195943728089333,-0.949078738689423,0.00665478920564055,-0.314968794584274,-0.993147730827332,0.116355471313,-0.0109093012288213,-0.985913991928101,0.00335665489546955,0.167219132184982,-0.949078738689423,0.00665478920564055,-0.314968794584274,-0.980614840984344,0.000819905661046505,0.195943728089333,-0.91818630695343,-0.00607006344944239,0.396102339029312,-0.796191573143005,0.00387731450609863,-0.605032205581665,-0.991686224937439,0.128437682986259,-0.00787956826388836,-0.995105803012848,-0.0983192250132561,-0.00989488512277603,-0.989680588245392,0.142404571175575,-0.0159189477562904,-0.940839111804962,0.336829483509064,-0.0369824580848217,-0.958769977092743,-0.283521980047226,-0.0193742383271456,-0.995855033397675,0.0273062419146299,0.086758978664875,-0.955034911632538,0.295740455389023,-0.0211140271276236,-0.895548284053802,-0.444925934076309,-0.00583961978554726,-0.799519062042236,-0.0105100860819221,-0.600548923015594,
- -0.997905731201172,0.035883367061615,0.0538199171423912,-0.995855033397675,0.0273062419146299,0.086758978664875,-0.799519062042236,-0.0105100860819221,-0.600548923015594,-0.950938701629639,-0.0211992468684912,0.308652132749558,-0.958997368812561,0.282617807388306,0.0212410315871239,-0.997905731201172,0.035883367061615,0.0538199171423912,-0.950938701629639,-0.0211992468684912,0.308652132749558,-0.984141707420349,-0.176963821053505,0.0121989911422133,-0.991954684257507,-0.126563355326653,0.00277699320577085,-0.958997368812561,0.282617807388306,0.0212410315871239,-0.984141707420349,-0.176963821053505,0.0121989911422133,-0.901820600032806,0.432048290967941,-0.00733754225075245,-0.999647796154022,-0.0265174861997366,0.00108844658825547,-0.998504817485809,-0.0536751970648766,-0.0103504694998264,-0.99998015165329,-0.000308563670841977,-0.00628708023577929,-0.938713133335114,-0.343143910169601,-0.0327080637216568,-0.999602079391479,-0.00638397503644228,0.0274730585515499,-0.960784256458282,-0.00997326150536537,-0.277117669582367,-0.879193067550659,-0.0304146688431501,0.475493848323822,-0.993387639522552,-0.0349789001047611,-0.109350644052029,-0.999821364879608,0.0188560001552105,-0.0012884073657915,-0.960784256458282,-0.00997326150536537,-0.277117669582367,-0.999602079391479,-0.00638397503644228,0.0274730585515499,-0.999853610992432,0.0110432468354702,0.0130711309611797,-0.99398410320282,0.0183852892369032,-0.107970766723156,-0.994773983955383,-0.0953178331255913,-0.0365951396524906,-0.987981379032135,0.153437420725822,-0.0186991505324841,-0.993385374546051,0.0117094926536083,-0.114229045808315,-0.957306981086731,-0.0331553928554058,-0.287165760993958,-0.960464596748352,-0.27749690413475,-0.0224357508122921,-0.976810157299042,-0.187005415558815,-0.104263372719288,-0.978494584560394,0.160198971629143,-0.129940882325172,-0.986315488815308,-0.0540000908076763,-0.155774503946304,-0.957306981086731,-0.0331553928554058,-0.287165760993958,-0.978494584560394,0.160198971629143,-0.129940882325172,-0.968235969543457,0.249854490160942,-0.00958466064184904,
- -0.997749507427216,0.0668193697929382,-0.005582754034549,-0.938713133335114,-0.343143910169601,-0.0327080637216568,-0.986315488815308,-0.0540000908076763,-0.155774503946304,-0.968235969543457,0.249854490160942,-0.00958466064184904,-0.999647796154022,-0.0265174861997366,0.00108844658825547,-0.938713133335114,-0.343143910169601,-0.0327080637216568,-0.997749507427216,0.0668193697929382,-0.005582754034549,-0.996538400650024,0.0828108489513397,-0.00732362549751997,-0.951855897903442,0.00699066044762731,-0.306466192007065,-0.949065685272217,0.00290992762893438,0.315064907073975,-0.990893423557281,0.000462515745311975,-0.134647190570831,-0.892015516757965,0.0217786300927401,0.451479911804199,-0.909003257751465,0.0242862813174725,-0.416080683469772,-0.918258726596832,0.00465706363320351,-0.395953595638275,-0.996935665607452,0.0120450435206294,0.0772924497723579,-0.915392637252808,0.0859805569052696,0.393273055553436,-0.947849273681641,0.128182008862495,-0.291806787252426,-0.9996337890625,0.0269820559769869,0.00203123292885721,-0.704641222953796,0.26050141453743,-0.660014986991882,-0.996436834335327,-0.0807903110980988,-0.0242185108363628,-0.993692874908447,-0.000287805596599355,0.112136520445347,-0.856205642223358,0.00860725436359644,-0.516563236713409,-0.939953863620758,-0.0773243010044098,0.332427173852921,-0.997413635253906,0.0718183964490891,-0.00285424129106104,-0.999159753322601,-0.0409839600324631,0.000405730243073776,-0.971071124076843,0.016243439167738,0.238237127661705,-0.965550780296326,0.208575561642647,0.155588909983635,-0.984809696674347,0.0396424122154713,-0.169050961732864,-0.995614051818848,0.0167143698781729,0.0920498222112656,-0.999998331069946,-0.000618932710494846,-0.00178395328111947,-0.999999642372131,-0.000624816457275301,-0.000656788877677172,-0.999998331069946,-0.000599537685047835,0.00176582171116024,-0.999991893768311,-0.000576427381020039,0.00398030877113342,-0.998909592628479,0.000410005130106583,0.0466845706105232,-0.97512823343277,0.22162763774395,0.00245617819018662,-0.984809696674347,0.0396424122154713,-0.169050961732864,
- -0.998909592628479,0.000410005130106583,0.0466845706105232,-0.999957323074341,0.00919754151254892,-0.00081153039354831,-0.996356189250946,-0.0842955410480499,-0.0129836751148105,-0.97512823343277,0.22162763774395,0.00245617819018662,-0.999957323074341,0.00919754151254892,-0.00081153039354831,-0.998762965202332,-0.0497124791145325,-0.0011591276852414,-0.999016523361206,-0.0443399101495743,2.57407227763906e-005,-0.999077200889587,0.00152858393266797,-0.0429237559437752,-0.85235333442688,0.522585690021515,0.0199482180178165,-0.938925683498383,-0.34373214840889,-0.0163311269134283,-0.990136027336121,0.139282405376434,0.0151982856914401,-0.85235333442688,0.522585690021515,0.0199482180178165,-0.959540784358978,0.0178183931857347,-0.281005203723907,-0.985361039638519,-0.0804628953337669,0.150297164916992,-0.938925683498383,-0.34373214840889,-0.0163311269134283,-0.959540784358978,0.0178183931857347,-0.281005203723907,-0.838250398635864,0.011108216829598,0.545172393321991,-0.959364056587219,-0.0350381135940552,-0.279987514019012,-0.985361039638519,-0.0804628953337669,0.150297164916992,-0.999136567115784,-0.00064303824910894,0.0415409170091152,-0.99865198135376,4.72637730126735e-005,0.0519073009490967,-0.999048352241516,3.16324185405392e-005,0.0436165407299995,-0.999409556388855,1.41870859806659e-005,0.0343614891171455,-0.999931037425995,-0.00020212066010572,-0.0117405420169234,-0.966782927513123,-0.0140555696561933,0.255211979150772,-0.98994255065918,-0.0108669064939022,-0.141051605343819,-0.305080831050873,0.0167131144553423,-0.952179849147797,-0.330993562936783,-0.0148987025022507,-0.943515419960022,-0.493231266736984,-0.0625102519989014,-0.86764931678772,-0.455684870481491,-0.0492714196443558,-0.88877660036087,-0.455689460039139,-0.0492628067731857,-0.888774573802948,0.0170048717409372,0.0951903760433197,-0.995313882827759,0.0655101537704468,0.116965532302856,-0.990972995758057,-0.149645030498505,0.0619196705520153,-0.98679906129837,-0.139745816588402,0.0418957471847534,-0.989300668239594,-0.139745816588402,0.0418957471847534,-0.989300668239594,
- -0.149645030498505,0.0619196705520153,-0.98679906129837,-0.330993562936783,-0.0148987025022507,-0.943515419960022,-0.305080831050873,0.0167131144553423,-0.952179849147797,0.0655101537704468,0.116965532302856,-0.990972995758057,0.247151374816895,0.170290037989616,-0.95389598608017,0.311466544866562,0.184141889214516,-0.932244896888733,0.312100619077683,0.175856590270996,-0.933631420135498,0.137438133358955,0.124620772898197,-0.98263955116272,0.0655101537704468,0.116965532302856,-0.990972995758057,0.137438133358955,0.124620772898197,-0.98263955116272,-0.144160196185112,0.066215381026268,-0.98733651638031,-0.149645030498505,0.0619196705520153,-0.98679906129837,-0.330993562936783,-0.0148987025022507,-0.943515419960022,-0.149645030498505,0.0619196705520153,-0.98679906129837,-0.144160196185112,0.066215381026268,-0.98733651638031,-0.418786197900772,0.0267625153064728,-0.907690465450287,-0.493231266736984,-0.0625102519989014,-0.86764931678772,-0.330993562936783,-0.0148987025022507,-0.943515419960022,-0.418786197900772,0.0267625153064728,-0.907690465450287,-0.54267030954361,-0.0818383395671844,-0.8359494805336,-0.542610824108124,-0.0909458324313164,-0.835046410560608,0.223846420645714,0.137639477849007,-0.964856564998627,0.230504766106606,0.121898487210274,-0.965405881404877,0.247151374816895,0.170290037989616,-0.95389598608017,0.0655101537704468,0.116965532302856,-0.990972995758057,0.0170048717409372,0.0951903760433197,-0.995313882827759,0.100175850093365,0.143159165978432,-0.984616756439209,-0.0776421576738358,0.083038367331028,-0.993517100811005,-0.0539247021079063,0.118410922586918,-0.991499304771423,0.246296837925911,0.331998705863953,-0.910557329654694,-0.308430373668671,-0.130892261862755,-0.94219845533371,-0.0539247021079063,0.118410922586918,-0.991499304771423,-0.0776421576738358,0.083038367331028,-0.993517100811005,-0.223856806755066,-0.0809877142310143,-0.971251308917999,-0.347514271736145,-0.26017352938652,-0.900857150554657,-0.308430373668671,-0.130892261862755,-0.94219845533371,-0.223856806755066,-0.0809877142310143,-0.971251308917999,
- -0.293304860591888,-0.124491766095161,-0.94787871837616,-0.99669873714447,-0.0561605803668499,0.0586309246718884,-0.952726721763611,0.146853923797607,0.265980809926987,-0.892121016979218,0.0966380834579468,-0.441340237855911,-0.99878978729248,-0.0480356179177761,-0.0105659132823348,-0.99878978729248,-0.0480356179177761,-0.0105659132823348,-0.988916754722595,-0.146173670887947,0.0260180588811636,-0.986888706684113,-0.14306628704071,0.0747183710336685,-0.99669873714447,-0.0561605803668499,0.0586309246718884,-0.952726721763611,0.146853923797607,0.265980809926987,-0.99361389875412,0.0341719686985016,0.107534475624561,-0.946989774703979,0.298766225576401,0.118106745183468,-0.892121016979218,0.0966380834579468,-0.441340237855911,-0.0591869950294495,-0.624499797821045,0.778779089450836,-0.941444158554077,0.219822227954865,0.255658030509949,-0.999434888362885,0.0166822616010904,0.0291809681802988,-0.0139610609039664,-0.188582986593246,0.981958031654358,-0.999379336833954,0.0234155189245939,-0.0263178087770939,-0.910737812519073,-0.1967613697052,-0.363099992275238,-0.941193461418152,0.238598719239235,0.23921836912632,-0.918182909488678,0.354355961084366,-0.177121579647064,-0.939948916435242,0.316729187965393,-0.127195969223976,-0.999379336833954,0.0234155189245939,-0.0263178087770939,-0.918182909488678,0.354355961084366,-0.177121579647064,-0.999434888362885,0.0166822616010904,0.0291809681802988,-0.910737812519073,-0.1967613697052,-0.363099992275238,-0.970350563526154,0.0200631953775883,0.240867987275124,-0.981967926025391,0.104922413825989,-0.157259032130241,-0.941193461418152,0.238598719239235,0.23921836912632,-0.988916754722595,-0.146173670887947,0.0260180588811636,-0.992950201034546,-0.0293546095490456,-0.114839233458042,-0.931836426258087,0.177943259477615,0.316254615783691,-0.986888706684113,-0.14306628704071,0.0747183710336685,-0.999434888362885,0.0166822616010904,0.0291809681802988,-0.941444158554077,0.219822227954865,0.255658030509949,-0.972418010234833,-0.0799787193536758,-0.2191042304039,-0.939948916435242,0.316729187965393,-0.127195969223976,
- -0.918182909488678,0.354355961084366,-0.177121579647064,-0.941193461418152,0.238598719239235,0.23921836912632,-0.0526922084391117,0.995293319225311,-0.0813304334878922,-0.0173795036971569,0.797217547893524,0.603441894054413,-0.999434888362885,0.0166822616010904,0.0291809681802988,-0.918182909488678,0.354355961084366,-0.177121579647064,-0.0173795036971569,0.797217547893524,0.603441894054413,-0.0139610609039664,-0.188582986593246,0.981958031654358,-0.941193461418152,0.238598719239235,0.23921836912632,-0.981967926025391,0.104922413825989,-0.157259032130241,-0.0181405488401651,0.728149890899658,-0.68517792224884,-0.0526922084391117,0.995293319225311,-0.0813304334878922,-0.931836426258087,0.177943259477615,0.316254615783691,-0.992950201034546,-0.0293546095490456,-0.114839233458042,-0.993663191795349,0.103852562606335,-0.0429889895021915,-0.99358743429184,-0.109859816730022,-0.0267406683415174,-0.986888706684113,-0.14306628704071,0.0747183710336685,-0.931836426258087,0.177943259477615,0.316254615783691,-0.999589085578918,-0.0253010373562574,-0.0134688159450889,-0.9989053606987,-0.0462393499910831,-0.0070715588517487,-0.99669873714447,-0.0561605803668499,0.0586309246718884,-0.986888706684113,-0.14306628704071,0.0747183710336685,-0.9989053606987,-0.0462393499910831,-0.0070715588517487,-0.998913645744324,-0.0462250262498856,-0.0059065050445497,-0.998496115207672,-0.0547764822840691,-0.00222799018956721,-0.931836426258087,0.177943259477615,0.316254615783691,-0.99358743429184,-0.109859816730022,-0.0267406683415174,-0.999917030334473,-0.00927835796028376,0.00894275866448879,-0.999580085277557,-0.0253581088036299,-0.0140192033722997,-0.998768329620361,-0.0380993746221066,-0.031784575432539,-0.999467968940735,-0.0276776663959026,-0.0172526445239782,-0.999589085578918,-0.0253010373562574,-0.0134688159450889,-0.939948916435242,0.316729187965393,-0.127195969223976,-0.972418010234833,-0.0799787193536758,-0.2191042304039,-0.992950201034546,-0.0293546095490456,-0.114839233458042,-0.988916754722595,-0.146173670887947,0.0260180588811636,
- -0.988916754722595,-0.146173670887947,0.0260180588811636,-0.99878978729248,-0.0480356179177761,-0.0105659132823348,-0.999379336833954,0.0234155189245939,-0.0263178087770939,-0.939948916435242,0.316729187965393,-0.127195969223976,-0.99878978729248,-0.0480356179177761,-0.0105659132823348,-0.892121016979218,0.0966380834579468,-0.441340237855911,-0.910737812519073,-0.1967613697052,-0.363099992275238,-0.999379336833954,0.0234155189245939,-0.0263178087770939,-0.910737812519073,-0.1967613697052,-0.363099992275238,-0.569943845272064,-0.81648987531662,0.0922408401966095,-0.970350563526154,0.0200631953775883,0.240867987275124,-0.892121016979218,0.0966380834579468,-0.441340237855911,-0.946989774703979,0.298766225576401,0.118106745183468,-0.569943845272064,-0.81648987531662,0.0922408401966095,-0.910737812519073,-0.1967613697052,-0.363099992275238,-0.972418010234833,-0.0799787193536758,-0.2191042304039,-0.986778020858765,0.147077262401581,0.0680995360016823,-0.993663191795349,0.103852562606335,-0.0429889895021915,-0.992950201034546,-0.0293546095490456,-0.114839233458042,-0.986778020858765,0.147077262401581,0.0680995360016823,-0.972418010234833,-0.0799787193536758,-0.2191042304039,-0.941444158554077,0.219822227954865,0.255658030509949,-0.987574279308319,-0.0829838290810585,-0.133456766605377,0.0511695928871632,0.893468499183655,-0.446201711893082,0.0602709427475929,0.894202888011932,-0.443586081266403,0.00303185475058854,0.894955694675446,-0.446144938468933,-0.000366614520316944,0.894148647785187,-0.447770148515701,-0.0602443963289261,0.893808245658875,-0.444384425878525,-0.022299213334918,0.895121693611145,-0.445263981819153,-0.995715141296387,-0.0405843071639538,-0.0830919668078423,-0.998809099197388,-0.0477470345795155,0.0100300423800945,-0.848238110542297,0.324560672044754,0.41851207613945,-0.874265909194946,0.247114703059196,-0.417843818664551,-0.998809099197388,-0.0477470345795155,0.0100300423800945,-0.995715141296387,-0.0405843071639538,-0.0830919668078423,-0.984249949455261,-0.141416907310486,-0.106081873178482,-0.988937735557556,-0.145851701498032,-0.0270078666508198,
- -0.874265909194946,0.247114703059196,-0.417843818664551,-0.848238110542297,0.324560672044754,0.41851207613945,-0.94921088218689,0.304761826992035,-0.0782231464982033,-0.99876070022583,0.0195393301546574,-0.0457739941775799,-0.0592217594385147,-0.624275743961334,-0.778956115245819,-0.0139559917151928,-0.188562572002411,-0.981962025165558,-0.999434649944305,0.0166790559887886,-0.0291930679231882,-0.941476464271545,0.219865590333939,-0.25550177693367,-0.999350190162659,0.0240967534482479,0.0268073175102472,-0.918275415897369,0.354187846183777,0.176977798342705,-0.94116622209549,0.23870587348938,-0.239218801259995,-0.84379905462265,-0.266242325305939,0.465959459543228,-0.939931988716125,0.316778659820557,0.127197250723839,-0.999434649944305,0.0166790559887886,-0.0291930679231882,-0.918275415897369,0.354187846183777,0.176977798342705,-0.999350190162659,0.0240967534482479,0.0268073175102472,-0.84379905462265,-0.266242325305939,0.465959459543228,-0.94116622209549,0.23870587348938,-0.239218801259995,-0.981993198394775,0.104926019906998,0.157098636031151,-0.998154997825623,0.021192254498601,0.0568988621234894,-0.988937735557556,-0.145851701498032,-0.0270078666508198,-0.984249949455261,-0.141416907310486,-0.106081873178482,-0.953058302402496,0.118990696966648,-0.278426140546799,-0.992893397808075,-0.029537295922637,0.115283638238907,-0.953058302402496,0.118990696966648,-0.278426140546799,-0.995135486125946,-0.0784334689378738,-0.0596100389957428,-0.993609607219696,0.103845044970512,0.0442292056977749,-0.992893397808075,-0.029537295922637,0.115283638238907,-0.999434649944305,0.0166790559887886,-0.0291930679231882,-0.939931988716125,0.316778659820557,0.127197250723839,-0.972447574138641,-0.0799563154578209,0.218981400132179,-0.941476464271545,0.219865590333939,-0.25550177693367,-0.918275415897369,0.354187846183777,0.176977798342705,-0.0173972249031067,0.79620635509491,-0.604775011539459,-0.052681490778923,0.99534684419632,0.0806804895401001,-0.94116622209549,0.23870587348938,-0.239218801259995,-0.999434649944305,0.0166790559887886,-0.0291930679231882,
- -0.0139559917151928,-0.188562572002411,-0.981962025165558,-0.0173972249031067,0.79620635509491,-0.604775011539459,-0.918275415897369,0.354187846183777,0.176977798342705,-0.94116622209549,0.23870587348938,-0.239218801259995,-0.052681490778923,0.99534684419632,0.0806804895401001,-0.0181472096592188,0.728574752807617,0.684725880622864,-0.981993198394775,0.104926019906998,0.157098636031151,-0.984249949455261,-0.141416907310486,-0.106081873178482,-0.998181700706482,-0.0595888122916222,0.00908461958169937,-0.999291002750397,-0.0329040251672268,0.0183005966246128,-0.953058302402496,0.118990696966648,-0.278426140546799,-0.995715141296387,-0.0405843071639538,-0.0830919668078423,-0.996353924274445,-0.085262842476368,-0.00305130332708359,-0.998748540878296,-0.0484364703297615,0.0124642420560122,-0.998181700706482,-0.0595888122916222,0.00908461958169937,-0.984249949455261,-0.141416907310486,-0.106081873178482,-0.953058302402496,0.118990696966648,-0.278426140546799,-0.999291002750397,-0.0329040251672268,0.0183005966246128,-0.999325335025787,-0.0322298482060432,0.0176128502935171,-0.998785853385925,-0.040096964687109,0.0286204069852829,-0.999005615711212,-0.0363951697945595,0.02575140632689,-0.995135486125946,-0.0784334689378738,-0.0596100389957428,-0.939931988716125,0.316778659820557,0.127197250723839,-0.988937735557556,-0.145851701498032,-0.0270078666508198,-0.992893397808075,-0.029537295922637,0.115283638238907,-0.972447574138641,-0.0799563154578209,0.218981400132179,-0.988937735557556,-0.145851701498032,-0.0270078666508198,-0.939931988716125,0.316778659820557,0.127197250723839,-0.999350190162659,0.0240967534482479,0.0268073175102472,-0.998809099197388,-0.0477470345795155,0.0100300423800945,-0.998809099197388,-0.0477470345795155,0.0100300423800945,-0.999350190162659,0.0240967534482479,0.0268073175102472,-0.84379905462265,-0.266242325305939,0.465959459543228,-0.848238110542297,0.324560672044754,0.41851207613945,-0.848238110542297,0.324560672044754,0.41851207613945,-0.84379905462265,-0.266242325305939,0.465959459543228,-0.998154997825623,0.021192254498601,0.0568988621234894,
- -0.848238110542297,0.324560672044754,0.41851207613945,-0.998154997825623,0.021192254498601,0.0568988621234894,-0.536397337913513,-0.736004650592804,-0.413007408380508,-0.94921088218689,0.304761826992035,-0.0782231464982033,-0.999940752983093,0.0103829074651003,-0.00329827005043626,-0.941476464271545,0.219865590333939,-0.25550177693367,-0.972447574138641,-0.0799563154578209,0.218981400132179,-0.996474146842957,0.070884607732296,0.0448875613510609,-0.0222946032881737,0.895038962364197,0.445430636405945,-0.0602656044065952,0.893730819225311,0.444537132978439,-0.000370954890968278,0.89414918422699,0.447769284248352,0.00302910408936441,0.894894957542419,0.446266740560532,0.0603036545217037,0.894106268882751,0.443776339292526,0.0511662662029266,0.893412113189697,0.446314692497253,-0.0568758547306061,-0.993105113506317,0.102505333721638,-0.0592217594385147,-0.624275743961334,-0.778956115245819,-0.941476464271545,0.219865590333939,-0.25550177693367,-0.999940752983093,0.0103829074651003,-0.00329827005043626,-0.972447574138641,-0.0799563154578209,0.218981400132179,-0.992893397808075,-0.029537295922637,0.115283638238907,-0.993609607219696,0.103845044970512,0.0442292056977749,-0.996474146842957,0.070884607732296,0.0448875613510609,-0.987574279308319,-0.0829838290810585,-0.133456766605377,-0.941444158554077,0.219822227954865,0.255658030509949,-0.0591869950294495,-0.624499797821045,0.778779089450836,-0.039448045194149,-0.688800632953644,-0.723876714706421,-0.87064117193222,0.282067269086838,-0.403016269207001,-0.994912326335907,0.100740715861321,0.000972264329902828,-0.986778020858765,0.147077262401581,0.0680995360016823,-0.987574279308319,-0.0829838290810585,-0.133456766605377,-0.994428277015686,-0.102873988449574,-0.0230086576193571,-0.999407768249512,-0.0302477553486824,0.0164108518511057,-0.999917030334473,-0.00927835796028376,0.00894275866448879,-0.99358743429184,-0.109859816730022,-0.0267406683415174,-0.87064117193222,0.282067269086838,-0.403016269207001,-0.987574279308319,-0.0829838290810585,-0.133456766605377,-0.039448045194149,-0.688800632953644,-0.723876714706421,
- -0.96931529045105,-0.0635126382112503,0.237474203109741,-0.993663191795349,0.103852562606335,-0.0429889895021915,-0.986778020858765,0.147077262401581,0.0680995360016823,-0.933189630508423,0.116739764809608,-0.33989554643631,-0.99358743429184,-0.109859816730022,-0.0267406683415174,-0.993663191795349,0.103852562606335,-0.0429889895021915,-0.998191952705383,-0.0599860958755016,-0.00383047829382122,-0.952726721763611,0.146853923797607,0.265980809926987,-0.99669873714447,-0.0561605803668499,0.0586309246718884,-0.998496115207672,-0.0547764822840691,-0.00222799018956721,-0.998039245605469,-0.0596173070371151,0.0190577171742916,-0.99361389875412,0.0341719686985016,0.107534475624561,-0.952726721763611,0.146853923797607,0.265980809926987,-0.998191952705383,-0.0599860958755016,-0.00383047829382122,-0.998087227344513,-0.0615543872117996,-0.00575853139162064,-0.997677505016327,-0.0668570101261139,-0.0130325900390744,-0.996837198734283,-0.0754784718155861,-0.0248730536550283,-0.996353924274445,-0.085262842476368,-0.00305130332708359,-0.995715141296387,-0.0405843071639538,-0.0830919668078423,-0.874265909194946,0.247114703059196,-0.417843818664551,-0.996743261814117,-0.079954668879509,0.010490613989532,-0.996743261814117,-0.079954668879509,0.010490613989532,-0.874265909194946,0.247114703059196,-0.417843818664551,-0.99876070022583,0.0195393301546574,-0.0457739941775799,-0.996271669864655,-0.0712997764348984,-0.0485710389912128,-0.997729003429413,-0.0275770705193281,-0.0614519193768501,-0.998289465904236,-0.0494284518063068,-0.0312274415045977,0.30002173781395,0.0929801240563393,-0.949390172958374,0.421320915222168,0.133954882621765,-0.896964192390442,0.420988708734512,0.135364875197411,-0.896908521652222,0.301335871219635,0.08590217679739,-0.94964075088501,0.172422468662262,0.0341593846678734,-0.98443067073822,-0.108379431068897,-0.0699773132801056,-0.991643607616425,-0.0547860451042652,-0.0517540760338306,-0.997155964374542,0.167568922042847,0.041521143168211,-0.984985589981079,0.146789118647575,-0.0140625424683094,-0.989067792892456,
- 0.146789118647575,-0.0140625424683094,-0.989067792892456,0.311222583055496,0.00690476363524795,-0.95031201839447,0.249464690685272,0.0803894624114037,-0.965041399002075,-0.0559884868562222,-0.0483585707843304,-0.997259676456451,0.366808921098709,0.0959631130099297,-0.925333559513092,0.330911606550217,0.102827779948711,-0.938042640686035,0.214067935943604,0.0613522082567215,-0.974890172481537,0.145233064889908,0.0403221361339092,-0.988575458526611,0.330911606550217,0.102827779948711,-0.938042640686035,0.30002173781395,0.0929801240563393,-0.949390172958374,0.172422468662262,0.0341593846678734,-0.98443067073822,0.214067935943604,0.0613522082567215,-0.974890172481537,-0.107230871915817,-0.0715141072869301,-0.991658866405487,0.366808921098709,0.0959631130099297,-0.925333559513092,0.145233064889908,0.0403221361339092,-0.988575458526611,0.146789118647575,-0.0140625424683094,-0.989067792892456,0.167568922042847,0.041521143168211,-0.984985589981079,0.456389784812927,0.136424273252487,-0.879259169101715,0.311222583055496,0.00690476363524795,-0.95031201839447,0.214067935943604,0.0613522082567215,-0.974890172481537,0.0238798148930073,-0.00259004510007799,-0.999711513519287,0.296238243579865,0.0971285328269005,-0.950162529945374,0.145233064889908,0.0403221361339092,-0.988575458526611,0.172422468662262,0.0341593846678734,-0.98443067073822,0.122194401919842,0.0250584241002798,-0.992189824581146,0.0238798148930073,-0.00259004510007799,-0.999711513519287,0.214067935943604,0.0613522082567215,-0.974890172481537,0.301335871219635,0.08590217679739,-0.94964075088501,0.218947261571884,0.014867328107357,-0.975623428821564,0.221640110015869,0.0331335254013538,-0.974565505981445,0.122194401919842,0.0250584241002798,-0.992189824581146,0.172422468662262,0.0341593846678734,-0.98443067073822,-0.324920624494553,-0.156398236751556,-0.932719767093658,-0.108379431068897,-0.0699773132801056,-0.991643607616425,0.146789118647575,-0.0140625424683094,-0.989067792892456,-0.0559884868562222,-0.0483585707843304,-0.997259676456451,-0.0867212116718292,-0.0641596615314484,-0.994164526462555,
- -0.324920624494553,-0.156398236751556,-0.932719767093658,-0.0559884868562222,-0.0483585707843304,-0.997259676456451,0.109861440956593,0.069395937025547,-0.99152135848999,-0.0870027467608452,-0.0634987279772758,-0.994182348251343,0.249464690685272,0.0803894624114037,-0.965041399002075,0.37083712220192,-0.0714673399925232,-0.925943970680237,0.403859943151474,0.0564472898840904,-0.913077712059021,0.109861440956593,0.069395937025547,-0.99152135848999,-0.0559884868562222,-0.0483585707843304,-0.997259676456451,0.145233064889908,0.0403221361339092,-0.988575458526611,0.167568922042847,0.041521143168211,-0.984985589981079,-0.0547860451042652,-0.0517540760338306,-0.997155964374542,-0.107230871915817,-0.0715141072869301,-0.991658866405487,0.296238243579865,0.0971285328269005,-0.950162529945374,0.456389784812927,0.136424273252487,-0.879259169101715,0.167568922042847,0.041521143168211,-0.984985589981079,0.145233064889908,0.0403221361339092,-0.988575458526611,-0.999965906143188,0.00267639849334955,-0.007825817912817,-0.99980491399765,0.00277030747383833,-0.0195538587868214,-0.999968767166138,0.00267326715402305,-0.00743559980764985,-0.999959945678711,0.0026821312494576,-0.00854048412293196,-0.999800264835358,0.00277221063151956,-0.0197920650243759,-0.99965363740921,0.00282308761961758,-0.0261652637273073,-2.7509824462868e-007,-0.999997735023499,0.00213971803896129,-2.75096965651755e-007,-0.999992966651917,0.00376325030811131,-2.75097903568167e-007,-0.999996423721313,0.00269249663688242,-2.75098869906287e-007,-1,-1.7997374470724e-006,-2.75097988833295e-007,-0.999996900558472,0.00250823656097054,0.0246224887669086,0.999454319477081,0.0220230408012867,0.0246198941022158,0.999364793300629,0.0257677100598812,0.0246248785406351,0.999534487724304,0.0180144868791103,0.0246267803013325,0.999595761299133,0.0142061319202185,0.0246217343956232,0.999428510665894,0.023162417113781,0.0246183890849352,0.999312043190002,0.0277401562780142,-0.999897956848145,-0.0109562445431948,0.00916691496968269,-0.999931454658508,-0.0111388424411416,-0.00360940303653479,
- -0.999863386154175,-0.0112592056393623,-0.0121013401076198,-0.999886989593506,-0.0112294564023614,-0.00999735482037067,-0.999938488006592,-0.0110783558338881,0.000636817829217762,-0.999951958656311,-0.00965064577758312,0.00165069382637739,-0.999978542327881,-0.00634293491020799,0.00163248064927757,-0.999832451343536,-0.0182324182242155,0.00169786612968892,-0.999934732913971,-0.0113047566264868,0.00165979517623782,-0.999970555305481,0.00751381134614348,0.00155599170830101,-0.99996554851532,0.00831191148608923,7.16446738806553e-005,-0.999998152256012,0.00189679372124374,3.70248235412873e-005,-0.999999701976776,0.000798646768089384,3.10984469251707e-005,-0.999998152256012,0.00195470056496561,3.73373295587953e-005,-0.999978423118591,0.00657818606123328,6.22885490884073e-005,-0.999889850616455,0.0148424841463566,0.000106886458524968,-0.586322247982025,0.809964537620544,0.0135531723499298,-0.586322247982025,0.809964537620544,0.0135531993582845,-0.586322247982025,0.809964537620544,0.0135531798005104,0.599770486354828,-0.800172090530396,1.32422510432662e-005,0.599770486354828,-0.800172209739685,1.32485474750865e-005,0.599770486354828,-0.800172090530396,1.32422510432662e-005,-0.819024085998535,-0.406361728906631,-0.405055195093155,-0.819024085998535,-0.406361699104309,-0.405055195093155,-0.819024205207825,-0.406361728906631,-0.405055224895477,-0.998005867004395,-0.063120499253273,0.000333750678692013,-0.999672174453735,-0.0256019104272127,-0.000198561087017879,-0.997601568698883,-0.0692165717482567,0.000420316297095269,-0.999069809913635,-0.0431202836334705,4.98900044476613e-005,-0.998373746871948,-0.0570064596831799,0.000246950890868902,-0.990110516548157,-0.140282362699509,0.00143102731090039,-0.996132373809814,-0.0865388289093971,-0.0152161484584212,-0.996107935905457,-0.0868171006441116,-0.0152262793853879,-0.996087074279785,-0.0870551094412804,-0.0152349416166544,-0.996090710163116,-0.0870130062103271,-0.0152334058657289,-0.996090888977051,-0.0870111659169197,-0.0152333388105035,-0.996099352836609,-0.0869150534272194,-0.0152298416942358,
- -1.92461953929524e-007,-0.995420455932617,0.0955934673547745,-1.92159831158278e-007,-0.993857800960541,0.110664740204811,-1.92129917309103e-007,-0.99370288848877,0.112047791481018,-1.92102774576597e-007,-0.993562638759613,0.113284975290298,-1.92029574463959e-007,-0.993184089660645,0.116555973887444,-1.92161408563152e-007,-0.993865966796875,0.110591910779476,-0.966612637042999,-0.215032041072845,0.139360770583153,-0.966612577438354,-0.215031981468201,0.13936074078083,-0.966612637042999,-0.215032041072845,0.139360770583153,-0.92008364200592,0.360562562942505,-0.153104290366173,-0.920083582401276,0.360562533140183,-0.15310426056385,-0.920083582401276,0.360562473535538,-0.153104215860367,-0.999923408031464,-0.0103422906249762,-0.00679751764982939,-0.999939858913422,-0.0104771880432963,-0.00326895690523088,-0.999933183193207,-0.0107631292194128,0.00422211363911629,-0.999871492385864,-0.0110450899228454,0.0116241425275803,-0.999824106693268,-0.0111759081482887,0.0150636322796345,-0.999933421611786,-0.0107614370062947,0.00417771004140377,-0.000256896833889186,0.999973833560944,0.00722933653742075,-9.1419649834279e-005,0.999932289123535,0.0116364732384682,1.64266693900572e-005,0.999894738197327,0.0145085789263248,-9.21190803637728e-005,0.999932527542114,0.0116178449243307,-0.000238152540987358,0.999970018863678,0.00772856641560793,-0.000423768098698929,0.99999612569809,0.00278480001725256,0.241346463561058,0.970366299152374,0.0118876816704869,0.241346463561058,0.970366299152374,0.0118876816704869,0.241346463561058,0.970366299152374,0.0118876816704869,-0.998360455036163,-0.0127089396119118,0.0558123290538788,-0.999280273914337,-0.0119623281061649,0.0359984338283539,-0.998730301856995,-0.012445779517293,0.0488157905638218,-0.998011827468872,-0.0129294758662581,0.061686459928751,-0.997941493988037,-0.0129714496433735,0.0628055483102798,-0.997873842716217,-0.0130111081525683,0.0638631880283356,-0.583011627197266,0.810422539710999,0.0575569123029709,-0.58301168680191,0.810422480106354,0.0575569607317448,-0.583011627197266,0.810422480106354,0.057556938380003,
- 0.999755024909973,0.00408371677622199,0.0217570904642344,0.999499559402466,0.00403835857287049,0.0313765518367291,0.99933910369873,0.00401579821482301,0.0361307486891747,0.999639213085175,0.00406117038801312,0.0265489537268877,0.999848902225494,0.00410650763660669,0.0168920177966356,0.999118566513062,-0.0282989107072353,-0.0310067981481552,0.999870300292969,-0.0155000146478415,0.00437761517241597,0.999668180942535,-0.025693966075778,-0.00182535208296031,0.999249219894409,-0.0232663955539465,-0.0309792570769787,0.998490810394287,0.0105820270255208,0.0538915768265724,0.997852802276611,0.0100720589980483,0.0647166445851326,0.998455762863159,0.0105514544993639,0.054541390389204,0.998665809631348,0.0107410214841366,0.0505097657442093,0.998625695705414,0.0107036726549268,0.0513044483959675,0.998126149177551,0.0102793285623193,0.0603208355605602,0.997677028179169,0.00994582008570433,0.0673912838101387,4.69475671707187e-005,0.999999940395355,-0.000302339496556669,4.74283406219911e-005,0.999999940395355,-0.000315566168865189,0.000201615985133685,0.999989688396454,-0.00455748848617077,0.000355319236405194,0.99996143579483,-0.0087861018255353,0.000150059830048122,0.999995052814484,-0.00313910283148289,0.0116314860060811,-0.999705791473389,0.02128541842103,0.0117111019790173,-0.999786496162415,0.0170229598879814,0.0117761259898543,-0.999839127063751,0.0135332504287362,0.011761736124754,-0.999828577041626,0.0143063012510538,0.0117279887199402,-0.999801397323608,0.0161174144595861,-0.750681638717651,0.659726023674011,-0.0351952873170376,-0.750681638717651,0.659725964069366,-0.0351952649652958,-0.750681638717651,0.659725964069366,-0.0351952649652958,0.999668180942535,-0.025693966075778,-0.00182535208296031,0.999870300292969,-0.0155000146478415,0.00437761517241597,0.999516189098358,-0.00202177930623293,0.0310368966311216,0.999509334564209,-0.00441421987488866,0.0310097113251686,0.999430954456329,-0.013516684062779,0.0309046357870102,0.999476850032806,-0.00145140767563134,0.0323092602193356,0.999476492404938,-0.00194268405903131,0.0322947725653648,
- 0.999475061893463,-0.00292797293514013,0.0322657078504562,0.999476373195648,-0.00194359640590847,0.032294750213623,0.999476492404938,-0.00194542144890875,0.0322946906089783,-0.109452061355114,-0.993992030620575,-0.000293703371426091,-0.109452061355114,-0.993992030620575,-0.000293703371426091,-0.109452053904533,-0.993992030620575,-0.000293706601951271,0.998144686222076,0.0608849711716175,0.00031995793688111,0.999695539474487,0.0246730707585812,-0.000189405312994495,0.997771382331848,0.0667238458991051,0.000402154750190675,0.999135613441467,0.0415704771876335,4.81889546790626e-005,0.998484671115875,0.0550301000475883,0.000237554442719556,0.990789413452148,0.135404974222183,0.00137040193658322,0.996408462524414,0.0834188386797905,-0.0145485969260335,0.99638569355011,0.0836887285113335,-0.0145583590492606,0.996366024017334,0.083920419216156,-0.0145667400211096,0.996369600296021,0.0838788524270058,-0.0145652387291193,0.996369898319244,0.0838754698634148,-0.0145651148632169,0.99637758731842,0.0837837755680084,-0.0145617965608835,6.65681795908313e-007,0.995495736598969,0.094807356595993,6.64652986870351e-007,0.993957340717316,0.10976642370224,6.64551578211103e-007,0.993805766105652,0.111131757497787,6.64459889776481e-007,0.993668556213379,0.112351469695568,6.64210062950588e-007,0.993294835090637,0.115608692169189,6.64658330151724e-007,0.99396538734436,0.109693713486195,0.969029366970062,0.207742989063263,0.133510112762451,0.969029366970062,0.207742959260941,0.13351009786129,0.969029366970062,0.207742959260941,0.133510082960129,0.925313293933868,-0.349476635456085,-0.147178754210472,0.925313234329224,-0.349476605653763,-0.14717872440815,0.925313293933868,-0.349476665258408,-0.147178769111633,0.999929070472717,0.00996599439531565,-0.00652254093438387,0.99994421005249,0.0100964950397611,-0.00313669885508716,0.999938130378723,0.0103724738582969,0.00403368659317493,0.999881744384766,0.0106442403048277,0.0111080156639218,0.999838352203369,0.0107704447582364,0.01439777482301,0.999938368797302,0.0103706307709217,0.0039857616648078,
- 0.000154014225699939,-0.999974370002747,0.00716087548062205,-1.83249594556401e-005,-0.999933302402496,0.0115436185151339,-0.00013015215517953,-0.999896585941315,0.0143873691558838,-1.75746354216244e-005,-0.999933660030365,0.01152453571558,0.000134343805257231,-0.999970674514771,0.00766112469136715,0.000327851099427789,-0.999996185302734,0.00273982831276953,-0.249858230352402,-0.968210875988007,0.0117717022076249,-0.249858245253563,-0.968210875988007,0.0117717124521732,-0.249858245253563,-0.968210875988007,0.0117717124521732,0.998500764369965,0.0122490674257278,0.053350493311882,0.999341309070587,0.011528592556715,0.0344102010130882,0.998838663101196,0.0119950445368886,0.0466615259647369,0.998182415962219,0.0124619146808982,0.0589644871652126,0.998117923736572,0.012502521276474,0.0600365474820137,0.998055934906006,0.0125408936291933,0.0610498934984207,0.596884846687317,-0.800344526767731,0.0563660748302937,0.596884846687317,-0.800344526767731,0.0563660822808743,0.596884846687317,-0.800344526767731,0.056366104632616,0.999954402446747,-0.00341232819482684,-0.00892072543501854,0.99974662065506,-0.00353165692649782,-0.0222273841500282,0.999958634376526,-0.00340798916295171,-0.00843815784901381,0.999946892261505,-0.00341953197494149,-0.00972223747521639,0.999740719795227,-0.00353404670022428,-0.0224945321679115,0.999550461769104,-0.00359897897578776,-0.0297637898474932,8.24762423690117e-007,0.999998271465302,0.00190975517034531,8.24759240458661e-007,0.999994397163391,0.00335973431356251,8.24761514195416e-007,0.999997079372406,0.0024150584358722,8.2476378793217e-007,1,2.0395775209181e-005,8.24761684725672e-007,0.999997437000275,0.00224662339314818,-0.0194811001420021,-0.999618291854858,0.0195944830775261,-0.0194819401949644,-0.999650597572327,0.0178655236959457,-0.0194808151572943,-0.999607145786285,0.0201500579714775,-0.0194841083139181,-0.999729812145233,0.0126778073608875,-0.0194797478616238,-0.99956476688385,0.0221568029373884,-0.0194795820862055,-0.99955803155899,0.0224554296582937,0.999848484992981,0.0139651224017143,0.0104008810594678,
- 0.999890744686127,0.0141978608444333,-0.0041090534068644,0.99980241060257,0.0143509451299906,-0.0137555683031678,0.999833106994629,0.0143131129443645,-0.0113637177273631,0.999900102615356,0.0141208218410611,0.000714573601726443,0.999922633171082,0.0123025216162205,0.00186284526716918,0.999965727329254,0.00808406248688698,0.00184214673936367,0.999727964401245,0.0232427027076483,0.00191637640818954,0.999894380569458,0.0144122773781419,0.00187318550888449,0.999952554702759,-0.0095797423273325,0.001755126635544,0.999965250492096,-0.00832984037697315,7.15912465238944e-005,0.999998450279236,-0.00178622908424586,4.02249424951151e-005,0.999999582767487,-0.00101951428223401,3.65496707672719e-005,0.999997198581696,-0.00236247084103525,4.29871724918485e-005,0.999937176704407,-0.0112182721495628,8.54363024700433e-005,0.999821066856384,-0.0189209263771772,0.000122355952044018,0.493582874536514,-0.869601726531982,0.0129916192963719,0.493582874536514,-0.869601726531982,0.0129916192963719,0.493582874536514,-0.869601726531982,0.0129915988072753,-0.506842195987701,0.862038969993591,-6.26004839432426e-005,-0.506842195987701,0.862038969993591,-6.2602775869891e-005,-0.506842136383057,0.862038910388947,-6.25874672550708e-005,0.7633296251297,0.48288956284523,-0.429121822118759,0.7633296251297,0.48288956284523,-0.429121822118759,0.763329684734344,0.482889533042908,-0.429121792316437,-0.99997615814209,-0.00403009355068207,0.00560597237199545,-0.999977231025696,-0.00402844790369272,0.00541574181988835,-0.9999920129776,-0.00397705240175128,-0.000516581640113145,-0.999975681304932,-0.0040309177711606,0.00570109533146024,-0.999832212924957,-0.00413573021069169,0.017850236967206,-0.996136367321014,-0.0426547154784203,0.0767651870846748,-0.998477876186371,-0.043673999607563,0.0336812473833561,-0.99772584438324,-0.0539458990097046,0.0404108017683029,-0.997046649456024,-0.00553509127348661,0.0765999406576157,-0.999653160572052,-0.000345687789376825,-0.0263327322900295,-0.999148309230804,-0.00122115027625114,-0.0412442162632942,-0.999547362327576,-0.000565776834264398,-0.0300818849354982,
- -0.99971729516983,-0.000195630462258123,-0.0237763859331608,-0.999691188335419,-0.000258561369264498,-0.0248484518378973,-0.999342739582062,-0.00092726806178689,-0.0362391099333763,-0.999068200588226,-0.0013323217863217,-0.0431374460458755,0.0284097939729691,0.999596297740936,0.000344289670465514,0.028409767895937,0.999596297740936,0.000335599615937099,0.0284242704510689,0.999583840370178,0.00492942472919822,0.0284381993114948,0.999550223350525,0.00953183695673943,0.0284195113927126,0.999590277671814,0.00340104382485151,-0.0103682298213243,-0.999708116054535,-0.0218229293823242,-0.0103086642920971,-0.999789476394653,-0.017741659656167,-0.0102434810250998,-0.999859273433685,-0.013288632966578,-0.0102380365133286,-0.999864161014557,-0.012917167507112,-0.0102851483970881,-0.999816954135895,-0.0161335300654173,0.670078933238983,0.742174565792084,0.0130815850570798,0.670078933238983,0.742174565792084,0.0130815822631121,0.670078933238983,0.742174565792084,0.0130815850570798,-0.99772584438324,-0.0539458990097046,0.0404108017683029,-0.998477876186371,-0.043673999607563,0.0336812473833561,-0.999857902526855,0.0168538875877857,-0.000399167678551748,-0.999953985214233,-0.00959646236151457,-9.47900625760667e-005,-0.998426198959351,-0.0560790300369263,0.000440456642536446,-0.999125182628632,-0.0418101362884045,-0.000887144589796662,-0.999911308288574,-0.0131992623209953,-0.00177179672755301,-0.999496579170227,-0.0317040011286736,-0.00119983195327222,-0.99993234872818,-0.011490298435092,-0.00182458129711449,-0.999160528182983,-0.0409563183784485,-0.000913570751436055,0.100086748600006,-0.994972586631775,-0.00351926730945706,0.100086756050587,-0.994972586631775,-0.00351927033625543,0.100086748600006,-0.994972586631775,-0.00351926777511835,-0.996899366378784,0.0786859765648842,-0.000415201648138464,-0.99948787689209,0.0319990180432796,0.00024805759312585,-0.99626612663269,0.0863334909081459,-0.000523993046954274,-0.998554825782776,0.0537430644035339,-6.0658323491225e-005,-0.997476041316986,0.0710033178329468,-0.000305951951304451,
- -0.984643816947937,0.174566894769669,-0.00178220600355417,-0.993976235389709,0.107939317822456,0.0189815666526556,-0.993938207626343,0.108287274837494,0.0189940296113491,-0.993905663490295,0.108583196997643,0.0190046261996031,-0.993910908699036,0.108536437153816,0.0190029535442591,-0.993910253047943,0.108541667461395,0.019003139808774,-0.993924498558044,0.108411841094494,0.0189984887838364,-3.71575822555315e-007,0.995420098304749,-0.0955973938107491,-3.70992495390965e-007,0.993857383728027,-0.11066810041666,-3.70935055116206e-007,0.993703484535217,-0.112042911350727,-3.70882929701111e-007,0.993563771247864,-0.113274335861206,-3.70741190636181e-007,0.993184268474579,-0.116554483771324,-3.70995508092165e-007,0.993865370750427,-0.110596522688866,-0.949217677116394,0.264024138450623,-0.171105995774269,-0.949217677116394,0.264024138450623,-0.171105995774269,-0.949217677116394,0.264024138450623,-0.171105995774269,-0.882800042629242,-0.432382106781006,0.183602258563042,-0.882800042629242,-0.432382136583328,0.183602288365364,-0.882800042629242,-0.432382106781006,0.183602288365364,-0.999880373477936,0.0129293417558074,0.00848782807588577,-0.999905943870544,0.0130978794768453,0.0040823551826179,-0.999895572662354,0.0134550603106618,-0.00527656869962811,-0.999799132347107,0.0138071281835437,-0.0145313972607255,-0.999725162982941,0.0139703704044223,-0.0188327170908451,-0.999895930290222,0.0134530877694488,-0.00522474991157651,-9.07787034520879e-005,-0.999973773956299,-0.00724551826715469,4.17358860431705e-005,-0.99993222951889,-0.0116403121501207,0.00012780433462467,-0.999895036220551,-0.01449463237077,4.09755011787638e-005,-0.999932646751404,-0.0116150947287679,-7.58036840124987e-005,-0.999969959259033,-0.00774216884747148,-0.000224812582018785,-0.999996066093445,-0.00280014611780643,0.195242568850517,-0.980681419372559,-0.0120208756998181,0.195242583751678,-0.980681419372559,-0.0120208775624633,0.195242568850517,-0.980681419372559,-0.0120208756998181,-0.997441828250885,0.0158727094531059,-0.0696991235017776,-0.998875856399536,0.0149481929838657,-0.0449839532375336,
- -0.998018324375153,0.0155472243204713,-0.060973085463047,-0.996898591518402,0.0161451082676649,-0.0770230442285538,-0.99678897857666,0.0161969345062971,-0.0784187167882919,-0.996683478355408,0.0162458922713995,-0.0797377452254295,-0.497403532266617,-0.865342199802399,-0.0614232607185841,-0.497403532266617,-0.865342199802399,-0.0614232607185841,-0.497403532266617,-0.865342199802399,-0.0614232569932938,0.669333040714264,-0.0573240853846073,0.740747690200806,-0.00132289121393114,-0.00154214724898338,0.999997854232788,-4.1221243009204e-005,-0.00256241019815207,0.999996721744537,0.0309046357870102,-0.05400725081563,0.998062074184418,-0.00132289121393114,-0.00154214724898338,0.999997854232788,-0.669910192489624,0.0544910803437233,0.740439832210541,-0.031059505417943,0.0359908826649189,0.9988694190979,-4.1221243009204e-005,-0.00256241019815207,0.999996721744537,-0.669910192489624,0.0544910803437233,0.740439832210541,-0.533164620399475,-0.128435701131821,0.8362056016922,-0.0364897884428501,-0.00705265766009688,0.999309182167053,-0.031059505417943,0.0359908826649189,0.9988694190979,-0.533164620399475,-0.128435701131821,0.8362056016922,0.519858658313751,0.162526980042458,0.838648915290833,0.0365118607878685,0.00607959646731615,0.999314785003662,-0.0364897884428501,-0.00705265766009688,0.999309182167053,0.519858658313751,0.162526980042458,0.838648915290833,0.669333040714264,-0.0573240853846073,0.740747690200806,0.0309046357870102,-0.05400725081563,0.998062074184418,0.0365118607878685,0.00607959646731615,0.999314785003662
- }
- TangentsW: *2608 {
- 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
- }
- }
- LayerElementTangent: 1 {
- Version: 102
- Name: "uvSet"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *7824 {
- a: 1.95606526176562e-006,1,-1.51594909585454e-014,2.32985144066333e-006,1,-7.37295509069475e-015,2.42159239860484e-006,1,-1.48271423350971e-014,1.95855682250112e-006,1,-4.83735027403433e-014,2.56733210335369e-006,1,1.67834564063392e-014,2.41092470787407e-006,1,6.40965035428732e-015,2.32985144066333e-006,1,-7.37295509069475e-015,1.95606526176562e-006,1,-1.51594909585454e-014,2.45505333396068e-007,1,2.08642913161045e-015,-4.45229886736342e-007,1,-1.53878654406852e-015,-2.45117689701146e-007,1,-1.55521146582785e-015,-1.88527201316901e-006,1,-5.16391501770557e-014,7.36513413812645e-007,1,-7.61063168866136e-015,-5.79416450818826e-007,1,2.44479754840719e-015,-4.45229886736342e-007,1,-1.53878654406852e-015,2.45505333396068e-007,1,2.08642913161045e-015,2.06873064598767e-005,1,0.000126486425870098,-1.16304045150173e-005,1,0.000126507016830146,-4.39246723544784e-005,1,0.000126527593238279,-2.017662882281e-005,0.999999940395355,0.000394977629184723,-3.65699379472062e-005,0.999999940395355,0.000249990727752447,0.000818253494799137,0.999999761581421,0.000125977923744358,-0.000105463717773091,1,0.000126566825201735,-0.000494294858071953,0.99999988079071,0.00012681468797382,1.91748836186889e-006,0.999999940395355,0.000244723458308727,1.8881230516854e-006,0.999999940395355,0.000248359458055347,2.42159239860484e-006,1,-1.48271423350971e-014,2.12262943932728e-006,1,0,2.32985144066333e-006,1,-7.37295509069475e-015,2.41092470787407e-006,1,6.40965035428732e-015,2.18941499952052e-006,1,-0,2.61513628174725e-006,1,0,2.87658076558728e-006,1,0,1.8608225218486e-006,1,-0,2.70894179266179e-006,1,1.32212076776514e-014,4.06298340749345e-006,1,0,0.0284404065459967,0.653069734573364,0.756763517856598,0.0141335893422365,0.87663733959198,0.480944126844406,0.00619214447215199,0.99945342540741,0.0324722267687321,-0.0268013253808022,0.992428719997406,0.119862176477909,-0.0255234688520432,0.996250569820404,-0.082664355635643,6.17521948242938e-007,0.600337147712708,-0.799746990203857,5.7097515604454e-010,0.600337207317352,-0.799746990203857,
- 3.35481242785818e-009,0.600337207317352,-0.799746990203857,2.88671642145744e-009,0.600337207317352,-0.799746990203857,2.05282481147151e-006,0.600337147712708,-0.799747109413147,1.64139999014878e-006,0.600337147712708,-0.799747109413147,5.7097515604454e-010,0.600337207317352,-0.799746990203857,6.17521948242938e-007,0.600337147712708,-0.799746990203857,-0.999146580696106,-0.0232625398784876,0.0341301150619984,-0.999662578105927,-0.0153605006635189,0.020947452634573,-0.997945487499237,0.0640682503581047,0.000510352023411542,-0.997934401035309,0.0642418786883354,0.000255179998930544,-3.65699379472062e-005,0.999999940395355,0.000249990727752447,-2.017662882281e-005,0.999999940395355,0.000394977629184723,1.8881230516854e-006,0.999999940395355,0.000248359458055347,1.91748836186889e-006,0.999999940395355,0.000244723458308727,-0.992324948310852,-0.121475353837013,0.0231282841414213,-0.994535684585571,-0.104369714856148,-0.00239994958974421,-0.999662578105927,-0.0153605006635189,0.020947452634573,-0.999146580696106,-0.0232625398784876,0.0341301150619984,-0,-0.02506716363132,0.999685764312744,-0,9.67094729276141e-006,1,-0,0.0250837225466967,0.999685347080231,0,0.00837020017206669,0.999964952468872,0,1.26779650599929e-005,1,0,-0.00834792945533991,0.999965131282806,-0.999594807624817,0.0284638348966837,-2.58056525126449e-006,-0.999594926834106,0.0284630879759789,-3.86990450351732e-006,-0.999594867229462,0.0284623354673386,-5.16111504111905e-006,-0.999594926834106,0.0284630879759789,-3.86990450351732e-006,-1.90769287655712e-006,1,6.28229903537093e-014,-5.27325482835295e-007,1,4.3050076849703e-015,-5.79416450818826e-007,1,2.44479754840719e-015,7.36513413812645e-007,1,-7.61063168866136e-015,2.12262943932728e-006,1,0,2.42159239860484e-006,1,-1.48271423350971e-014,2.32985144066333e-006,1,-7.37295509069475e-015,2.61513628174725e-006,1,0,1.22805499813694e-006,0.600337147712708,-0.799747049808502,1.84034911399067e-006,0.600337028503418,-0.799747109413147,1.64139999014878e-006,0.600337147712708,-0.799747109413147,2.05282481147151e-006,0.600337147712708,-0.799747109413147,
- 0,4.05182709073415e-006,-1,0,4.73990803584456e-006,-1,0,6.18275362285203e-006,-1,0,9.06841978576267e-006,-1,0,5.49466403754195e-006,-1,0,2.67564064415637e-006,-1,2.97352744382806e-006,1,6.26518219357282e-014,2.70894179266179e-006,1,1.32212076776514e-014,2.41092470787407e-006,1,6.40965035428732e-015,2.56733210335369e-006,1,1.67834564063392e-014,2.70894179266179e-006,1,1.32212076776514e-014,1.8608225218486e-006,1,-0,2.18941499952052e-006,1,-0,2.41092470787407e-006,1,6.40965035428732e-015,8.23787502213236e-007,0.600373029708862,0.799720168113709,1.85829287602246e-006,0.600373029708862,0.799720108509064,3.71482246919186e-006,0.600372970104218,0.799720168113709,1.23700124277093e-006,0.600373029708862,0.799720168113709,2.47632874561532e-006,0.600373089313507,0.799720168113709,8.23787502213236e-007,0.600373029708862,0.799720168113709,1.23700124277093e-006,0.600373029708862,0.799720168113709,2.2444846763392e-006,0.600373089313507,0.799720168113709,3.25107021126314e-006,0.600373148918152,0.799720048904419,2.47632874561532e-006,0.600373089313507,0.799720168113709,2.2444846763392e-006,0.600373089313507,0.799720168113709,4.02463183490909e-006,0.600373148918152,0.799719989299774,7.3004537171073e-007,1,0,8.45454167119897e-007,1,0,5.99937266088091e-007,1,0,-2.45117689701146e-007,1,-1.55521146582785e-015,-1.62840535722353e-007,1,0,7.3004537171073e-007,1,0,-2.45117689701146e-007,1,-1.55521146582785e-015,-4.45229886736342e-007,1,-1.53878654406852e-015,9.77039462668472e-007,1,0,1.62838759365513e-007,1,0,-5.79416450818826e-007,1,2.44479754840719e-015,-5.27325482835295e-007,1,4.3050076849703e-015,6.53021913876728e-007,0.999999940395355,0.000244609924266115,9.77039462668472e-007,1,0,-5.27325482835295e-007,1,4.3050076849703e-015,3.20846282875209e-007,0.999999940395355,0.000248244730755687,1.62838759365513e-007,1,0,-1.62840535722353e-007,1,0,-4.45229886736342e-007,1,-1.53878654406852e-015,-5.79416450818826e-007,1,2.44479754840719e-015,0.0024355286732316,0.999997019767761,0.000293250806862488,6.53021913876728e-007,0.999999940395355,0.000244609924266115,
- 3.20846282875209e-007,0.999999940395355,0.000248244730755687,0.00189926440361887,0.999998092651367,0.000381824618671089,-1.50730475070304e-005,1,0.000178015150595456,0.0024355286732316,0.999997019767761,0.000293250806862488,0.00189926440361887,0.999998092651367,0.000381824618671089,0.0163086894899607,0.999867022037506,0.000166343117598444,0.0728853568434715,0.997340321540833,0.000125521371955983,0.0367429479956627,0.99932473897934,0.0001516651827842,-0.000565035676117986,0.99999988079071,0.000178407586645335,0.000787260418292135,0.999999701976776,0.00017744253273122,4.93963966619049e-007,0,-1,0,0,-1,-0,0,-1,0,0,-1,9.87928842732799e-007,0,-1,4.93963966619049e-007,0,-1,0,0,-1,9.87928842732799e-007,0,-1,-2.63447503812131e-007,0,-1,9.87928842732799e-007,0,-1,9.87928842732799e-007,0,-1,4.93964819270332e-007,0,-1,-5.26895973962382e-007,0,-1,-2.63447503812131e-007,0,-1,4.93964819270332e-007,0,-1,-5.26895973962382e-007,0,-1,-2.03063621029287e-007,9.90342696738367e-010,-1,-5.26895973962382e-007,0,-1,-5.26895973962382e-007,0,-1,-2.63448441728542e-007,9.90342696738367e-010,-1,-1.57267527356453e-006,-1.33865938778399e-007,-1,-2.03063621029287e-007,9.90342696738367e-010,-1,-2.63448441728542e-007,9.90342696738367e-010,-1,-4.09145172852732e-007,-1.33819725078865e-007,-1,-1.57267527356453e-006,-1.33865938778399e-007,-1,-4.09145172852732e-007,-1.33819725078865e-007,-1,-2.84075917988957e-006,-2.12489226214529e-007,-1,-2.53163420893543e-006,-2.1248968096188e-007,-1,5.49248580644646e-012,-2.12493404205816e-007,-1,-0.997693300247192,0.041794341057539,0.0534898154437542,-0.979708313941956,0.198769226670265,-0.0257350672036409,-0.955016374588013,-0.296219199895859,0.0140684787184,-0.998039364814758,-0.0410680659115314,-0.0472315065562725,-0.0286493338644505,0.999176025390625,-0.0287502221763134,-0.997693300247192,0.041794341057539,0.0534898154437542,-0.988492012023926,0.0306234490126371,0.148141279816628,-0.0432848557829857,0.953582227230072,0.2980055809021,-0.998248159885406,-0.0313118137419224,-0.0502012446522713,-0.0164107419550419,0.137831196188927,-0.990319788455963,
- -0.0300782900303602,-0.043494425714016,-0.998600780963898,-0.999155700206757,-0.0135270664468408,-0.0387945249676704,-0.999155700206757,-0.0135270664468408,-0.0387945249676704,-0.0300782900303602,-0.043494425714016,-0.998600780963898,-0.0429687611758709,-0.81768137216568,-0.574065089225769,-0.997771561145782,-0.0654642656445503,0.0128955980762839,-0.9752077460289,0.215710550546646,0.0493844822049141,-0.988492012023926,0.0306234490126371,0.148141279816628,-0.995679795742035,-0.0324369184672832,-0.0870034396648407,-0.954491138458252,-0.294417411088943,-0.0475931875407696,0.0445421487092972,-0.0163514781743288,-0.998873770236969,0.998477935791016,0.0101253921166062,-0.0542161092162132,0.998514413833618,-0.00653094332665205,-0.054096132516861,0.0453893803060055,0.0253838505595922,-0.998646855354309,-0.998039364814758,-0.0410680659115314,-0.0472315065562725,-0.0331760942935944,-0.999005258083344,0.0297982934862375,-0.0469065979123116,-0.953263759613037,-0.298475950956345,-0.995679795742035,-0.0324369184672832,-0.0870034396648407,-0.0180741418153048,-0.139159768819809,0.990104973316193,-0.998534619808197,0.0232858471572399,0.0488495044410229,-0.999148190021515,0.013905462808907,0.0388520658016205,-0.0307863000780344,0.0427856929600239,0.998609900474548,-0.0307863000780344,0.0427856929600239,0.998609900474548,-0.999148190021515,0.013905462808907,0.0388520658016205,-0.995849013328552,0.0848403349518776,-0.0329667739570141,-0.0417578294873238,0.816750168800354,0.575478553771973,0.998418152332306,-0.0139867989346385,0.0544570162892342,0.0440818928182125,0.0250643827021122,0.998713433742523,0.044514637440443,-0.0195693299174309,0.998817086219788,0.998520612716675,0.00589934084564447,0.0540555194020271,-0.0210862215608358,-0.997923791408539,0.0608563385903835,-0.99208277463913,-0.0407487452030182,-0.118790589272976,-0.997771561145782,-0.0654642656445503,0.0128955980762839,-0.0429687611758709,-0.81768137216568,-0.574065089225769,0.932339549064636,0.0181163530796766,-0.36112967133522,0.998514413833618,-0.00653094332665205,-0.054096132516861,
- 0.998520612716675,0.00589934084564447,0.0540555194020271,0.970833361148834,-0.0247652810066938,0.238472744822502,-0.995267391204834,0.039583507925272,0.0887470170855522,-0.0189929530024529,0.997997343540192,-0.0603387951850891,-0.0417578294873238,0.816750168800354,0.575478553771973,-0.995849013328552,0.0848403349518776,-0.0329667739570141,-0.988492012023926,0.0306234490126371,0.148141279816628,-0.997693300247192,0.041794341057539,0.0534898154437542,-0.998039364814758,-0.0410680659115314,-0.0472315065562725,-0.995679795742035,-0.0324369184672832,-0.0870034396648407,0.998418152332306,-0.0139867989346385,0.0544570162892342,0.998520612716675,0.00589934084564447,0.0540555194020271,0.998514413833618,-0.00653094332665205,-0.054096132516861,0.998477935791016,0.0101253921166062,-0.0542161092162132,-0.995849013328552,0.0848403349518776,-0.0329667739570141,-0.999148190021515,0.013905462808907,0.0388520658016205,-0.999155700206757,-0.0135270664468408,-0.0387945249676704,-0.997771561145782,-0.0654642656445503,0.0128955980762839,-0.99208277463913,-0.0407487452030182,-0.118790589272976,-0.995267391204834,0.039583507925272,0.0887470170855522,-0.995849013328552,0.0848403349518776,-0.0329667739570141,-0.997771561145782,-0.0654642656445503,0.0128955980762839,-0.998248159885406,-0.0313118137419224,-0.0502012446522713,-0.999155700206757,-0.0135270664468408,-0.0387945249676704,-0.999148190021515,0.013905462808907,0.0388520658016205,-0.998534619808197,0.0232858471572399,0.0488495044410229,-0.0308692045509815,0.0512162186205387,0.998210370540619,-0.0310903619974852,0.0566461384296417,0.997910141944885,0.0441546030342579,0.00299375527538359,0.999020218849182,0.0443732179701328,0.0335551425814629,0.998451352119446,-0.0139548713341355,-0.00952515285462141,0.999857366085052,-0.0298777148127556,-0.02734718285501,-0.999179422855377,-0.012898632325232,0.00950625911355019,-0.999871730804443,0.0453328751027584,-0.0424866117537022,-0.99806809425354,0.044017281383276,-0.0474271178245544,-0.997904360294342,-0.0283900536596775,0.00548199191689491,-0.999581873416901,
- -0.997693300247192,0.041794341057539,0.0534898154437542,-0.0286493338644505,0.999176025390625,-0.0287502221763134,-0.979708313941956,0.198769226670265,-0.0257350672036409,-0.9752077460289,0.215710550546646,0.0493844822049141,-0.0432848557829857,0.953582227230072,0.2980055809021,-0.988492012023926,0.0306234490126371,0.148141279816628,-0.998039364814758,-0.0410680659115314,-0.0472315065562725,-0.955016374588013,-0.296219199895859,0.0140684787184,-0.0331760942935944,-0.999005258083344,0.0297982934862375,-0.954491138458252,-0.294417411088943,-0.0475931875407696,-0.995679795742035,-0.0324369184672832,-0.0870034396648407,-0.0469065979123116,-0.953263759613037,-0.298475950956345,0.0453893803060055,0.0253838505595922,-0.998646855354309,0.998514413833618,-0.00653094332665205,-0.054096132516861,0.932339549064636,0.0181163530796766,-0.36112967133522,0.970833361148834,-0.0247652810066938,0.238472744822502,0.998520612716675,0.00589934084564447,0.0540555194020271,0.044514637440443,-0.0195693299174309,0.998817086219788,-0.997694373130798,0.0417885929346085,0.0534763261675835,-0.979709088802338,0.198768749833107,-0.0257134549319744,-0.954900503158569,-0.296597361564636,0.0139669142663479,-0.99804151058197,-0.0410679914057255,-0.0471858866512775,-0.0285639856010675,0.99917471408844,-0.0288798492401838,-0.997694373130798,0.0417885929346085,0.0534763261675835,-0.988499462604523,0.0306198466569185,0.148091614246368,-0.0431795381009579,0.953620851039886,0.297897219657898,-0.99824196100235,-0.0314899459481239,-0.0502134896814823,-0.0165205225348473,0.137760236859322,-0.990327835083008,-0.0301440693438053,-0.0435504615306854,-0.99859631061554,-0.999155759811401,-0.0135139543563128,-0.0387970916926861,-0.999155759811401,-0.0135139543563128,-0.0387970916926861,-0.0301440693438053,-0.0435504615306854,-0.99859631061554,-0.0430321283638477,-0.817665219306946,-0.574083387851715,-0.997760117053986,-0.065605454146862,0.0130592044442892,-0.975201845169067,0.21573805809021,0.0493811294436455,-0.988499462604523,0.0306198466569185,0.148091614246368,
- -0.995682716369629,-0.03243113681674,-0.0869727209210396,-0.954479992389679,-0.294454842805862,-0.0475855506956577,0.0444834530353546,-0.0163753814995289,-0.998875916004181,0.998478531837463,0.0100858891382813,-0.0542122162878513,0.99851530790329,-0.00650148745626211,-0.0540813095867634,0.0453362911939621,0.0254837665706873,-0.99864661693573,-0.99804151058197,-0.0410679914057255,-0.0471858866512775,-0.0331645719707012,-0.999001860618591,0.0299241859465837,-0.0468730442225933,-0.95332258939743,-0.298293441534042,-0.995682716369629,-0.03243113681674,-0.0869727209210396,-0.018124658614397,-0.139194279909134,0.990099191665649,-0.998533725738525,0.023344349116087,0.048842329531908,-0.99914824962616,0.0138169098645449,0.0388855971395969,-0.0308538284152746,0.0428067855536938,0.99860680103302,-0.0308538284152746,0.0428067855536938,0.99860680103302,-0.99914824962616,0.0138169098645449,0.0388855971395969,-0.995860159397125,0.0847489163279533,-0.0328663364052773,-0.0418121889233589,0.816699624061584,0.575546145439148,0.998418807983398,-0.0139632448554039,0.0544508956372738,0.0440441966056824,0.0250772014260292,0.998714864253998,0.0444730147719383,-0.0195826664566994,0.998818635940552,0.99852043390274,0.00589894875884056,0.054056640714407,-0.0211707521229982,-0.997922480106354,0.0608488172292709,-0.992043614387512,-0.040753148496151,-0.11911591142416,-0.997760117053986,-0.065605454146862,0.0130592044442892,-0.0430321283638477,-0.817665219306946,-0.574083387851715,0.932673513889313,0.0181587729603052,-0.360264152288437,0.99851530790329,-0.00650148745626211,-0.0540813095867634,0.99852043390274,0.00589894875884056,0.054056640714407,0.970833539962769,-0.0247569121420383,0.238473147153854,-0.995278596878052,0.0395825803279877,0.0886211022734642,-0.0190008748322725,0.99799919128418,-0.0603044480085373,-0.0418121889233589,0.816699624061584,0.575546145439148,-0.995860159397125,0.0847489163279533,-0.0328663364052773,-0.988499462604523,0.0306198466569185,0.148091614246368,-0.997694373130798,0.0417885929346085,0.0534763261675835,-0.99804151058197,-0.0410679914057255,-0.0471858866512775,
- -0.995682716369629,-0.03243113681674,-0.0869727209210396,0.998418807983398,-0.0139632448554039,0.0544508956372738,0.99852043390274,0.00589894875884056,0.054056640714407,0.99851530790329,-0.00650148745626211,-0.0540813095867634,0.998478531837463,0.0100858891382813,-0.0542122162878513,-0.995860159397125,0.0847489163279533,-0.0328663364052773,-0.99914824962616,0.0138169098645449,0.0388855971395969,-0.999155759811401,-0.0135139543563128,-0.0387970916926861,-0.997760117053986,-0.065605454146862,0.0130592044442892,-0.992043614387512,-0.040753148496151,-0.11911591142416,-0.995278596878052,0.0395825803279877,0.0886211022734642,-0.995860159397125,0.0847489163279533,-0.0328663364052773,-0.997760117053986,-0.065605454146862,0.0130592044442892,-0.99824196100235,-0.0314899459481239,-0.0502134896814823,-0.999155759811401,-0.0135139543563128,-0.0387970916926861,-0.99914824962616,0.0138169098645449,0.0388855971395969,-0.998533725738525,0.023344349116087,0.048842329531908,-0.0309366825968027,0.0512143671512604,0.998208463191986,-0.0311537776142359,0.0566422156989574,0.997908413410187,0.0441124103963375,0.00299141532741487,0.99902218580246,0.0443350896239281,0.0335531644523144,0.998453199863434,-0.0140067990869284,-0.00952360592782497,0.999856650829315,-0.0299418345093727,-0.0273462161421776,-0.999177515506744,-0.0130230262875557,0.00950406212359667,-0.999870121479034,0.0452713668346405,-0.0424901209771633,-0.99807071685791,0.0439557135105133,-0.0474332682788372,-0.997906744480133,-0.0284343808889389,0.005475755315274,-0.999580681324005,-0.997694373130798,0.0417885929346085,0.0534763261675835,-0.0285639856010675,0.99917471408844,-0.0288798492401838,-0.979709088802338,0.198768749833107,-0.0257134549319744,-0.975201845169067,0.21573805809021,0.0493811294436455,-0.0431795381009579,0.953620851039886,0.297897219657898,-0.988499462604523,0.0306198466569185,0.148091614246368,-0.99804151058197,-0.0410679914057255,-0.0471858866512775,-0.954900503158569,-0.296597361564636,0.0139669142663479,-0.0331645719707012,-0.999001860618591,0.0299241859465837,
- -0.954479992389679,-0.294454842805862,-0.0475855506956577,-0.995682716369629,-0.03243113681674,-0.0869727209210396,-0.0468730442225933,-0.95332258939743,-0.298293441534042,0.0453362911939621,0.0254837665706873,-0.99864661693573,0.99851530790329,-0.00650148745626211,-0.0540813095867634,0.932673513889313,0.0181587729603052,-0.360264152288437,0.970833539962769,-0.0247569121420383,0.238473147153854,0.99852043390274,0.00589894875884056,0.054056640714407,0.0444730147719383,-0.0195826664566994,0.998818635940552,-0.997699320316315,0.04178811237216,0.0533835329115391,-0.979600965976715,0.199304312467575,-0.0256861206144094,-0.955007493495941,-0.296249449253082,0.0140347136184573,-0.998030722141266,-0.0410680286586285,-0.0474117286503315,-0.0285874232649803,0.99917209148407,-0.0289467610418797,-0.997699320316315,0.04178811237216,0.0533835329115391,-0.988530874252319,0.030652828514576,0.147875353693962,-0.0432072915136814,0.953590512275696,0.297990381717682,-0.998247981071472,-0.0312975645065308,-0.0502137690782547,-0.0165501963347197,0.137623384594917,-0.990346372127533,-0.0302390586584806,-0.043487124145031,-0.99859619140625,-0.999155402183533,-0.0135246943682432,-0.038800735026598,-0.999155402183533,-0.0135246943682432,-0.038800735026598,-0.0302390586584806,-0.043487124145031,-0.99859619140625,-0.043116919696331,-0.817606687545776,-0.574160575866699,-0.99777090549469,-0.0654738247394562,0.0128996511921287,-0.975273907184601,0.215414434671402,0.0493708923459053,-0.988530874252319,0.030652828514576,0.147875353693962,-0.995656907558441,-0.032416358590126,-0.0872723758220673,-0.954254031181335,-0.295188516378403,-0.0475702583789825,0.0445634536445141,-0.0164595507085323,-0.998870968818665,0.998479306697845,0.0100763980299234,-0.0542000941932201,0.998515427112579,-0.0065187537111342,-0.054077573120594,0.0454219169914722,0.0254899337887764,-0.99864262342453,-0.998030722141266,-0.0410680286586285,-0.0474117286503315,-0.033218938857317,-0.999009191989899,0.0296158362179995,-0.0469354726374149,-0.953297317028046,-0.298364520072937,
- -0.995656907558441,-0.032416358590126,-0.0872723758220673,-0.0180800147354603,-0.139270648360252,0.990089297294617,-0.998536288738251,0.0232414416968822,0.0488368421792984,-0.999147772789001,0.0138131510466337,0.038896668702364,-0.0308219268918037,0.0426718965172768,0.998613595962524,-0.0308219268918037,0.0426718965172768,0.998613595962524,-0.999147772789001,0.0138131510466337,0.038896668702364,-0.995871484279633,0.0846579670906067,-0.0327596366405487,-0.0417561121284962,0.816711485385895,0.575533509254456,0.998417556285858,-0.01401321683079,0.054460771381855,0.0440364889800549,0.0250803790986538,0.998715102672577,0.0444570817053318,-0.0195073634386063,0.998820900917053,0.998520016670227,0.00590247847139835,0.0540653020143509,-0.0211551524698734,-0.997911751270294,0.0610310658812523,-0.992089807987213,-0.0407472774386406,-0.118732377886772,-0.99777090549469,-0.0654738247394562,0.0128996511921287,-0.043116919696331,-0.817606687545776,-0.574160575866699,0.932668328285217,0.0181835796684027,-0.360276639461517,0.998515427112579,-0.0065187537111342,-0.054077573120594,0.998520016670227,0.00590247847139835,0.0540653020143509,0.970833361148834,-0.024760939180851,0.238473415374756,-0.995292484760284,0.0395817458629608,0.0884645879268646,-0.0189269930124283,0.997997581958771,-0.0603540726006031,-0.0417561121284962,0.816711485385895,0.575533509254456,-0.995871484279633,0.0846579670906067,-0.0327596366405487,-0.988530874252319,0.030652828514576,0.147875353693962,-0.997699320316315,0.04178811237216,0.0533835329115391,-0.998030722141266,-0.0410680286586285,-0.0474117286503315,-0.995656907558441,-0.032416358590126,-0.0872723758220673,0.998417556285858,-0.01401321683079,0.054460771381855,0.998520016670227,0.00590247847139835,0.0540653020143509,0.998515427112579,-0.0065187537111342,-0.054077573120594,0.998479306697845,0.0100763980299234,-0.0542000941932201,-0.995871484279633,0.0846579670906067,-0.0327596366405487,-0.999147772789001,0.0138131510466337,0.038896668702364,-0.999155402183533,-0.0135246943682432,-0.038800735026598,-0.99777090549469,-0.0654738247394562,0.0128996511921287,
- -0.992089807987213,-0.0407472774386406,-0.118732377886772,-0.995292484760284,0.0395817458629608,0.0884645879268646,-0.995871484279633,0.0846579670906067,-0.0327596366405487,-0.99777090549469,-0.0654738247394562,0.0128996511921287,-0.998247981071472,-0.0312975645065308,-0.0502137690782547,-0.999155402183533,-0.0135246943682432,-0.038800735026598,-0.999147772789001,0.0138131510466337,0.038896668702364,-0.998536288738251,0.0232414416968822,0.0488368421792984,-0.030905494466424,0.0512165874242783,0.998209238052368,-0.0311290118843317,0.0566415898501873,0.997909188270569,0.0440996699035168,0.00298374169506133,0.999022781848907,0.0443277135491371,0.033551562577486,0.998453497886658,-0.0139513192698359,-0.00952253676950932,0.999857425689697,-0.0300376694649458,-0.0273474417626858,-0.999174535274506,-0.0130539843812585,0.00951066799461842,-0.999869585037231,0.0453485585749149,-0.0424839816987515,-0.998067438602448,0.0440433844923973,-0.0474351868033409,-0.997902810573578,-0.0285644140094519,0.00548296887427568,-0.999576926231384,-0.997699320316315,0.04178811237216,0.0533835329115391,-0.0285874232649803,0.99917209148407,-0.0289467610418797,-0.979600965976715,0.199304312467575,-0.0256861206144094,-0.975273907184601,0.215414434671402,0.0493708923459053,-0.0432072915136814,0.953590512275696,0.297990381717682,-0.988530874252319,0.030652828514576,0.147875353693962,-0.998030722141266,-0.0410680286586285,-0.0474117286503315,-0.955007493495941,-0.296249449253082,0.0140347136184573,-0.033218938857317,-0.999009191989899,0.0296158362179995,-0.954254031181335,-0.295188516378403,-0.0475702583789825,-0.995656907558441,-0.032416358590126,-0.0872723758220673,-0.0469354726374149,-0.953297317028046,-0.298364520072937,0.0454219169914722,0.0254899337887764,-0.99864262342453,0.998515427112579,-0.0065187537111342,-0.054077573120594,0.932668328285217,0.0181835796684027,-0.360276639461517,0.970833361148834,-0.024760939180851,0.238473415374756,0.998520016670227,0.00590247847139835,0.0540653020143509,0.0444570817053318,-0.0195073634386063,0.998820900917053,
- -0.999594748020172,0.0284660775214434,-1.29570321405481e-006,-0.999594748020172,0.0284664519131184,-1.94193125935271e-006,-0.999594748020172,0.0284668281674385,-2.58612089965027e-006,-0.999594748020172,0.0284664519131184,-1.94193125935271e-006,0.00136248953640461,-0.994826138019562,-0.10158310085535,0.0527398884296417,-0.905109465122223,-0.421895116567612,0.00988088641315699,-0.804534256458282,-0.593824088573456,-0.0185162406414747,0.125842273235321,-0.991877436637878,-0.00239642523229122,-0.767685353755951,0.640822470188141,-0.0423270016908646,-0.846920549869537,0.530032157897949,0.0480122677981853,-0.933386027812958,0.355647742748261,-0.00239642523229122,-0.767685353755951,0.640822470188141,0.0480122677981853,-0.933386027812958,0.355647742748261,0.0527398884296417,-0.905109465122223,-0.421895116567612,0.00136248953640461,-0.994826138019562,-0.10158310085535,0.0645790323615074,-0.599349141120911,0.797878503799438,-0.0423270016908646,-0.846920549869537,0.530032157897949,-0.0542016662657261,-0.578084111213684,0.814174950122833,0.000341194157954305,-0.827999711036682,-0.560728371143341,0.0686814337968826,-0.827495217323303,-0.557256281375885,0.129465386271477,0.51338130235672,-0.848338603973389,0.0524821728467941,0.556865870952606,-0.828942775726318,0.0686814337968826,-0.827495217323303,-0.557256281375885,0.000341194157954305,-0.827999711036682,-0.560728371143341,0.00728203682228923,-0.946222603321075,-0.323434293270111,0.00120865064673126,-0.954848766326904,-0.29708993434906,0.0536296814680099,-0.943676650524139,-0.326493978500366,0.196241647005081,-0.910312414169312,-0.364445477724075,0.125163361430168,-0.588407099246979,0.798818588256836,0.109888188540936,-0.605889320373535,0.787923038005829,0.0524821728467941,0.556865870952606,-0.828942775726318,0.129465386271477,0.51338130235672,-0.848338603973389,-0.22174896299839,0.0656303986907005,-0.97289252281189,-0.065163753926754,0.00452567730098963,-0.997864305973053,-0.0717264339327812,0.566006124019623,-0.821274816989899,-0.123662114143372,0.577819883823395,-0.806741416454315,
- 0.139822334051132,-0.842437565326691,-0.520335137844086,-0.0127975968644023,-0.826981961727142,-0.562082946300507,-0.113610282540321,0.593159317970276,-0.797028779983521,0.0227153114974499,0.288224846124649,-0.957293272018433,-0.0520054064691067,0.247555196285248,-0.967477023601532,-0.0136931529268622,-0.587834477424622,0.808865308761597,-0.0198877826333046,-0.588510274887085,0.808245062828064,0.0433461144566536,-0.525431513786316,0.849730968475342,0.000465593475382775,-0.599533438682556,0.800349533557892,-0.00239642523229122,-0.767685353755951,0.640822470188141,-0.014473675750196,-0.587786674499512,0.808886528015137,0.196241647005081,-0.910312414169312,-0.364445477724075,0.0536296814680099,-0.943676650524139,-0.326493978500366,-0.0127975968644023,-0.826981961727142,-0.562082946300507,-0.0423270016908646,-0.846920549869537,0.530032157897949,0.0645790323615074,-0.599349141120911,0.797878503799438,0.0465766042470932,-0.917689740657806,-0.394558101892471,0.0480122677981853,-0.933386027812958,0.355647742748261,0.0480122677981853,-0.933386027812958,0.355647742748261,0.0465766042470932,-0.917689740657806,-0.394558101892471,0.0527398884296417,-0.905109465122223,-0.421895116567612,-0.0423270016908646,-0.846920549869537,0.530032157897949,-0.00239642523229122,-0.767685353755951,0.640822470188141,0.000465593475382775,-0.599533438682556,0.800349533557892,-0.0542016662657261,-0.578084111213684,0.814174950122833,-0.0353131555020809,0.567757487297058,-0.822437942028046,-0.0185162406414747,0.125842273235321,-0.991877436637878,0.00988088641315699,-0.804534256458282,-0.593824088573456,0.196241647005081,-0.910312414169312,-0.364445477724075,-0.0321076847612858,-0.923366725444794,-0.38257423043251,0.088678352534771,-0.599077939987183,0.795764923095703,0.125163361430168,-0.588407099246979,0.798818588256836,-0.0122285690158606,-0.734184980392456,0.678839385509491,0.00716658076271415,-0.992965698242188,0.11818516254425,-0.000226362739340402,-0.948596298694611,-0.316488593816757,-0.0550137162208557,-0.613424897193909,0.787834644317627,0.00954999588429928,-0.843247056007385,-0.537441253662109,
- 0.00932255387306213,-0.835666656494141,-0.549157738685608,-0.0116671249270439,0.559201538562775,-0.828949689865112,-0.0333238989114761,0.557318031787872,-0.829630136489868,-0.025840962305665,-0.951038658618927,-0.307989954948425,-0.000226362739340402,-0.948596298694611,-0.316488593816757,0.00932255387306213,-0.835666656494141,-0.549157738685608,0.00954999588429928,-0.843247056007385,-0.537441253662109,-0.0333238989114761,0.557318031787872,-0.829630136489868,-0.0116671249270439,0.559201538562775,-0.828949689865112,0.0044478690251708,8.8164430053439e-005,-0.999990105628967,0.0518111139535904,0.00395173439756036,-0.998649120330811,-0.00479664700105786,0.590775370597839,-0.806821763515472,0.00120865064673126,-0.954848766326904,-0.29708993434906,0.00728203682228923,-0.946222603321075,-0.323434293270111,0.0322639308869839,-0.608537554740906,0.792868852615356,0.0155857838690281,-0.59552389383316,0.803186476230621,0.0227153114974499,0.288224846124649,-0.957293272018433,-0.0489626154303551,0.568851888179779,-0.820981323719025,-0.0146375605836511,-0.801749408245087,-0.597480952739716,-0.0325017869472504,-0.797117471694946,-0.602948904037476,-0.00734526896849275,-0.911514520645142,-0.41120234131813,0.0766092389822006,-0.924285292625427,-0.373935341835022,0.0875023901462555,-0.590864658355713,0.802011430263519,-0.0360525958240032,-0.591794848442078,0.805281937122345,-0.123662114143372,0.577819883823395,-0.806741416454315,-0.0520054064691067,0.247555196285248,-0.967477023601532,0.0940442755818367,-0.872758626937866,-0.479007303714752,0.139822334051132,-0.842437565326691,-0.520335137844086,-0.0489626154303551,0.568851888179779,-0.820981323719025,-0.0353131555020809,0.567757487297058,-0.822437942028046,0.00988088641315699,-0.804534256458282,-0.593824088573456,-0.0146375605836511,-0.801749408245087,-0.597480952739716,-0.0489626154303551,0.568851888179779,-0.820981323719025,0.0227153114974499,0.288224846124649,-0.957293272018433,-0.113610282540321,0.593159317970276,-0.797028779983521,-0.0717264339327812,0.566006124019623,-0.821274816989899,
- -0.0125795360654593,9.60755787673406e-005,-0.999920904636383,-0.033967349678278,0.00111503782682121,-0.999422311782837,-0.0321076847612858,-0.923366725444794,-0.38257423043251,0.196241647005081,-0.910312414169312,-0.364445477724075,-0.0127975968644023,-0.826981961727142,-0.562082946300507,0.139822334051132,-0.842437565326691,-0.520335137844086,0.0940442755818367,-0.872758626937866,-0.479007303714752,0.0766092389822006,-0.924285292625427,-0.373935341835022,-0.00734526896849275,-0.911514520645142,-0.41120234131813,-0.0325017869472504,-0.797117471694946,-0.602948904037476,-0.0146375605836511,-0.801749408245087,-0.597480952739716,-0.000226362739340402,-0.948596298694611,-0.316488593816757,-0.025840962305665,-0.951038658618927,-0.307989954948425,-0.00834106653928757,-0.608033835887909,0.793867230415344,-0.0550137162208557,-0.613424897193909,0.787834644317627,0.00932255387306213,-0.835666656494141,-0.549157738685608,-0.00402706395834684,-0.749763429164886,-0.661693751811981,0.0240469872951508,0.234176054596901,-0.971896767616272,-0.0116671249270439,0.559201538562775,-0.828949689865112,-0.000226362739340402,-0.948596298694611,-0.316488593816757,0.00716658076271415,-0.992965698242188,0.11818516254425,-0.00402706395834684,-0.749763429164886,-0.661693751811981,0.00932255387306213,-0.835666656494141,-0.549157738685608,-0.0116671249270439,0.559201538562775,-0.828949689865112,0.0240469872951508,0.234176054596901,-0.971896767616272,-0.0168276894837618,0.592780530452728,-0.805188238620758,0.0044478690251708,8.8164430053439e-005,-0.999990105628967,0.00728203682228923,-0.946222603321075,-0.323434293270111,0.0536296814680099,-0.943676650524139,-0.326493978500366,0.109888188540936,-0.605889320373535,0.787923038005829,0.0322639308869839,-0.608537554740906,0.792868852615356,0.000341194157954305,-0.827999711036682,-0.560728371143341,-0.0127975968644023,-0.826981961727142,-0.562082946300507,0.0536296814680099,-0.943676650524139,-0.326493978500366,0.00728203682228923,-0.946222603321075,-0.323434293270111,-0.0127975968644023,-0.826981961727142,-0.562082946300507,
- 0.000341194157954305,-0.827999711036682,-0.560728371143341,0.0524821728467941,0.556865870952606,-0.828942775726318,-0.0717264339327812,0.566006124019623,-0.821274816989899,-0.0717264339327812,0.566006124019623,-0.821274816989899,0.0524821728467941,0.556865870952606,-0.828942775726318,-0.065163753926754,0.00452567730098963,-0.997864305973053,-0.0125795360654593,9.60755787673406e-005,-0.999920904636383,-0.025840962305665,-0.951038658618927,-0.307989954948425,0.00120865064673126,-0.954848766326904,-0.29708993434906,0.0155857838690281,-0.59552389383316,0.803186476230621,-0.00834106653928757,-0.608033835887909,0.793867230415344,0.00120865064673126,-0.954848766326904,-0.29708993434906,-0.025840962305665,-0.951038658618927,-0.307989954948425,0.00954999588429928,-0.843247056007385,-0.537441253662109,0.0686814337968826,-0.827495217323303,-0.557256281375885,0.0686814337968826,-0.827495217323303,-0.557256281375885,0.00954999588429928,-0.843247056007385,-0.537441253662109,-0.0333238989114761,0.557318031787872,-0.829630136489868,0.129465386271477,0.51338130235672,-0.848338603973389,0.129465386271477,0.51338130235672,-0.848338603973389,-0.0333238989114761,0.557318031787872,-0.829630136489868,-0.00479664700105786,0.590775370597839,-0.806821763515472,-0.00479664700105786,0.590775370597839,-0.806821763515472,0.0518111139535904,0.00395173439756036,-0.998649120330811,0.274298071861267,0.495751112699509,-0.824009358882904,0.129465386271477,0.51338130235672,-0.848338603973389,-0.00479664700105786,0.590775370597839,-0.806821763515472,0.274298071861267,0.495751112699509,-0.824009358882904,-0.22174896299839,0.0656303986907005,-0.97289252281189,-0.0717264339327812,0.566006124019623,-0.821274816989899,-0.033967349678278,0.00111503782682121,-0.999422311782837,-0.0347128473222256,0.000964038772508502,-0.999396920204163,-0.113610282540321,0.593159317970276,-0.797028779983521,-0.123662114143372,0.577819883823395,-0.806741416454315,0.0766092389822006,-0.924285292625427,-0.373935341835022,0.0465766042470932,-0.917689740657806,-0.394558101892471,
- 0.0645790323615074,-0.599349141120911,0.797878503799438,0.0875023901462555,-0.590864658355713,0.802011430263519,0.0527398884296417,-0.905109465122223,-0.421895116567612,0.0465766042470932,-0.917689740657806,-0.394558101892471,0.0766092389822006,-0.924285292625427,-0.373935341835022,-0.0146375605836511,-0.801749408245087,-0.597480952739716,0.00988088641315699,-0.804534256458282,-0.593824088573456,-0.0321076847612858,-0.923366725444794,-0.38257423043251,-0.00734526896849275,-0.911514520645142,-0.41120234131813,-0.0360525958240032,-0.591794848442078,0.805281937122345,0.088678352534771,-0.599077939987183,0.795764923095703,-0.00734526896849275,-0.911514520645142,-0.41120234131813,-0.0321076847612858,-0.923366725444794,-0.38257423043251,0.0940442755818367,-0.872758626937866,-0.479007303714752,-0.0325017869472504,-0.797117471694946,-0.602948904037476,-0.0520054064691067,0.247555196285248,-0.967477023601532,0.0227153114974499,0.288224846124649,-0.957293272018433,-0.0325017869472504,-0.797117471694946,-0.602948904037476,0.0940442755818367,-0.872758626937866,-0.479007303714752,-0.113610282540321,0.593159317970276,-0.797028779983521,-0.0520054064691067,0.247555196285248,-0.967477023601532,-0.123662114143372,0.577819883823395,-0.806741416454315,0.0433461144566536,-0.525431513786316,0.849730968475342,0.0377371646463871,-0.557511866092682,0.829310834407806,-0.0542016662657261,-0.578084111213684,0.814174950122833,0.000465593475382775,-0.599533438682556,0.800349533557892,0.0278771687299013,0.00155858567450196,-0.999610126018524,0.0195431411266327,0.578313767910004,-0.815580308437347,-0.0185162406414747,0.125842273235321,-0.991877436637878,-0.0353131555020809,0.567757487297058,-0.822437942028046,-0.0347128473222256,0.000964038772508502,-0.999396920204163,0.0278771687299013,0.00155858567450196,-0.999610126018524,-0.0353131555020809,0.567757487297058,-0.822437942028046,-0.0489626154303551,0.568851888179779,-0.820981323719025,-0.113610282540321,0.593159317970276,-0.797028779983521,0.066435731947422,0.887139678001404,0.456694304943085,
- -0.0253390725702047,0.892451584339142,0.450431048870087,-0.0661623254418373,0.893436014652252,0.444291323423386,-0.00136470538564026,0.894152760505676,0.447760015726089,0.00233851303346455,0.894895315170288,0.446270108222961,0.0647729933261871,0.892242431640625,0.446886837482452,-0.00140760676003993,0.994563102722168,-0.104126036167145,0.0184424743056297,-0.127565443515778,-0.991658687591553,-0.0133922081440687,0.804466128349304,-0.593847632408142,-0.0513046979904175,0.905204236507416,-0.421868830919266,0.00223832647316158,0.774609684944153,0.632435500621796,-0.0716898962855339,0.936581373214722,0.343039125204086,0.00650112750008702,0.856986105442047,0.51529860496521,0.00223832647316158,0.774609684944153,0.632435500621796,-0.00140760676003993,0.994563102722168,-0.104126036167145,-0.0513046979904175,0.905204236507416,-0.421868830919266,-0.0716898962855339,0.936581373214722,0.343039125204086,-0.0760641843080521,0.599629342556,0.7966548204422,0.0546905510127544,0.578289926052094,0.813996076583862,0.00650112750008702,0.856986105442047,0.51529860496521,-0.00245557236485183,0.828054845333099,-0.560641765594482,-0.0348366498947144,-0.558037400245667,-0.829084277153015,-0.124746151268482,-0.51685643196106,-0.84693443775177,-0.0585564561188221,0.828235864639282,-0.55731189250946,-0.0585564561188221,0.828235864639282,-0.55731189250946,0.00322523922659457,0.954866588115692,-0.297017514705658,-0.00322886579670012,0.946199536323547,-0.323567628860474,-0.00245557236485183,0.828054845333099,-0.560641765594482,-0.0452398099005222,0.944047391414642,-0.326692283153534,-0.104683265089989,0.606446266174316,0.788203179836273,-0.119589373469353,0.589066684246063,0.799186289310455,-0.187402084469795,0.911812961101532,-0.365345776081085,-0.0348366498947144,-0.558037400245667,-0.829084277153015,0.0647483095526695,-0.00455063162371516,-0.997891247272491,0.221804842352867,-0.0653706789016724,-0.972897350788116,-0.124746151268482,-0.51685643196106,-0.84693443775177,0.0505146868526936,-0.566565275192261,-0.822466969490051,-0.0150807406753302,0.827171802520752,-0.561746597290039,
- -0.145224750041962,0.841780841350555,-0.519918024539948,0.0870554819703102,-0.579368948936462,-0.810402989387512,0.109571650624275,-0.593643665313721,-0.797233521938324,0.0505678094923496,-0.247986137866974,-0.96744292974472,-0.022004496306181,-0.288519024848938,-0.957221269607544,0.0136244334280491,0.587012648582459,0.809463143348694,0.014494389295578,0.58674430847168,0.809642612934113,0.00223832647316158,0.774609684944153,0.632435500621796,-0.000560201879125088,0.600965738296509,0.799274623394012,-0.0475767776370049,0.576773107051849,0.815517723560333,0.019870039075613,0.587847530841827,0.808727622032166,-0.187402084469795,0.911812961101532,-0.365345776081085,-0.0150807406753302,0.827171802520752,-0.561746597290039,-0.0452398099005222,0.944047391414642,-0.326692283153534,0.00650112750008702,0.856986105442047,0.51529860496521,-0.0716898962855339,0.936581373214722,0.343039125204086,-0.0402100011706352,0.917997479438782,-0.39454248547554,-0.0760641843080521,0.599629342556,0.7966548204422,-0.0716898962855339,0.936581373214722,0.343039125204086,-0.0513046979904175,0.905204236507416,-0.421868830919266,-0.0402100011706352,0.917997479438782,-0.39454248547554,0.00650112750008702,0.856986105442047,0.51529860496521,0.0546905510127544,0.578289926052094,0.813996076583862,-0.000560201879125088,0.600965738296509,0.799274623394012,0.00223832647316158,0.774609684944153,0.632435500621796,0.0312532112002373,-0.568254768848419,-0.82225888967514,-0.0133922081440687,0.804466128349304,-0.593847632408142,0.0184424743056297,-0.127565443515778,-0.991658687591553,-0.187402084469795,0.911812961101532,-0.365345776081085,-0.119589373469353,0.589066684246063,0.799186289310455,-0.0927002057433128,0.599347293376923,0.795103311538696,0.0284954532980919,0.923430204391479,-0.382706999778748,0.0116902235895395,0.728740334510803,0.684690356254578,0.0563129782676697,0.613726735115051,0.787507653236389,0.00727095594629645,0.948580324649811,-0.316452771425247,-0.00721328146755695,0.992628812789917,0.12097929418087,-0.0223627779632807,0.84254652261734,-0.538159012794495,
- 0.0258263200521469,-0.558086395263672,-0.829380750656128,0.0106024844571948,-0.559527099132538,-0.828744232654572,-0.0159147381782532,0.835526525974274,-0.54921954870224,0.0347346253693104,0.950957059860229,-0.307366490364075,-0.0223627779632807,0.84254652261734,-0.538159012794495,-0.0159147381782532,0.835526525974274,-0.54921954870224,0.00727095594629645,0.948580324649811,-0.316452771425247,0.0258263200521469,-0.558086395263672,-0.829380750656128,0.00502542033791542,-0.591068506240845,-0.806605577468872,-0.0508651286363602,-0.0039642914198339,-0.998697578907013,-0.00539599033072591,-4.29463216278236e-005,-0.99998539686203,0.0106024844571948,-0.559527099132538,-0.828744232654572,0.00322523922659457,0.954866588115692,-0.297017514705658,-0.00777064589783549,0.595603227615356,0.80324113368988,-0.027165936306119,0.608808040618896,0.792852282524109,-0.00322886579670012,0.946199536323547,-0.323567628860474,-0.022004496306181,-0.288519024848938,-0.957221269607544,0.0397220626473427,0.796607136726379,-0.603190779685974,0.0134059861302376,0.801772654056549,-0.597478866577148,0.0359774269163609,-0.569360613822937,-0.821300268173218,0.00863193348050117,0.911501228809357,-0.411206513643265,0.0371880605816841,0.592142105102539,0.804975032806396,-0.0907882153987885,0.590850472450256,0.801656544208527,-0.0770538970828056,0.924254357814789,-0.373920440673828,0.0870554819703102,-0.579368948936462,-0.810402989387512,-0.145224750041962,0.841780841350555,-0.519918024539948,-0.0784062519669533,0.873822689056396,-0.479881554841995,0.0505678094923496,-0.247986137866974,-0.96744292974472,0.0359774269163609,-0.569360613822937,-0.821300268173218,0.0134059861302376,0.801772654056549,-0.597478866577148,-0.0133922081440687,0.804466128349304,-0.593847632408142,0.0312532112002373,-0.568254768848419,-0.82225888967514,0.0359774269163609,-0.569360613822937,-0.821300268173218,0.109571650624275,-0.593643665313721,-0.797233521938324,-0.022004496306181,-0.288519024848938,-0.957221269607544,0.0505146868526936,-0.566565275192261,-0.822466969490051,0.0358308106660843,-0.00116972508840263,-0.999357223510742,
- 0.0130048207938671,-5.27346419403329e-005,-0.999915421009064,0.0284954532980919,0.923430204391479,-0.382706999778748,-0.0784062519669533,0.873822689056396,-0.479881554841995,-0.145224750041962,0.841780841350555,-0.519918024539948,-0.0150807406753302,0.827171802520752,-0.561746597290039,-0.187402084469795,0.911812961101532,-0.365345776081085,-0.0770538970828056,0.924254357814789,-0.373920440673828,0.0134059861302376,0.801772654056549,-0.597478866577148,0.0397220626473427,0.796607136726379,-0.603190779685974,0.00863193348050117,0.911501228809357,-0.411206513643265,0.00727095594629645,0.948580324649811,-0.316452771425247,0.0563129782676697,0.613726735115051,0.787507653236389,0.010922291316092,0.608330309391022,0.793608725070953,0.0347346253693104,0.950957059860229,-0.307366490364075,-0.0159147381782532,0.835526525974274,-0.54921954870224,0.0106024844571948,-0.559527099132538,-0.828744232654572,-0.024247819557786,-0.231516674160957,-0.972528696060181,0.00404355488717556,0.74931126832962,-0.662205696105957,0.00727095594629645,0.948580324649811,-0.316452771425247,-0.0159147381782532,0.835526525974274,-0.54921954870224,0.00404355488717556,0.74931126832962,-0.662205696105957,-0.00721328146755695,0.992628812789917,0.12097929418087,0.0106024844571948,-0.559527099132538,-0.828744232654572,-0.00539599033072591,-4.29463216278236e-005,-0.99998539686203,0.0168191660195589,-0.592330038547516,-0.805519878864288,-0.024247819557786,-0.231516674160957,-0.972528696060181,-0.00322886579670012,0.946199536323547,-0.323567628860474,-0.027165936306119,0.608808040618896,0.792852282524109,-0.104683265089989,0.606446266174316,0.788203179836273,-0.0452398099005222,0.944047391414642,-0.326692283153534,-0.00245557236485183,0.828054845333099,-0.560641765594482,-0.00322886579670012,0.946199536323547,-0.323567628860474,-0.0452398099005222,0.944047391414642,-0.326692283153534,-0.0150807406753302,0.827171802520752,-0.561746597290039,-0.0150807406753302,0.827171802520752,-0.561746597290039,0.0505146868526936,-0.566565275192261,-0.822466969490051,-0.0348366498947144,-0.558037400245667,-0.829084277153015,
- -0.00245557236485183,0.828054845333099,-0.560641765594482,0.0505146868526936,-0.566565275192261,-0.822466969490051,0.0130048207938671,-5.27346419403329e-005,-0.999915421009064,0.0647483095526695,-0.00455063162371516,-0.997891247272491,-0.0348366498947144,-0.558037400245667,-0.829084277153015,0.0347346253693104,0.950957059860229,-0.307366490364075,0.010922291316092,0.608330309391022,0.793608725070953,-0.00777064589783549,0.595603227615356,0.80324113368988,0.00322523922659457,0.954866588115692,-0.297017514705658,0.00322523922659457,0.954866588115692,-0.297017514705658,-0.0585564561188221,0.828235864639282,-0.55731189250946,-0.0223627779632807,0.84254652261734,-0.538159012794495,0.0347346253693104,0.950957059860229,-0.307366490364075,-0.0585564561188221,0.828235864639282,-0.55731189250946,-0.124746151268482,-0.51685643196106,-0.84693443775177,0.0258263200521469,-0.558086395263672,-0.829380750656128,-0.0223627779632807,0.84254652261734,-0.538159012794495,-0.124746151268482,-0.51685643196106,-0.84693443775177,0.00502542033791542,-0.591068506240845,-0.806605577468872,0.0258263200521469,-0.558086395263672,-0.829380750656128,0.00502542033791542,-0.591068506240845,-0.806605577468872,-0.27528241276741,-0.497686475515366,-0.822513043880463,-0.0508651286363602,-0.0039642914198339,-0.998697578907013,-0.124746151268482,-0.51685643196106,-0.84693443775177,0.221804842352867,-0.0653706789016724,-0.972897350788116,-0.27528241276741,-0.497686475515366,-0.822513043880463,0.00502542033791542,-0.591068506240845,-0.806605577468872,0.0505146868526936,-0.566565275192261,-0.822466969490051,0.0870554819703102,-0.579368948936462,-0.810402989387512,0.109571650624275,-0.593643665313721,-0.797233521938324,0.0350823737680912,-0.00097936880774796,-0.999384045600891,0.0358308106660843,-0.00116972508840263,-0.999357223510742,-0.0770538970828056,0.924254357814789,-0.373920440673828,-0.0907882153987885,0.590850472450256,0.801656544208527,-0.0760641843080521,0.599629342556,0.7966548204422,-0.0402100011706352,0.917997479438782,-0.39454248547554,-0.0513046979904175,0.905204236507416,-0.421868830919266,
- -0.0133922081440687,0.804466128349304,-0.593847632408142,0.0134059861302376,0.801772654056549,-0.597478866577148,-0.0770538970828056,0.924254357814789,-0.373920440673828,-0.0402100011706352,0.917997479438782,-0.39454248547554,0.0284954532980919,0.923430204391479,-0.382706999778748,-0.0927002057433128,0.599347293376923,0.795103311538696,0.0371880605816841,0.592142105102539,0.804975032806396,0.00863193348050117,0.911501228809357,-0.411206513643265,0.00863193348050117,0.911501228809357,-0.411206513643265,0.0397220626473427,0.796607136726379,-0.603190779685974,-0.0784062519669533,0.873822689056396,-0.479881554841995,0.0284954532980919,0.923430204391479,-0.382706999778748,0.0505678094923496,-0.247986137866974,-0.96744292974472,-0.0784062519669533,0.873822689056396,-0.479881554841995,0.0397220626473427,0.796607136726379,-0.603190779685974,-0.022004496306181,-0.288519024848938,-0.957221269607544,0.109571650624275,-0.593643665313721,-0.797233521938324,0.0870554819703102,-0.579368948936462,-0.810402989387512,0.0505678094923496,-0.247986137866974,-0.96744292974472,-0.0195257365703583,-0.577659726142883,-0.81604415178299,-0.0275125857442617,-0.00154358195140958,-0.999620258808136,0.0312532112002373,-0.568254768848419,-0.82225888967514,0.0184424743056297,-0.127565443515778,-0.991658687591553,-0.0275125857442617,-0.00154358195140958,-0.999620258808136,0.0350823737680912,-0.00097936880774796,-0.999384045600891,0.109571650624275,-0.593643665313721,-0.797233521938324,0.0359774269163609,-0.569360613822937,-0.821300268173218,0.0312532112002373,-0.568254768848419,-0.82225888967514,0.02531698346138,-0.891757726669312,0.451804578304291,-0.0663748160004616,-0.886318504810333,0.458294600248337,-0.0647827833890915,-0.891602277755737,0.448161363601685,-0.00236265268176794,-0.894286811351776,0.447487980127335,0.00133344111964107,-0.893468379974365,0.449124127626419,0.0661957040429115,-0.892838537693024,0.445485770702362,0.043843038380146,0.585455775260925,0.809518098831177,0.00654046796262264,0.566096901893616,0.8243128657341,0.0563129782676697,0.613726735115051,0.787507653236389,
- 0.0116902235895395,0.728740334510803,0.684690356254578,0.0165647324174643,-0.563882231712341,0.825689136981964,-0.0230211913585663,-0.307400703430176,0.951301693916321,-0.0122285690158606,-0.734184980392456,0.678839385509491,-0.0550137162208557,-0.613424897193909,0.787834644317627,-0.00866320356726646,0.555934131145477,0.831181228160858,-0.0475767776370049,0.576773107051849,0.815517723560333,-0.000560201879125088,0.600965738296509,0.799274623394012,0.0546905510127544,0.578289926052094,0.813996076583862,0.0704244747757912,-0.560047566890717,0.825461745262146,-0.0472014471888542,0.561567306518555,0.826083660125732,-0.0672907307744026,0.558765113353729,0.826591491699219,0.0165647324174643,-0.563882231712341,0.825689136981964,0.578115105628967,0.471628993749619,0.665844559669495,0.0704244747757912,-0.560047566890717,0.825461745262146,-0.062193900346756,-0.552359104156494,0.83128297328949,0.271338790655136,0.520753741264343,0.809438526630402,0.271338790655136,0.520753741264343,0.809438526630402,-0.062193900346756,-0.552359104156494,0.83128297328949,-0.0619076378643513,-0.558043956756592,0.827498853206635,-0.171776831150055,0.555266737937927,0.813739359378815,0.0422680415213108,-0.547788143157959,0.83554869890213,0.0434880219399929,0.543178617954254,0.838490188121796,0.00509974965825677,0.546122014522552,0.837690114974976,-0.0558896511793137,-0.544702291488647,0.836765050888062,0.594794094562531,0.405060827732086,0.694367110729218,0.0422680415213108,-0.547788143157959,0.83554869890213,0.0109925791621208,-0.539652466773987,0.841816067695618,0.0190090760588646,0.545059442520142,0.838181912899017,0.0190090760588646,0.545059442520142,0.838181912899017,0.0109925791621208,-0.539652466773987,0.841816067695618,-0.0295742284506559,-0.553079307079315,0.832603454589844,-0.199296712875366,0.541346907615662,0.816837966442108,0.0267813559621572,0.553359866142273,0.83251166343689,-0.0295742284506559,-0.553079307079315,0.832603454589844,0.0377371646463871,-0.557511866092682,0.829310834407806,0.0756809934973717,0.547930121421814,0.833093583583832,
- -0.0524960681796074,-0.560794651508331,0.826289057731628,-0.0294650197029114,0.56200897693634,0.826606214046478,0.0147075280547142,0.560182988643646,0.828238308429718,-0.0619076378643513,-0.558043956756592,0.827498853206635,-0.0294650197029114,0.56200897693634,0.826606214046478,-0.0524960681796074,-0.560794651508331,0.826289057731628,-0.0558896511793137,-0.544702291488647,0.836765050888062,-0.207388117909431,0.535646975040436,0.8185795545578,0.109888188540936,-0.605889320373535,0.787923038005829,0.125163361430168,-0.588407099246979,0.798818588256836,-0.0558896511793137,-0.544702291488647,0.836765050888062,-0.0524960681796074,-0.560794651508331,0.826289057731628,0.0322639308869839,-0.608537554740906,0.792868852615356,-0.0619076378643513,-0.558043956756592,0.827498853206635,-0.062193900346756,-0.552359104156494,0.83128297328949,0.0155857838690281,-0.59552389383316,0.803186476230621,0.0322639308869839,-0.608537554740906,0.792868852615356,0.109888188540936,-0.605889320373535,0.787923038005829,-0.0524960681796074,-0.560794651508331,0.826289057731628,-0.0619076378643513,-0.558043956756592,0.827498853206635,0.0155857838690281,-0.59552389383316,0.803186476230621,-0.062193900346756,-0.552359104156494,0.83128297328949,0.0704244747757912,-0.560047566890717,0.825461745262146,-0.00834106653928757,-0.608033835887909,0.793867230415344,0.125163361430168,-0.588407099246979,0.798818588256836,0.088678352534771,-0.599077939987183,0.795764923095703,0.0422680415213108,-0.547788143157959,0.83554869890213,-0.0558896511793137,-0.544702291488647,0.836765050888062,0.0422680415213108,-0.547788143157959,0.83554869890213,0.088678352534771,-0.599077939987183,0.795764923095703,-0.0360525958240032,-0.591794848442078,0.805281937122345,0.0109925791621208,-0.539652466773987,0.841816067695618,0.0704244747757912,-0.560047566890717,0.825461745262146,0.0165647324174643,-0.563882231712341,0.825689136981964,-0.0550137162208557,-0.613424897193909,0.787834644317627,-0.00834106653928757,-0.608033835887909,0.793867230415344,-0.0295742284506559,-0.553079307079315,0.832603454589844,
- 0.0109925791621208,-0.539652466773987,0.841816067695618,-0.0360525958240032,-0.591794848442078,0.805281937122345,0.0875023901462555,-0.590864658355713,0.802011430263519,0.0377371646463871,-0.557511866092682,0.829310834407806,-0.0295742284506559,-0.553079307079315,0.832603454589844,0.0875023901462555,-0.590864658355713,0.802011430263519,0.0645790323615074,-0.599349141120911,0.797878503799438,-0.0542016662657261,-0.578084111213684,0.814174950122833,-0.027165936306119,0.608808040618896,0.792852282524109,-0.00777064589783549,0.595603227615356,0.80324113368988,0.00342327682301402,0.557090759277344,0.830444574356079,-0.000734290457330644,0.56052166223526,0.82813948392868,-0.027165936306119,0.608808040618896,0.792852282524109,-0.000734290457330644,0.56052166223526,0.82813948392868,-0.00209509860724211,0.562114953994751,0.827056467533112,-0.104683265089989,0.606446266174316,0.788203179836273,-0.00777064589783549,0.595603227615356,0.80324113368988,0.010922291316092,0.608330309391022,0.793608725070953,0.00482167955487967,0.563283801078796,0.826249420642853,0.00342327682301402,0.557090759277344,0.830444574356079,-0.119589373469353,0.589066684246063,0.799186289310455,0.00161411089356989,0.546151340007782,0.83768504858017,-0.00163024547509849,0.5462327003479,0.837631940841675,-0.0927002057433128,0.599347293376923,0.795103311538696,-0.00163024547509849,0.5462327003479,0.837631940841675,0.00221117492765188,0.542233526706696,0.840224921703339,0.0371880605816841,0.592142105102539,0.804975032806396,-0.0927002057433128,0.599347293376923,0.795103311538696,0.00654046796262264,0.566096901893616,0.8243128657341,0.00482167955487967,0.563283801078796,0.826249420642853,0.010922291316092,0.608330309391022,0.793608725070953,0.0563129782676697,0.613726735115051,0.787507653236389,0.00221117492765188,0.542233526706696,0.840224921703339,-0.00364922476001084,0.553405404090881,0.832904100418091,-0.0907882153987885,0.590850472450256,0.801656544208527,0.0371880605816841,0.592142105102539,0.804975032806396,-0.104683265089989,0.606446266174316,0.788203179836273,
- -0.00209509860724211,0.562114953994751,0.827056467533112,0.00161411089356989,0.546151340007782,0.83768504858017,-0.119589373469353,0.589066684246063,0.799186289310455,-0.00364922476001084,0.553405404090881,0.832904100418091,-0.00866320356726646,0.555934131145477,0.831181228160858,0.0546905510127544,0.578289926052094,0.813996076583862,-0.0760641843080521,0.599629342556,0.7966548204422,-0.0907882153987885,0.590850472450256,0.801656544208527,-0.0672907307744026,0.558765113353729,0.826591491699219,-0.0230211913585663,-0.307400703430176,0.951301693916321,0.0165647324174643,-0.563882231712341,0.825689136981964,0.570617854595184,0.411667466163635,0.710580825805664,0.0377371646463871,-0.557511866092682,0.829310834407806,0.0433461144566536,-0.525431513786316,0.849730968475342,0.0580487065017223,0.608418762683868,0.791490316390991,0.0164226181805134,0.139525264501572,0.990082323551178,0.999260246753693,0.021515142172575,0.0318747833371162,0.936509907245636,-0.176374718546867,0.303053289651871,0.988561868667603,-0.10551543533802,-0.107759244740009,0.969907462596893,-0.213863596320152,-0.116369567811489,0.944055080413818,-0.184768691658974,0.273167312145233,0.860425233840942,0.231628254055977,-0.453890591859818,0.973411321640015,-0.200652226805687,-0.11049485206604,0.999260246753693,0.021515142172575,0.0318747833371162,0.969907462596893,-0.213863596320152,-0.116369567811489,0.988561868667603,-0.10551543533802,-0.107759244740009,0.860425233840942,0.231628254055977,-0.453890591859818,0.944055080413818,-0.184768691658974,0.273167312145233,0.987162470817566,-0.0561631843447685,-0.149519264698029,0.997075498104095,0.0162867046892643,-0.0746670663356781,0.999260246753693,0.021515142172575,0.0318747833371162,0.973411321640015,-0.200652226805687,-0.11049485206604,0.91714483499527,0.182460829615593,-0.35433503985405,0.936509907245636,-0.176374718546867,0.303053289651871,0.969907462596893,-0.213863596320152,-0.116369567811489,0.0182680636644363,-0.861850202083588,0.506833732128143,0.0506719499826431,-0.984378933906555,-0.168613404035568,
- 0.944055080413818,-0.184768691658974,0.273167312145233,0.999260246753693,0.021515142172575,0.0318747833371162,0.0164226181805134,0.139525264501572,0.990082323551178,0.0182680636644363,-0.861850202083588,0.506833732128143,0.969907462596893,-0.213863596320152,-0.116369567811489,0.944055080413818,-0.184768691658974,0.273167312145233,0.0506719499826431,-0.984378933906555,-0.168613404035568,0.0201129261404276,-0.656879723072052,-0.753727078437805,0.987162470817566,-0.0561631843447685,-0.149519264698029,0.91714483499527,0.182460829615593,-0.35433503985405,0.0191800910979509,-0.680054128170013,-0.732910931110382,0.996991157531738,-0.060005709528923,0.0490714944899082,0.973411321640015,-0.200652226805687,-0.11049485206604,0.0122256241738796,0.0709594562649727,-0.997404217720032,0.0191800910979509,-0.680054128170013,-0.732910931110382,0.91714483499527,0.182460829615593,-0.35433503985405,0.0122256241738796,0.0709594562649727,-0.997404217720032,0.973411321640015,-0.200652226805687,-0.11049485206604,0.988561868667603,-0.10551543533802,-0.107759244740009,0.0204147007316351,0.603615701198578,-0.797013938426971,0.0204147007316351,0.603615701198578,-0.797013938426971,0.988561868667603,-0.10551543533802,-0.107759244740009,0.860425233840942,0.231628254055977,-0.453890591859818,0.0505370832979679,0.936712026596069,-0.346433937549591,0.997075498104095,0.0162867046892643,-0.0746670663356781,0.0527767911553383,0.758555114269257,0.649468064308167,0.0505370832979679,0.936712026596069,-0.346433937549591,0.860425233840942,0.231628254055977,-0.453890591859818,0.996991157531738,-0.060005709528923,0.0490714944899082,0.0191800910979509,-0.680054128170013,-0.732910931110382,0.0529880747199059,-0.883996784687042,0.464480221271515,0.996991157531738,-0.060005709528923,0.0490714944899082,0.99134373664856,0.0729473456740379,-0.109161548316479,0.936509907245636,-0.176374718546867,0.303053289651871,0.91714483499527,0.182460829615593,-0.35433503985405,0.0478535369038582,0.902999341487885,0.426968693733215,-0.0272717140614986,0.89072048664093,0.453732460737228,
- -0.0535718128085136,0.875967025756836,0.479386895895004,-0.000692177389282733,0.879088521003723,0.47665798664093,0.00297425547614694,0.880913317203522,0.473268538713455,0.0630195811390877,0.883531033992767,0.464113622903824,-0.0579301379621029,-0.604502618312836,0.794493913650513,-0.93646103143692,0.176526337862015,0.30311581492424,-0.999168455600739,-0.0241041239351034,0.0328822806477547,-0.0164018552750349,-0.14350026845932,0.989514350891113,-0.988479197025299,0.105930924415588,-0.108108960092068,-0.862127602100372,-0.230431631207466,-0.451261967420578,-0.94427216053009,0.184555023908615,0.272560954093933,-0.970135450363159,0.213110014796257,-0.115850001573563,-0.972861886024475,0.20282706618309,-0.111360341310501,-0.988479197025299,0.105930924415588,-0.108108960092068,-0.970135450363159,0.213110014796257,-0.115850001573563,-0.999168455600739,-0.0241041239351034,0.0328822806477547,-0.862127602100372,-0.230431631207466,-0.451261967420578,-0.997345447540283,-0.0162941981106997,-0.0709687322378159,-0.986598908901215,0.0561312027275562,-0.153205260634422,-0.94427216053009,0.184555023908615,0.272560954093933,-0.999168455600739,-0.0241041239351034,0.0328822806477547,-0.93646103143692,0.176526337862015,0.30311581492424,-0.918574988842011,-0.170971274375916,-0.356354773044586,-0.972861886024475,0.20282706618309,-0.111360341310501,-0.970135450363159,0.213110014796257,-0.115850001573563,-0.94427216053009,0.184555023908615,0.272560954093933,-0.0507828406989574,0.983377516269684,-0.17432664334774,-0.0182981174439192,0.860630750656128,0.50890064239502,-0.999168455600739,-0.0241041239351034,0.0328822806477547,-0.970135450363159,0.213110014796257,-0.115850001573563,-0.0182981174439192,0.860630750656128,0.50890064239502,-0.0164018552750349,-0.14350026845932,0.989514350891113,-0.94427216053009,0.184555023908615,0.272560954093933,-0.986598908901215,0.0561312027275562,-0.153205260634422,-0.019835464656353,0.64791464805603,-0.761454641819,-0.0507828406989574,0.983377516269684,-0.17432664334774,-0.0545674152672291,0.686697125434875,-0.724892795085907,
- -0.918574988842011,-0.170971274375916,-0.356354773044586,-0.995830893516541,0.0113590769469738,-0.0905085429549217,-0.0537188351154327,0.996455371379852,0.0647392123937607,-0.972861886024475,0.20282706618309,-0.111360341310501,-0.918574988842011,-0.170971274375916,-0.356354773044586,-0.0545674152672291,0.686697125434875,-0.724892795085907,-0.0122268758714199,-0.0668863579630852,-0.997685730457306,-0.0122268758714199,-0.0668863579630852,-0.997685730457306,-0.0205290038138628,-0.60791289806366,-0.793738305568695,-0.988479197025299,0.105930924415588,-0.108108960092068,-0.972861886024475,0.20282706618309,-0.111360341310501,-0.0205290038138628,-0.60791289806366,-0.793738305568695,-0.0510862246155739,-0.940361618995667,-0.336318612098694,-0.862127602100372,-0.230431631207466,-0.451261967420578,-0.988479197025299,0.105930924415588,-0.108108960092068,-0.997345447540283,-0.0162941981106997,-0.0709687322378159,-0.862127602100372,-0.230431631207466,-0.451261967420578,-0.0510862246155739,-0.940361618995667,-0.336318612098694,-0.052372295409441,-0.753022611141205,0.655907034873962,-0.99724417924881,0.0217551607638597,0.0709272176027298,-0.995830893516541,0.0113590769469738,-0.0905085429549217,-0.918574988842011,-0.170971274375916,-0.356354773044586,-0.93646103143692,0.176526337862015,0.30311581492424,0.0272272974252701,-0.889328360557556,0.456457704305649,-0.0478101186454296,-0.902160108089447,0.428743928670883,-0.0630193501710892,-0.882371783256531,0.466313779354095,-0.00297173066064715,-0.881081104278564,0.472955882549286,0.000658357166685164,-0.878178536891937,0.47833263874054,0.0535889193415642,-0.873957991600037,0.483038008213043,-0.0524329580366611,-0.989408612251282,-0.135356724262238,-0.99724417924881,0.0217551607638597,0.0709272176027298,-0.93646103143692,0.176526337862015,0.30311581492424,-0.0579301379621029,-0.604502618312836,0.794493913650513,-0.0221572946757078,-0.999754309654236,0.00060945242876187,-0.0649391114711761,-0.997888267040253,0.00140654726419598,-0.0693948939442635,-0.99758917093277,-0.000295528530841693,
- -0.0649262443184853,-0.9978888630867,-0.00151607161387801,-0.0221483465284109,-0.999754667282104,0.000334496755385771,-0.0194463264197111,-0.999810934066772,-0.000275905040325597,0.0437648370862007,-0.999039113521576,-0.00233889603987336,0.0544840060174465,-0.998514294624329,-0.000845710979774594,0.0113456035032868,-0.999935686588287,-1.03777301774244e-005,-0.0194393843412399,-0.999810993671417,-0.000250058947131038,0.99134373664856,0.0729473456740379,-0.109161548316479,0.0523701459169388,0.988216817378998,-0.143822610378265,0.0580487065017223,0.608418762683868,0.791490316390991,0.936509907245636,-0.176374718546867,0.303053289651871,0.887072920799255,-0.204164817929268,-0.414026886224747,0.99134373664856,0.0729473456740379,-0.109161548316479,0.996991157531738,-0.060005709528923,0.0490714944899082,0.993509531021118,0.00101912370882928,0.113744638860226,0.887072920799255,-0.204164817929268,-0.414026886224747,0.537276089191437,0.0584488548338413,-0.841378688812256,0.99134373664856,0.0729473456740379,-0.109161548316479,0.993509531021118,0.00101912370882928,0.113744638860226,0.996991157531738,-0.060005709528923,0.0490714944899082,0.0529880747199059,-0.883996784687042,0.464480221271515,-0.999677538871765,-0.0142590617761016,-0.021009985357523,-0.994764626026154,-0.102179564535618,0.00164806691464037,-0.99256044626236,-0.119376607239246,-0.0239373352378607,-0.999155282974243,-0.0222506280988455,-0.0345496200025082,-0.997900545597076,0.0647630542516708,0.000510925077833235,-0.999677538871765,-0.0142590617761016,-0.021009985357523,-0.999155282974243,-0.0222506280988455,-0.0345496200025082,-0.997911989688873,0.0645892769098282,0.00025546207325533,-0.0705531015992165,0.0937908366322517,-0.993088901042938,-0.299529314041138,-0.188648194074631,-0.935250759124756,-0.317378729581833,-0.387024462223053,-0.865726709365845,-0.2238559871912,-0.0809880346059799,-0.971251487731934,-0.256681203842163,-0.0143206845968962,-0.966390013694763,-0.275074303150177,-0.111578494310379,-0.954926311969757,-0.293307483196259,-0.124490574002266,-0.947878062725067,
- -0.399176478385925,-0.00727541232481599,-0.916845202445984,-0.297197729349136,0.0295756254345179,-0.954357862472534,-0.549428522586823,0.0183659698814154,-0.835338830947876,-0.592008948326111,-0.0143013084307313,-0.805804431438446,-0.256681203842163,-0.0143206845968962,-0.966390013694763,-0.372849076986313,-0.0287470556795597,-0.927446603775024,-0.514973819255829,-0.0670827180147171,-0.854576945304871,-0.275074303150177,-0.111578494310379,-0.954926311969757,0.257250964641571,0.490119516849518,-0.832829475402832,0.127046078443527,0.383528262376785,-0.914748787879944,-0.0705531015992165,0.0937908366322517,-0.993088901042938,0.1700100004673,0.132192075252533,-0.976535618305206,0.0926544591784477,0.161549016833305,-0.98250550031662,-0.0776418149471283,0.0830382779240608,-0.993517220020294,0.100175924599171,0.143159151077271,-0.984616756439209,0.216444283723831,0.0879276171326637,-0.972327411174774,0.119681105017662,0.105234831571579,-0.987219393253326,0.0926544591784477,0.161549016833305,-0.98250550031662,0.1700100004673,0.132192075252533,-0.976535618305206,-0.399176478385925,-0.00727541232481599,-0.916845202445984,0.207615047693253,0.115015044808388,-0.971425533294678,0.119698651134968,0.0844295471906662,-0.989213824272156,0.106571421027184,0.144453749060631,-0.983755886554718,-0.297197729349136,0.0295756254345179,-0.954357862472534,0.119698651134968,0.0844295471906662,-0.989213824272156,-0.0705531015992165,0.0937908366322517,-0.993088901042938,0.127046078443527,0.383528262376785,-0.914748787879944,-0.299529314041138,-0.188648194074631,-0.935250759124756,-0.0776418149471283,0.0830382779240608,-0.993517220020294,-0.256681203842163,-0.0143206845968962,-0.966390013694763,-0.2238559871912,-0.0809880346059799,-0.971251487731934,0.0926544591784477,0.161549016833305,-0.98250550031662,0.119681105017662,0.105234831571579,-0.987219393253326,-0.256681203842163,-0.0143206845968962,-0.966390013694763,0.119681105017662,0.105234831571579,-0.987219393253326,0.0131798554211855,0.079604260623455,-0.996739447116852,-0.372849076986313,-0.0287470556795597,-0.927446603775024,
- 0.358845770359039,0.134103775024414,-0.923713088035584,0.119698651134968,0.0844295471906662,-0.989213824272156,0.207615047693253,0.115015044808388,-0.971425533294678,0.106571421027184,0.144453749060631,-0.983755886554718,0.119698651134968,0.0844295471906662,-0.989213824272156,0.358845770359039,0.134103775024414,-0.923713088035584,0.246298670768738,0.331997811794281,-0.910557210445404,-0.0539224296808243,0.118410557508469,-0.991499543190002,0.127046078443527,0.383528262376785,-0.914748787879944,0.257250964641571,0.490119516849518,-0.832829475402832,-0.299529314041138,-0.188648194074631,-0.935250759124756,0.127046078443527,0.383528262376785,-0.914748787879944,-0.0539224296808243,0.118410557508469,-0.991499543190002,-0.308428585529327,-0.13089282810688,-0.942198991775513,-0.317378729581833,-0.387024462223053,-0.865726709365845,-0.299529314041138,-0.188648194074631,-0.935250759124756,-0.308428585529327,-0.13089282810688,-0.942198991775513,-0.347512036561966,-0.260174751281738,-0.900857627391815,-0.256681203842163,-0.0143206845968962,-0.966390013694763,0.119681105017662,0.105234831571579,-0.987219393253326,-0.372849076986313,-0.0287470556795597,-0.927446603775024,-0.372849076986313,-0.0287470556795597,-0.927446603775024,-0.399176478385925,-0.00727541232481599,-0.916845202445984,-0.514973819255829,-0.0670827180147171,-0.854576945304871,-0.514973819255829,-0.0670827180147171,-0.854576945304871,-0.399176478385925,-0.00727541232481599,-0.916845202445984,-0.592008948326111,-0.0143013084307313,-0.805804431438446,0.119698651134968,0.0844295471906662,-0.989213824272156,-0.297197729349136,0.0295756254345179,-0.954357862472534,-0.399176478385925,-0.00727541232481599,-0.916845202445984,-0.0776418149471283,0.0830382779240608,-0.993517220020294,0.0926544591784477,0.161549016833305,-0.98250550031662,-0.256681203842163,-0.0143206845968962,-0.966390013694763,0.119681105017662,0.105234831571579,-0.987219393253326,0.207615047693253,0.115015044808388,-0.971425533294678,0.0131798554211855,0.079604260623455,-0.996739447116852,0.358845770359039,0.134103775024414,-0.923713088035584,
- 0.207615047693253,0.115015044808388,-0.971425533294678,0.119681105017662,0.105234831571579,-0.987219393253326,0.216444283723831,0.0879276171326637,-0.972327411174774,0.0131798554211855,0.079604260623455,-0.996739447116852,0.207615047693253,0.115015044808388,-0.971425533294678,-0.399176478385925,-0.00727541232481599,-0.916845202445984,-0.372849076986313,-0.0287470556795597,-0.927446603775024,0.0131798554211855,0.079604260623455,-0.996739447116852,-0.399176478385925,-0.00727541232481599,-0.916845202445984,-0.000529506360180676,-0.0128103690221906,-0.999917805194855,0.00201478227972984,-0.639933049678802,-0.768428027629852,-0.000302043132251129,0.210540398955345,-0.977585136890411,0.00698327226564288,0.0264048166573048,-0.999626934528351,-0.00989459455013275,-0.997002243995667,-0.0767367407679558,0.00390406860969961,-0.0149940801784396,-0.999879896640778,-0.0118884909898043,-0.50145822763443,-0.865100145339966,0.00201478227972984,-0.639933049678802,-0.768428027629852,-0.0318855941295624,-0.996133983135223,-0.0818554535508156,0.0337520428001881,-0.994026780128479,0.1037862226367,-0.0120718460530043,-0.813389003276825,0.581594944000244,0.00698327226564288,0.0264048166573048,-0.999626934528351,0.121871948242188,0.989726305007935,-0.0747593194246292,0.0783861801028252,0.993723928928375,-0.0798024013638496,0.0661830827593803,0.029536996036768,-0.997370302677155,0.0196324232965708,-0.992943346500397,-0.116952903568745,-0.00989459455013275,-0.997002243995667,-0.0767367407679558,-0.0118884909898043,-0.50145822763443,-0.865100145339966,0.00390406860969961,-0.0149940801784396,-0.999879896640778,0.00801281630992889,-0.0224289670586586,-0.999716281890869,-0.0118884909898043,-0.50145822763443,-0.865100145339966,-0.0509691536426544,0.99677050113678,0.0620538294315338,-0.0386351086199284,0.999246001243591,-0.00383189832791686,0.0389257036149502,0.998907089233398,0.0258729439228773,0.0427710711956024,0.998312473297119,-0.0392796248197556,0.0208593606948853,0.999563634395599,-0.0209150612354279,-0.000529506360180676,-0.0128103690221906,-0.999917805194855,
- -0.0318855941295624,-0.996133983135223,-0.0818554535508156,0.00201478227972984,-0.639933049678802,-0.768428027629852,-0.000302043132251129,0.210540398955345,-0.977585136890411,0.121871948242188,0.989726305007935,-0.0747593194246292,0.00698327226564288,0.0264048166573048,-0.999626934528351,-0.0120718460530043,-0.813389003276825,0.581594944000244,0.0172875802963972,-0.016584912315011,0.999712944030762,0.0145592447370291,0.000767836289014667,0.999893724918365,0.00920164678245783,0.103035017848015,0.994635164737701,0.0377716347575188,0.0255488511174917,0.99895966053009,0.0145592447370291,0.000767836289014667,0.999893724918365,0.0172875802963972,-0.016584912315011,0.999712944030762,0.0411199852824211,-0.0228671003133059,0.998892545700073,0.0227454230189323,0.018516032025218,0.999569773674011,0.0172875802963972,-0.016584912315011,0.999712944030762,0.0337520428001881,-0.994026780128479,0.1037862226367,0.0255523193627596,-0.99409031867981,0.105505555868149,0.0411199852824211,-0.0228671003133059,0.998892545700073,0.00947555899620056,0.772778630256653,0.63460499048233,0.0543942116200924,0.998335599899292,0.0191633868962526,-0.0330636203289032,0.997156858444214,-0.0677125528454781,-0.0511227995157242,0.99510669708252,0.0845522731542587,0.0159461181610823,0.997906148433685,0.0626822710037231,0.0102783888578415,0.0189350266009569,0.999767899513245,-0.00284745660610497,0.0174171309918165,0.999844193458557,0.0195429995656013,0.997481942176819,0.0681755840778351,0.00837643072009087,0.684295117855072,-0.729157149791718,-0.0219542756676674,0.999579727649689,-0.0189329348504543,0.0642218962311745,0.995974361896515,-0.062534473836422,0.0766758546233177,0.995670080184937,0.0525540076196194,0.0145592447370291,0.000767836289014667,0.999893724918365,0.0377716347575188,0.0255488511174917,0.99895966053009,0.0337520428001881,-0.994026780128479,0.1037862226367,0.0172875802963972,-0.016584912315011,0.999712944030762,-0.0120718460530043,-0.813389003276825,0.581594944000244,0.00947555899620056,0.772778630256653,0.63460499048233,0.0766758546233177,0.995670080184937,0.0525540076196194,
- 0.0543942116200924,0.998335599899292,0.0191633868962526,0.00947555899620056,0.772778630256653,0.63460499048233,0.00920164678245783,0.103035017848015,0.994635164737701,0.0145592447370291,0.000767836289014667,0.999893724918365,0.0766758546233177,0.995670080184937,0.0525540076196194,-0.00159074692055583,-0.999653398990631,-0.0262802075594664,0.0878297612071037,-0.0383763313293457,-0.995396018028259,0.00457571586593986,-0.0204725544899702,-0.999779999256134,-0.00117080193012953,-0.995512247085571,-0.0946256816387177,0.0159728452563286,0.0213011913001537,-0.999645531177521,0.0803191065788269,0.99676913022995,-0.000241498157265596,0.232154950499535,0.969646275043488,-0.0767477452754974,0.0505864880979061,0.0142882773652673,-0.99861752986908,0.0124069228768349,-0.38369157910347,0.923377931118011,0.0165095385164022,-0.384997546672821,0.922770023345947,-0.00272230454720557,-0.994918823242188,0.100644342601299,0.0631209835410118,-0.995798230171204,0.0663443803787231,0.0878297612071037,-0.0383763313293457,-0.995396018028259,0.0159728452563286,0.0213011913001537,-0.999645531177521,0.0505864880979061,0.0142882773652673,-0.99861752986908,0.00457571586593986,-0.0204725544899702,-0.999779999256134,0.029730536043644,-0.017770629376173,0.999400019645691,0.0219970010221004,-0.0147637100890279,0.999648988246918,0.0165095385164022,-0.384997546672821,0.922770023345947,0.0124069228768349,-0.38369157910347,0.923377931118011,0.0305956583470106,0.0167445726692677,0.999391615390778,-0.0252666231244802,0.997069120407104,0.0722129642963409,0.0672318786382675,0.446976602077484,0.892015635967255,-0.0252666231244802,0.997069120407104,0.0722129642963409,-0.0271191522479057,0.992785751819611,0.116795390844345,0.0672318786382675,0.446976602077484,0.892015635967255,-0.0244332328438759,0.0159474667161703,-0.999574184417725,0.584248542785645,0.659802198410034,-0.472561985254288,0.361631512641907,0.927824079990387,-0.0914610177278519,0.091966524720192,0.0161048769950867,-0.995631873607636,-0.17972432076931,-0.96216231584549,-0.204799517989159,-0.103280365467072,-0.964375734329224,-0.243541717529297,
- -0.0118884909898043,-0.50145822763443,-0.865100145339966,-0.0118884909898043,-0.50145822763443,-0.865100145339966,0.0432540699839592,-0.015798956155777,-0.998939156532288,0.0761644020676613,-0.0125019093975425,-0.997016906738281,0.0305956583470106,0.0167445726692677,0.999391615390778,0.0263628270477057,0.0161661300808191,0.999521732330322,0.0251691229641438,-0.000620920967776328,0.99968296289444,0.012268534861505,-0.0148898158222437,0.999813795089722,-0.0128213865682483,0.992408692836761,0.122313536703587,-0.0271191522479057,0.992785751819611,0.116795390844345,-0.0488718934357166,0.998804867267609,-0.000608245318289846,-0.0233198907226324,0.996262788772583,-0.0831669345498085,0.0190014895051718,0.780998289585114,0.624244034290314,0.0180223286151886,0.492718636989594,0.870002031326294,0.0242244433611631,0.0174835361540318,0.999553620815277,-0.0104878526180983,0.996410131454468,0.0840044692158699,-0.0104878526180983,0.996410131454468,0.0840044692158699,0.0164713561534882,0.996099233627319,0.0866881310939789,0.0190014895051718,0.780998289585114,0.624244034290314,-0.101313926279545,-0.993177175521851,-0.0577463731169701,0.0907142609357834,-0.0573158487677574,-0.994226276874542,0.0108055351302028,-0.023826602846384,-0.9996577501297,-0.0115615809336305,-0.996088027954102,-0.0876080840826035,-0.133215710520744,0.0631363838911057,-0.989074051380157,0.508538067340851,0.85556960105896,-0.0969003662467003,0.464303255081177,0.882881581783295,-0.0703037455677986,0.138635471463203,0.00936180725693703,-0.990299224853516,0.0316719822585583,-0.995310544967651,0.091399148106575,-0.101313926279545,-0.993177175521851,-0.0577463731169701,-0.0115615809336305,-0.996088027954102,-0.0876080840826035,0.0902860015630722,-0.993425130844116,0.070392444729805,0.0907142609357834,-0.0573158487677574,-0.994226276874542,-0.133215710520744,0.0631363838911057,-0.989074051380157,0.138635471463203,0.00936180725693703,-0.990299224853516,0.0108055351302028,-0.023826602846384,-0.9996577501297,0.00824541598558426,0.691023290157318,0.722785413265228,-0.0615362152457237,0.0406249985098839,0.997277736663818,
- 0.0108311465010047,0.00330974510870874,0.999935865402222,0.00024831184418872,0.763176500797272,0.646190106868744,0.187508821487427,-0.0838996469974518,0.978673219680786,0.0316719822585583,-0.995310544967651,0.091399148106575,0.0902860015630722,-0.993425130844116,0.070392444729805,0.0716174319386482,-0.0174075532704592,0.997280299663544,0.00024831184418872,0.763176500797272,0.646190106868744,-0.0105923060327768,0.99985671043396,0.0132018709555268,0.012379159219563,0.972109794616699,0.234199121594429,0.00824541598558426,0.691023290157318,0.722785413265228,0.0635670572519302,-0.997073948383331,-0.0424583107233047,-0.0326876826584339,-0.00547468708828092,-0.99945056438446,0.011618098244071,-0.0239041410386562,-0.999646723270416,0.017584502696991,-0.993864774703979,-0.10919538885355,0.212332487106323,0.0749534592032433,-0.97431868314743,0.259598463773727,0.683239459991455,-0.682489931583405,0.525014698505402,0.849075496196747,-0.05857053399086,0.0867563933134079,0.00488129025325179,-0.996217548847198,0.0866061449050903,-0.994015991687775,0.0665704682469368,-0.0119073130190372,-0.997857332229614,0.0643345788121223,0.0635670572519302,-0.997073948383331,-0.0424583107233047,0.017584502696991,-0.993864774703979,-0.10919538885355,0.0867563933134079,0.00488129025325179,-0.996217548847198,-0.0205790288746357,0.00549829099327326,-0.999773144721985,0.212332487106323,0.0749534592032433,-0.97431868314743,0.0618341937661171,-0.0144663574174047,0.997981607913971,-0.00284745660610497,0.0174171309918165,0.999844193458557,0.0102783888578415,0.0189350266009569,0.999767899513245,-0.0355469882488251,0.00260369968600571,0.99936455488205,0.0618341937661171,-0.0144663574174047,0.997981607913971,0.0866061449050903,-0.994015991687775,0.0665704682469368,0.00551283964887261,-0.99903392791748,0.043600682169199,0.100876867771149,-0.0132646262645721,0.994810521602631,0.000145540863741189,0.0109369270503521,0.99994021654129,-0.0117544429376721,0.998388826847076,0.0555112063884735,0.00024831184418872,0.763176500797272,0.646190106868744,-0.0117544429376721,0.998388826847076,0.0555112063884735,
- -0.0105923060327768,0.99985671043396,0.0132018709555268,0.00024831184418872,0.763176500797272,0.646190106868744,0.18442764878273,0.0193459875881672,-0.982655704021454,0.28291466832161,0.95720636844635,-0.0609536059200764,0.259598463773727,0.683239459991455,-0.682489931583405,0.212332487106323,0.0749534592032433,-0.97431868314743,-0.0205790288746357,0.00549829099327326,-0.999773144721985,0.18442764878273,0.0193459875881672,-0.982655704021454,0.212332487106323,0.0749534592032433,-0.97431868314743,0.0313500128686428,-0.995010673999786,-0.0947141349315643,-0.0109063917770982,-0.0230930391699076,-0.999673902988434,-0.0326876826584339,-0.00547468708828092,-0.99945056438446,0.0635670572519302,-0.997073948383331,-0.0424583107233047,0.116458222270012,-0.992362022399902,0.040683314204216,0.0313500128686428,-0.995010673999786,-0.0947141349315643,0.0635670572519302,-0.997073948383331,-0.0424583107233047,-0.0119073130190372,-0.997857332229614,0.0643345788121223,0.0716174319386482,-0.0174075532704592,0.997280299663544,0.0902860015630722,-0.993425130844116,0.070392444729805,0.116458222270012,-0.992362022399902,0.040683314204216,0.0509443171322346,-0.0286699999123812,0.998289883136749,0.00024831184418872,0.763176500797272,0.646190106868744,0.0108311465010047,0.00330974510870874,0.999935865402222,0.000145540863741189,0.0109369270503521,0.99994021654129,0.00824541598558426,0.691023290157318,0.722785413265228,0.012379159219563,0.972109794616699,0.234199121594429,-0.0450581423938274,0.998857378959656,0.015928840264678,-0.0149309383705258,0.686271846294403,0.727191865444183,0.589133322238922,0.0294001772999763,-0.807500779628754,0.245380342006683,0.967809915542603,-0.0559695102274418,0.508538067340851,0.85556960105896,-0.0969003662467003,-0.133215710520744,0.0631363838911057,-0.989074051380157,-0.00237023993395269,-0.021253265440464,-0.999771356582642,0.589133322238922,0.0294001772999763,-0.807500779628754,-0.133215710520744,0.0631363838911057,-0.989074051380157,0.0907142609357834,-0.0573158487677574,-0.994226276874542,0.0301234181970358,-0.996051132678986,-0.0835145190358162,
- -0.00237023993395269,-0.021253265440464,-0.999771356582642,0.0907142609357834,-0.0573158487677574,-0.994226276874542,-0.101313926279545,-0.993177175521851,-0.0577463731169701,0.100378513336182,-0.992827117443085,0.064948670566082,0.0301234181970358,-0.996051132678986,-0.0835145190358162,-0.101313926279545,-0.993177175521851,-0.0577463731169701,0.0316719822585583,-0.995310544967651,0.091399148106575,0.225755095481873,-0.0249038767069578,0.973865747451782,0.100378513336182,-0.992827117443085,0.064948670566082,0.0316719822585583,-0.995310544967651,0.091399148106575,0.187508821487427,-0.0838996469974518,0.978673219680786,-0.0149309383705258,0.686271846294403,0.727191865444183,0.0108175463974476,0.00206901598721743,0.999939322471619,-0.0615362152457237,0.0406249985098839,0.997277736663818,0.00824541598558426,0.691023290157318,0.722785413265228,-0.0149309383705258,0.686271846294403,0.727191865444183,-0.0512238815426826,0.996976733207703,0.0584245547652245,-0.00127032154705375,0.016881350427866,0.999856650829315,-0.0149309383705258,0.686271846294403,0.727191865444183,-0.0450581423938274,0.998857378959656,0.015928840264678,-0.0512238815426826,0.996976733207703,0.0584245547652245,0.0124069228768349,-0.38369157910347,0.923377931118011,0.0631209835410118,-0.995798230171204,0.0663443803787231,0.029730536043644,-0.017770629376173,0.999400019645691,-0.00127032154705375,0.016881350427866,0.999856650829315,0.0108175463974476,0.00206901598721743,0.999939322471619,-0.0149309383705258,0.686271846294403,0.727191865444183,0.0126667022705078,0.997278690338135,0.0726281329989433,0.0181268732994795,0.0179920084774494,0.999673902988434,0.0180223286151886,0.492718636989594,0.870002031326294,0.0190014895051718,0.780998289585114,0.624244034290314,0.0164713561534882,0.996099233627319,0.0866881310939789,0.0126667022705078,0.997278690338135,0.0726281329989433,0.0190014895051718,0.780998289585114,0.624244034290314,0.091966524720192,0.0161048769950867,-0.995631873607636,0.361631512641907,0.927824079990387,-0.0914610177278519,0.13521771132946,0.988818287849426,-0.0628866329789162,
- 0.0926784873008728,0.0198810659348965,-0.995497584342957,-0.0118884909898043,-0.50145822763443,-0.865100145339966,0.0761644020676613,-0.0125019093975425,-0.997016906738281,0.0727673396468163,-0.0155547000467777,-0.997227609157562,0.0727673396468163,-0.0155547000467777,-0.997227609157562,-0.139066398143768,-0.986871778964996,-0.0821257010102272,-0.0118884909898043,-0.50145822763443,-0.865100145339966,0.0405310094356537,-0.39999383687973,0.915621161460876,0.0290391426533461,-0.996392548084259,0.0797403529286385,-0.00272230454720557,-0.994918823242188,0.100644342601299,0.0165095385164022,-0.384997546672821,0.922770023345947,0.0317037366330624,-0.0251828748732805,0.99917995929718,0.0290391426533461,-0.996392548084259,0.0797403529286385,0.0405310094356537,-0.39999383687973,0.915621161460876,0.0317037366330624,-0.0251828748732805,0.99917995929718,0.0405310094356537,-0.39999383687973,0.915621161460876,0.0165095385164022,-0.384997546672821,0.922770023345947,0.0219970010221004,-0.0147637100890279,0.999648988246918,0.0661830827593803,0.029536996036768,-0.997370302677155,0.0783861801028252,0.993723928928375,-0.0798024013638496,0.584248542785645,0.659802198410034,-0.472561985254288,-0.0244332328438759,0.0159474667161703,-0.999574184417725,-0.103280365467072,-0.964375734329224,-0.243541717529297,0.0196324232965708,-0.992943346500397,-0.116952903568745,-0.0118884909898043,-0.50145822763443,-0.865100145339966,-0.0118884909898043,-0.50145822763443,-0.865100145339966,0.00801281630992889,-0.0224289670586586,-0.999716281890869,0.0432540699839592,-0.015798956155777,-0.998939156532288,-0.140485137701035,0.588296115398407,0.796348929405212,0.0203266255557537,0.00380498520098627,0.999786138534546,0.0263628270477057,0.0161661300808191,0.999521732330322,0.0672318786382675,0.446976602077484,0.892015635967255,0.0227454230189323,0.018516032025218,0.999569773674011,-0.0125927021726966,0.996176719665527,0.0864486619830132,0.0766758546233177,0.995670080184937,0.0525540076196194,0.0377716347575188,0.0255488511174917,0.99895966053009,-0.0125927021726966,0.996176719665527,0.0864486619830132,
- -0.0233198907226324,0.996262788772583,-0.0831669345498085,-0.0330636203289032,0.997156858444214,-0.0677125528454781,0.0543942116200924,0.998335599899292,0.0191633868962526,0.0766758546233177,0.995670080184937,0.0525540076196194,-0.0355469882488251,0.00260369968600571,0.99936455488205,0.0509443171322346,-0.0286699999123812,0.998289883136749,0.0600815787911415,-0.441608428955078,0.895193934440613,-0.00474725011736155,0.997581779956818,0.0693393051624298,-0.0205284859985113,0.0177777130156755,0.999631285667419,0.0102783888578415,0.0189350266009569,0.999767899513245,0.0159461181610823,0.997906148433685,0.0626822710037231,-0.00282695353962481,0.997657835483551,-0.0683438181877136,-0.0219542756676674,0.999579727649689,-0.0189329348504543,0.00837643072009087,0.684295117855072,-0.729157149791718,0.012379159219563,0.972109794616699,0.234199121594429,-0.0105923060327768,0.99985671043396,0.0132018709555268,-0.00489521259441972,0.997894763946533,-0.0646707490086555,-0.012760060839355,0.99793142080307,-0.0630086287856102,-0.0450581423938274,0.998857378959656,0.015928840264678,0.012379159219563,0.972109794616699,0.234199121594429,-0.012760060839355,0.99793142080307,-0.0630086287856102,0.00984682235866785,0.997670531272888,-0.067501500248909,-0.0615362152457237,0.0406249985098839,0.997277736663818,0.0108175463974476,0.00206901598721743,0.999939322471619,0.225755095481873,-0.0249038767069578,0.973865747451782,0.187508821487427,-0.0838996469974518,0.978673219680786,0.0108311465010047,0.00330974510870874,0.999935865402222,-0.0615362152457237,0.0406249985098839,0.997277736663818,0.187508821487427,-0.0838996469974518,0.978673219680786,0.0716174319386482,-0.0174075532704592,0.997280299663544,0.0180223286151886,0.492718636989594,0.870002031326294,0.0181268732994795,0.0179920084774494,0.999673902988434,0.0146383056417108,-0.00377406063489616,0.999885737895966,0.0122075453400612,-0.0295977517962456,0.999487340450287,0.0365783832967281,-0.995123028755188,0.0916082039475441,0.0290391426533461,-0.996392548084259,0.0797403529286385,0.0317037366330624,-0.0251828748732805,0.99917995929718,
- -0.139066398143768,-0.986871778964996,-0.0821257010102272,-0.17972432076931,-0.96216231584549,-0.204799517989159,-0.0118884909898043,-0.50145822763443,-0.865100145339966,-0.00272230454720557,-0.994918823242188,0.100644342601299,-0.00159074692055583,-0.999653398990631,-0.0262802075594664,-0.00117080193012953,-0.995512247085571,-0.0946256816387177,0.0631209835410118,-0.995798230171204,0.0663443803787231,0.029730536043644,-0.017770629376173,0.999400019645691,0.0631209835410118,-0.995798230171204,0.0663443803787231,0.100378513336182,-0.992827117443085,0.064948670566082,0.225755095481873,-0.0249038767069578,0.973865747451782,0.0146383056417108,-0.00377406063489616,0.999885737895966,0.0242244433611631,0.0174835361540318,0.999553620815277,0.0180223286151886,0.492718636989594,0.870002031326294,0.0618341937661171,-0.0144663574174047,0.997981607913971,-0.0355469882488251,0.00260369968600571,0.99936455488205,0.0600815787911415,-0.441608428955078,0.895193934440613,0.0600815787911415,-0.441608428955078,0.895193934440613,0.0987822860479355,-0.816254615783691,0.569184005260468,0.0866061449050903,-0.994015991687775,0.0665704682469368,0.0618341937661171,-0.0144663574174047,0.997981607913971,0.0987822860479355,-0.816254615783691,0.569184005260468,-0.0119073130190372,-0.997857332229614,0.0643345788121223,0.0866061449050903,-0.994015991687775,0.0665704682469368,0.116458222270012,-0.992362022399902,0.040683314204216,-0.0119073130190372,-0.997857332229614,0.0643345788121223,0.0987822860479355,-0.816254615783691,0.569184005260468,0.0509443171322346,-0.0286699999123812,0.998289883136749,0.116458222270012,-0.992362022399902,0.040683314204216,0.0987822860479355,-0.816254615783691,0.569184005260468,0.0600815787911415,-0.441608428955078,0.895193934440613,-0.0355469882488251,0.00260369968600571,0.99936455488205,0.0102783888578415,0.0189350266009569,0.999767899513245,-0.0205284859985113,0.0177777130156755,0.999631285667419,0.0509443171322346,-0.0286699999123812,0.998289883136749,0.0251691229641438,-0.000620920967776328,0.99968296289444,0.0683644413948059,-0.012974732555449,0.997575998306274,
- 0.0497929826378822,-0.266281604766846,0.962608337402344,0.012268534861505,-0.0148898158222437,0.999813795089722,0.0251691229641438,-0.000620920967776328,0.99968296289444,0.0497929826378822,-0.266281604766846,0.962608337402344,0.0122075453400612,-0.0295977517962456,0.999487340450287,0.012268534861505,-0.0148898158222437,0.999813795089722,0.0497929826378822,-0.266281604766846,0.962608337402344,0.0497929826378822,-0.266281604766846,0.962608337402344,0.0145999873057008,-0.670888900756836,0.741414189338684,0.0365783832967281,-0.995123028755188,0.0916082039475441,0.0122075453400612,-0.0295977517962456,0.999487340450287,0.0261599645018578,-0.999561727046967,0.0138569893315434,0.0365783832967281,-0.995123028755188,0.0916082039475441,0.0145999873057008,-0.670888900756836,0.741414189338684,0.0145999873057008,-0.670888900756836,0.741414189338684,-0.0260819308459759,-0.997908592224121,-0.0591462850570679,0.0261599645018578,-0.999561727046967,0.0138569893315434,0.0145999873057008,-0.670888900756836,0.741414189338684,-0.0351139754056931,-0.998840093612671,0.0329460166394711,-0.0260819308459759,-0.997908592224121,-0.0591462850570679,0.0255523193627596,-0.99409031867981,0.105505555868149,-0.0351139754056931,-0.998840093612671,0.0329460166394711,0.0145999873057008,-0.670888900756836,0.741414189338684,0.0411199852824211,-0.0228671003133059,0.998892545700073,0.0255523193627596,-0.99409031867981,0.105505555868149,0.0145999873057008,-0.670888900756836,0.741414189338684,0.0497929826378822,-0.266281604766846,0.962608337402344,0.0683644413948059,-0.012974732555449,0.997575998306274,0.0411199852824211,-0.0228671003133059,0.998892545700073,0.0497929826378822,-0.266281604766846,0.962608337402344,0.0227454230189323,0.018516032025218,0.999569773674011,0.0203266255557537,0.00380498520098627,0.999786138534546,-0.140485137701035,0.588296115398407,0.796348929405212,-0.140485137701035,0.588296115398407,0.796348929405212,-0.0125927021726966,0.996176719665527,0.0864486619830132,0.0227454230189323,0.018516032025218,0.999569773674011,-0.140485137701035,0.588296115398407,0.796348929405212,
- -0.0128213865682483,0.992408692836761,0.122313536703587,-0.0125927021726966,0.996176719665527,0.0864486619830132,0.0672318786382675,0.446976602077484,0.892015635967255,-0.0271191522479057,0.992785751819611,0.116795390844345,-0.0128213865682483,0.992408692836761,0.122313536703587,-0.140485137701035,0.588296115398407,0.796348929405212,0.0263628270477057,0.0161661300808191,0.999521732330322,0.0203266255557537,0.00380498520098627,0.999786138534546,0.0683644413948059,-0.012974732555449,0.997575998306274,0.0251691229641438,-0.000620920967776328,0.99968296289444,0.0672318786382675,0.446976602077484,0.892015635967255,0.0263628270477057,0.0161661300808191,0.999521732330322,0.0305956583470106,0.0167445726692677,0.999391615390778,-0.0252666231244802,0.997069120407104,0.0722129642963409,-0.050177875906229,0.996544659137726,-0.0661876648664474,-0.0488718934357166,0.998804867267609,-0.000608245318289846,-0.0271191522479057,0.992785751819611,0.116795390844345,0.0642218962311745,0.995974361896515,-0.062534473836422,-0.0219542756676674,0.999579727649689,-0.0189329348504543,0.0159461181610823,0.997906148433685,0.0626822710037231,0.0195429995656013,0.997481942176819,0.0681755840778351,0.0867563933134079,0.00488129025325179,-0.996217548847198,0.525014698505402,0.849075496196747,-0.05857053399086,0.284714430570602,0.955825924873352,-0.0730379298329353,-0.0104914922267199,-0.00135905970819294,-0.999944031238556,-0.0326876826584339,-0.00547468708828092,-0.99945056438446,-0.0205790288746357,0.00549829099327326,-0.999773144721985,0.0867563933134079,0.00488129025325179,-0.996217548847198,0.011618098244071,-0.0239041410386562,-0.999646723270416,-0.0109063917770982,-0.0230930391699076,-0.999673902988434,0.18442764878273,0.0193459875881672,-0.982655704021454,-0.0205790288746357,0.00549829099327326,-0.999773144721985,-0.0326876826584339,-0.00547468708828092,-0.99945056438446,0.138635471463203,0.00936180725693703,-0.990299224853516,0.464303255081177,0.882881581783295,-0.0703037455677986,0.28291466832161,0.95720636844635,-0.0609536059200764,0.18442764878273,0.0193459875881672,-0.982655704021454,
- -0.00282695353962481,0.997657835483551,-0.0683438181877136,-0.00474725011736155,0.997581779956818,0.0693393051624298,0.0159461181610823,0.997906148433685,0.0626822710037231,-0.0219542756676674,0.999579727649689,-0.0189329348504543,0.029730536043644,-0.017770629376173,0.999400019645691,0.0242244433611631,0.0174835361540318,0.999553620815277,0.0146383056417108,-0.00377406063489616,0.999885737895966,0.0219970010221004,-0.0147637100890279,0.999648988246918,-0.0104878526180983,0.996410131454468,0.0840044692158699,0.0242244433611631,0.0174835361540318,0.999553620815277,-0.00127032154705375,0.016881350427866,0.999856650829315,-0.0512238815426826,0.996976733207703,0.0584245547652245,0.0180817414075136,0.999811887741089,-0.00701887346804142,0.0164713561534882,0.996099233627319,0.0866881310939789,-0.0104878526180983,0.996410131454468,0.0840044692158699,0.00554750207811594,0.996907830238342,-0.0783843025565147,0.0126667022705078,0.997278690338135,0.0726281329989433,-0.00241066655144095,0.997580707073212,-0.0694759264588356,-0.050177875906229,0.996544659137726,-0.0661876648664474,-0.0252666231244802,0.997069120407104,0.0722129642963409,-0.0252666231244802,0.997069120407104,0.0722129642963409,0.0305956583470106,0.0167445726692677,0.999391615390778,0.0181268732994795,0.0179920084774494,0.999673902988434,0.0126667022705078,0.997278690338135,0.0726281329989433,0.0122075453400612,-0.0295977517962456,0.999487340450287,0.0305956583470106,0.0167445726692677,0.999391615390778,0.012268534861505,-0.0148898158222437,0.999813795089722,-0.0318855941295624,-0.996133983135223,-0.0818554535508156,-0.00989459455013275,-0.997002243995667,-0.0767367407679558,0.0255523193627596,-0.99409031867981,0.105505555868149,0.0337520428001881,-0.994026780128479,0.1037862226367,-0.0318855941295624,-0.996133983135223,-0.0818554535508156,-0.000529506360180676,-0.0128103690221906,-0.999917805194855,0.00390406860969961,-0.0149940801784396,-0.999879896640778,-0.00989459455013275,-0.997002243995667,-0.0767367407679558,-0.000529506360180676,-0.0128103690221906,-0.999917805194855,
- 0.00698327226564288,0.0264048166573048,-0.999626934528351,0.0661830827593803,0.029536996036768,-0.997370302677155,0.00390406860969961,-0.0149940801784396,-0.999879896640778,0.0432540699839592,-0.015798956155777,-0.998939156532288,0.00801281630992889,-0.0224289670586586,-0.999716281890869,0.0661830827593803,0.029536996036768,-0.997370302677155,-0.0244332328438759,0.0159474667161703,-0.999574184417725,0.0761644020676613,-0.0125019093975425,-0.997016906738281,0.0432540699839592,-0.015798956155777,-0.998939156532288,-0.0244332328438759,0.0159474667161703,-0.999574184417725,0.091966524720192,0.0161048769950867,-0.995631873607636,0.0727673396468163,-0.0155547000467777,-0.997227609157562,0.0761644020676613,-0.0125019093975425,-0.997016906738281,0.091966524720192,0.0161048769950867,-0.995631873607636,0.0926784873008728,0.0198810659348965,-0.995497584342957,-0.00961538683623075,-0.0184855945408344,-0.999782800674438,-0.00961538683623075,-0.0184855945408344,-0.999782800674438,0.0227660555392504,-0.994410932064056,-0.103094764053822,-0.139066398143768,-0.986871778964996,-0.0821257010102272,0.0727673396468163,-0.0155547000467777,-0.997227609157562,-0.139066398143768,-0.986871778964996,-0.0821257010102272,0.0365783832967281,-0.995123028755188,0.0916082039475441,0.0261599645018578,-0.999561727046967,0.0138569893315434,-0.17972432076931,-0.96216231584549,-0.204799517989159,0.0261599645018578,-0.999561727046967,0.0138569893315434,-0.0260819308459759,-0.997908592224121,-0.0591462850570679,-0.103280365467072,-0.964375734329224,-0.243541717529297,-0.17972432076931,-0.96216231584549,-0.204799517989159,-0.0260819308459759,-0.997908592224121,-0.0591462850570679,-0.0351139754056931,-0.998840093612671,0.0329460166394711,0.0196324232965708,-0.992943346500397,-0.116952903568745,-0.103280365467072,-0.964375734329224,-0.243541717529297,0.0195429995656013,0.997481942176819,0.0681755840778351,-0.00284745660610497,0.0174171309918165,0.999844193458557,0.0381269380450249,0.0137622561305761,0.999178171157837,0.125221520662308,0.991399228572845,0.0380422621965408,
- 0.0642218962311745,0.995974361896515,-0.062534473836422,0.0195429995656013,0.997481942176819,0.0681755840778351,0.125221520662308,0.991399228572845,0.0380422621965408,0.113543689250946,0.993528127670288,-0.00313655752688646,0.114085637032986,0.990556955337524,-0.0760356932878494,-0.00489521259441972,0.997894763946533,-0.0646707490086555,-0.0105923060327768,0.99985671043396,0.0132018709555268,-0.0117544429376721,0.998388826847076,0.0555112063884735,-0.00474725011736155,0.997581779956818,0.0693393051624298,-0.00282695353962481,0.997657835483551,-0.0683438181877136,-0.0117544429376721,0.998388826847076,0.0555112063884735,0.000145540863741189,0.0109369270503521,0.99994021654129,-0.0205284859985113,0.0177777130156755,0.999631285667419,-0.00474725011736155,0.997581779956818,0.0693393051624298,0.0509443171322346,-0.0286699999123812,0.998289883136749,-0.0205284859985113,0.0177777130156755,0.999631285667419,0.000145540863741189,0.0109369270503521,0.99994021654129,0.0108311465010047,0.00330974510870874,0.999935865402222,0.0716174319386482,-0.0174075532704592,0.997280299663544,0.00554750207811594,0.996907830238342,-0.0783843025565147,-0.0104878526180983,0.996410131454468,0.0840044692158699,-0.0512238815426826,0.996976733207703,0.0584245547652245,-0.0450581423938274,0.998857378959656,0.015928840264678,0.00984682235866785,0.997670531272888,-0.067501500248909,0.0505864880979061,0.0142882773652673,-0.99861752986908,0.232154950499535,0.969646275043488,-0.0767477452754974,0.245380342006683,0.967809915542603,-0.0559695102274418,0.589133322238922,0.0294001772999763,-0.807500779628754,0.00457571586593986,-0.0204725544899702,-0.999779999256134,0.0505864880979061,0.0142882773652673,-0.99861752986908,0.589133322238922,0.0294001772999763,-0.807500779628754,-0.00237023993395269,-0.021253265440464,-0.999771356582642,-0.00117080193012953,-0.995512247085571,-0.0946256816387177,0.00457571586593986,-0.0204725544899702,-0.999779999256134,-0.00237023993395269,-0.021253265440464,-0.999771356582642,0.0301234181970358,-0.996051132678986,-0.0835145190358162,
- 0.0631209835410118,-0.995798230171204,0.0663443803787231,-0.00117080193012953,-0.995512247085571,-0.0946256816387177,0.0301234181970358,-0.996051132678986,-0.0835145190358162,0.100378513336182,-0.992827117443085,0.064948670566082,0.0290391426533461,-0.996392548084259,0.0797403529286385,0.0365783832967281,-0.995123028755188,0.0916082039475441,-0.139066398143768,-0.986871778964996,-0.0821257010102272,0.0227660555392504,-0.994410932064056,-0.103094764053822,0.0317037366330624,-0.0251828748732805,0.99917995929718,0.0181268732994795,0.0179920084774494,0.999673902988434,0.0305956583470106,0.0167445726692677,0.999391615390778,0.0122075453400612,-0.0295977517962456,0.999487340450287,0.0146383056417108,-0.00377406063489616,0.999885737895966,0.0181268732994795,0.0179920084774494,0.999673902988434,0.0317037366330624,-0.0251828748732805,0.99917995929718,0.0219970010221004,-0.0147637100890279,0.999648988246918,0.0180817414075136,0.999811887741089,-0.00701887346804142,-0.00241066655144095,0.997580707073212,-0.0694759264588356,0.0126667022705078,0.997278690338135,0.0726281329989433,0.0164713561534882,0.996099233627319,0.0866881310939789,0.0926784873008728,0.0198810659348965,-0.995497584342957,0.13521771132946,0.988818287849426,-0.0628866329789162,0.0803191065788269,0.99676913022995,-0.000241498157265596,0.0159728452563286,0.0213011913001537,-0.999645531177521,-0.00961538683623075,-0.0184855945408344,-0.999782800674438,0.0926784873008728,0.0198810659348965,-0.995497584342957,0.0159728452563286,0.0213011913001537,-0.999645531177521,0.0878297612071037,-0.0383763313293457,-0.995396018028259,-0.00159074692055583,-0.999653398990631,-0.0262802075594664,0.0227660555392504,-0.994410932064056,-0.103094764053822,-0.00961538683623075,-0.0184855945408344,-0.999782800674438,0.0878297612071037,-0.0383763313293457,-0.995396018028259,0.0290391426533461,-0.996392548084259,0.0797403529286385,0.0227660555392504,-0.994410932064056,-0.103094764053822,-0.00159074692055583,-0.999653398990631,-0.0262802075594664,-0.00272230454720557,-0.994918823242188,0.100644342601299,
- -0.00127032154705375,0.016881350427866,0.999856650829315,0.0242244433611631,0.0174835361540318,0.999553620815277,0.029730536043644,-0.017770629376173,0.999400019645691,0.225755095481873,-0.0249038767069578,0.973865747451782,0.0108175463974476,0.00206901598721743,0.999939322471619,0.0227454230189323,0.018516032025218,0.999569773674011,0.0411199852824211,-0.0228671003133059,0.998892545700073,0.0683644413948059,-0.012974732555449,0.997575998306274,0.0203266255557537,0.00380498520098627,0.999786138534546,-0.0125927021726966,0.996176719665527,0.0864486619830132,-0.0128213865682483,0.992408692836761,0.122313536703587,-0.0233198907226324,0.996262788772583,-0.0831669345498085,0.00390406860969961,-0.0149940801784396,-0.999879896640778,0.0661830827593803,0.029536996036768,-0.997370302677155,0.00801281630992889,-0.0224289670586586,-0.999716281890869,0.0255523193627596,-0.99409031867981,0.105505555868149,-0.00989459455013275,-0.997002243995667,-0.0767367407679558,0.0196324232965708,-0.992943346500397,-0.116952903568745,-0.0351139754056931,-0.998840093612671,0.0329460166394711,0.011618098244071,-0.0239041410386562,-0.999646723270416,0.0867563933134079,0.00488129025325179,-0.996217548847198,-0.0104914922267199,-0.00135905970819294,-0.999944031238556,-0.0113863423466682,-0.0104399565607309,-0.999880731105804,-0.0119277788326144,-0.0104402247816324,-0.999874353408813,-0.0113421408459544,-0.0104399351403117,-0.999881207942963,0.00250209867954254,-0.0222304947674274,-0.999749779701233,0.017584502696991,-0.993864774703979,-0.10919538885355,0.011618098244071,-0.0239041410386562,-0.999646723270416,0.00250209867954254,-0.0222304947674274,-0.999749779701233,0.0498893335461617,-0.994145095348358,-0.0958470702171326,0.0866061449050903,-0.994015991687775,0.0665704682469368,0.017584502696991,-0.993864774703979,-0.10919538885355,0.0498893335461617,-0.994145095348358,-0.0958470702171326,0.0173716340214014,-0.999740839004517,0.0147155057638884,0.00551283964887261,-0.99903392791748,0.043600682169199,0.0902860015630722,-0.993425130844116,0.070392444729805,
- -0.0115615809336305,-0.996088027954102,-0.0876080840826035,0.0313500128686428,-0.995010673999786,-0.0947141349315643,0.116458222270012,-0.992362022399902,0.040683314204216,-0.0115615809336305,-0.996088027954102,-0.0876080840826035,0.0108055351302028,-0.023826602846384,-0.9996577501297,-0.0109063917770982,-0.0230930391699076,-0.999673902988434,0.0313500128686428,-0.995010673999786,-0.0947141349315643,0.0108055351302028,-0.023826602846384,-0.9996577501297,0.138635471463203,0.00936180725693703,-0.990299224853516,0.18442764878273,0.0193459875881672,-0.982655704021454,-0.0109063917770982,-0.0230930391699076,-0.999673902988434,0.100876867771149,-0.0132646262645721,0.994810521602631,0.00319305481389165,0.00188312749378383,0.999993145465851,0.00948024075478315,0.00188337080180645,0.999953389167786,0.0175682697445154,0.00188357313163579,0.999843955039978,0.0381269380450249,0.0137622561305761,0.999178171157837,-0.00284745660610497,0.0174171309918165,0.999844193458557,0.0618341937661171,-0.0144663574174047,0.997981607913971,-0.47198623418808,0.865344405174255,0.168547257781029,-0.214468911290169,0.976179897785187,0.0327978022396564,-0.282883733510971,0.957299053668976,0.0596272423863411,-0.467121243476868,0.863852441310883,0.188565313816071,-0.466870367527008,0.863880813121796,0.189056143164635,-0.380309820175171,0.922052443027496,0.0719976350665092,-0.213959217071533,0.970612406730652,0.110150158405304,-0.209052607417107,0.975140810012817,0.0734664276242256,-0.416920095682144,0.901102244853973,0.119131773710251,-0.416920095682144,0.901102244853973,0.119131773710251,-0.209052607417107,0.975140810012817,0.0734664276242256,-0.214468911290169,0.976179897785187,0.0327978022396564,-0.47198623418808,0.865344405174255,0.168547257781029,-0.213959217071533,0.970612406730652,0.110150158405304,-0.28729522228241,0.953682959079742,0.0891638994216919,-0.0710726678371429,0.985814690589905,0.152046248316765,-0.0694850161671638,0.98664802312851,0.147300496697426,0.00531130423769355,0.996587514877319,0.082370713353157,-0.213959217071533,0.970612406730652,0.110150158405304,
- 0.00531130423769355,0.996587514877319,0.082370713353157,0.155177190899849,0.987375199794769,0.0317840576171875,-0.209052607417107,0.975140810012817,0.0734664276242256,-0.214468911290169,0.976179897785187,0.0327978022396564,-0.209052607417107,0.975140810012817,0.0734664276242256,0.155177190899849,0.987375199794769,0.0317840576171875,0.111785508692265,0.993722438812256,-0.00443553319200873,-0.282883733510971,0.957299053668976,0.0596272423863411,-0.214468911290169,0.976179897785187,0.0327978022396564,0.111785508692265,0.993722438812256,-0.00443553319200873,0.0361647605895996,0.998810946941376,-0.0326942056417465,0.00917025655508041,0.997179329395294,-0.0744946226477623,-0.392463505268097,0.918646633625031,0.0453976504504681,-0.392529785633087,0.918604075908661,0.0456858761608601,-0.28729522228241,0.953682959079742,0.0891638994216919,-0.213959217071533,0.970612406730652,0.110150158405304,-0.380309820175171,0.922052443027496,0.0719976350665092,0.100175924599171,0.143159151077271,-0.984616756439209,-0.0776418149471283,0.0830382779240608,-0.993517220020294,-0.0539224296808243,0.118410557508469,-0.991499543190002,0.246298670768738,0.331997811794281,-0.910557210445404,-0.308428585529327,-0.13089282810688,-0.942198991775513,-0.0539224296808243,0.118410557508469,-0.991499543190002,-0.0776418149471283,0.0830382779240608,-0.993517220020294,-0.2238559871912,-0.0809880346059799,-0.971251487731934,-0.347512036561966,-0.260174751281738,-0.900857627391815,-0.308428585529327,-0.13089282810688,-0.942198991775513,-0.2238559871912,-0.0809880346059799,-0.971251487731934,-0.293307483196259,-0.124490574002266,-0.947878062725067,-0.996699750423431,-0.0561500452458858,0.0586238317191601,-0.952727556228638,0.146852418780327,0.265978574752808,-0.892123758792877,0.0966445654630661,-0.441333264112473,-0.998790740966797,-0.0480107665061951,-0.0105826137587428,-0.998790740966797,-0.0480107665061951,-0.0105826137587428,-0.988919377326965,-0.146156877279282,0.0260127782821655,-0.986897349357605,-0.143015533685684,0.0747006386518478,-0.996699750423431,-0.0561500452458858,0.0586238317191601,
- -0.952727556228638,0.146852418780327,0.265978574752808,-0.993613719940186,0.0341721512377262,0.107536435127258,-0.94698828458786,0.298765420913696,0.118120491504669,-0.892123758792877,0.0966445654630661,-0.441333264112473,-0.0591893941164017,-0.624619662761688,0.778682768344879,-0.941452264785767,0.219808459281921,0.255639731884003,-0.999434590339661,0.0167269371449947,0.0291667096316814,-0.0139612732455134,-0.188552290201187,0.981963872909546,-0.999378859996796,0.0234271995723248,-0.0263254344463348,-0.910734951496124,-0.196764975786209,-0.363105148077011,-0.941196322441101,0.238594233989716,0.239211365580559,-0.918183267116547,0.354355126619339,-0.177121013402939,-0.939975619316101,0.31665900349617,-0.127172544598579,-0.999378859996796,0.0234271995723248,-0.0263254344463348,-0.918183267116547,0.354355126619339,-0.177121013402939,-0.999434590339661,0.0167269371449947,0.0291667096316814,-0.910734951496124,-0.196764975786209,-0.363105148077011,-0.970351994037628,0.0200632438063622,0.240861728787422,-0.981972694396973,0.104922920465469,-0.157228082418442,-0.941196322441101,0.238594233989716,0.239211365580559,-0.988919377326965,-0.146156877279282,0.0260127782821655,-0.992946982383728,-0.0293720550835133,-0.114862568676472,-0.931826412677765,0.177959859371185,0.31627494096756,-0.986897349357605,-0.143015533685684,0.0747006386518478,-0.999434590339661,0.0167269371449947,0.0291667096316814,-0.941452264785767,0.219808459281921,0.255639731884003,-0.972412347793579,-0.0799942687153816,-0.219123736023903,-0.939975619316101,0.31665900349617,-0.127172544598579,-0.918183267116547,0.354355126619339,-0.177121013402939,-0.941196322441101,0.238594233989716,0.239211365580559,-0.0526911243796349,0.99529629945755,-0.0812947303056717,-0.0173793956637383,0.797225713729858,0.603431105613709,-0.999434590339661,0.0167269371449947,0.0291667096316814,-0.918183267116547,0.354355126619339,-0.177121013402939,-0.0173793956637383,0.797225713729858,0.603431105613709,-0.0139612732455134,-0.188552290201187,0.981963872909546,-0.941196322441101,0.238594233989716,0.239211365580559,
- -0.981972694396973,0.104922920465469,-0.157228082418442,-0.0181444510817528,0.728306591510773,-0.685011148452759,-0.0526911243796349,0.99529629945755,-0.0812947303056717,-0.931826412677765,0.177959859371185,0.31627494096756,-0.992946982383728,-0.0293720550835133,-0.114862568676472,-0.993662774562836,0.103852510452271,-0.0429985038936138,-0.993587493896484,-0.109857976436615,-0.0267379600554705,-0.986897349357605,-0.143015533685684,0.0747006386518478,-0.931826412677765,0.177959859371185,0.31627494096756,-0.999589264392853,-0.0252973437309265,-0.0134641323238611,-0.998905301094055,-0.0462405420839787,-0.00707109877839684,-0.996699750423431,-0.0561500452458858,0.0586238317191601,-0.986897349357605,-0.143015533685684,0.0747006386518478,-0.998905301094055,-0.0462405420839787,-0.00707109877839684,-0.998913764953613,-0.0462220162153244,-0.00590798445045948,-0.998496294021606,-0.0547743514180183,-0.00222929893061519,-0.931826412677765,0.177959859371185,0.31627494096756,-0.993587493896484,-0.109857976436615,-0.0267379600554705,-0.999917030334473,-0.00927635375410318,0.00894569139927626,-0.999579846858978,-0.0253647770732641,-0.0140284951776266,-0.998767495155334,-0.0381107218563557,-0.0318004041910172,-0.99946802854538,-0.0276768021285534,-0.0172514375299215,-0.999589264392853,-0.0252973437309265,-0.0134641323238611,-0.939975619316101,0.31665900349617,-0.127172544598579,-0.972412347793579,-0.0799942687153816,-0.219123736023903,-0.992946982383728,-0.0293720550835133,-0.114862568676472,-0.988919377326965,-0.146156877279282,0.0260127782821655,-0.988919377326965,-0.146156877279282,0.0260127782821655,-0.998790740966797,-0.0480107665061951,-0.0105826137587428,-0.999378859996796,0.0234271995723248,-0.0263254344463348,-0.939975619316101,0.31665900349617,-0.127172544598579,-0.998790740966797,-0.0480107665061951,-0.0105826137587428,-0.892123758792877,0.0966445654630661,-0.441333264112473,-0.910734951496124,-0.196764975786209,-0.363105148077011,-0.999378859996796,0.0234271995723248,-0.0263254344463348,-0.910734951496124,-0.196764975786209,-0.363105148077011,
- -0.569944560527802,-0.816490292549133,0.0922325700521469,-0.970351994037628,0.0200632438063622,0.240861728787422,-0.892123758792877,0.0966445654630661,-0.441333264112473,-0.94698828458786,0.298765420913696,0.118120491504669,-0.569944560527802,-0.816490292549133,0.0922325700521469,-0.910734951496124,-0.196764975786209,-0.363105148077011,-0.972412347793579,-0.0799942687153816,-0.219123736023903,-0.986779749393463,0.147070005536079,0.0680886283516884,-0.993662774562836,0.103852510452271,-0.0429985038936138,-0.992946982383728,-0.0293720550835133,-0.114862568676472,-0.986779749393463,0.147070005536079,0.0680886283516884,-0.972412347793579,-0.0799942687153816,-0.219123736023903,-0.941452264785767,0.219808459281921,0.255639731884003,-0.987569272518158,-0.0830012857913971,-0.133482336997986,-0.0511716641485691,-0.893504619598389,0.446128815412521,-0.060273677110672,-0.894088625907898,0.443816006183624,-0.00302915787324309,-0.895034551620483,0.445986717939377,0.000381777237635106,-0.894501864910126,0.44706404209137,0.0602445639669895,-0.893799185752869,0.444402456283569,0.02229736559093,-0.895047664642334,0.445412993431091,0.995716333389282,0.0405710190534592,0.08308295160532,0.998904407024384,0.0453202240169048,-0.0116623658686876,0.849036395549774,-0.328846365213394,-0.413518220186234,0.874079823493958,-0.247307866811752,0.418118596076965,0.998904407024384,0.0453202240169048,-0.0116623658686876,0.995716333389282,0.0405710190534592,0.08308295160532,0.983942866325378,0.143105641007423,0.106664352118969,0.988362669944763,0.149488210678101,0.0281502772122622,0.874079823493958,-0.247307866811752,0.418118596076965,0.849036395549774,-0.328846365213394,-0.413518220186234,0.949599802494049,-0.304755330085754,0.0733788013458252,0.998743236064911,-0.0195007845759392,0.0461701303720474,0.0593138337135315,0.628912508487701,0.775210201740265,0.0139848385006189,0.184406191110611,0.982750654220581,0.999410212039948,-0.01943095959723,0.028314808383584,0.9414102435112,-0.219977244734764,0.25564980506897,0.999357163906097,-0.02392752841115,-0.0266968831419945,
- 0.918316304683685,-0.354108661413193,-0.176924750208855,0.940904438495636,-0.239108189940453,0.239846110343933,0.843342483043671,0.266661405563354,-0.466546088457108,0.940972089767456,-0.314044237136841,-0.126285180449486,0.999410212039948,-0.01943095959723,0.028314808383584,0.918316304683685,-0.354108661413193,-0.176924750208855,0.999357163906097,-0.02392752841115,-0.0266968831419945,0.843342483043671,0.266661405563354,-0.466546088457108,0.940904438495636,-0.239108189940453,0.239846110343933,0.982190668582916,-0.104947105050087,-0.155844703316689,0.998162984848022,-0.0211928356438875,-0.0567571371793747,0.988362669944763,0.149488210678101,0.0281502772122622,0.983942866325378,0.143105641007423,0.106664352118969,0.953138649463654,-0.118826754391193,0.278220772743225,0.992634356021881,0.0309239272028208,-0.117136210203171,0.953138649463654,-0.118826754391193,0.278220772743225,0.995136916637421,0.0785588249564171,0.059423204511404,0.993468225002289,-0.103830188512802,-0.0473327711224556,0.992634356021881,0.0309239272028208,-0.117136210203171,0.999410212039948,-0.01943095959723,0.028314808383584,0.940972089767456,-0.314044237136841,-0.126285180449486,0.972123324871063,0.0808421447873116,-0.220092624425888,0.9414102435112,-0.219977244734764,0.25564980506897,0.918316304683685,-0.354108661413193,-0.176924750208855,0.0173774994909763,-0.797666490077972,0.602848410606384,0.0526444278657436,-0.995445787906647,-0.0794743970036507,0.940904438495636,-0.239108189940453,0.239846110343933,0.999410212039948,-0.01943095959723,0.028314808383584,0.0139848385006189,0.184406191110611,0.982750654220581,0.0173774994909763,-0.797666490077972,0.602848410606384,0.918316304683685,-0.354108661413193,-0.176924750208855,0.940904438495636,-0.239108189940453,0.239846110343933,0.0526444278657436,-0.995445787906647,-0.0794743970036507,0.0181563887745142,-0.728943109512329,-0.684333443641663,0.982190668582916,-0.104947105050087,-0.155844703316689,0.983942866325378,0.143105641007423,0.106664352118969,0.998223781585693,0.0588355995714664,-0.00936710089445114,
- 0.999304711818695,0.0326631367206573,-0.0179806668311358,0.953138649463654,-0.118826754391193,0.278220772743225,0.995716333389282,0.0405710190534592,0.08308295160532,0.996349453926086,0.0853129923343658,0.00308433384634554,0.998758614063263,0.0481961108744144,-0.0125822061672807,0.998223781585693,0.0588355995714664,-0.00936710089445114,0.983942866325378,0.143105641007423,0.106664352118969,0.953138649463654,-0.118826754391193,0.278220772743225,0.999304711818695,0.0326631367206573,-0.0179806668311358,0.999325513839722,0.0322263427078724,-0.0176079515367746,0.998774588108063,0.0402368456125259,-0.0288161709904671,0.999001920223236,0.0364441201090813,-0.0258257947862148,0.995136916637421,0.0785588249564171,0.059423204511404,0.940972089767456,-0.314044237136841,-0.126285180449486,0.988362669944763,0.149488210678101,0.0281502772122622,0.992634356021881,0.0309239272028208,-0.117136210203171,0.972123324871063,0.0808421447873116,-0.220092624425888,0.988362669944763,0.149488210678101,0.0281502772122622,0.940972089767456,-0.314044237136841,-0.126285180449486,0.999357163906097,-0.02392752841115,-0.0266968831419945,0.998904407024384,0.0453202240169048,-0.0116623658686876,0.998904407024384,0.0453202240169048,-0.0116623658686876,0.999357163906097,-0.02392752841115,-0.0266968831419945,0.843342483043671,0.266661405563354,-0.466546088457108,0.849036395549774,-0.328846365213394,-0.413518220186234,0.849036395549774,-0.328846365213394,-0.413518220186234,0.843342483043671,0.266661405563354,-0.466546088457108,0.998162984848022,-0.0211928356438875,-0.0567571371793747,0.849036395549774,-0.328846365213394,-0.413518220186234,0.998162984848022,-0.0211928356438875,-0.0567571371793747,0.536413311958313,0.736031711101532,0.412938296794891,0.949599802494049,-0.304755330085754,0.0733788013458252,0.99996542930603,-0.00831158645451069,0.000262270594248548,0.9414102435112,-0.219977244734764,0.25564980506897,0.972123324871063,0.0808421447873116,-0.220092624425888,0.99647718667984,-0.0700670555233955,-0.0460841916501522,-0.0222947802394629,0.89504611492157,0.445416271686554,
- -0.0602655038237572,0.893735766410828,0.444527268409729,-0.000371029047528282,0.894150912761688,0.447765827178955,0.00302896392531693,0.894899010658264,0.446258515119553,0.0603034906089306,0.894113183021545,0.443762421607971,0.0511667095124722,0.893419861793518,0.446299135684967,0.056823018938303,0.992182552814484,-0.111107960343361,0.0593138337135315,0.628912508487701,0.775210201740265,0.9414102435112,-0.219977244734764,0.25564980506897,0.99996542930603,-0.00831158645451069,0.000262270594248548,0.972123324871063,0.0808421447873116,-0.220092624425888,0.992634356021881,0.0309239272028208,-0.117136210203171,0.993468225002289,-0.103830188512802,-0.0473327711224556,0.99647718667984,-0.0700670555233955,-0.0460841916501522,-0.987569272518158,-0.0830012857913971,-0.133482336997986,-0.941452264785767,0.219808459281921,0.255639731884003,-0.0591893941164017,-0.624619662761688,0.778682768344879,-0.0394469015300274,-0.688780665397644,-0.723895907402039,-0.870629489421844,0.282078832387924,-0.403033345937729,-0.994912326335907,0.100740626454353,0.000972388777881861,-0.986779749393463,0.147070005536079,0.0680886283516884,-0.987569272518158,-0.0830012857913971,-0.133482336997986,-0.994427502155304,-0.102886438369751,-0.0229899510741234,-0.999407410621643,-0.0302548576146364,0.0164216421544552,-0.999917030334473,-0.00927635375410318,0.00894569139927626,-0.993587493896484,-0.109857976436615,-0.0267379600554705,-0.870629489421844,0.282078832387924,-0.403033345937729,-0.987569272518158,-0.0830012857913971,-0.133482336997986,-0.0394469015300274,-0.688780665397644,-0.723895907402039,-0.96933501958847,-0.0634646490216255,0.237406939268112,-0.993662774562836,0.103852510452271,-0.0429985038936138,-0.986779749393463,0.147070005536079,0.0680886283516884,-0.933201909065247,0.116720169782639,-0.339868515729904,-0.993587493896484,-0.109857976436615,-0.0267379600554705,-0.993662774562836,0.103852510452271,-0.0429985038936138,-0.998192012310028,-0.0599850229918957,-0.00382885313592851,-0.952727556228638,0.146852418780327,0.265978574752808,-0.996699750423431,-0.0561500452458858,0.0586238317191601,
- -0.998496294021606,-0.0547743514180183,-0.00222929893061519,-0.998039364814758,-0.0596184059977531,0.019051456823945,-0.993613719940186,0.0341721512377262,0.107536435127258,-0.952727556228638,0.146852418780327,0.265978574752808,-0.998192012310028,-0.0599850229918957,-0.00382885313592851,-0.998087406158447,-0.0615512169897556,-0.00575418397784233,-0.997677624225616,-0.0668558552861214,-0.0130310067906976,-0.99683678150177,-0.0754824876785278,-0.0248785708099604,0.996349453926086,0.0853129923343658,0.00308433384634554,0.995716333389282,0.0405710190534592,0.08308295160532,0.874079823493958,-0.247307866811752,0.418118596076965,0.996778070926666,0.0795893669128418,-0.00995442550629377,0.996778070926666,0.0795893669128418,-0.00995442550629377,0.874079823493958,-0.247307866811752,0.418118596076965,0.998743236064911,-0.0195007845759392,0.0461701303720474,0.996285498142242,0.0712609589099884,0.0483434572815895,0.997756123542786,0.0280540212988853,0.0607936978340149,0.998289823532104,0.0493707917630672,0.0313073806464672,-0.253225028514862,0.966912746429443,-0.0309333652257919,-0.190140426158905,0.980819702148438,-0.0428876206278801,-0.193408384919167,0.980449736118317,-0.0362180843949318,0.0423289686441422,0.99893856048584,-0.0181689709424973,-0.0547781102359295,0.99834942817688,-0.0172582846134901,-0.519051671028137,0.854086518287659,-0.0334908328950405,-0.438878893852234,0.89810311794281,-0.0282154697924852,-0.156396076083183,0.986993014812469,-0.0372157841920853,-0.111963674426079,0.99352902173996,-0.0190868116915226,-0.111963674426079,0.99352902173996,-0.0190868116915226,0.249129474163055,0.968080937862396,-0.027457233518362,0.301137030124664,0.953575909137726,0.00306694651953876,-0.0696826577186584,0.997332811355591,-0.0217144396156073,-0.249841794371605,0.968216419219971,-0.0116696506738663,-0.255639642477036,0.966158270835876,-0.0344472713768482,-0.0870264619588852,0.995350480079651,-0.0412765927612782,-0.126471966505051,0.991239130496979,-0.038077637553215,-0.255639642477036,0.966158270835876,-0.0344472713768482,-0.253225028514862,0.966912746429443,-0.0309333652257919,
- -0.0547781102359295,0.99834942817688,-0.0172582846134901,-0.0870264619588852,0.995350480079651,-0.0412765927612782,-0.344722986221313,0.93843811750412,-0.0223598014563322,-0.249841794371605,0.968216419219971,-0.0116696506738663,-0.126471966505051,0.991239130496979,-0.038077637553215,-0.111963674426079,0.99352902173996,-0.0190868116915226,-0.156396076083183,0.986993014812469,-0.0372157841920853,0.248667880892754,0.968564748764038,-0.00684121111407876,0.249129474163055,0.968080937862396,-0.027457233518362,-0.0870264619588852,0.995350480079651,-0.0412765927612782,0.080548495054245,0.996557235717773,-0.0196358095854521,0.334317833185196,0.942149043083191,-0.0242224428802729,-0.126471966505051,0.991239130496979,-0.038077637553215,-0.0547781102359295,0.99834942817688,-0.0172582846134901,0.11278197914362,0.993407487869263,-0.0205370616167784,0.080548495054245,0.996557235717773,-0.0196358095854521,-0.0870264619588852,0.995350480079651,-0.0412765927612782,0.0423289686441422,0.99893856048584,-0.0181689709424973,0.164731919765472,0.985873878002167,-0.0302661918103695,0.165619894862175,0.985586941242218,-0.0344737991690636,0.11278197914362,0.993407487869263,-0.0205370616167784,-0.0547781102359295,0.99834942817688,-0.0172582846134901,-0.393957912921906,0.918526649475098,-0.0332563929259777,-0.519051671028137,0.854086518287659,-0.0334908328950405,-0.111963674426079,0.99352902173996,-0.0190868116915226,-0.0696826577186584,0.997332811355591,-0.0217144396156073,-0.390693098306656,0.920434892177582,-0.0125917438417673,-0.393957912921906,0.918526649475098,-0.0332563929259777,-0.0696826577186584,0.997332811355591,-0.0217144396156073,-0.10353247821331,0.993585228919983,-0.0454896427690983,-0.391169339418411,0.92014616727829,-0.0178163386881351,0.301137030124664,0.953575909137726,0.00306694651953876,0.207928106188774,0.959443271160126,0.190353751182556,0.265368670225143,0.962464511394501,0.056933268904686,-0.10353247821331,0.993585228919983,-0.0454896427690983,-0.0696826577186584,0.997332811355591,-0.0217144396156073,-0.126471966505051,0.991239130496979,-0.038077637553215,
- -0.156396076083183,0.986993014812469,-0.0372157841920853,-0.438878893852234,0.89810311794281,-0.0282154697924852,-0.344722986221313,0.93843811750412,-0.0223598014563322,0.334317833185196,0.942149043083191,-0.0242224428802729,0.248667880892754,0.968564748764038,-0.00684121111407876,-0.156396076083183,0.986993014812469,-0.0372157841920853,-0.126471966505051,0.991239130496979,-0.038077637553215,0.0135126216337085,0.00800674222409725,-0.999876737594604,0.0275102742016315,0.00796785391867161,-0.999589800834656,0.014494463801384,0.00800406653434038,-0.999863028526306,0.0104750851169229,0.00801497418433428,-0.999913036823273,0.0264980271458626,0.00797071773558855,-0.999617040157318,0.0320085436105728,0.00795501843094826,-0.99945592880249,-2.75098273050389e-007,-0.999997794628143,0.00214254762977362,-2.75096994073465e-007,-0.999993026256561,0.00376062677241862,-2.75097903568167e-007,-0.999996423721313,0.00269099324941635,-2.75098869906287e-007,-1,3.27067073158105e-006,-2.75097988833295e-007,-0.999996781349182,0.00250817742198706,0.0246224831789732,0.999454140663147,0.0220262296497822,0.0246198829263449,0.99936455488205,0.0257763005793095,0.0246248785406351,0.999534428119659,0.0180196054279804,0.0246267840266228,0.999595880508423,0.0141981169581413,0.0246217306703329,0.999428331851959,0.0231672748923302,0.0246183853596449,0.999311983585358,0.0277439206838608,0.0257290005683899,0.0145418308675289,0.999563276767731,-0.107872739434242,0.0129822306334972,0.994079947471619,0.0107204839587212,0.0143793504685164,0.999839246273041,-0.175116047263145,0.0120996134355664,0.984473466873169,-0.167721584439278,0.0121999364346266,0.985758900642395,-0.00677777361124754,0.999961912631989,-0.00550802052021027,0.0048197484575212,0.999973118305206,-0.00552660971879959,-0.0139692155644298,0.99988728761673,-0.00549611961469054,-0.0125773744657636,0.999905824661255,-0.00549844605848193,0.00760362483561039,0.999955892562866,-0.00553096178919077,0.0490918233990669,-0.998779773712158,-0.00539147108793259,0.0330242849886417,-0.999440014362335,-0.00539460266008973,
- -0.0116862505674362,-0.999917268753052,-0.00539598101750016,-0.00527911353856325,-0.999971508979797,-0.00539644528180361,0.0330928489565849,-0.999437749385834,-0.00539459241554141,-0.0114805661141872,-0.999919652938843,-0.00539599964395165,-0.683201789855957,-0.407347738742828,0.606055498123169,-0.683201789855957,-0.407347738742828,0.606055498123169,-0.683201789855957,-0.407347708940506,0.606055438518524,0.612536013126373,-3.45173430105206e-006,0.790442705154419,0.612536072731018,-3.4331249025854e-006,0.790442764759064,0.612535953521729,-3.47574950865237e-006,0.790442705154419,-0.819022595882416,-0.406347066164017,-0.405073225498199,-0.819022595882416,-0.406347036361694,-0.405073225498199,-0.819022536277771,-0.406346946954727,-0.405073136091232,-0.0483683422207832,0.998729050159454,-0.0141721675172448,-0.0219989381730556,0.999657571315765,-0.0141705144196749,-0.0459275841712952,0.99884420633316,-0.0141724273562431,-0.0650167912244797,0.997783660888672,-0.0141681246459484,-0.0508082248270512,0.998607933521271,-0.0141718210652471,-0.0414097793400288,0.999041736125946,-0.0141726899892092,0.117196530103683,-0.992464601993561,-0.0357627831399441,0.103096254169941,-0.994020104408264,-0.0359905585646629,0.0947952270507813,-0.994841396808624,-0.0361211001873016,0.100653916597366,-0.994268894195557,-0.0360292345285416,0.100695833563805,-0.994264721870422,-0.0360285639762878,0.101875104010105,-0.994145333766937,-0.0360099151730537,-1.92462081827216e-007,-0.995421171188354,0.0955861881375313,-1.92159617995458e-007,-0.993856608867645,0.110675506293774,-1.92129760989701e-007,-0.993702054023743,0.112054459750652,-1.92103200902238e-007,-0.99356484413147,0.113264597952366,-1.92029446566266e-007,-0.993183374404907,0.116562351584435,-1.92161408563152e-007,-0.99386602640152,0.110591173171997,-0.102312043309212,0.395157516002655,0.912898004055023,-0.102312043309212,0.395157516002655,0.912898004055023,-0.102312043309212,0.395157516002655,0.912898004055023,-0.173263043165207,-0.703002452850342,-0.689759075641632,-0.173263013362885,-0.703002393245697,-0.689759075641632,
- -0.173263013362885,-0.703002393245697,-0.689759075641632,-0.00940135959535837,0.0380514897406101,-0.999231576919556,-0.00858290214091539,0.038060437887907,-0.999238610267639,-0.00388341746293008,0.0381113104522228,-0.999266028404236,0.000314717122819275,0.0381560437381268,-0.999271810054779,0.00063177099218592,0.0381593890488148,-0.99927145242691,-0.00413413299247622,0.038108617067337,-0.999265134334564,-0.000256882485700771,0.999973833560944,0.00722971884533763,-9.12578470888548e-005,0.99993222951889,0.0116407815366983,1.62456453836057e-005,0.999894917011261,0.0145037593320012,-9.18080695555545e-005,0.999932408332825,0.0116261281073093,-0.000237875297898427,0.999969959259033,0.00773595040664077,-0.000423602672526613,0.9999960064888,0.00278920377604663,-0.680061459541321,-0.00982862524688244,0.733089327812195,-0.680061459541321,-0.00982862524688244,0.733089327812195,-0.680061459541321,-0.00982861686497927,0.733089208602905,0.145585685968399,-0.0361983999609947,0.98868316411972,0.382647693157196,-0.0311932470649481,0.923367619514465,0.209945827722549,-0.0350736677646637,0.977083742618561,0.0739349275827408,-0.0372585318982601,0.996566891670227,0.0816296488046646,-0.0371542163193226,0.995969951152802,0.0457981117069721,-0.0376206189393997,0.998242080211639,0.499051868915558,0.284261524677277,0.818622410297394,0.499051868915558,0.284261524677277,0.818622410297394,0.499051839113235,0.284261524677277,0.818622410297394,0.0302269961684942,0.00472839502617717,-0.999531865119934,0.0336223766207695,0.0047421045601368,-0.999423384666443,0.0335702747106552,0.00474189408123493,-0.999425113201141,0.0313414633274078,0.00473290076479316,-0.999497532844543,0.0267791468650103,0.00471441866829991,-0.999630272388458,0.0265818163752556,0.999631822109222,0.00545056816190481,0.0288991238921881,0.999539494514465,0.00925696641206741,0.0270493607968092,0.999597251415253,0.00858905538916588,0.0246397145092487,0.999681234359741,0.00551080517470837,-0.0640344321727753,-0.0470300354063511,0.996838867664337,-0.0693187788128853,-0.0470827631652355,0.996482849121094,
- -0.0845593363046646,-0.0472275204956532,0.995298564434052,-0.0694891214370728,-0.0470844432711601,0.996470987796783,-0.0503683015704155,-0.0468876734375954,0.997629582881927,-0.0707248747348785,-0.0470965765416622,0.996383488178253,-0.0637084469199181,-0.0470267534255981,0.996860027313232,4.70276427222416e-005,0.999999940395355,-0.000304542452795431,4.76141976832878e-005,0.999999940395355,-0.000320679391734302,0.000201677728909999,0.999989628791809,-0.00455918721854687,0.000355151103576645,0.999961376190186,-0.00878147594630718,0.000150127700180747,0.999995112419128,-0.00314097013324499,0.018591832369566,-0.0120890513062477,-0.999754071235657,0.0186116974800825,-0.0137748038396239,-0.9997318983078,0.0185852032154799,-0.0115278102457523,-0.999760866165161,0.0185386128723621,-0.00759492628276348,-0.999799311161041,0.0185874104499817,-0.0117148905992508,-0.999758541584015,-0.751864969730377,0.00583698274567723,-0.65929126739502,-0.751864969730377,0.00583695992827415,-0.65929126739502,-0.751864969730377,0.00583695992827415,-0.65929126739502,0.0270493607968092,0.999597251415253,0.00858905538916588,0.0288991238921881,0.999539494514465,0.00925696641206741,0.0302681680768728,0.999467253684998,0.0122100580483675,0.0296190530061722,0.999487042427063,0.012190111912787,0.0284656770527363,0.99952095746994,0.0121546527370811,-0.0163942892104387,-0.999416410923004,-0.0299701541662216,-0.0277948174625635,-0.9991534948349,-0.0303314253687859,-0.00566030945628881,-0.999545037746429,-0.0296264905482531,-0.0128151150420308,-0.99947202205658,-0.0298559349030256,0.0171455722302198,-0.999435782432556,-0.0288850702345371,-0.391517758369446,0.00393378408625722,-0.92016214132309,-0.391517788171768,0.00393378688022494,-0.92016214132309,-0.391517758369446,0.00393378362059593,-0.92016214132309,0.050101961940527,-0.998645186424255,-0.0140510583296418,0.0228282362222672,-0.999640762805939,-0.0140504185110331,0.0475817173719406,-0.998768508434296,-0.0140514392405748,0.0673120617866516,-0.997633159160614,-0.0140460720285773,0.0526212342083454,-0.998515784740448,-0.0140505908057094,
- 0.0429210811853409,-0.99897974729538,-0.0140519058331847,-0.121545739471912,0.991952478885651,-0.035452164709568,-0.106933534145355,0.993625700473785,-0.0356822311878204,-0.0982984155416489,0.994512379169464,-0.0358143970370293,-0.104365795850754,0.993897259235382,-0.0357218272984028,-0.104436546564102,0.99388986825943,-0.035720732063055,-0.105649687349796,0.993762314319611,-0.0357020609080791,6.65681795908313e-007,0.995495736598969,0.0948062837123871,6.64652588966419e-007,0.993956804275513,0.109771490097046,6.6455123715059e-007,0.993805348873138,0.11113465577364,6.64460003463319e-007,0.993668735027313,0.112349905073643,6.64209721890074e-007,0.993294298648834,0.115613587200642,6.6465804593463e-007,0.993964970111847,0.109697610139847,0.106870986521244,-0.397755265235901,0.911246061325073,0.106870979070663,-0.397755265235901,0.911246061325073,0.106870986521244,-0.397755295038223,0.911246001720428,0.180303230881691,0.704956114292145,-0.68595016002655,0.18030321598053,0.704956114292145,-0.68595016002655,0.180303230881691,0.704956114292145,-0.68595016002655,0.00979324243962765,-0.0383670590817928,-0.999215722084045,0.00899901706725359,-0.0383754521608353,-0.999222874641418,0.00409793155267835,-0.0384266935288906,-0.999253034591675,-0.000334040320012718,-0.038472231477499,-0.99925971031189,-0.000659088778775185,-0.0384755432605743,-0.999259352684021,0.004332534968853,-0.0384242571890354,-0.999252200126648,0.000153792367200367,-0.999974310398102,0.00716651789844036,-1.86279630725039e-005,-0.999933362007141,0.0115513233467937,-0.000130084139527753,-0.99989652633667,0.0143856387585402,-1.79263479367364e-005,-0.999933481216431,0.0115334782749414,0.000133938752696849,-0.999970555305481,0.00767142605036497,0.000327612942783162,-0.999996185302734,0.00274588516913354,0.696087598800659,0.00971061829477549,0.717891216278076,0.696087658405304,0.00971060991287231,0.717891156673431,0.696087658405304,0.00971060991287231,0.717891156673431,-0.15163254737854,0.0364731624722481,0.987763822078705,-0.397290408611298,0.0312471222132444,0.91716080904007,
- -0.21833498775959,0.0353098101913929,0.975234866142273,-0.0772532075643539,0.0375613570213318,0.996303737163544,-0.0853841230273247,0.0374529398977757,0.995643973350525,-0.0479502528905869,0.0379308313131332,0.99812924861908,-0.515636205673218,-0.283222138881683,0.808643639087677,-0.515636146068573,-0.283222109079361,0.808643698692322,-0.515636146068573,-0.283222138881683,0.808643639087677,-0.0118931960314512,-0.00897900573909283,-0.999888956546783,-0.0242677424103022,-0.00893575884401798,-0.999665558338165,-0.0127730770036578,-0.00897597707808018,-0.999878168106079,-0.00922311283648014,-0.00898815598338842,-0.999917089939117,-0.0233778990805149,-0.00893891602754593,-0.999686777591705,-0.0282401330769062,-0.00892158411443233,-0.999561429023743,8.2476231000328e-007,0.999998211860657,0.00190361472778022,8.24759240458661e-007,0.999994397163391,0.0033555633854121,8.24761514195416e-007,0.999997079372406,0.00241084629669786,8.2476378793217e-007,1,1.41734672070015e-005,8.24761741569091e-007,0.999997556209564,0.00224176910705864,-0.019481098279357,-0.999618172645569,0.01959627866745,-0.0194819420576096,-0.999650716781616,0.0178629588335752,-0.0194808151572943,-0.999607145786285,0.0201520584523678,-0.0194841083139181,-0.999729812145233,0.0126771284267306,-0.0194797459989786,-0.999564647674561,0.0221632644534111,-0.0194795820862055,-0.999557971954346,0.0224582497030497,-0.0226311236619949,-0.0163124911487103,0.999610781669617,0.0961143299937248,-0.0145646361634135,0.995263814926147,-0.00943721737712622,-0.0161294471472502,0.999825358390808,0.155795395374298,-0.0136000467464328,0.987695753574371,0.149274781346321,-0.0137082850560546,0.988700687885284,0.00527119776234031,-0.999973952770233,-0.00491548702120781,-0.00391630223020911,-0.999980270862579,-0.00493207713589072,0.010888934135437,-0.999928712844849,-0.00490513863041997,0.00986535660922527,-0.999939322471619,-0.00490703526884317,-0.00596354203298688,-0.999970018863678,-0.00493571674451232,-0.0242006368935108,0.999695599079132,-0.00479289097711444,-0.0411595739424229,0.999141097068787,-0.00479077035561204,
- 0.00915682781487703,0.999946594238281,-0.00479303812608123,-0.0241852272301912,0.999695956707001,-0.00479289283975959,0.00942599307745695,0.999944150447845,-0.00479301810264587,0.00911061465740204,0.999947011470795,-0.00479304185137153,0.620961844921112,0.471870422363281,0.625895082950592,0.620961844921112,0.471870422363281,0.625895082950592,0.620961844921112,0.471870422363281,0.625895082950592,-0.563330233097076,-1.55924517457606e-005,0.826231837272644,-0.563330233097076,-1.55856032506563e-005,0.826231837272644,-0.563330233097076,-1.55709312821273e-005,0.826231837272644,0.763329803943634,0.48289692401886,-0.429113209247589,0.763329803943634,0.482896953821182,-0.429113209247589,0.763329863548279,0.48289692401886,-0.429113179445267,0.0113749830052257,-0.0086277537047863,0.999898076057434,0.00229402678087354,-0.008664445951581,0.999959826469421,0.0132049573585391,-0.00862027145922184,0.999875724315643,0.0159152615815401,-0.00860914308577776,0.999836266040802,0.00771513814106584,-0.00864262692630291,0.999932885169983,-0.021897429600358,0.999749422073364,-0.00465159956365824,-0.0143791623413563,0.99985808134079,-0.00877458788454533,-0.0222194492816925,0.999721705913544,-0.00791318248957396,-0.020792393013835,0.999772608280182,-0.00473660370334983,0.0222718883305788,-0.0585813485085964,-0.998034179210663,0.0266518965363503,-0.0585803091526031,-0.997926890850067,0.0390456728637218,-0.0585712753236294,-0.997519373893738,0.0270062349736691,-0.058580182492733,-0.997917413711548,0.0115558514371514,-0.0585791654884815,-0.998215973377228,0.0279240552335978,-0.0585798025131226,-0.997892141342163,0.0221566744148731,-0.0585813634097576,-0.998036742210388,0.0284097790718079,0.999596297740936,0.000339933874784037,0.0284097734838724,0.999596297740936,0.000337468052748591,0.0284242760390043,0.999583840370178,0.00493125943467021,0.0284381825476885,0.99955016374588,0.00952741224318743,0.0284195113927126,0.999590337276459,0.00340081471949816,0.0147185539826751,-0.00743651483207941,0.999864041805267,0.0143962753936648,-0.038467213511467,0.99915611743927,
- 0.0143907098099589,-0.0389912612736225,0.999135971069336,0.0147078987210989,-0.00848535820841789,0.999855935573578,0.0145016303285956,-0.0284728966653347,0.999489307403564,0.701761424541473,0.00668656267225742,0.712380647659302,0.701761424541473,0.00668656174093485,0.712380647659302,0.701761424541473,0.00668653985485435,0.712380647659302,-0.0222194492816925,0.999721705913544,-0.00791318248957396,-0.0143791623413563,0.99985808134079,-0.00877458788454533,0.0118608828634024,0.999863505363464,-0.0115042477846146,-0.006068573333323,0.999915301799774,-0.0115085234865546,-0.0233462657779455,0.999661207199097,-0.0115091474726796,0.0178655628114939,-0.999363422393799,0.0308795440942049,0.04795927926898,-0.998370766639709,0.0309144947677851,0.00459465198218822,-0.999513328075409,0.0308552514761686,-0.0219375640153885,-0.999285101890564,0.0307903829962015,-0.0170911587774754,-0.999379396438599,0.0308038555085659,0.353192150592804,0.0111361993476748,0.935484528541565,0.353192180395126,0.0111362021416426,0.935484528541565,0.353192120790482,0.0111361974850297,0.935484528541565,-0.0386915802955627,-0.999150514602661,0.0141827305778861,-0.0176011491566896,-0.999744594097137,0.0141763463616371,-0.036799531430006,-0.999221980571747,0.0141824148595333,-0.0520235970616341,-0.998545169830322,0.0141835100948811,-0.0405831895768642,-0.999075531959534,0.0141829941421747,-0.0331020765006542,-0.999351382255554,0.0141816521063447,0.0939859598875046,0.994927525520325,0.035859152674675,0.0826428681612015,0.995926320552826,0.036067046225071,0.0760277062654495,0.996448874473572,0.0361860319972038,0.080658420920372,0.996087729930878,0.0361029133200645,0.0805522203445435,0.996096253395081,0.036104828119278,0.0816506519913673,0.996007561683655,0.0360849946737289,-3.71575708868477e-007,0.99541974067688,-0.0956010967493057,-3.70992779608059e-007,0.993858218193054,-0.110661163926125,-3.70935453020138e-007,0.993704497814178,-0.112033553421497,-3.70883356026752e-007,0.99356484413147,-0.113264717161655,-3.70741702226951e-007,0.993185579776764,-0.116543121635914,
- -3.70995792309259e-007,0.993866086006165,-0.110590651631355,-0.0819815099239349,-0.395921438932419,-0.914617657661438,-0.0819814875721931,-0.395921349525452,-0.914617598056793,-0.0819815099239349,-0.395921409130096,-0.914617538452148,-0.139397084712982,0.706830561161041,0.693512082099915,-0.139397069811821,0.706830561161041,0.693512082099915,-0.139397084712982,0.706830561161041,0.693512082099915,-0.00757262669503689,-0.0380504243075848,0.999247133731842,-0.00692138914018869,-0.03805922716856,0.999251544475555,-0.00325389159843326,-0.0381084866821766,0.999268412590027,0.000132580767967738,-0.0381535030901432,0.999271929264069,0.000502766401041299,-0.0381583981215954,0.9992715716362,-0.00339442514814436,-0.0381066054105759,0.999267995357513,-9.06391724129207e-005,-0.999973773956299,-0.00725014647468925,4.16615039284807e-005,-0.999932289123535,-0.011637844145298,0.000127783991047181,-0.999894976615906,-0.0144939552992582,4.08990272262599e-005,-0.999932587146759,-0.0116125559434295,-7.57548623369075e-005,-0.999969959259033,-0.00774378841742873,-0.000224463306949474,-0.9999960064888,-0.00281173060648143,-0.595774054527283,0.0107968281954527,-0.80307948589325,-0.595774054527283,0.010796825401485,-0.80307948589325,-0.595774054527283,0.0107968281954527,-0.80307948589325,0.118305437266827,0.0363148972392082,-0.992313027381897,0.314503759145737,0.032051719725132,-0.948714971542358,0.171398118138313,0.0353159978985786,-0.98456871509552,0.0593700483441353,0.0372950546443462,-0.997539103031158,0.0654337033629417,0.0372003838419914,-0.997163236141205,0.0367054268717766,0.0376364178955555,-0.998617172241211,0.418592721223831,-0.297964870929718,-0.857902705669403,0.418592661619186,-0.297964841127396,-0.857902765274048,0.418592721223831,-0.297964870929718,-0.857902705669403,-0.689167380332947,-0.0710349231958389,-0.72111189365387,-0.543840944766998,-0.637723088264465,-0.545477986335754,0.0141335893422365,0.87663733959198,0.480944126844406,0.0284404065459967,0.653069734573364,0.756763517856598,-0.543840944766998,-0.637723088264465,-0.545477986335754,
- -0.566834270954132,-0.732162058353424,0.377673834562302,0.00619214447215199,0.99945342540741,0.0324722267687321,0.0141335893422365,0.87663733959198,0.480944126844406,-0.566834270954132,-0.732162058353424,0.377673834562302,-0.619490742683411,0.184616580605507,0.762986183166504,-0.0268013253808022,0.992428719997406,0.119862176477909,0.00619214447215199,0.99945342540741,0.0324722267687321,-0.619490742683411,0.184616580605507,0.762986183166504,-0.624694764614105,0.578998386859894,-0.523943901062012,-0.0255234688520432,0.996250569820404,-0.082664355635643,-0.0268013253808022,0.992428719997406,0.119862176477909,-0.624694764614105,0.578998386859894,-0.523943901062012,-0.689167380332947,-0.0710349231958389,-0.72111189365387,0.0284404065459967,0.653069734573364,0.756763517856598,-0.0255234688520432,0.996250569820404,-0.082664355635643
- }
- TangentsW: *2608 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *2360 {
- a: -2.55403828620911,0.551351130008698,-2.55403780937195,0.331558495759964,-2.44717597961426,0.33155882358551,-2.44717645645142,0.544939756393433,-2.77554059028625,0.551350593566895,-2.7755401134491,0.331558078527451,-1.22433161735535,0.551353871822357,-1.22433161735535,0.331561267375946,-1.12025117874146,0.331561267375946,-1.12025189399719,0.546224534511566,-1.44583415985107,0.551353871822357,-1.44583415985107,0.331561207771301,-2.05675292015076,0.250349551439285,-2.08931493759155,0.279381603002548,-2.27149057388306,0.331559121608734,-2.217209815979,0.000190528109669685,-2.00861120223999,0.000190794467926025,-2.02946996688843,0.119409263134003,-2.05966877937317,0.180888295173645,-2.33644843101501,0.000190259888768196,-2.33644914627075,0.324411541223526,-2.44717526435852,0.000190010294318199,-2.77553939819336,0.000189151614904404,-2.55403709411621,0.000189770013093948,-2.99997043609619,0.000188706442713737,-2.87961935997009,0.000188916921615601,-2.87962007522583,0.331557840108871,-2.99997138977051,0.338360905647278,-0.790691614151001,0.337513953447342,-0.895295143127441,0.398999929428101,-0.999900341033936,0.337088942527771,-0.999900579452515,-0.000232715159654617,-0.79069185256958,-0.000658253207802773,-2.77554082870483,0.629874706268311,-2.87962079048157,0.62474524974823,-2.87962055206299,0.546221137046814,-2.55403852462769,0.629875242710114,-3.43416595458984,-0.160541594028473,-3.43416571617126,-0.265146106481552,-3.3188943862915,-0.26520249247551,-3.32343912124634,-0.160541594028473,-3.48941278457642,-0.157267883419991,-3.50743341445923,-0.265127688646317,-1.76190376281738,0.331558912992477,-1.64380264282227,0.400399327278137,-1.55269527435303,0.331561088562012,-1.55269622802734,0.544942259788513,-1.65730214118958,0.623465001583099,-1.76190567016602,0.544939935207367,-3.42804360389709,-0.420993030071259,-3.42804360389709,-0.541344165802002,-3.32343912124634,-0.543089151382446,-3.32343912124634,-0.422738015651703,-2.44717669487,0.623463928699493,-0.911043167114258,0.546225786209106,-1.01564788818359,
- 0.624749481678009,-1.01564717292786,0.392431348562241,-0.911041736602783,0.331562489271164,-1.44583415985107,0.629878103733063,-1.55269575119019,0.623466193675995,-1.22433137893677,0.629878103733063,-1.12025141716003,0.624748587608337,-1.12025165557861,0.000192496925592422,-1.22433161735535,0.000192496925592422,-1.55269575119019,0.000192407518625259,-1.44583415985107,0.000192407518625259,-1.66342258453369,0.000192407518625259,-1.66342258453369,0.324413895606995,-1.78258299827576,0.000192407518625259,-1.72838032245636,0.331561058759689,-1.96862435340881,0.000192603853065521,-1.91392040252686,0.274420857429504,-1.92867517471313,0.251961320638657,-1.924809217453,0.20007449388504,-1.94955265522003,0.0681654363870621,-1.3960257768631,0.708725214004517,-1.275674700737,0.708725214004517,-1.275674700737,0.91793429851532,-1.39602553844452,0.91793429851532,-1.50010573863983,0.708725214004517,-1.50010561943054,0.91793429851532,-1.72160804271698,0.708725214004517,-1.72160804271698,0.917934238910675,-1.82846975326538,0.708725214004517,-1.82846975326538,0.917934238910675,-1.93919658660889,0.708725214004517,-1.93919658660889,0.917934358119965,-2.05843496322632,0.708725214004517,-2.05835700035095,0.91793429851532,-2.24440312385559,0.917933940887451,-2.26703882217407,0.864463686943054,-2.26703882217407,0.708725094795227,-0.175214827060699,0.533781409263611,-0.172714054584503,0.533781409263611,-0.172714531421661,0.580158233642578,-0.175215303897858,0.580158233642578,-0.175178825855255,0.531151294708252,-0.263860523700714,0.533781409263611,-0.26390153169632,0.531282424926758,-0.0681812167167664,0.651578187942505,-0.0709848403930664,0.651578187942505,-0.0709855556488037,0.62293016910553,-0.0681810975074768,0.622424244880676,-0.0709853172302246,0.474954783916473,-0.0681832432746887,0.475067973136902,-0.266346275806427,0.533781409263611,-0.263860523700714,0.580158233642578,-0.266346037387848,0.580158233642578,-0.771482348442078,0.710448265075684,-0.771481394767761,0.707696974277496,-0.632022023200989,0.707777082920074,-0.632006049156189,
- 0.710526406764984,-0.175179779529572,0.582788467407227,-0.26390153169632,0.582656979560852,-0.013324499130249,0.651578187942505,-0.0161237716674805,0.651578187942505,-0.0161237716674805,0.622424602508545,-0.0133241415023804,0.622930407524109,-0.0161257386207581,0.475067555904388,-0.0133242607116699,0.474954187870026,-0.771481394767761,0.656658113002777,-0.771482527256012,0.653907060623169,-0.632005989551544,0.653828322887421,-0.632022082805634,0.656578719615936,-0.0709853172302246,0.440661489963531,-0.068183422088623,0.440659642219543,-0.629261076450348,0.707867681980133,-0.629261016845703,0.656487345695496,-0.0161261558532715,0.44065922498703,-0.0133242607116699,0.440660774707794,-0.591413974761963,0.7165487408638,-0.528504133224487,0.607309818267822,-0.495353639125824,0.607310652732849,-0.495366871356964,0.744834244251251,-0.591414570808411,0.744834244251251,-0.46327793598175,0.956351220607758,-0.463030576705933,0.984559535980225,-0.557653665542603,0.984559535980225,-0.558930158615112,0.849473178386688,-0.523326933383942,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,1.82478523254395,0.533781409263611,1.82728600502014,0.533781409263611,1.82728552818298,0.580158233642578,1.82478475570679,0.580158233642578,1.82482123374939,0.531151294708252,1.73613953590393,0.533781409263611,1.73609852790833,0.531282424926758,1.93181872367859,0.651578187942505,1.92901515960693,0.651578187942505,1.9290144443512,0.62293016910553,1.93181896209717,0.622424244880676,1.92901468276978,0.474954783916473,1.93181681632996,0.475067973136902,1.73365378379822,0.533781409263611,1.73613953590393,0.580158233642578,1.7336540222168,0.580158233642578,1.22851765155792,0.710448265075684,1.22851860523224,0.707696974277496,1.36797797679901,0.707777082920074,1.36799395084381,0.710526406764984,1.82482028007507,0.582788467407227,1.73609852790833,0.582656979560852,1.98667550086975,0.651578187942505,1.98387622833252,0.651578187942505,1.98387622833252,0.622424602508545,1.98667585849762,0.622930407524109,1.98387432098389,0.475067555904388,1.98667573928833,0.474954187870026,1.22851860523224,0.656658113002777,1.22851741313934,0.653907060623169,1.3679940700531,0.653828322887421,1.36797785758972,0.656578719615936,1.92901468276978,0.440661489963531,1.93181657791138,0.440659642219543,1.3707389831543,0.707867681980133,1.3707389831543,0.656487345695496,1.98387384414673,0.44065922498703,1.98667573928833,0.440660774707794,1.40858602523804,
- 0.7165487408638,1.47149586677551,0.607309818267822,1.50464630126953,0.607310652732849,1.50463318824768,0.744834244251251,1.40858542919159,0.744834244251251,1.53672206401825,0.956351220607758,1.53696942329407,0.984559535980225,1.4423463344574,0.984559535980225,1.44106984138489,0.849473178386688,1.4766731262207,0.849115371704102,-3.53264808654785,-0.543089151382446,-3.53264808654785,-0.422738015651703,-0.623250484466553,-1.79222083091736,-0.617843389511108,-1.79206264019012,-0.617787420749664,-1.80779242515564,-0.622045159339905,-1.81073570251465,-0.627405107021332,-1.7673602104187,-0.620485901832581,-1.77238535881042,-0.620442867279053,-1.77281785011292,-0.586694836616516,-1.77504873275757,-0.617215037345886,-1.75064504146576,-0.336536943912506,-1.8082457780838,-0.331897079944611,-1.80823349952698,-0.331870377063751,-1.81459140777588,-0.336046457290649,-1.81458711624146,-0.337361812591553,-1.78056514263153,-0.33258181810379,-1.78052306175232,-0.435488820075989,-1.78142952919006,-0.439871191978455,-1.78094840049744,-0.441503882408142,-1.77577877044678,-0.436998844146729,-1.77576923370361,-0.333068907260895,-1.93989634513855,-0.337666869163513,-1.93507146835327,-0.43549507856369,-1.81448340415955,-0.508473455905914,-1.81409549713135,-0.508771121501923,-1.80822062492371,-0.435450613498688,-1.80850839614868,-0.526698112487793,-1.83476519584656,-0.525063633918762,-1.8140070438385,-0.521506190299988,-1.81402599811554,-0.64958918094635,-1.77888965606689,-0.649826288223267,-1.65288436412811,-0.623485624790192,-1.63778030872345,-0.620975255966187,-1.74664974212646,-0.634940445423126,-1.77952599525452,-0.589672088623047,-1.78021895885468,-0.617865562438965,-1.81351363658905,-0.521295309066772,-1.7805517911911,-0.520364820957184,-1.77549183368683,-0.209458231925964,-1.77622985839844,-0.209630727767944,-1.77946448326111,-0.21270763874054,-1.77949094772339,-0.212538003921509,-1.77621567249298,-0.32894629240036,-1.80822646617889,-0.212302029132843,-1.80794811248779,-0.212281048297882,-1.81518697738647,-0.328671813011169,-1.81460738182068,
- -0.328315019607544,-1.78048634529114,-0.212780058383942,-1.93654787540436,-0.326244354248047,-1.93485534191132,-0.328837513923645,-1.89136230945587,-0.336911380290985,-1.77566981315613,-0.332584321498871,-1.77566540241241,-0.529520511627197,-1.81398332118988,-0.52953052520752,-1.80813908576965,-0.525033354759216,-1.8081568479538,-0.526263117790222,-1.78053462505341,-0.528137743473053,-1.78051853179932,-0.530739307403564,-1.77521765232086,-0.526079535484314,-1.77518439292908,-0.521573722362518,-1.80817043781281,-0.434785485267639,-1.93737125396729,-0.437385320663452,-1.9404559135437,-0.327651500701904,-1.77568805217743,-0.209221363067627,-1.80794072151184,-0.209199368953705,-1.81520223617554,-0.209705829620361,-1.9392923116684,-0.331260502338409,-1.93910002708435,-0.527670860290527,-1.93839311599731,-0.618093609809875,-1.63908338546753,-0.619615077972412,-1.93662488460541,-0.623766601085663,-1.93815231323242,-0.646673202514648,-1.84279417991638,-0.672738909721375,-1.85989129543304,-0.67290598154068,-1.97392666339874,-0.669758677482605,-1.97887086868286,-0.648391783237457,-1.97761368751526,-0.646716117858887,-1.97428965568542,-0.623250484466553,-0.792220830917358,-0.622045159339905,-0.810735762119293,-0.617787420749664,-0.80779242515564,-0.617843389511108,-0.792062640190125,-0.627405107021332,-0.767360150814056,-0.620442867279053,-0.772817850112915,-0.620485901832581,-0.77238529920578,-0.586694836616516,-0.775048196315765,-0.617216348648071,-0.75064343214035,-0.336536943912506,-0.808245837688446,-0.336046457290649,-0.814587116241455,-0.331870377063751,-0.814591467380524,-0.331897079944611,-0.808233499526978,-0.33258181810379,-0.780523061752319,-0.337361812591553,-0.780565142631531,-0.435488820075989,-0.781429588794708,-0.436998844146729,-0.775768399238586,-0.441503882408142,-0.775778353214264,-0.439871191978455,-0.780948460102081,-0.337665557861328,-0.93497371673584,-0.333067834377289,-0.93979024887085,-0.43549507856369,-0.814483463764191,-0.435450613498688,-0.808508455753326,-0.508771121501923,-0.808220684528351,-0.508473455905914,
- -0.814095437526703,-0.526698112487793,-0.834765195846558,-0.521506190299988,-0.81402599811554,-0.525063633918762,-0.814007043838501,-0.64958918094635,-0.778889656066895,-0.634940445423126,-0.779526054859161,-0.620975732803345,-0.746649265289307,-0.623483657836914,-0.63787829875946,-0.649826169013977,-0.652984142303467,-0.589672088623047,-0.780218958854675,-0.617865562438965,-0.81351363658905,-0.520367681980133,-0.775490999221802,-0.521295309066772,-0.780551791191101,-0.209458291530609,-0.776229202747345,-0.212537944316864,-0.776215016841888,-0.21270763874054,-0.779490947723389,-0.209630727767944,-0.779464423656464,-0.32894629240036,-0.808226466178894,-0.328671813011169,-0.814607381820679,-0.212281048297882,-0.815186977386475,-0.212302029132843,-0.807948112487793,-0.328315019607544,-0.780486345291138,-0.328837513923645,-0.891362309455872,-0.326250195503235,-0.934756994247437,-0.212779760360718,-0.936449527740479,-0.332586348056793,-0.775665402412415,-0.336912274360657,-0.775668859481812,-0.525033354759216,-0.808156847953796,-0.52953052520752,-0.808139085769653,-0.529520511627197,-0.81398332118988,-0.526263117790222,-0.780534625053406,-0.52608048915863,-0.775183856487274,-0.530741930007935,-0.775216996669769,-0.528137743473053,-0.780518472194672,-0.521573722362518,-0.808170437812805,-0.437383770942688,-0.940353631973267,-0.434786081314087,-0.937271475791931,-0.327656030654907,-0.775687992572784,-0.209199368953705,-0.815202295780182,-0.209221363067627,-0.807940721511841,-0.209705412387848,-0.939191102981567,-0.331255078315735,-0.938992023468018,-0.527669906616211,-0.938291490077972,-0.623765230178833,-0.938051402568817,-0.619613647460938,-0.936524033546448,-0.672739028930664,0.140015706419945,-0.646673202514648,0.157112807035446,-0.646716117858887,0.0257102977484465,-0.648391783237457,0.0223862994462252,-0.669758677482605,0.0211291890591383,-0.67290598154068,0.026073357090354,-0.208822727203369,-0.633169531822205,-0.211924374103546,-0.637839913368225,-0.211924016475677,-1.63774418830872,-0.20882248878479,-1.6330498456955,
- -0.618092834949493,-0.639179587364197,-0.325685501098633,-1.63997769355774,-0.325483977794647,-1.63589012622833,-0.211905539035797,-1.63358306884766,-0.327865660190582,-1.6356053352356,-0.332475900650024,-1.63927793502808,-0.332499504089355,-1.63500010967255,-0.34034126996994,-1.64048635959625,-0.337996244430542,-1.63598942756653,-0.51814603805542,-1.63888883590698,-0.518105149269104,-1.63484048843384,-0.440385639667511,-1.63263726234436,-0.440231323242188,-1.63673186302185,-0.520291924476624,-1.63493883609772,-0.52578866481781,-1.63940644264221,-0.525779604911804,-1.63518571853638,-0.532013416290283,-1.63495874404907,-0.529470503330231,-1.6325843334198,-0.532168030738831,-1.63107252120972,-0.618126451969147,-1.63490390777588,-0.435605406761169,-1.63894248008728,-0.435554444789886,-1.63450348377228,-0.340405464172363,-1.63642299175262,-0.437731087207794,-1.63362407684326,-0.33247572183609,-0.63937520980835,-0.340339004993439,-0.640579462051392,-0.435606718063354,-0.639058470726013,-0.325689911842346,-0.640070140361786,-0.440230786800385,-0.636827230453491,-0.5181525349617,-0.638978660106659,-0.525786280632019,-0.639512360095978,-0.532012641429901,-0.635054469108582,-0.621477901935577,-1.6367027759552,-0.209458231925964,2.22377014160156,-0.209630727767944,2.22053551673889,-0.21270763874054,2.22050905227661,-0.212538003921509,2.22378420829773,-0.32894629240036,2.1917736530304,-0.212302029132843,2.19205188751221,-0.212281048297882,2.18481302261353,-0.328671813011169,2.18539261817932,-0.328315019607544,2.21951365470886,-0.212780058383942,2.06345224380493,-0.326244354248047,2.06514453887939,-0.327656030654907,2.22431206703186,-0.209221363067627,2.19205927848816,-0.209199368953705,2.18479776382446,-0.209705829620361,2.06070780754089,-0.332586348056793,2.22433471679688,-0.325843393802643,2.3603663444519,-0.33258181810379,2.21947693824768,-0.331897079944611,2.19176650047302,-0.331870377063751,2.18540859222412,-0.333068907260895,2.06010365486145,-0.33235490322113,2.36493349075317,-0.211922705173492,2.362548828125,-0.646673202514648,
- -0.842794179916382,-0.672738909721375,-0.859891295433044,-0.67290598154068,-0.973926663398743,-0.669758677482605,-0.978870809078217,-0.648391783237457,-0.977613687515259,-0.646716117858887,-0.97428971529007,-0.209458231925964,0.223770171403885,-0.212538003921509,0.223784297704697,-0.21270763874054,0.220509067177773,-0.209630727767944,0.220535561442375,-0.32894629240036,0.191773548722267,-0.328671813011169,0.18539260327816,-0.212281048297882,0.184813052415848,-0.212302029132843,0.192051887512207,-0.328315019607544,0.219513669610024,-0.326250195503235,0.0652429759502411,-0.212779760360718,0.0635504797101021,-0.327656030654907,0.224312007427216,-0.209199368953705,0.184797704219818,-0.209221363067627,0.192059248685837,-0.209705412387848,0.0608089044690132,-0.332586348056793,0.224334597587585,-0.325847983360291,0.360272794961929,-0.332352817058563,0.364834129810333,-0.33258181810379,0.219476938247681,-0.331897079944611,0.191766500473022,-0.331870377063751,0.185408532619476,-0.333067834377289,0.0602097250521183,-0.211923062801361,0.36245185136795,-0.672739028930664,2.14001560211182,-0.646673202514648,2.15711283683777,-0.646716117858887,2.02571034431458,-0.648391783237457,2.02238631248474,-0.669758677482605,2.02112913131714,-0.67290598154068,2.02607345581055,-0.208903789520264,0.366835862398148,-0.24295699596405,0.241456717252731,-0.242777824401855,0.245272606611252,-0.277221143245697,0.307271063327789,-0.242777824401855,0.36921101808548,-0.24295699596405,0.373026967048645,-0.258785605430603,0.382075548171997,-0.261122822761536,0.381086260080338,-0.297253131866455,0.307271063327789,-0.261122822761536,0.233401149511337,-0.258785545825958,0.232411831617355,-0.208903253078461,2.36693692207336,-0.211934506893158,2.36639928817749,-0.325658023357391,2.36410617828369,-3.48932194709778,-0.372625797986984,-3.43416595458984,-0.369750618934631,-3.32343912124634,-0.369750618934631,-3.25704550743103,0.799276292324066,-3.21805262565613,0.691669344902039,-3.12080240249634,0.762981653213501,-3.2207498550415,0.557170391082764,-3.23954963684082,
- 0.503857374191284,-3.17075872421265,0.522783696651459,-3.16892385482788,0.549859046936035,-3.2527539730072,0.379427790641785,-3.24271464347839,0.264818042516708,-3.18690657615662,0.26296278834343,-3.17750906944275,0.330210328102112,-3.22900938987732,0.450094163417816,-3.16831135749817,0.468931525945663,-3.39751863479614,0.781576633453369,-3.29900979995728,0.704030275344849,-3.38088297843933,0.52901965379715,-3.30131649971008,0.536562383174896,-3.2724814414978,0.555330634117126,-3.37845039367676,0.574529469013214,-3.3875298500061,0.459149599075317,-3.28548836708069,0.465355575084686,-3.31145191192627,0.41520369052887,-3.3203182220459,0.378046572208405,-3.38977575302124,0.275805324316025,-3.2691650390625,0.424245446920395,-3.38710021972656,0.391932517290115,0.977278232574463,-0.75620973110199,0.981077432632446,-0.757022261619568,0.981077432632446,-0.648545622825623,0.97615647315979,-0.648498058319092,0.849330961704254,-0.758820176124573,0.85060042142868,-0.756050586700439,0.82496964931488,-0.75744754076004,0.977311611175537,-0.758858799934387,0.974031925201416,-0.812094807624817,0.981077432632446,-0.813775658607483,0.976417779922485,-0.642895460128784,0.826720416545868,-0.642930507659912,0.826236248016357,-0.648188829421997,0.827761590480804,-0.769257009029388,0.827454328536987,-0.745811939239502,0.237580016255379,-0.0820732712745667,0.381004244089127,-0.0820732712745667,0.381004244089127,-0.0149938464164734,0.256451964378357,-0.0149938464164734,0.237580016255379,-0.0233103036880493,0.976467370986938,-0.816786646842957,0.976423561573029,-0.912406027317047,0.981077432632446,-0.912082195281982,0.965094387531281,-0.926284909248352,0.842775583267212,-0.816446661949158,0.832376956939697,-0.925842046737671,0.843990445137024,-0.812131702899933,0.981077432632446,-0.934898972511292,0.975245535373688,-0.936306715011597,0.975886702537537,-0.982002973556519,0.981077432632446,-0.982002973556519,0.3885817527771,-0.927439451217651,0.38847804069519,-0.924084305763245,0.382401704788208,-0.924061119556427,0.382172077894211,-0.927404046058655,
- 0.388491541147232,-0.98174387216568,0.388508588075638,-0.971497178077698,0.368649899959564,-0.981735110282898,0.971815288066864,-0.930661022663116,0.692992508411407,-0.758816182613373,0.69305020570755,-0.755928695201874,0.686119914054871,-0.755921840667725,0.686029076576233,-0.758815109729767,0.691392958164215,-0.647859632968903,0.692201912403107,-0.642947793006897,0.682451963424683,-0.64294958114624,0.68227231502533,-0.647839188575745,0.690971314907074,-0.814201831817627,0.693607807159424,-0.814204037189484,0.693702220916748,-0.805857360363007,0.676508188247681,-0.812099099159241,0.676070690155029,-0.816279947757721,0.693212509155273,-0.828837394714355,0.817854344844818,-0.926008284091949,0.81773430109024,-0.929641246795654,0.823275625705719,-0.927792072296143,0.823330819606781,-0.942728579044342,0.823568642139435,-0.648155987262726,0.824123382568359,-0.642923474311829,0.822381258010864,-0.642923831939697,0.821823120117188,-0.648152112960815,0.823349356651306,-0.766634047031403,0.825086832046509,-0.766307294368744,0.824861764907837,-0.747207641601563,0.823079943656921,-0.744194269180298,0.823635458946228,-0.911860585212708,0.825270593166351,-0.834336042404175,0.823466837406158,-0.837124109268188,0.825936853885651,-0.941911220550537,0.823702692985535,-0.981935858726501,0.826346278190613,-0.981937885284424,0.691559731960297,-0.929113030433655,0.691621482372284,-0.925241231918335,0.679816424846649,-0.925196170806885,0.677516937255859,-0.929035425186157,0.691648840904236,-0.943938493728638,0.528822362422943,-0.758791565895081,0.528932631015778,-0.75576639175415,0.525259613990784,-0.755762815475464,0.525148153305054,-0.758791029453278,0.526966214179993,-0.647490978240967,0.528091371059418,-0.642978012561798,0.524418532848358,-0.642978668212891,0.523286283016205,-0.647482752799988,0.529519319534302,-0.812101185321808,0.525842726230621,-0.812101244926453,0.527774512767792,-0.926412165164948,0.527868866920471,-0.914563119411469,0.524194777011871,-0.915069580078125,0.524108290672302,-0.926394999027252,0.528928995132446,-0.816031754016876,
- 0.525247633457184,-0.81602555513382,0.524150788784027,-0.944315612316132,0.527819037437439,-0.945191562175751,0.389276772737503,-0.758770644664764,0.389431804418564,-0.75562846660614,0.380715936422348,-0.755619883537292,0.380599588155746,-0.758769333362579,0.387202501296997,-0.647177696228027,0.388596504926682,-0.643003702163696,0.3687404692173,-0.643007338047028,0.366695076227188,-0.647131681442261,0.371134757995605,-0.812103450298309,0.389628946781158,-0.789736747741699,0.387698382139206,-0.671301126480103,0.370549082756042,-0.815764665603638,0.389042377471924,-0.827576160430908,0.279785573482513,-0.807436883449554,0.280573129653931,-0.810411691665649,0.506570279598236,-0.924535036087036,0.503463089466095,-0.928074061870575,0.398575514554977,-0.647203207015991,0.400448560714722,-0.64300149679184,0.398134976625443,-0.758771955966949,0.39736196398735,-0.75563633441925,0.397625267505646,-0.812103092670441,0.404053092002869,-0.815821170806885,0.529960989952087,-0.945703387260437,0.52991509437561,-0.926422119140625,0.529114842414856,-0.647495806217194,0.530235886573792,-0.642977595329285,0.531077206134796,-0.755768537521362,0.530967652797699,-0.758791863918304,0.531665980815887,-0.812101125717163,0.531078398227692,-0.816035389900208,0.530014038085938,-0.914267301559448,0.538256525993347,-0.928266227245331,0.538365960121155,-0.924656331539154,0.707346200942993,-0.929179072380066,0.708431959152222,-0.92534339427948,0.698787271976471,-0.642946600914001,0.698318004608154,-0.647875189781189,0.790148913860321,-0.756024718284607,0.790700376033783,-0.758830785751343,0.69532299041748,-0.814205467700958,0.723487019538879,-0.812098383903503,0.722077012062073,-0.816357553005219,0.825813412666321,-0.929843187332153,0.826285839080811,-0.910307705402374,0.833495080471039,-0.929886221885681,0.389111280441284,-0.815795958042145,0.396520435810089,-0.927483320236206,0.39501017332077,-0.924109220504761,0.400334984064102,-0.981749057769775,0.524215161800385,-0.981803715229034,0.527885317802429,-0.981805324554443,0.530028223991394,-0.98180627822876,
- 0.691789209842682,-0.915078282356262,0.805163502693176,-0.816497683525085,0.80540531873703,-0.812097251415253,0.38988333940506,-0.81210321187973,0.82801616191864,-0.830027639865875,0.825646102428436,-0.816532254219055,0.825852274894714,-0.812096953392029,0.823903679847717,-0.79983913898468,0.825668573379517,-0.801108717918396,0.828323245048523,-0.80305016040802,0.82196182012558,-0.981935083866119,0.286321371793747,-0.643712103366852,0.285484045743942,-0.647056937217712,0.691876828670502,-0.981877684593201,0.682134032249451,-0.981873393058777,0.698457419872284,-0.981880605220795,0.698499023914337,-0.755934059619904,0.698750495910645,-0.7588170170784,0.295638173818588,-0.926381289958954,0.295025199651718,-0.929803431034088,0.284481912851334,-0.941487967967987,0.279490977525711,-0.971658051013947,0.269325703382492,-0.675810217857361,0.265747845172882,-0.704356670379639,0.259009897708893,-0.732805252075195,0.271090865135193,-0.761096596717834,0.270723521709442,-0.765984296798706,0.271151453256607,-0.791407108306885,0.268679678440094,-0.839596688747406,0.275845438241959,-0.868961453437805,0.279569059610367,-0.897633790969849,0.530788004398346,-0.480735301971436,0.525586664676666,-0.516070783138275,0.573843479156494,-0.499540746212006,0.578149616718292,-0.48101532459259,0.5751793384552,-0.47784686088562,0.453955084085464,-0.479732155799866,0.451450854539871,-0.517583966255188,0.488351047039032,-0.520931720733643,0.492427557706833,-0.47965794801712,0.411809504032135,-0.495711505413055,0.406451463699341,-0.525361180305481,0.411503553390503,-0.528386116027832,0.450098723173141,-0.535735130310059,0.48851215839386,-0.540395736694336,0.527714371681213,-0.542148292064667,0.572121858596802,-0.539416670799255,0.575417876243591,-0.536278963088989,0.415057957172394,-0.471721947193146,0.412514805793762,-0.47435587644577,-2.24214029312134,0.290333658456802,-3.38732051849365,0.720589876174927,-3.28577423095703,0.637402951717377,-3.21685600280762,0.653660953044891,-1.76924061775208,0.297891438007355,-3.1468985080719,0.68696653842926,-0.336536943912506,
- 3.19175410270691,-0.336046457290649,3.18541288375854,-0.331870377063751,3.18540859222412,-0.331897079944611,3.19176650047302,-0.33258181810379,3.21947693824768,-0.337361812591553,3.21943473815918,-0.337666869163513,3.06492853164673,-0.333068907260895,3.06010365486145,-0.209458231925964,3.22377014160156,-0.212538003921509,3.22378420829773,-0.21270763874054,3.22050905227661,-0.209630727767944,3.22053551673889,-0.32894629240036,3.1917736530304,-0.328671813011169,3.18539261817932,-0.212281048297882,3.18481302261353,-0.212302029132843,3.19205188751221,-0.328315019607544,3.21951365470886,-0.326244354248047,3.06514453887939,-0.212780058383942,3.06345224380493,-0.332586348056793,3.22433471679688,-0.336912274360657,3.22433018684387,-0.327656030654907,3.22431206703186,-0.209199368953705,3.18479776382446,-0.209221363067627,3.19205927848816,-0.209705829620361,3.06070780754089,-0.332499504089355,3.36499977111816,-0.340302050113678,3.35938310623169,-0.415191411972046,3.22427558898926,-0.415641367435455,3.21809887886047,-0.424469411373138,3.20187878608704,-0.4171342253685,3.19163084030151,-0.407741963863373,3.36008071899414,-0.403227925300598,3.3124086856842,-0.417151272296906,3.27191281318665,-0.411294221878052,3.25014448165894,-0.331260502338409,3.06089997291565,-0.325714468955994,3.35989570617676,-0.211924612522125,3.36212062835693,-0.646673202514648,1.15720582008362,-0.646716117858887,1.02571034431458,-0.648391783237457,1.02238631248474,-0.669758677482605,1.02112913131714,-0.67290598154068,1.02607333660126,-0.672738909721375,1.14010870456696,-0.336536943912506,1.1917542219162,-0.331897079944611,1.19176650047302,-0.331870377063751,1.18540859222412,-0.336046457290649,1.18541288375854,-0.337361812591553,1.21943485736847,-0.33258181810379,1.21947693824768,-0.333067834377289,1.06020975112915,-0.337665557861328,1.06502628326416,-0.209458231925964,1.22377014160156,-0.209630727767944,1.22053551673889,-0.21270763874054,1.22050905227661,-0.212538003921509,1.22378432750702,-0.32894629240036,1.19177353382111,-0.212302029132843,1.19205188751221,
- -0.212281048297882,1.18481302261353,-0.328671813011169,1.18539261817932,-0.328315019607544,1.21951365470886,-0.212779760360718,1.06355047225952,-0.326250195503235,1.06524300575256,-0.336912274360657,1.22433018684387,-0.332586348056793,1.22433459758759,-0.340299725532532,1.35928857326508,-0.332499027252197,1.364901304245,-0.327656030654907,1.22431206703186,-0.209221363067627,1.19205927848816,-0.209199368953705,1.18479776382446,-0.209705412387848,1.06080889701843,-0.36890834569931,1.21912431716919,-0.368630588054657,1.22459781169891,-0.370321214199066,1.1921797990799,-0.37157928943634,1.21014177799225,-0.384107828140259,1.27003705501556,-0.387869477272034,1.31860816478729,-0.40833181142807,1.35725629329681,-0.331255078315735,1.06100797653198,-0.211925029754639,1.36202394962311,-0.325718939304352,1.35980224609375,-0.672739028930664,3.14001560211182,-0.67290598154068,3.02607345581055,-0.669758677482605,3.02112913131714,-0.648391783237457,3.02238631248474,-0.646716117858887,3.02571034431458,-0.646673202514648,3.15711283683777,-0.208902955055237,1.3668360710144,-0.208902657032013,3.36693716049194,-0.212073981761932,3.36641359329224,-0.325658023357391,3.36410617828369,-0.340405464172363,3.36357688903809,-0.407530844211578,3.36488199234009,-0.32824182510376,3.36432504653931,-0.337611198425293,3.36397218704224,-0.417281627655029,3.18594217300415,-0.409226596355438,3.0597562789917,-0.414478898048401,3.16753172874451,-0.421373784542084,3.14707207679749,-0.408671915531158,3.09033513069153,-0.370454847812653,1.18505120277405,-0.409223437309265,1.05994939804077,-0.384307503700256,1.09308111667633,-0.381784200668335,1.14252758026123,-0.911337494850159,-1.88131654262543,-0.949994564056396,-1.90365815162659,-0.951040148735046,-1.90990269184113,-0.946028828620911,-1.92248821258545,-0.906749069690704,-1.89237499237061,-0.760913014411926,-1.88614535331726,-0.795231938362122,-1.8584463596344,-0.804287195205688,-1.87696480751038,-0.764677047729492,-1.90241289138794,-0.76774799823761,-1.92360806465149,-0.75094997882843,-1.93229126930237,
- -0.745298027992249,-1.92060768604279,-0.840128064155579,-1.83402681350708,-0.871502280235291,-1.85280013084412,-0.866562128067017,-1.86841022968292,-0.835664987564087,-1.8667768239975,-0.833181858062744,-1.83392643928528,-0.811895966529846,-1.88909554481506,-0.86142361164093,-1.88885581493378,-0.835675120353699,-1.87389087677002,-0.90030300617218,-1.91707670688629,-0.938058376312256,-1.93352818489075,-0.932482957839966,-1.93507933616638,-0.742369413375854,-1.8960165977478,-0.719897150993347,-1.91190242767334,-0.7254958152771,-1.93533837795258,-0.718574285507202,-1.91801857948303,-0.735818266868591,-1.94351816177368,-0.73032820224762,-1.94178032875061,0.414587736129761,1.66598498821259,0.526780188083649,1.66496384143829,0.535148143768311,1.67700386047363,0.535829305648804,1.75207304954529,0.429889798164368,1.75331997871399,0.415408164262772,1.73667514324188,0.611593782901764,1.82663917541504,0.611942291259766,1.90161919593811,0.599440515041351,1.91383635997772,0.538544595241547,1.91417050361633,0.537654757499695,1.82639026641846,0.34450426697731,1.91366052627563,0.344044297933578,1.84617865085602,0.356723487377167,1.8282790184021,0.413325190544128,1.82714056968689,0.415371090173721,1.90303182601929,0.397654235363007,1.91275608539581,0.414893358945847,1.82751870155334,0.536207139492035,1.82650804519653,0.537059247493744,1.91404390335083,0.424709618091583,1.91254568099976,0.416660189628601,1.90320456027985,0.536629915237427,1.82533836364746,0.414476692676544,1.82600927352905,0.415541440248489,1.76666903495789,0.429860562086105,1.75439584255219,0.53615391254425,1.7535080909729,0.414373755455017,1.93410575389862,0.424618393182755,1.91391921043396,0.537530481815338,1.9154806137085,0.536883056163788,1.9760468006134,0.528435468673706,1.98845100402832,0.414987742900848,1.98727190494537,0.415991246700287,1.90417373180389,0.423437744379044,1.91299962997437,0.399396628141403,1.91321742534637,0.600854635238647,1.91408407688141,0.612356305122375,1.90288424491882,0.612408339977264,1.9140202999115,0.415546298027039,1.76527309417725,
- 0.415228754281998,1.73826789855957,0.428701013326645,1.75374448299408,0.752156138420105,1.12983977794647,0.894243538379669,1.13214015960693,0.892870306968689,1.19993841648102,0.851999938488007,1.20617151260376,0.75884211063385,1.20994544029236,0.750094950199127,1.19342923164368,0.753413736820221,1.3086051940918,0.897919297218323,1.29686212539673,0.902776002883911,1.35444533824921,0.875003337860107,1.37596786022186,0.772700965404511,1.38436508178711,0.755812406539917,1.3301078081131,0.963598489761353,1.195396900177,0.974708735942841,1.26821947097778,0.957947790622711,1.2864328622818,0.899144053459167,1.29530513286591,0.891751348972321,1.22586011886597,0.894050538539886,1.20081567764282,0.890483856201172,1.22469210624695,0.854374587535858,1.20703125,0.892859220504761,1.20096862316132,0.894144594669342,1.05536448955536,0.865765273571014,1.0399317741394,0.898261487483978,1.03163743019104,0.750205814838409,1.05187928676605,0.761374890804291,1.03907513618469,0.86416620016098,1.04045605659485,0.894072771072388,1.05652940273285,0.894116222858429,1.13101935386658,0.75227963924408,1.12864398956299,0.7298304438591,1.30665504932404,0.674351692199707,1.29214251041412,0.67615419626236,1.21433138847351,0.738640189170837,1.21252036094666,0.751182734966278,1.22577929496765,0.751864194869995,1.30741536617279,0.674359500408173,1.29353785514832,0.725274682044983,1.30674600601196,0.673951804637909,1.30531132221222,0.752699017524719,1.22585535049438,0.758986711502075,1.21106672286987,0.851980090141296,1.20729279518127,0.890470921993256,1.22606039047241,0.897889852523804,1.29538381099701,0.753384351730347,1.30721139907837,0.751638889312744,1.22458934783936,0.740170896053314,1.21216213703156,0.757620751857758,1.21088242530823,0.255404233932495,1.79999399185181,0.0964959263801575,1.80079507827759,0.096301831305027,1.72025775909424,0.176599144935608,1.72071623802185,0.256433635950089,1.7247222661972,0.25687250494957,1.72259306907654,0.176604777574539,1.71895802021027,0.188421130180359,1.64403021335602,0.258441627025604,1.6463770866394,0.258098483085632,
- 1.94935369491577,0.189212173223495,1.95636343955994,0.118814885616302,1.95854115486145,0.0977336242794991,1.94060635566711,0.0969404429197311,1.878044962883,0.249899014830589,1.8744695186615,0.256653666496277,1.88945662975311,0.0210041888058186,1.80298495292664,0.019113389775157,1.73958969116211,0.040805995464325,1.72083127498627,0.0938384160399437,1.7198166847229,0.0947793498635292,1.80095982551575,0.334767639636993,1.72661817073822,0.329522550106049,1.78680181503296,0.283602833747864,1.80051898956299,0.25762927532196,1.8000066280365,0.258627533912659,1.724329829216,0.0187826845794916,1.7382652759552,0.0185350403189659,1.7209460735321,0.0396098792552948,1.72037887573242,0.0961751639842987,1.71835470199585,0.0975309312343597,1.66399765014648,0.118176721036434,1.6419734954834,0.254944205284119,1.82802510261536,0.252015471458435,1.87206411361694,0.0971289947628975,1.87647199630737,0.0967187583446503,1.80274438858032,0.25529408454895,1.80157959461212,0.329053401947021,1.78859114646912,0.328156352043152,1.80314004421234,0.285872519016266,1.80134761333466,0.752156138420105,2.12983989715576,0.894243538379669,2.13214015960693,0.892870306968689,2.19993829727173,0.851999938488007,2.20617151260376,0.75884211063385,2.20994544029236,0.750094950199127,2.19342923164368,0.753413736820221,2.3086051940918,0.897919297218323,2.29686212539673,0.902776002883911,2.3544454574585,0.875003337860107,2.37596797943115,0.772700965404511,2.38436508178711,0.755812406539917,2.33010768890381,0.963598489761353,2.195396900177,0.974708735942841,2.26821947097778,0.957947790622711,2.28643274307251,0.899144053459167,2.2953052520752,0.891751348972321,2.22586011886597,0.894050538539886,2.20081567764282,0.890483856201172,2.22469210624695,0.854374587535858,2.20703125,0.892859220504761,2.20096874237061,0.894144594669342,2.05536460876465,0.865765273571014,2.0399317741394,0.898261487483978,2.03163743019104,0.750205814838409,2.05187940597534,0.761374890804291,2.03907513618469,0.86416620016098,2.04045605659485,0.894072771072388,2.05652928352356,0.894116222858429,
- 2.13101935386658,0.75227963924408,2.12864398956299,0.7298304438591,2.30665493011475,0.674351692199707,2.29214239120483,0.67615419626236,2.21433138847351,0.738640189170837,2.21252036094666,0.751182734966278,2.22577929496765,0.751864194869995,2.30741548538208,0.674359500408173,2.29353785514832,0.725274682044983,2.30674600601196,0.673951804637909,2.30531144142151,0.752699017524719,2.22585535049438,0.758986711502075,2.21106672286987,0.851980090141296,2.20729279518127,0.890470921993256,2.22606039047241,0.897889852523804,2.29538369178772,0.753384351730347,2.30721139907837,0.751638889312744,2.22458934783936,0.740170896053314,2.21216201782227,0.757620751857758,2.21088242530823,0.414587736129761,2.66598510742188,0.526780188083649,2.664963722229,0.535148143768311,2.67700386047363,0.535829305648804,2.75207304954529,0.429889798164368,2.75331997871399,0.415408164262772,2.73667526245117,0.611593782901764,2.82663917541504,0.611942291259766,2.90161919593811,0.599440515041351,2.91383647918701,0.538544595241547,2.91417050361633,0.537654757499695,2.82639026641846,0.34450426697731,2.91366052627563,0.344044297933578,2.84617853164673,0.356723487377167,2.8282790184021,0.413325190544128,2.82714056968689,0.415371090173721,2.90303182601929,0.397654235363007,2.91275596618652,0.414893358945847,2.82751870155334,0.536207139492035,2.82650804519653,0.537059247493744,2.91404390335083,0.424709618091583,2.91254568099976,0.416660189628601,2.90320444107056,0.536629915237427,2.82533836364746,0.414476692676544,2.82600927352905,0.415541440248489,2.76666903495789,0.429860562086105,2.75439596176147,0.53615391254425,2.7535080909729,0.414373755455017,2.93410587310791,0.424618393182755,2.91391921043396,0.537530481815338,2.9154806137085,0.536883056163788,2.9760468006134,0.528435468673706,2.98845100402832,0.414987742900848,2.98727178573608,0.415991246700287,2.90417385101318,0.423437744379044,2.91299962997437,0.399396628141403,2.91321754455566,0.600854635238647,2.91408395767212,0.612356305122375,2.90288424491882,0.612408339977264,2.9140202999115,0.415546298027039,
- 2.76527309417725,0.415228754281998,2.73826789855957,0.428701013326645,2.75374460220337,0.255404233932495,2.79999399185181,0.0964959263801575,2.80079507827759,0.096301831305027,2.72025775909424,0.176599144935608,2.72071623802185,0.256433635950089,2.72472238540649,0.25687250494957,2.72259306907654,0.176604777574539,2.71895790100098,0.188421130180359,2.64403009414673,0.258441627025604,2.6463770866394,0.258098483085632,2.94935369491577,0.189212173223495,2.95636343955994,0.118814885616302,2.95854115486145,0.0977336242794991,2.94060635566711,0.0969404429197311,2.87804508209229,0.249899014830589,2.8744695186615,0.256653666496277,2.8894567489624,0.0210041888058186,2.80298495292664,0.019113389775157,2.73958969116211,0.040805995464325,2.72083139419556,0.0938384160399437,2.7198166847229,0.0947793498635292,2.80095982551575,0.334767639636993,2.72661828994751,0.329522550106049,2.78680181503296,0.283602833747864,2.80051898956299,0.25762927532196,2.8000066280365,0.258627533912659,2.72432994842529,0.0187826845794916,2.7382652759552,0.0185350403189659,2.7209460735321,0.0396098792552948,2.72037887573242,0.0961751639842987,2.71835470199585,0.0975309312343597,2.66399765014648,0.118176721036434,2.6419734954834,0.254944205284119,2.82802510261536,0.252015471458435,2.87206411361694,0.0971289947628975,2.87647199630737,0.0967187583446503,2.80274438858032,0.25529408454895,2.80157947540283,0.329053401947021,2.78859114646912,0.328156352043152,2.80314016342163,0.285872519016266,2.80134773254395,0.752156138420105,0.129839822649956,0.894243538379669,0.132140174508095,0.892870306968689,0.199938416481018,0.851999938488007,0.206171497702599,0.75884211063385,0.209945484995842,0.750094950199127,0.193429261445999,0.753413736820221,0.308605253696442,0.897919297218323,0.296862065792084,0.902776002883911,0.354445338249207,0.875003337860107,0.375967890024185,0.772700965404511,0.384365022182465,0.755812406539917,0.330107778310776,0.963598489761353,0.19539687037468,0.974708735942841,0.268219530582428,0.957947790622711,0.286432832479477,0.899144053459167,0.295305162668228,
- 0.891751348972321,0.225860133767128,0.894050538539886,0.200815618038177,0.890483856201172,0.224692091345787,0.854374587535858,0.207031205296516,0.892859220504761,0.2009686678648,0.894144594669342,0.0553645305335522,0.865765273571014,0.0399317778646946,0.898261487483978,0.0316374264657497,0.750205814838409,0.051879309117794,0.761374890804291,0.0390751138329506,0.86416620016098,0.0404560603201389,0.894072771072388,0.0565293803811073,0.894116222858429,0.131019294261932,0.75227963924408,0.128643959760666,0.7298304438591,0.306655019521713,0.674351692199707,0.292142480611801,0.67615419626236,0.214331328868866,0.738640189170837,0.212520331144333,0.751182734966278,0.225779324769974,0.751864194869995,0.307415366172791,0.674359500408173,0.293537795543671,0.725274682044983,0.306745976209641,0.673951804637909,0.305311352014542,0.752699017524719,0.225855380296707,0.758986711502075,0.211066767573357,0.851980090141296,0.207292824983597,0.890470921993256,0.226060435175896,0.897889852523804,0.295383781194687,0.753384351730347,0.307211369276047,0.751638889312744,0.224589318037033,0.740170896053314,0.212162107229233,0.757620751857758,0.210882365703583,-1.55269622802734,0.544942259788513,-1.55269527435303,0.331561088562012,-1.12025117874146,0.331561267375946,-1.12025189399719,0.546224534511566,-0.798124551773071,0.332270085811615,-0.895304918289185,0.39042341709137,-0.992460012435913,0.33190068602562,-0.993047714233398,0.00614454550668597,-0.797545194625854,0.00576899759471416
- }
- UVIndex: *2608 {
- a: 0,1,2,3,4,5,1,0,6,7,8,1174,10,11,7,6,12,13,724,14,15,16,17,18,19,20,2,21,1,5,22,23,24,25,26,27,1175,1176,1177,1178,1179,4,33,34,35,0,36,33,4,37,38,39,40,15,14,20,19,41,42,38,37,43,44,1172,1171,47,48,49,50,51,52,46,45,11,10,21,2,1,23,3,53,36,0,54,55,9,1173,56,57,35,26,5,4,26,25,22,5,58,59,46,10,60,58,10,6,61,60,6,1174,62,31,30,8,63,62,8,7,64,65,11,45,66,64,45,67,65,63,7,11,68,66,67,69,70,68,69,728,71,72,73,74,75,76,77,78,79,75,78,80,81,79,80,82,83,81,82,84,85,83,84,86,87,85,86,88,87,88,89,90,91,92,93,94,95,96,92,97,98,99,100,101,102,102,101,103,104,105,97,106,107,108,109,110,111,95,112,113,106,114,115,116,117,117,116,118,119,120,121,122,123,124,125,104,103,126,110,123,127,128,129,119,118,97,92,95,106,120,123,110,109,118,116,102,104,125,128,118,104,99,102,116,115,130,131,132,133,134,135,136,137,138,139,92,96,93,105,98,97,95,94,112,107,106,113,111,110,126,127,123,122,140,141,142,143,144,140,145,146,147,148,149,150,150,149,151,152,153,145,154,155,156,157,158,159,143,160,161,154,162,163,164,165,165,164,166,167,168,169,170,171,172,173,152,151,174,158,171,175,176,177,167,166,145,140,143,154,168,171,158,157,166,164,150,152,173,176,166,152,147,150,164,163,178,179,180,181,182,183,184,185,186,187,140,144,141,153,146,145,143,142,160,155,154,161,159,158,174,175,171,170,188,189,190,191,192,188,193,194,195,196,197,198,198,197,199,200,201,193,202,203,204,205,206,207,191,208,209,202,210,211,212,213,213,212,214,215,216,217,218,219,220,221,200,199,222,206,219,223,224,225,215,214,193,188,191,202,216,219,206,205,214,212,198,200,221,224,214,200,195,198,212,211,226,227,228,229,230,231,232,233,234,235,188,192,189,201,194,193,191,190,208,203,202,209,207,206,222,223,219,218,236,50,49,237,238,239,240,241,242,243,244,242,244,239,238,245,243,246,247,248,249,250,248,247,251,252,253,254,255,256,250,249,257,258,259,260,261,262,263,264,265,266,267,268,269,242,270,254,253,262,243,245,271,244,244,271,239,243,242,269,246,272,241,240,254,273,274,255,275,276,277,278,279,280,281,282,283,277,280,279,282,281,284,285,286,252,251,287,
- 288,264,289,290,291,292,293,294,295,260,265,296,261,289,272,240,290,289,264,263,259,297,298,273,254,262,261,296,293,292,291,290,277,283,299,278,280,300,301,281,277,276,300,280,281,301,302,284,251,253,256,287,247,262,253,251,262,247,250,259,259,250,258,297,283,252,288,299,252,283,279,248,248,279,282,249,249,282,286,286,285,303,249,286,303,257,259,298,304,263,260,293,271,245,294,239,271,293,290,240,273,292,295,274,292,273,296,291,265,264,291,296,263,265,260,268,305,246,269,306,307,241,272,304,306,272,289,263,308,309,310,311,312,313,314,315,316,317,318,319,320,318,314,317,319,321,322,320,323,324,325,326,326,327,328,323,329,330,331,332,324,333,334,325,335,336,337,338,339,340,341,342,343,318,344,345,346,332,336,329,320,319,347,321,319,317,347,320,322,344,318,348,316,315,332,331,349,350,351,352,353,354,355,356,357,358,359,355,358,353,356,360,361,362,357,327,363,364,328,341,365,366,367,368,369,370,371,338,337,372,340,367,366,316,348,367,339,341,335,373,374,350,372,337,336,332,371,366,365,368,353,352,375,359,358,357,376,377,353,358,377,354,357,362,378,376,328,364,330,329,323,328,329,336,336,335,324,323,335,374,333,324,359,375,363,327,327,326,355,359,326,325,356,355,325,360,356,360,379,361,325,334,379,360,335,338,339,380,373,371,370,321,347,317,316,366,371,347,350,349,369,368,368,365,372,350,340,372,365,341,339,338,340,381,382,348,315,382,380,339,367,348,383,384,385,386,387,388,389,390,352,351,391,392,275,278,393,345,344,322,394,395,396,391,397,394,398,399,399,398,400,401,402,403,404,405,406,402,407,408,408,407,409,410,411,409,305,412,413,414,415,400,414,413,405,416,256,255,405,413,287,400,398,288,287,256,413,400,288,398,394,299,255,274,402,405,402,274,295,407,394,391,278,299,409,407,295,294,305,409,294,245,246,364,363,417,418,364,418,419,330,363,375,420,417,331,421,422,349,422,423,369,349,390,420,375,352,423,424,370,369,330,419,421,331,424,393,322,321,370,396,392,391,425,305,268,426,427,428,429,430,431,432,433,434,428,431,430,433,432,435,436,428,434,437,429,431,438,439,432,428,427,438,431,432,439,440,435,437,441,442,434,443,
- 441,437,443,434,430,444,444,430,433,445,436,446,445,433,442,441,447,442,448,429,437,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,459,462,457,460,464,465,461,457,456,466,463,462,461,467,468,457,462,468,458,461,465,469,467,470,466,471,472,463,466,470,473,473,474,459,463,474,475,460,459,464,460,475,476,477,471,466,456,478,479,480,481,482,483,484,477,456,455,485,486,487,488,489,490,491,492,493,494,448,495,426,429,496,448,442,497,496,495,448,497,442,447,38,42,498,499,39,38,499,500,501,502,503,504,505,506,507,508,509,510,511,505,512,513,506,514,515,501,516,517,518,519,520,521,517,516,508,522,523,524,509,523,501,515,502,518,505,504,517,521,505,521,525,512,526,523,522,524,523,526,725,726,515,514,502,515,726,727,503,502,727,729,505,521,512,512,508,513,513,508,511,523,509,508,518,517,505,521,522,525,526,522,521,520,525,522,508,512,525,508,527,528,529,530,531,532,533,528,534,535,536,530,537,538,539,540,531,533,532,541,533,542,543,544,545,546,527,534,528,529,537,530,536,547,548,549,550,548,547,551,552,547,535,553,551,554,555,556,557,558,559,560,561,562,563,564,565,548,550,535,547,536,554,565,555,554,549,548,565,566,567,568,569,570,571,572,573,574,575,576,577,567,570,573,568,578,579,575,574,580,581,582,581,583,582,584,585,586,587,588,589,533,533,590,591,580,592,593,594,595,583,596,597,598,599,600,601,601,602,598,603,604,605,606,607,608,609,610,611,603,606,612,604,607,610,605,613,614,615,616,617,611,612,618,616,619,620,613,621,622,623,624,625,626,627,628,629,630,621,624,628,631,625,632,560,559,633,632,629,634,635,636,637,616,637,619,616,638,639,626,625,631,638,625,640,641,622,621,642,640,621,630,618,612,642,643,616,615,636,613,620,644,645,646,647,608,607,648,646,607,604,649,648,604,603,650,649,603,611,651,650,611,617,645,652,614,613,645,653,654,645,644,653,574,577,578,654,652,645,655,656,599,598,602,655,598,587,586,657,658,533,591,659,659,660,533,661,662,576,575,663,662,661,663,661,575,579,539,538,585,584,589,540,533,533,541,590,664,665,592,582,552,666,565,550,666,597,556,555,565,633,643,667,668,669,559,558,670,563,
- 562,620,619,671,672,644,620,672,673,614,652,651,617,615,614,617,618,599,656,674,675,676,662,663,660,588,533,576,566,569,577,578,577,650,651,674,600,599,632,633,667,667,677,629,632,677,630,629,642,630,677,643,642,677,667,633,559,669,643,593,678,679,594,593,679,675,594,679,679,680,676,675,681,676,680,680,682,681,680,683,682,553,683,680,551,553,680,679,678,551,679,552,665,664,664,666,552,664,595,666,582,583,595,664,592,665,678,593,582,592,580,581,684,596,583,564,563,558,561,628,627,685,686,622,631,628,623,641,638,631,622,610,609,639,638,670,668,558,563,578,600,674,579,601,600,654,653,687,602,601,688,655,689,684,581,581,580,656,655,675,580,594,534,531,553,535,534,527,532,531,527,530,539,532,590,541,539,584,591,590,584,587,659,591,587,658,690,690,691,660,659,660,676,681,588,681,682,589,588,682,683,540,589,561,560,692,693,564,561,693,694,695,671,619,637,668,670,637,636,669,668,643,669,636,615,618,688,601,653,644,673,573,572,647,646,568,573,646,648,569,568,648,649,577,569,649,650,662,676,660,691,663,656,580,675,674,656,663,579,687,689,655,602,658,657,571,570,690,658,570,567,566,691,690,567,662,691,566,576,654,600,578,651,652,552,551,678,665,666,595,597,532,539,541,553,531,540,683,623,628,686,696,697,698,699,624,623,699,700,629,624,700,701,634,612,606,640,642,606,605,641,640,605,610,638,641,635,702,703,704,692,560,632,705,706,707,708,709,710,711,712,713,713,712,706,705,711,714,715,716,717,711,717,718,712,706,712,718,719,707,706,719,720,721,722,723,714,711,710,519,518,726,725,727,726,518,504,729,727,504,507,730,731,732,733,733,734,735,730,731,736,737,732,738,739,740,741,742,743,744,745,746,742,745,740,743,747,748,744,734,749,750,735,740,739,751,746,745,744,752,753,740,745,753,741,744,748,754,752,750,749,755,756,735,750,757,758,730,735,758,759,760,750,756,761,762,763,764,757,746,751,749,734,734,733,742,746,733,732,743,742,743,765,747,732,737,765,743,751,766,755,749,766,751,739,767,768,769,770,771,772,773,774,775,776,777,775,774,778,779,777,776,780,781,782,783,784,785,786,787,788,789,790,784,787,786,789,788,791,792,779,778,793,
- 794,793,795,796,794,784,790,797,785,787,798,799,788,784,783,798,787,788,799,800,791,778,801,802,793,774,803,804,801,778,793,802,805,806,807,795,790,779,794,797,779,790,786,775,775,786,789,776,776,789,792,776,792,808,780,809,785,797,810,811,812,813,814,815,816,817,782,785,809,797,794,796,810,767,739,738,818,819,820,766,767,821,822,761,756,819,767,818,823,755,766,824,756,755,825,731,730,760,826,736,731,825,827,828,829,803,774,777,830,830,777,781,831,832,833,834,835,836,837,838,839,840,841,842,842,843,844,845,846,847,848,849,847,834,838,848,850,846,849,842,841,851,843,848,852,853,849,838,854,852,848,837,855,856,854,838,857,839,842,845,858,857,845,859,860,844,861,862,859,845,849,841,840,850,853,851,841,849,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,960,959,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1090,1089,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,
- 1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,28,29,1176,1175,29,30,1177,1176,30,31,1178,1177,31,32,1179,1178,32,28,1175,1179
- }
- }
- LayerElementUV: 1 {
- Version: 101
- Name: "uvSet"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *2360 {
- a: 0.704564094543457,0.213364601135254,0.623305916786194,0.213364467024803,0.623306453227997,0.173857316374779,0.702193915843964,0.173857495188713,0.704563915729523,0.295254617929459,0.623305916786194,0.295254409313202,0.445378690958023,0.171385586261749,0.364450693130493,0.171385586261749,0.364450693130493,0.133063018321991,0.0866362154483795,0.635074377059937,0.445378690958023,0.25294303894043,0.364450693130493,0.252943098545074,0.593283116817474,0.0295168850570917,0.604016542434692,0.0415551029145718,0.608065485954285,0.0980550572276115,0.623306453227997,0.108905933797359,0.50079882144928,0.088838204741478,0.50079882144928,0.0117187509313226,0.544874131679535,0.0194302871823311,0.567603051662445,0.0305948760360479,0.500798642635345,0.132921069860458,0.620664000511169,0.132921308279037,0.500798642635345,0.173857048153877,0.500798106193542,0.2952541410923,0.500798642635345,0.213364094495773,0.500798106193542,0.378226816654205,0.500798106193542,0.333732813596725,0.62330573797226,0.333733022212982,0.625820994377136,0.378227323293686,0.366642445325851,0.0117187509313226,0.389281749725342,0.0502339154481888,0.366485893726349,0.0887496620416641,0.242283567786217,0.0887497365474701,0.242126911878586,0.0117188114672899,0.733594596385956,0.295254617929459,0.731698215007782,0.333733290433884,0.702667415142059,0.333733290433884,0.73359477519989,0.213364720344543,0.435024082660675,0.695113062858582,0.435024082660675,0.653517842292786,0.480861216783524,0.653495311737061,0.479054182767868,0.695113062858582,0.413055509328842,0.696414947509766,0.405889987945557,0.653525173664093,0.18708561360836,0.714106678962708,0.144620150327683,0.689354360103607,0.364450693130493,0.29228949546814,0.443017810583115,0.292289853096008,0.149474173784256,0.6091468334198,0.187086284160614,0.637382030487061,0.553575396537781,0.651212811470032,0.507055282592773,0.651212692260742,0.506380975246429,0.610779047012329,0.552900850772858,0.610779285430908,0.731224417686462,0.173857554793358,0.0111843347549438,0.635074019432068,0.04891037940979,
- 0.606754124164581,0.0489101111888886,0.690540492534637,0.0111837983131409,0.712493062019348,0.474291384220123,0.25294303894043,0.471930474042892,0.292289674282074,0.474291384220123,0.17138546705246,0.472402662038803,0.133063122630119,0.242440119385719,0.133063152432442,0.242440119385719,0.171385586261749,0.242440119385719,0.292289674282074,0.242440119385719,0.25294303894043,0.242440119385719,0.333059459924698,0.361819058656693,0.333059459924698,0.242440342903137,0.376934438943863,0.36445090174675,0.356976985931396,0.242440342903137,0.445435166358948,0.352053344249725,0.37202176451683,0.343411535024643,0.42529308795929,0.335141777992249,0.430725783109665,0.316037178039551,0.429302364587784,0.267468065023422,0.438412964344025,0.759469330310822,0.0551041625440121,0.759469330310822,0.0117187509313226,0.834887146949768,0.0117187509313226,0.834887146949768,0.0551041625440121,0.759469330310822,0.0926240310072899,0.834887266159058,0.0926239192485809,0.759469330310822,0.172473579645157,0.834887146949768,0.172473579645157,0.759469389915466,0.210996270179749,0.834887266159058,0.210996329784393,0.759469389915466,0.25091227889061,0.834887266159058,0.25091227889061,0.759469389915466,0.293896615505219,0.834887266159058,0.293868511915207,0.834887027740479,0.360936403274536,0.815611839294434,0.36909630894661,0.759469389915466,0.36909630894661,0.0707352831959724,0.821903169155121,0.0707352831959724,0.820309698581696,0.100289881229401,0.820309937000275,0.100289881229401,0.82190352678299,0.0690591409802437,0.821880280971527,0.0707352831959724,0.878394544124603,0.0691427439451218,0.87842071056366,0.281117141246796,0.584480166435242,0.27957284450531,0.584480166435242,0.279572457075119,0.56870037317276,0.281117171049118,0.568421721458435,0.279572546482086,0.48719310760498,0.281115978956223,0.487255305051804,0.0707352831959724,0.879978716373444,0.100289881229401,0.878394544124603,0.100289881229401,0.87997841835022,0.726408898830414,0.681198835372925,0.724850535392761,0.681198477745056,0.724895894527435,0.602200865745544,0.726453304290771,
- 0.602191805839539,0.101966053247452,0.821880877017975,0.101882249116898,0.87842071056366,0.311333149671555,0.584480166435242,0.309791207313538,0.584480166435242,0.309791207313538,0.568421900272369,0.311333298683167,0.56870049238205,0.309790164232254,0.487255126237869,0.311333239078522,0.487192720174789,0.695939123630524,0.681198477745056,0.694380640983582,0.681199014186859,0.694336235523224,0.602191686630249,0.695894062519073,0.602200865745544,0.279572546482086,0.468303680419922,0.281115919351578,0.468302726745605,0.724947094917297,0.600636839866638,0.695842325687408,0.600636839866638,0.309789955615997,0.468302398920059,0.311333239078522,0.468303203582764,0.812759101390839,0.768887937068939,0.847302734851837,0.708905100822449,0.865505576133728,0.708905458450317,0.865498304367065,0.784419417381287,0.81275874376297,0.784419417381287,0.725467920303345,0.763331174850464,0.72560453414917,0.778920769691467,0.673310041427612,0.778920769691467,0.67260479927063,0.704263985157013,0.692281186580658,0.704066276550293,0.0128599479794502,0.736954569816589,0.0128599479794502,0.73536080121994,0.0424150675535202,0.735361278057098,0.0424150675535202,0.736954987049103,0.0111837983131409,0.73693174123764,0.0128599479794502,0.793447077274323,0.0112674310803413,0.7934730052948,0.167767986655235,0.586279511451721,0.16622368991375,0.586279511451721,0.166223257780075,0.570500075817108,0.16776804625988,0.570221483707428,0.166223436594009,0.488994628190994,0.167766809463501,0.489056974649429,0.0128599479794502,0.795031249523163,0.0424150675535202,0.793447077274323,0.0424150675535202,0.795030891895294,0.668721497058868,0.680401742458344,0.667162895202637,0.680401146411896,0.667208313941956,0.60139924287796,0.668765723705292,0.601390182971954,0.0440912768244743,0.736932218074799,0.0440075173974037,0.7934730052948,0.197983235120773,0.586279511451721,0.196441397070885,0.586279511451721,0.196441397070885,0.570221662521362,0.19798344373703,0.570500195026398,0.196440324187279,0.489056795835495,0.197983399033546,0.488994359970093,0.638250052928925,
- 0.680401146411896,0.636691570281982,0.680401802062988,0.63664698600769,0.601390182971954,0.638205111026764,0.60139936208725,0.166223436594009,0.470105767250061,0.167766734957695,0.470104664564133,0.667259573936462,0.599835276603699,0.638153314590454,0.599835276603699,0.1964400857687,0.470104485750198,0.197983399033546,0.47010537981987,0.884152829647064,0.669122457504272,0.918696701526642,0.609139144420624,0.936899840831757,0.609139621257782,0.936892628669739,0.684654235839844,0.88415253162384,0.684654235839844,0.647553741931915,0.762534320354462,0.647690534591675,0.77812397480011,0.595396041870117,0.77812397480011,0.594690561294556,0.703467130661011,0.614367067813873,0.703269422054291,0.130285486578941,0.824724435806274,0.130285486578941,0.82313072681427,0.159839451313019,0.823131084442139,0.159839451313019,0.824724614620209,0.128609329462051,0.824701488018036,0.130285486578941,0.881215035915375,0.128692910075188,0.881241142749786,0.224442437291145,0.5862797498703,0.222898364067078,0.5862797498703,0.22289776802063,0.570500373840332,0.224442571401596,0.570221662521362,0.22289802134037,0.488994687795639,0.22444149851799,0.489056974649429,0.130285486578941,0.88279914855957,0.159839451313019,0.881215035915375,0.159839451313019,0.882798850536346,0.611032128334045,0.680401921272278,0.609473526477814,0.680401504039764,0.609519064426422,0.601399302482605,0.611076354980469,0.601390302181244,0.161515846848488,0.824702203273773,0.161431908607483,0.881241142749786,0.25465801358223,0.5862797498703,0.253116220235825,0.5862797498703,0.253116220235825,0.570221900939941,0.254658162593842,0.570500612258911,0.253114998340607,0.489056885242462,0.254658162593842,0.488994359970093,0.580560803413391,0.680401504039764,0.579002320766449,0.680402159690857,0.578957736492157,0.601390242576599,0.580515801906586,0.601399421691895,0.22289802134037,0.470105648040771,0.22444124519825,0.470104724168777,0.609570324420929,0.599835276603699,0.580464065074921,0.599835276603699,0.25311478972435,0.470104485750198,0.254658162593842,0.470105320215225,0.890420138835907,
- 0.767504692077637,0.92496395111084,0.707521438598633,0.943166851997375,0.707522034645081,0.943159699440002,0.783036351203918,0.890419840812683,0.783036351203918,0.569639563560486,0.773777902126312,0.569776296615601,0.789367377758026,0.517482042312622,0.789367377758026,0.51677668094635,0.714710772037506,0.536453187465668,0.714513123035431,0.506380975246429,0.691645860671997,0.552900850772858,0.691645920276642,0.758644998073578,0.567040145397186,0.758544981479645,0.564878225326538,0.764870524406433,0.564837992191315,0.766031384468079,0.566639840602875,0.748696208000183,0.568721771240234,0.750717997550964,0.565919280052185,0.750878036022186,0.565919280052185,0.751778841018677,0.552467107772827,0.741990327835083,0.564678132534027,0.7650505900383,0.452259391546249,0.7650505900383,0.450417816638947,0.767612993717194,0.450337946414948,0.767572700977325,0.452019304037094,0.753980875015259,0.452579706907272,0.753960728645325,0.450617969036102,0.754321277141571,0.491934448480606,0.754120945930481,0.49361577630043,0.752059042453766,0.494296580553055,0.752039074897766,0.492535054683685,0.817776799201965,0.450818091630936,0.815835118293762,0.452699810266495,0.767552733421326,0.491934448480606,0.767412483692169,0.521160125732422,0.7650505900383,0.521239757537842,0.765150547027588,0.491814255714417,0.775680005550385,0.528446137905121,0.767352700233459,0.527725756168365,0.767372608184814,0.526284277439117,0.753320336341858,0.577609181404114,0.702836036682129,0.577769577503204,0.696790516376495,0.567200064659119,0.740388989448547,0.566119372844696,0.753540337085724,0.571723997592926,0.753840625286102,0.553628385066986,0.767172515392303,0.564878225326538,0.753960907459259,0.526284277439117,0.751939237117767,0.525883972644806,0.752219319343567,0.401334673166275,0.753520369529724,0.401454895734787,0.753540337085724,0.402655869722366,0.752219319343567,0.402615934610367,0.7650505900383,0.449176669120789,0.764930427074432,0.40245595574379,0.767832934856415,0.40245595574379,0.767612814903259,0.449136972427368,0.753940880298615,0.448936372995377,
- 0.816435694694519,0.402696073055267,0.815755069255829,0.448095917701721,0.798359751701355,0.449176669120789,0.752019107341766,0.45241978764534,0.752019107341766,0.450658172369003,0.767352700233459,0.529567062854767,0.765010595321655,0.529527306556702,0.7650306224823,0.527765691280365,0.753960907459259,0.528165996074677,0.753960728645325,0.529046535491943,0.751818895339966,0.530087530612946,0.751818895339966,0.528125762939453,0.765030682086945,0.526364386081696,0.816776037216187,0.491613894701004,0.817996978759766,0.492614954710007,0.752019166946411,0.4486965239048,0.764930427074432,0.401254773139954,0.767853021621704,0.401254773139954,0.817536532878876,0.401495069265366,0.817456483840942,0.450137585401535,0.817176282405853,0.528846383094788,0.697311103343964,0.56503814458847,0.816455662250519,0.565598845481873,0.81707626581192,0.567240178585052,0.311194360256195,0.87324070930481,0.299888670444489,0.865824818611145,0.299816161394119,0.816363215446472,0.301181226968765,0.814218640327454,0.310449004173279,0.81476354598999,0.311175853013992,0.816205859184265,0.605764031410217,0.566369593143463,0.598380029201508,0.565889060497284,0.599554061889648,0.564191043376923,0.605827033519745,0.564213275909424,0.615678489208221,0.568026483058929,0.613501846790314,0.565249979496002,0.613674342632294,0.565267086029053,0.612612187862396,0.551791191101074,0.622345209121704,0.563963234424591,0.59937310218811,0.452027529478073,0.59684419631958,0.451831877231598,0.596842527389526,0.450166434049606,0.599377930164337,0.450177043676376,0.610428869724274,0.45045006275177,0.610412180423737,0.452356487512589,0.610067546367645,0.491489887237549,0.612325191497803,0.492091983556747,0.612321317195892,0.493888467550278,0.610259473323822,0.493237406015396,0.548833727836609,0.452477514743805,0.546912908554077,0.450643926858902,0.596885681152344,0.491492211818695,0.599268317222595,0.491474479436874,0.599383175373077,0.52071487903595,0.597040414810181,0.520596206188202,0.588797152042389,0.527864396572113,0.597068011760712,0.525793790817261,0.597075521945953,
- 0.52721244096756,0.611080586910248,0.576873600482941,0.610826551914215,0.571031510829926,0.623938024044037,0.565462410449982,0.667316138744354,0.566462635993958,0.661291658878326,0.57696807384491,0.610550284385681,0.552978575229645,0.597272455692291,0.564222097396851,0.612435877323151,0.525339722633362,0.610417485237122,0.525709569454193,0.612141251564026,0.401348114013672,0.612147152423859,0.402576237916946,0.610840737819672,0.402643978595734,0.610851049423218,0.401416778564453,0.599380791187286,0.449000269174576,0.596836030483246,0.448890864849091,0.596604883670807,0.402473837137222,0.599491953849792,0.40248230099678,0.610443711280823,0.4487484395504,0.566226184368134,0.448956966400146,0.548920214176178,0.447925060987473,0.548245012760162,0.402672678232193,0.612366259098053,0.450451970100403,0.612364828586578,0.452177077531815,0.599408626556396,0.52720034122467,0.59941565990448,0.528993844985962,0.597084939479828,0.528989791870117,0.610424399375916,0.527690827846527,0.612558305263519,0.527617931365967,0.612545192241669,0.529477000236511,0.610430777072906,0.528438329696655,0.599403083324432,0.52582061290741,0.546688079833984,0.492245346307755,0.547917366027832,0.491209477186203,0.612357199192047,0.448485791683197,0.59659868478775,0.40124499797821,0.599494874477386,0.401253551244736,0.547151744365692,0.401446551084518,0.547231197357178,0.449920952320099,0.547510623931885,0.528251886367798,0.547606348991394,0.566574931144714,0.548215508460999,0.564919173717499,0.2738978266716,0.875186920166016,0.262597322463989,0.882638514041901,0.262649953365326,0.825541317462921,0.263332039117813,0.824107348918915,0.272603511810303,0.823547542095184,0.273985385894775,0.825681388378143,0.669194042682648,0.40109458565712,0.667331457138062,0.402331739664078,0.69679057598114,0.402335524559021,0.694888889789581,0.40109458565712,0.666797280311584,0.564312756061554,0.697671353816986,0.447935730218887,0.696029841899872,0.447775572538376,0.695109188556671,0.402335524559021,0.695909678936005,0.4488165974617,0.697391211986542,0.450617969036102,
- 0.695689678192139,0.450658172369003,0.697871387004852,0.453780949115753,0.69608998298645,0.452820032835007,0.697231113910675,0.52492356300354,0.695609569549561,0.52492356300354,0.69472873210907,0.493815958499908,0.696350276470184,0.493815958499908,0.695669651031494,0.525803864002228,0.697431206703186,0.528045892715454,0.695769786834717,0.528045892715454,0.695669651031494,0.530527949333191,0.694708704948425,0.529527306556702,0.694108307361603,0.530608355998993,0.69562953710556,0.56503814458847,0.69725090265274,0.491934448480606,0.695489406585693,0.491854190826416,0.696230053901672,0.453780949115753,0.695129215717316,0.49281507730484,0.666719257831573,0.450407743453979,0.666238844394684,0.453543692827225,0.666845440864563,0.491536766290665,0.666442096233368,0.447701513767242,0.667735278606415,0.493380784988403,0.666877448558807,0.524456322193146,0.66666454076767,0.527500569820404,0.668442368507385,0.529983699321747,0.696330070495605,0.566319584846497,0.0954584032297134,0.530807733535767,0.0955243483185768,0.529594421386719,0.0966587215662003,0.529594421386719,0.0965927764773369,0.530807733535767,0.139778926968575,0.518936336040497,0.0965004190802574,0.519015431404114,0.0965004190802574,0.516350924968719,0.139660134911537,0.516535460948944,0.139528200030327,0.529224991798401,0.0966850146651268,0.471344321966171,0.138763248920441,0.471951454877853,0.139290809631348,0.530992448329926,0.0953660160303116,0.519015431404114,0.0953660160303116,0.516350924968719,0.0955506414175034,0.470342099666595,0.141124293208122,0.530992448329926,0.138631239533424,0.581486523151398,0.141124293208122,0.529198586940765,0.140860512852669,0.518936336040497,0.14084729552269,0.516588270664215,0.141308948397636,0.470104485750198,0.141032010316849,0.583148181438446,0.096355251967907,0.582251191139221,0.115487791597843,0.797442436218262,0.103904984891415,0.789844930171967,0.10383066534996,0.739171206951141,0.105229318141937,0.736974000930786,0.114724062383175,0.7375328540802,0.115468688309193,0.739009737968445,0.0701283141970634,0.530509650707245,
- 0.0689908862113953,0.530514657497406,0.0689281597733498,0.529305040836334,0.070064589381218,0.529314994812012,0.0259997807443142,0.518692851066589,0.0261011198163033,0.51633620262146,0.0690857842564583,0.516122281551361,0.0690779834985733,0.518795549869537,0.0262328945100307,0.528937697410584,0.0269954800605774,0.471963286399841,0.0689015835523605,0.471338272094727,0.0264762919396162,0.530709624290466,0.070223867893219,0.516116619110107,0.0702157467603683,0.518798232078552,0.0700369700789452,0.470325827598572,0.0246554426848888,0.53071802854538,0.0271440036594868,0.580921769142151,0.0247416608035564,0.582606315612793,0.0246571004390717,0.52892404794693,0.0249100401997566,0.518690168857574,0.0249198526144028,0.516342043876648,0.0244776345789433,0.470104485750198,0.0692179799079895,0.581726551055908,0.0788226202130318,0.788130819797516,0.0672226399183273,0.795749545097351,0.0672694146633148,0.737421929836273,0.0680189207196236,0.735922992229462,0.0774954482913017,0.73536080121994,0.0789163485169411,0.737515330314636,0.0703330263495445,0.583345592021942,0.379804670810699,0.614361345767975,0.379915028810501,0.616713285446167,0.358686298131943,0.654925405979156,0.379915028810501,0.693101465702057,0.379804670810699,0.695453345775604,0.370048820972443,0.701030373573303,0.368608295917511,0.700420618057251,0.346339762210846,0.654925405979156,0.368608295917511,0.609396398067474,0.370048880577087,0.608786582946777,0.0952473357319832,0.583886861801147,0.096355251967907,0.583702147006989,0.138552129268646,0.582858085632324,0.413091570138931,0.610779047012329,0.435024082660675,0.611922264099121,0.479054182767868,0.611922264099121,0.893805325031281,0.58627188205719,0.907932996749878,0.547285377979279,0.943166851997375,0.573122203350067,0.906955897808075,0.498556107282639,0.900144159793854,0.479240566492081,0.925067543983459,0.486097604036331,0.925732910633087,0.495907098054886,0.895360350608826,0.434159308671951,0.898997187614441,0.39263579249382,0.919217228889465,0.391963601112366,0.92262214422226,0.416327625513077,0.903963267803192,
- 0.45976197719574,0.925954103469849,0.466586828231812,0.842911243438721,0.579859137535095,0.878601431846619,0.551763892173767,0.848938345909119,0.48835688829422,0.877765655517578,0.491089761257172,0.888213038444519,0.497889429330826,0.849819719791412,0.504845261573792,0.846530497074127,0.463042795658112,0.883499979972839,0.465291351079941,0.874093949794769,0.447121024131775,0.870881497859955,0.433658838272095,0.845716297626495,0.396616488695145,0.88941478729248,0.45039689540863,0.846686065196991,0.438689768314362,0.846605956554413,0.557763397693634,0.883396327495575,0.527624547481537,0.90836626291275,0.533514976501465,0.933712542057037,0.545581698417664,0.147372126579285,0.014010270126164,0.146882072091103,0.0117187509313226,0.212310209870338,0.0117187509313226,0.212338924407959,0.0146868731826544,0.145797580480576,0.0911822766065598,0.147468104958534,0.0904166400432587,0.146625503897667,0.105875991284847,0.145774334669113,0.0139901749789715,0.113664723932743,0.0159682296216488,0.112650938332081,0.0117187509313226,0.215718194842339,0.0145291900262237,0.215697035193443,0.104820013046265,0.212525397539139,0.1051120236516,0.139502584934235,0.104191966354847,0.153643578290939,0.104377314448357,0.399284243583679,0.794273614883423,0.399284183979034,0.723897635936737,0.432199001312256,0.723897635936737,0.432199090719223,0.785013556480408,0.428118288516998,0.794273614883423,0.110834777355194,0.0144993737339973,0.0531615242362022,0.0145258139818907,0.0533567853271961,0.0117187509313226,0.0447903648018837,0.0213589984923601,0.111039824783802,0.0951362028717995,0.045057475566864,0.101408191025257,0.113642439246178,0.0944034084677696,0.0395948067307472,0.0117187509313226,0.0387457609176636,0.0152362044900656,0.0111837964504957,0.0148495892062783,0.0111837964504957,0.0117187509313226,0.0440940260887146,0.369085490703583,0.0461176335811615,0.369148105382919,0.0461316853761673,0.372813075780869,0.0441153347492218,0.372951626777649,0.0113400546833873,0.369139969348907,0.0175203774124384,0.369129598140717,0.0113453008234501,0.381107479333878,
- 0.0421508811414242,0.017305251210928,0.14580000936985,0.18547859787941,0.147541597485542,0.185443803668022,0.147545754909515,0.189623922109604,0.145800605416298,0.189678683876991,0.212723925709724,0.186443403363228,0.215686604380608,0.185955539345741,0.215685486793518,0.19183623790741,0.212736219167709,0.191944599151611,0.112393856048584,0.186697766184807,0.11239255219698,0.185107514262199,0.117426879703999,0.185050591826439,0.113662116229534,0.195421278476715,0.111140474677086,0.195685118436813,0.103566259145737,0.185345992445946,0.0449571721255779,0.110167562961578,0.0427659526467323,0.110239952802658,0.0438812747597694,0.106897592544556,0.0348723381757736,0.106864340603352,0.212545245885849,0.106721013784409,0.215701296925545,0.106386318802834,0.215701073408127,0.107437148690224,0.212547644972801,0.10777385532856,0.141084581613541,0.106853261590004,0.141281694173813,0.105805277824402,0.152801781892776,0.105941019952297,0.154619246721268,0.107015669345856,0.0534904599189758,0.106680631637573,0.100249759852886,0.105694487690926,0.0985682085156441,0.106782354414463,0.0353653021156788,0.105292461812496,0.0112242251634598,0.106639973819256,0.0112230395898223,0.105045631527901,0.043084517121315,0.186342805624008,0.0454198978841305,0.186305701732636,0.045447051525116,0.193425849080086,0.0431313440203667,0.194812849164009,0.0341425649821758,0.186289101839066,0.145814821124077,0.284498602151871,0.147639468312263,0.284432083368301,0.147641628980637,0.286647439002991,0.145815148949623,0.286714732646942,0.212946340441704,0.285618126392365,0.215668365359306,0.284939587116241,0.215667948126793,0.287154793739319,0.212951272726059,0.287837773561478,0.11366081237793,0.284078121185303,0.11366081237793,0.286295771598816,0.0447136610746384,0.285130560398102,0.0518604256212711,0.285073637962341,0.0515549033880234,0.287289798259735,0.0447239726781845,0.287341862916946,0.111290067434311,0.284434407949448,0.111293829977512,0.286654710769653,0.0339150279760361,0.287316381931305,0.0333867110311985,0.285103768110275,0.145827442407608,0.368666231632233,
- 0.147722691297531,0.368572860956192,0.147727847099304,0.373829901218414,0.145828232169151,0.373899906873703,0.213135257363319,0.369917422533035,0.215652853250504,0.369076579809189,0.215650677680969,0.381052792072296,0.213163062930107,0.382286667823792,0.113659478724003,0.379608750343323,0.127150058746338,0.368453830480576,0.198585122823715,0.36961829662323,0.111451216042042,0.379961967468262,0.10432706028223,0.368807733058929,0.116474129259586,0.434706509113312,0.114679858088493,0.434231489896774,0.0458458438515663,0.297920167446136,0.0437112376093864,0.299794256687164,0.213119849562645,0.36305770277977,0.215654194355011,0.361927956342697,0.145826652646065,0.363323360681534,0.147717908024788,0.363789707422256,0.113659650087357,0.363630890846252,0.111417099833488,0.35975381731987,0.0330779850482941,0.283811897039413,0.0447075814008713,0.283839553594589,0.212943449616432,0.284322261810303,0.215668559074402,0.283646017313004,0.147638157010078,0.283138632774353,0.145814642310143,0.283204734325409,0.113660871982574,0.282783448696136,0.111287869513035,0.283137828111649,0.0520388558506966,0.283779799938202,0.0435953140258789,0.278808295726776,0.0457726642489433,0.278742402791977,0.043044738471508,0.176821053028107,0.0453582517802715,0.176166132092476,0.215687319636345,0.181983426213264,0.212714552879334,0.182266488671303,0.147483691573143,0.126878291368485,0.145791232585907,0.126545667648315,0.112391665577888,0.184072971343994,0.113662593066692,0.167085722088814,0.111093647778034,0.167936190962791,0.0426441952586174,0.105366915464401,0.0544270575046539,0.105081960558891,0.0426181741058826,0.100733615458012,0.111432366073132,0.368766039609909,0.044067557901144,0.364297240972519,0.0461026392877102,0.365208119153976,0.0113369124010205,0.361996442079544,0.0113039538264275,0.287277519702911,0.0113030057400465,0.285063773393631,0.011302413418889,0.283771246671677,0.05154974386096,0.186204329133034,0.111009120941162,0.117822155356407,0.113663241267204,0.117676287889481,0.113659597933292,0.368300467729568,0.102848395705223,0.104038372635841,
- 0.110988192260265,0.105467990040779,0.113663420081139,0.10534355789423,0.121056772768497,0.106518864631653,0.120291016995907,0.105454407632351,0.119120039045811,0.103853240609169,0.0112246992066503,0.107690095901489,0.215225592255592,0.430764347314835,0.213208109140396,0.431269347667694,0.0112593183293939,0.186151579022408,0.0112619260326028,0.192028060555458,0.0112575395032763,0.182182475924492,0.147538393735886,0.182157337665558,0.145799472928047,0.182005643844604,0.0447322130203247,0.425144881010056,0.0426681749522686,0.425514698028564,0.0356205366551876,0.431873947381973,0.0174233671277761,0.434884071350098,0.19586543738842,0.441015303134918,0.178647518157959,0.443173289299011,0.161488637328148,0.447237253189087,0.144424512982368,0.439950793981552,0.141476511955261,0.440172255039215,0.126142635941505,0.439914166927338,0.0970767661929131,0.441405057907104,0.0793652608990669,0.437082886695862,0.0620714388787746,0.434837073087692,0.316453397274017,0.634533524513245,0.297244131565094,0.637361288070679,0.306230276823044,0.611127376556396,0.316301226615906,0.608786582946777,0.318023651838303,0.610401272773743,0.31699874997139,0.676302075386047,0.296421468257904,0.677663505077362,0.294601559638977,0.657603323459625,0.31703907251358,0.655387282371521,0.308311939239502,0.69921350479126,0.292193591594696,0.702126145362854,0.290549159049988,0.699379801750183,0.28655406832695,0.678398311138153,0.28402042388916,0.65751588344574,0.28306770324707,0.636204481124878,0.284552693367004,0.612063229084015,0.286258399486542,0.610271453857422,0.321353316307068,0.69744747877121,0.319921463727951,0.698830008506775,0.369916051626205,0.518843412399292,0.37010383605957,0.516415655612946,0.37170284986496,0.516413927078247,0.371692597866058,0.518848180770874,0.371430456638336,0.529458045959473,0.369600206613541,0.529442191123962,0.369483411312103,0.470282733440399,0.371243953704834,0.468435406684875,0.418573439121246,0.531101942062378,0.41739422082901,0.531107127666473,0.41732919216156,0.529853522777557,0.418507397174835,0.529863476753235,
- 0.372822463512421,0.518850803375244,0.37292754650116,0.51640784740448,0.417492628097534,0.516185820102692,0.41748458147049,0.518957436084747,0.373064130544662,0.529472470283508,0.373857021331787,0.470365464687347,0.417301505804062,0.469717621803284,0.371428668498993,0.531317949295044,0.369772285223007,0.53131628036499,0.373316466808319,0.531309425830841,0.418672561645508,0.516179919242859,0.418664127588272,0.518960297107697,0.418478608131409,0.468667089939117,0.3714619576931,0.585177421569824,0.368474453687668,0.583026826381683,0.33980005979538,0.531295657157898,0.339627742767334,0.5289306640625,0.336247563362122,0.522720217704773,0.339056074619293,0.51879620552063,0.342652201652527,0.583294034004211,0.344380766153336,0.565040588378906,0.339049577713013,0.54953533411026,0.341292172670364,0.541200578212738,0.371936291456223,0.468740314245224,0.374059945344925,0.583223104476929,0.417629063129425,0.584075033664703,0.18815952539444,0.88300234079361,0.18821719288826,0.825539827346802,0.18888758122921,0.824083864688873,0.198234498500824,0.823547542095184,0.199613898992538,0.825692772865295,0.199537083506584,0.875532150268555,0.493425875902176,0.519684791564941,0.491631805896759,0.519684791564941,0.49160435795784,0.5172199010849,0.493261396884918,0.5172199010849,0.493768095970154,0.530448913574219,0.491891920566559,0.530476331710815,0.492097407579422,0.468411982059479,0.493891388177872,0.470274388790131,0.443919539451599,0.53214704990387,0.443974286317825,0.530887067317963,0.445179373025894,0.530887067317963,0.445111006498337,0.53214704990387,0.490467667579651,0.519684791564941,0.445015162229538,0.519821882247925,0.445015162229538,0.516973376274109,0.490371853113174,0.517192482948303,0.490221232175827,0.530503749847412,0.445206731557846,0.469699323177338,0.489426970481873,0.470384001731873,0.493576407432556,0.532366156578064,0.491891920566559,0.532366156578064,0.494904696941376,0.584953784942627,0.491878300905228,0.587144911289215,0.489974737167358,0.532366156578064,0.4438236951828,0.519821882247925,0.443796217441559,0.516973376274109,
- 0.444015443325043,0.468631088733673,0.50603860616684,0.530339300632477,0.505942821502686,0.532475709915161,0.506600141525269,0.519849240779877,0.507093071937561,0.526833534240723,0.511995732784271,0.550169289112091,0.513447463512421,0.569095373153687,0.521403968334198,0.584159433841705,0.491385340690613,0.468713402748108,0.444864511489868,0.586021959781647,0.489207834005356,0.585172891616821,0.225451320409775,0.875430822372437,0.225378409028053,0.825705528259277,0.226751878857613,0.823547542095184,0.236076653003693,0.824096202850342,0.236807882785797,0.825546860694885,0.236826628446579,0.882891952991486,0.443700432777405,0.587911784648895,0.418786138296127,0.585919320583344,0.417571872472763,0.585718750953674,0.374081462621689,0.584835290908813,0.368434846401215,0.584632515907288,0.342733144760132,0.585132598876953,0.373092174530029,0.584919214248657,0.36950471997261,0.584784030914307,0.338999658823013,0.516618192195892,0.342083871364594,0.468302398920059,0.340072721242905,0.509568989276886,0.337432771921158,0.501735270023346,0.342296242713928,0.480010956525803,0.506654918193817,0.517055511474609,0.521773815155029,0.468302398920059,0.512036800384521,0.481230229139328,0.511064529418945,0.500484943389893,0.237708538770676,0.687727332115173,0.22860099375248,0.703486204147339,0.226055353879929,0.703912436962128,0.220924824476242,0.701869368553162,0.233200490474701,0.685857117176056,0.235740169882774,0.626406252384186,0.247031554579735,0.640396595001221,0.23948247730732,0.644087970256805,0.229108616709709,0.627940893173218,0.220468387007713,0.629192531108856,0.216928467154503,0.62234491109848,0.221691474318504,0.620041012763977,0.256986379623413,0.658698618412018,0.249333277344704,0.671488463878632,0.242969796061516,0.669474601745605,0.243635684251785,0.656879425048828,0.257027298212051,0.655867040157318,0.234537467360497,0.647189915180206,0.234635159373283,0.667379975318909,0.240735605359077,0.656883358955383,0.223130747675896,0.683229029178619,0.21642430126667,0.698620140552521,0.215791925787926,0.696346938610077,0.231716111302376,
- 0.618846833705902,0.225240111351013,0.609686195850372,0.215686410665512,0.611968517303467,0.22274674475193,0.609147012233734,0.212351813912392,0.616176247596741,0.213060259819031,0.613938331604004,0.591994881629944,0.921859443187714,0.59166556596756,0.885667562484741,0.595549583435059,0.882968127727509,0.619765937328339,0.882748484611511,0.620168328285217,0.916923224925995,0.614798903465271,0.921594977378845,0.169422149658203,0.961568832397461,0.169526770710945,0.984084844589233,0.16577260196209,0.987753510475159,0.147485986351967,0.987853944301605,0.1472187936306,0.961494147777557,0.0989795699715614,0.988281309604645,0.0988342463970184,0.966961026191711,0.102840095758438,0.961305618286133,0.120722964406013,0.960946083068848,0.121369302272797,0.984923183917999,0.115771822631359,0.987995505332947,0.800511300563812,0.914507329463959,0.800180375576019,0.874778807163239,0.82884693145752,0.874499976634979,0.828356385231018,0.911292612552643,0.825297296047211,0.913928747177124,0.668440282344818,0.87032812833786,0.668658554553986,0.910050094127655,0.649362146854401,0.909703969955444,0.64537113904953,0.905047595500946,0.645082592964172,0.870482981204987,0.700107872486115,0.91018009185791,0.693572819232941,0.906863689422607,0.694078207015991,0.870310544967651,0.713685512542725,0.870520174503326,0.717701137065887,0.873255133628845,0.717319369316101,0.909981429576874,0.718528509140015,0.940344214439392,0.722089111804962,0.937340140342712,0.722176849842072,0.947038769721985,0.938834071159363,0.941235363483429,0.934397995471954,0.936679661273956,0.938808858394623,0.936659157276154,0.748408436775208,0.946254670619965,0.748303651809692,0.937340140342712,0.752750992774963,0.942448854446411,0.392902851104736,0.933563590049744,0.393468827009201,0.898606419563293,0.410149037837982,0.89894425868988,0.411682605743408,0.908999443054199,0.412611067295074,0.931918740272522,0.408547550439835,0.934070706367493,0.547979652881622,0.930186986923218,0.545069932937622,0.894381880760193,0.559337735176086,0.893178462982178,0.564670443534851,0.900059819221497,
- 0.56675124168396,0.925408065319061,0.553307473659515,0.929592609405518,0.212644696235657,0.962079107761383,0.215279847383499,0.97935152053833,0.21130433678627,0.983671903610229,0.197356790304184,0.985776007175446,0.195603311061859,0.969304502010345,0.196148693561554,0.963364243507385,0.661483585834503,0.933540880680084,0.656847715377808,0.943019211292267,0.655256450176239,0.932917356491089,0.815760672092438,0.93842351436615,0.811828196048737,0.945654928684235,0.809714734554291,0.937374651432037,0.348532855510712,0.931598901748657,0.345385193824768,0.928853034973145,0.345724731683731,0.90358293056488,0.349676132202148,0.896230697631836,0.367988556623459,0.896219968795776,0.367404669523239,0.931089103221893,0.253571838140488,0.984656155109406,0.240265995264053,0.981175422668457,0.240698263049126,0.962513387203217,0.255684822797775,0.962079107761383,0.258692979812622,0.965258955955505,0.258856505155563,0.984838485717773,0.418916583061218,0.973156750202179,0.422960191965103,0.957569301128387,0.422520995140076,0.973281681537628,0.442140132188797,0.934702038764954,0.438463628292084,0.933138906955719,0.43752533197403,0.910019993782043,0.442191064357758,0.900450885295868,0.459425538778305,0.898606419563293,0.462365835905075,0.934531629085541,0.908366203308105,0.939910411834717,0.90497237443924,0.943042516708374,0.904622912406921,0.938276886940002,0.85731053352356,0.609633564949036,0.857695162296295,0.685944736003876,0.819019496440887,0.686037838459015,0.819239616394043,0.647477447986603,0.821163475513458,0.609139144420624,0.78784441947937,0.702139556407928,0.786161482334137,0.739302217960358,0.751470863819122,0.733831405639648,0.752557456493378,0.701413035392761,0.788226842880249,0.600636839866638,0.791615605354309,0.633938848972321,0.792668461799622,0.667971074581146,0.783998131752014,0.678162395954132,0.753754079341888,0.678545773029327,0.752025485038757,0.604600787162781,0.759270787239075,0.601335346698761,0.488101661205292,0.932671844959259,0.487280189990997,0.905127882957459,0.496705174446106,0.896977603435516,0.519746661186218,
- 0.896536886692047,0.520155668258667,0.93179190158844,0.235185474157333,0.905759215354919,0.261285305023193,0.908033847808838,0.267234027385712,0.927947819232941,0.267011851072311,0.93921172618866,0.23419314622879,0.938778936862946,0.497301578521729,0.96880304813385,0.486271917819977,0.968960702419281,0.485910534858704,0.955539166927338,0.785882115364075,0.776539981365204,0.760715544223785,0.775912344455719,0.750518798828125,0.76635354757309,0.469383716583252,0.719444572925568,0.489817321300507,0.720803618431091,0.491862416267395,0.792669057846069,0.457653850317001,0.792859315872192,0.4571133852005,0.719282209873199,0.316564679145813,0.962482929229736,0.32370001077652,0.962922990322113,0.322820961475372,0.983660399913788,0.205752015113831,0.799769461154938,0.206768646836281,0.736974000930786,0.236731886863709,0.737580955028534,0.23948660492897,0.755643725395203,0.241154551506042,0.796814501285553,0.233855232596397,0.80068027973175,0.34064769744873,0.791477680206299,0.335420548915863,0.727155327796936,0.3610520362854,0.724993407726288,0.370632201433182,0.737355470657349,0.374369889497757,0.782892525196075,0.350218892097473,0.790409922599792,0.938538670539856,0.87217378616333,0.943166851997375,0.902508914470673,0.936184883117676,0.910095989704132,0.911689281463623,0.91379189491272,0.908609688282013,0.8848637342453,0.909567594528198,0.874431014060974,0.361200273036957,0.955581545829773,0.352908164262772,0.972535610198975,0.350061684846878,0.954466164112091,0.45950585603714,0.959445655345917,0.452471882104874,0.9723801612854,0.448691666126251,0.957569301128387,0.146033227443695,0.800263524055481,0.140402108430862,0.795351326465607,0.141009390354156,0.750145673751831,0.148078143596649,0.736993134021759,0.180837690830231,0.736974000930786,0.179793030023575,0.799351334571838,0.765984773635864,0.914152503013611,0.742615401744843,0.908039450645447,0.743374586105347,0.875262796878815,0.769695639610291,0.874499976634979,0.774979054927826,0.880084872245789,0.775266051292419,0.914472818374634,0.0111837983131409,0.983077466487885,
- 0.0183680728077888,0.955383062362671,0.0175878256559372,0.983299374580383,0.274324357509613,0.791351437568665,0.267747312784195,0.788555085659027,0.266068875789642,0.747197568416595,0.274415642023087,0.730079114437103,0.30524605512619,0.726779699325562,0.310506254434586,0.791046619415283,0.784753918647766,0.940287947654724,0.778701782226563,0.94587230682373,0.778078675270081,0.937374651432037,0.854107141494751,0.915409505367279,0.853761255741119,0.877399981021881,0.857840359210968,0.87456488609314,0.883273005485535,0.874334156513214,0.883695363998413,0.910225331783295,0.878056347370148,0.915131509304047,0.105848722159863,0.905755221843719,0.105972774326801,0.932455003261566,0.101521044969559,0.936805486679077,0.0798365920782089,0.936924278736115,0.0795196369290352,0.905666410923004,0.131059378385544,0.938078880310059,0.130887091159821,0.912798404693604,0.135637044906616,0.906092882156372,0.156841278076172,0.905666410923004,0.157607674598694,0.934096932411194,0.150970607995987,0.937739968299866,0.878917396068573,0.849306583404541,0.878569722175598,0.807579755783081,0.908678412437439,0.80728667974472,0.908163011074066,0.845930457115173,0.904950201511383,0.848698973655701,0.852442800998688,0.80728667974472,0.852685451507568,0.85146689414978,0.83122330904007,0.851081788539886,0.826784372329712,0.845903038978577,0.826463282108307,0.807458877563477,0.781625509262085,0.851632714271545,0.774356842041016,0.847943961620331,0.774919152259827,0.80728667974472,0.796727418899536,0.807519555091858,0.801193952560425,0.810561656951904,0.80076938867569,0.851411461830139,0.556626439094543,0.956433236598969,0.560631155967712,0.953054249286652,0.56072998046875,0.963963091373444,0.878023505210876,0.943472385406494,0.872986853122711,0.938300311565399,0.877994775772095,0.938276886940002,0.687009334564209,0.94298642873764,0.686892509460449,0.933047354221344,0.691850781440735,0.938743531703949,0.422041982412338,0.817517220973969,0.422335028648376,0.875668048858643,0.39286333322525,0.87573915719986,0.393031120300293,0.846355140209198,0.394497096538544,
- 0.817140817642212,0.476777255535126,0.817687511444092,0.475510805845261,0.845650315284729,0.449408233165741,0.841533780097961,0.450225800275803,0.817140817642212,0.364453881978989,0.814344942569733,0.367020457983017,0.8395676612854,0.3678178191185,0.865343451499939,0.361251056194305,0.873062074184418,0.338344275951386,0.873352706432343,0.337035059928894,0.817347347736359,0.342522650957108,0.814874172210693,0.0282865911722183,0.932515799999237,0.0276120454072952,0.909899950027466,0.0353507101535797,0.903207898139954,0.0542696192860603,0.902845978736877,0.0546053275465965,0.931793451309204,0.0456867143511772,0.959791541099548,0.0672514215111732,0.961670935153961,0.0721663236618042,0.978124678134918,0.0719827711582184,0.987431228160858,0.0448668822646141,0.987073719501495,0.628881812095642,0.955187261104584,0.620183348655701,0.955311238765717,0.619898498058319,0.944726705551147,0.475300669670105,0.873669624328613,0.456364333629608,0.873197317123413,0.448691666126251,0.866004943847656,0.511761963367462,0.815847039222717,0.526921153068542,0.816854953765869,0.528438329696655,0.870170176029205,0.503059983253479,0.870311200618744,0.502659022808075,0.815726518630981,0.38728055357933,0.956937968730927,0.392841279506683,0.95728075504303,0.39215624332428,0.973442077636719,0.666422069072723,0.846790432929993,0.667150735855103,0.801788032054901,0.688624083995819,0.802223026752472,0.690598249435425,0.815167665481567,0.69179356098175,0.844672918319702,0.686562538146973,0.847443282604218,0.558511435985565,0.859881222248077,0.554765462875366,0.813784182071686,0.573134362697601,0.81223464012146,0.580000042915344,0.821094334125519,0.58267879486084,0.853728473186493,0.565370798110962,0.859116017818451,0.316677749156952,0.905505776405334,0.320470929145813,0.930368542671204,0.314748495817184,0.936586737632751,0.294672220945358,0.939615666866302,0.292148321866989,0.915906250476837,0.292933255434036,0.907355904579163,0.531218588352203,0.956349074840546,0.525196611881256,0.968661487102509,0.523129463195801,0.955539166927338,0.594321608543396,
- 0.954428374767303,0.589170038700104,0.963901400566101,0.586401522159576,0.953054249286652,0.722581028938293,0.847335755825043,0.718528509140015,0.843800783157349,0.718965709209442,0.811267197132111,0.724052727222443,0.801801800727844,0.747629046440125,0.801788032054901,0.746877133846283,0.846679270267487,0.201672956347466,0.938364505767822,0.182521998882294,0.933354794979095,0.183144271373749,0.906494736671448,0.204714074730873,0.905869603157043,0.209043651819229,0.910446584224701,0.20927882194519,0.938626885414124,0.284928649663925,0.983890891075134,0.29048228263855,0.962482929229736,0.289878964424133,0.984062314033508,0.614674031734467,0.847460925579071,0.609940648078918,0.84544849395752,0.60873281955719,0.815685033798218,0.614739656448364,0.803365647792816,0.636927306652069,0.800991177558899,0.640712738037109,0.847241401672363,0.846440434455872,0.940498054027557,0.84182596206665,0.944756209850311,0.841350793838501,0.938276886940002,0.111861169338226,0.637381076812744,0.11186084151268,0.71410608291626,0.0866359174251556,0.712493538856506,0.443490147590637,0.133063316345215,0.366642445325851,0.0117187509313226,0.389281749725342,0.0502339154481888,0.366485893726349,0.0887496620416641,0.242283567786217,0.0887497365474701,0.242126911878586,0.0117188114672899
- }
- UVIndex: *2608 {
- a: 0,1,2,3,4,5,1,0,6,7,8,1174,10,11,7,6,12,13,14,15,16,17,18,19,20,21,2,22,1,5,23,24,25,26,27,28,1175,1176,1177,1178,1179,4,34,35,36,0,37,34,4,38,39,40,41,16,15,21,20,42,43,39,38,44,45,1172,1171,48,49,50,51,52,53,47,46,11,10,22,2,1,24,3,54,37,0,55,56,9,1173,57,58,36,27,5,4,27,26,23,5,59,60,47,10,61,59,10,6,62,61,6,1174,63,32,31,8,64,63,8,7,65,66,11,46,67,65,46,68,66,64,7,11,69,67,68,70,71,69,70,72,73,74,75,76,77,78,79,80,81,77,80,82,83,81,82,84,85,83,84,86,87,85,86,88,89,87,88,90,89,90,91,92,93,94,95,96,97,98,94,99,100,101,102,103,104,104,103,105,106,107,99,108,109,110,111,112,113,97,114,115,108,116,117,118,119,119,118,120,121,122,123,124,125,126,127,106,105,128,112,125,129,130,131,121,120,99,94,97,108,122,125,112,111,120,118,104,106,127,130,120,106,101,104,118,117,132,133,134,135,136,137,138,139,140,141,94,98,95,107,100,99,97,96,114,109,108,115,113,112,128,129,125,124,142,143,144,145,146,142,147,148,149,150,151,152,152,151,153,154,155,147,156,157,158,159,160,161,145,162,163,156,164,165,166,167,167,166,168,169,170,171,172,173,174,175,154,153,176,160,173,177,178,179,169,168,147,142,145,156,170,173,160,159,168,166,152,154,175,178,168,154,149,152,166,165,180,181,182,183,184,185,186,187,188,189,142,146,143,155,148,147,145,144,162,157,156,163,161,160,176,177,173,172,190,191,192,193,194,190,195,196,197,198,199,200,200,199,201,202,203,195,204,205,206,207,208,209,193,210,211,204,212,213,214,215,215,214,216,217,218,219,220,221,222,223,202,201,224,208,221,225,226,227,217,216,195,190,193,204,218,221,208,207,216,214,200,202,223,226,216,202,197,200,214,213,228,229,230,231,232,233,234,235,236,237,190,194,191,203,196,195,193,192,210,205,204,211,209,208,224,225,221,220,238,51,50,239,240,241,242,243,244,245,246,244,246,241,240,247,245,248,249,250,251,252,250,249,253,254,255,256,257,258,252,251,259,260,261,262,263,264,265,266,267,268,269,270,271,244,272,256,255,264,245,247,273,246,246,273,241,245,244,271,248,274,243,242,256,275,276,257,277,278,279,280,281,282,283,284,285,279,282,281,284,283,286,287,288,254,253,
- 289,290,266,291,292,293,294,295,296,297,262,267,298,263,291,274,242,292,291,266,265,261,299,300,275,256,264,263,298,295,294,293,292,279,285,301,280,282,302,303,283,279,278,302,282,283,303,304,286,253,255,258,289,249,264,255,253,264,249,252,261,261,252,260,299,285,254,290,301,254,285,281,250,250,281,284,251,251,284,288,288,287,305,251,288,305,259,261,300,306,265,262,295,273,247,296,241,273,295,292,242,275,294,297,276,294,275,298,293,267,266,293,298,265,267,262,270,307,248,271,308,309,243,274,306,308,274,291,265,310,311,312,313,314,315,316,317,318,319,320,321,322,320,316,319,321,323,324,322,325,326,327,328,328,329,330,325,331,332,333,334,326,335,336,327,337,338,339,340,341,342,343,344,345,320,346,347,348,334,338,331,322,321,349,323,321,319,349,322,324,346,320,350,318,317,334,333,351,352,353,354,355,356,357,358,359,360,361,357,360,355,358,362,363,364,359,329,365,366,330,343,367,368,369,370,371,372,373,340,339,374,342,369,368,318,350,369,341,343,337,375,376,352,374,339,338,334,373,368,367,370,355,354,377,361,360,359,378,379,355,360,379,356,359,364,380,378,330,366,332,331,325,330,331,338,338,337,326,325,337,376,335,326,361,377,365,329,329,328,357,361,328,327,358,357,327,362,358,362,381,363,327,336,381,362,337,340,341,382,375,373,372,323,349,319,318,368,373,349,352,351,371,370,370,367,374,352,342,374,367,343,341,340,342,383,384,350,317,384,382,341,369,350,385,386,387,388,389,390,391,392,354,353,393,394,277,280,395,347,346,324,396,397,398,393,399,396,400,401,401,400,402,403,404,405,406,407,408,404,409,410,410,409,411,412,413,411,307,414,415,416,417,402,416,415,407,418,258,257,407,415,289,402,400,290,289,258,415,402,290,400,396,301,257,276,404,407,404,276,297,409,396,393,280,301,411,409,297,296,307,411,296,247,248,366,365,419,420,366,420,421,332,365,377,422,419,333,423,424,351,424,425,371,351,392,422,377,354,425,426,372,371,332,421,423,333,426,395,324,323,372,398,394,393,427,307,270,428,429,430,431,432,433,434,435,436,430,433,432,435,434,437,438,430,436,439,431,433,440,441,434,430,429,440,433,434,441,442,437,439,443,444,436,
- 445,443,439,445,436,432,446,446,432,435,447,438,448,447,435,444,443,449,444,450,431,439,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,461,464,459,462,466,467,463,459,458,468,465,464,463,469,470,459,464,470,460,463,467,471,469,472,468,473,474,465,468,472,475,475,476,461,465,476,477,462,461,466,462,477,478,479,473,468,458,480,481,482,483,484,485,486,479,458,457,487,488,489,490,491,492,493,494,495,496,450,497,428,431,498,450,444,499,498,497,450,499,444,449,39,43,500,501,40,39,501,502,503,504,505,506,507,508,509,510,511,512,513,507,514,515,508,516,517,503,518,519,520,521,522,523,519,518,510,524,525,526,511,525,503,517,504,520,507,506,519,523,507,523,527,514,528,525,524,526,525,528,529,530,517,516,504,517,530,531,505,504,531,532,507,523,514,514,510,515,515,510,513,525,511,510,520,519,507,523,524,527,528,524,523,522,527,524,510,514,527,510,533,534,535,536,537,538,539,534,540,541,542,536,543,544,545,546,537,539,538,547,539,548,549,550,551,552,533,540,534,535,543,536,542,553,554,555,556,554,553,557,558,553,541,559,557,560,561,562,563,564,565,566,567,568,569,570,571,554,556,541,553,542,560,571,561,560,555,554,571,572,573,574,575,576,577,578,579,580,581,582,583,573,576,579,574,584,585,581,580,586,587,588,587,589,588,590,591,592,593,594,595,539,539,596,597,586,598,599,600,601,589,602,603,604,605,606,607,607,608,604,609,610,611,612,613,614,615,616,617,609,612,618,610,613,616,611,619,620,621,622,623,617,618,624,622,625,626,619,627,628,629,630,631,632,633,634,635,636,627,630,634,637,631,638,566,565,639,638,635,640,641,642,643,622,643,625,622,644,645,632,631,637,644,631,646,647,628,627,648,646,627,636,624,618,648,649,622,621,642,619,626,650,651,652,653,614,613,654,652,613,610,655,654,610,609,656,655,609,617,657,656,617,623,651,658,620,619,651,659,660,651,650,659,580,583,584,660,658,651,661,662,605,604,608,661,604,593,592,663,664,539,597,665,665,666,539,667,668,582,581,669,668,667,669,667,581,585,545,544,591,590,595,546,539,539,547,596,670,671,598,588,558,672,571,556,672,603,562,561,571,639,649,673,674,675,565,564,676,
- 569,568,626,625,677,678,650,626,678,679,620,658,657,623,621,620,623,624,605,662,680,681,682,668,669,666,594,539,582,572,575,583,584,583,656,657,680,606,605,638,639,673,673,683,635,638,683,636,635,648,636,683,649,648,683,673,639,565,675,649,599,684,685,600,599,685,681,600,685,685,686,682,681,687,682,686,686,688,687,686,689,688,559,689,686,557,559,686,685,684,557,685,558,671,670,670,672,558,670,601,672,588,589,601,670,598,671,684,599,588,598,586,587,690,602,589,570,569,564,567,634,633,691,692,628,637,634,629,647,644,637,628,616,615,645,644,676,674,564,569,584,606,680,585,607,606,660,659,693,608,607,694,661,695,690,587,587,586,662,661,681,586,600,540,537,559,541,540,533,538,537,533,536,545,538,596,547,545,590,597,596,590,593,665,597,593,664,696,696,697,666,665,666,682,687,594,687,688,595,594,688,689,546,595,567,566,698,699,570,567,699,700,701,677,625,643,674,676,643,642,675,674,649,675,642,621,624,694,607,659,650,679,579,578,653,652,574,579,652,654,575,574,654,655,583,575,655,656,668,682,666,697,669,662,586,681,680,662,669,585,693,695,661,608,664,663,577,576,696,664,576,573,572,697,696,573,668,697,572,582,660,606,584,657,658,558,557,684,671,672,601,603,538,545,547,559,537,546,689,629,634,692,702,703,704,705,630,629,705,706,635,630,706,707,640,618,612,646,648,612,611,647,646,611,616,644,647,641,708,709,710,698,566,638,711,712,713,714,715,716,717,718,719,719,718,712,711,717,720,721,722,723,717,723,724,718,712,718,724,725,713,712,725,726,727,728,729,720,717,716,521,520,530,529,531,530,520,506,532,531,506,509,730,731,732,733,733,734,735,730,731,736,737,732,738,739,740,741,742,743,744,745,746,742,745,740,743,747,748,744,734,749,750,735,740,739,751,746,745,744,752,753,740,745,753,741,744,748,754,752,750,749,755,756,735,750,757,758,730,735,758,759,760,750,756,761,762,763,764,757,746,751,749,734,734,733,742,746,733,732,743,742,743,765,747,732,737,765,743,751,766,755,749,766,751,739,767,768,769,770,771,772,773,774,775,776,777,775,774,778,779,777,776,780,781,782,783,784,785,786,787,788,789,790,784,787,786,789,788,791,792,779,778,
- 793,794,793,795,796,794,784,790,797,785,787,798,799,788,784,783,798,787,788,799,800,791,778,801,802,793,774,803,804,801,778,793,802,805,806,807,795,790,779,794,797,779,790,786,775,775,786,789,776,776,789,792,776,792,808,780,809,785,797,810,811,812,813,814,815,816,817,782,785,809,797,794,796,810,767,739,738,818,819,820,766,767,821,822,761,756,819,767,818,823,755,766,824,756,755,825,731,730,760,826,736,731,825,827,828,829,803,774,777,830,830,777,781,831,832,833,834,835,836,837,838,839,840,841,842,842,843,844,845,846,847,848,849,847,834,838,848,850,846,849,842,841,851,843,848,852,853,849,838,854,852,848,837,855,856,854,838,857,839,842,845,858,857,845,859,860,844,861,862,859,845,849,841,840,850,853,851,841,849,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,960,959,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1090,1089,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,
- 1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,29,30,1176,1175,30,31,1177,1176,31,32,1178,1177,32,33,1179,1178,33,29,1175,1179
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *1304 {
- a: 0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,1,1,0,1,1,1,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,0,1,0,0,0,0,0,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,0,0,1,0,0,1,1,1,1,1,1,0,1,0,1,0,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,0,0,1,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,0,1,0,1,1,0,1,1,0,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,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,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
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *648 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,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
- }
- }
- Layer: 1 {
- Version: 100
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 1
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 1
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 1
- }
- }
- }
- Geometry: 2267733687968, "Geometry::", "Mesh" {
- Vertices: *1140 {
- a: 41.39453125,168.14697265625,1.37890625,41.453125,135.617919921875,43.8507080078125,41.6875,150.3916015625,50.5893859863281,41.12109375,185.432739257813,1.80337524414063,41.6875,150.39306640625,-47.7992553710938,41.453125,135.61767578125,-41.0615844726563,-0.75,77.2119140625,1.38818359375,-0.20703125,52.5238037109375,43.9098510742188,-0.08203125,68.0216064453125,51.7467956542969,-0.34375,95.5361328125,0.549774169921875,-0.08203125,68.0213623046875,-48.9539489746094,-0.20703125,52.52294921875,-41.1175842285156,220.546875,98.8575439453125,0.97210693359375,220.859375,63.576416015625,-47.80615234375,220.5859375,81.23974609375,1.4140625,220.58984375,48.859130859375,-40.9755859375,220.90234375,63.6099853515625,50.5545654296875,220.73046875,48.9844970703125,45.0098876953125,266.6171875,-107.410888671875,21.5859375,266.83203125,-185.222900390625,21.515625,267.703125,-106.265258789063,24.0032653808594,268.171875,-187.483154296875,23.0399169921875,303.6796875,-106.661987304688,23.8397827148438,303.67578125,-187.235717773438,23.003662109375,304.8515625,-185.2236328125,21.515625,305.0625,-107.42236328125,21.5859375,268.23828125,-105.665161132813,-36.8466491699219,266.82421875,-106.854736328125,-34.8046875,303.63671875,-105.41552734375,-36.3540954589844,305.140625,-106.863525390625,-34.8046875,266.71875,-185.287841796875,-6.1171875,266.71484375,-129.260009765625,-35.53125,304.97265625,-185.2880859375,-6.1171875,304.96875,-129.262939453125,-35.53125,152.33203125,-107.410888671875,21.5859375,153.953125,-105.66552734375,-36.84716796875,152.5390625,-106.854736328125,-34.8046875,153.41796875,-106.26513671875,24.0032653808594,189.3515625,-105.415771484375,-36.3556518554688,189.3984375,-106.661987304688,23.8398132324219,190.78125,-107.42236328125,21.5859375,190.859375,-106.863525390625,-34.8046875,152.43359375,-185.287841796875,-6.1171875,152.50390625,-186.316650390625,21.755126953125,152.4296875,-129.260009765625,-35.53125,190.68359375,-185.2880859375,-6.1171875,190.5703125,-185.2236328125,21.515625,190.6796875,-129.262939453125,-35.53125,
- 37.72265625,-107.410888671875,21.5859375,39.33984375,-105.665405273438,-36.8468933105469,37.92578125,-106.854736328125,-34.8046875,38.80078125,-106.264892578125,24.0029296875,74.734375,-105.415771484375,-36.3552856445313,74.78125,-106.662719726563,23.8400268554688,76.171875,-107.42236328125,21.5859375,76.234375,-106.863525390625,-34.8046875,37.81640625,-185.287841796875,-6.1171875,37.88671875,-186.31640625,21.7550354003906,37.8125,-129.260009765625,-35.53125,76.0703125,-185.2880859375,-6.1171875,75.953125,-185.2236328125,21.515625,76.06640625,-129.262939453125,-35.53125,189.25390625,-187.425659179688,22.6764221191406,154.640625,-185.22021484375,23.421875,74.63671875,-187.425476074219,22.6765747070313,40.0234375,-185.22021484375,23.421875,48.41796875,78.495361328125,1.37890625,48.52734375,66.307373046875,50.2008666992188,47.8671875,51.6641845703125,42.9696044921875,48.83203125,93.171630859375,1.37890625,48.53125,66.2891845703125,-47.4050598144531,47.87109375,51.663818359375,-40.1778259277344,290.37109375,46.97265625,42.3312683105469,290.22265625,58.961669921875,50.83447265625,290.40234375,47.8035888671875,45.1912536621094,295.984375,58.525146484375,29.12109375,294.62890625,74.580322265625,33.6583862304688,288.48046875,61.420654296875,50.1351318359375,295.5703125,70.693603515625,12.39453125,300.48828125,78.679443359375,1.48016357421875,293.921875,86.564697265625,16.28515625,297.90234375,96.9381103515625,2.3499755859375,298.61328125,84.8721923828125,-15.8515625,305.953125,74.741943359375,-29.9921875,311.46875,53.9091796875,-44.5326538085938,299.54296875,71.51708984375,-8.4921875,304.37109375,64.33349609375,-44.7283325195313,306.5546875,59.005859375,-47.9925537109375,307.34765625,58.345458984375,-26.71484375,305.44921875,49.2545166015625,-39.1776733398438,306.8046875,48.310302734375,-42.3775939941406,302.81640625,-129.740478515625,-37.2890625,302.8203125,-186.557861328125,-6.91796875,268.86328125,-129.7392578125,-37.2890625,268.86328125,-186.558349609375,-6.91796875,188.53515625,-129.740478515625,-37.2890625,188.5390625,-186.557861328125,-6.91796875,
- 154.578125,-129.7392578125,-37.2890625,154.58203125,-186.558349609375,-6.91796875,73.9140625,-129.740478515625,-37.2890625,73.91796875,-186.557861328125,-6.91796875,39.96484375,-129.7392578125,-37.2890625,39.96875,-186.558349609375,-6.91796875,221.6328125,98.213134765625,2.8828125,268.79296875,96.474853515625,2.4957275390625,266.06640625,96.0927734375,-0.0546875,268.10546875,61.82470703125,-47.0870056152344,221.6328125,61.984130859375,-48.1484375,221.6328125,49.81494140625,-42.76171875,221.6328125,79.63037109375,1.4140625,270.5859375,76.8612060546875,1.44906616210938,268.05859375,46.6015625,-40.0044555664063,221.6328125,49.36865234375,42.89453125,221.6328125,61.984130859375,50.94140625,143.1015625,185.400756835938,2.77767944335938,192.44921875,184.76806640625,0.33270263671875,142.90234375,185.425659179688,0.082000732421875,192.21484375,184.581298828125,2.77069091796875,83.98046875,154.063720703125,50.202880859375,85.015625,188.339233398438,2.79348754882813,85.1015625,188.406982421875,0.158599853515625,42.5234375,185.154296875,-0.04296875,88.79296875,151.332763671875,51.0993041992188,225.8984375,150.100219726563,49.7261962890625,42.5234375,148.891357421875,50.94140625,43.359375,138.603515625,45.4756469726563,214.44140625,147.571411132813,50.9176330566406,226.35546875,136.068115234375,44.5668640136719,226.71484375,142.4345703125,47.5960693359375,226.7734375,155.1640625,40.6593017578125,226.78125,167.710205078125,1.37890625,226.7109375,165.78759765625,1.3787841796875,226.78125,181.89990234375,1.37890625,226.3046875,135.812255859375,42.1415405273438,85.44140625,169.909790039063,1.3763427734375,225.66015625,183.357177734375,2.80078125,225.66015625,183.3564453125,-0.04296875,84.921875,138.975219726563,42.8848571777344,83.28125,158.380615234375,16.25,42.5234375,166.537353515625,1.37890625,226.7734375,155.158081054688,-37.8766174316406,226.35546875,136.067993164063,-41.7765502929688,226.71875,142.433715820313,-44.8043823242188,225.94921875,150.107177734375,-46.977783203125,214.44140625,147.57275390625,-48.1282348632813,84.4140625,154.073120117188,-47.4517211914063,
- 88.91015625,151.34033203125,-48.3172607421875,42.5234375,148.891357421875,-48.15234375,43.359375,138.6044921875,-42.689697265625,84.921875,138.975463867188,-40.1010131835938,83.28125,158.380615234375,-13.46484375,226.30859375,135.810424804688,-39.3513793945313,46.12890625,75.806884765625,1.37890625,0.65234375,53.43701171875,45.5546875,47.32421875,52.424560546875,45.31640625,0.65234375,66.68212890625,52.1796875,46.98828125,65.138427734375,52.0234375,46.765625,67.768798828125,51.3828125,47.27734375,95.283447265625,0.40509033203125,0.65234375,95.232177734375,2.734375,0.65234375,53.43701171875,-42.765625,47.32421875,52.424560546875,-42.52734375,0.65234375,66.68212890625,-49.390625,46.98828125,65.138427734375,-49.23046875,46.765625,67.768798828125,-48.58984375,-1.2578125,-74.822509765625,-33.55859375,-0.9765625,-107.0830078125,43.9375,-0.57421875,-74.651123046875,44.8046875,-1.4765625,-105.975341796875,-46.1640625,-1.24609375,-78.249267578125,-44.42578125,394.84375,-106.92138671875,-47.484375,387.2890625,-76.258544921875,-47.63671875,393.76171875,-85.3173828125,-47.55859375,331.375,-106.835205078125,-47.6328125,315.76171875,-77.0841064453125,-47.8810424804688,320.98828125,-104.061157226563,-43.5678100585938,314.65625,-108.905639648438,-48.4448852539063,387.15625,-74.608642578125,-45.6953125,160.671875,-108.029541015625,-50.44921875,246.88671875,-74.2525634765625,-47.0985717773438,399.953125,-74.4918212890625,-22.2060241699219,87.640625,-74.1923828125,-50.6142272949219,154.60546875,-106.13134765625,-51.2699890136719,84.125,-107.123657226563,-50.757568359375,0.328125,-105.93212890625,-50.59765625,-0.125,-74.5894775390625,-49.6116943359375,1.04296875,-73.2060546875,-47.270751953125,2.76171875,-73.9110107421875,42.1925354003906,157.18359375,-72.4539794921875,43.1585388183594,2.8125,-75.444091796875,46.510986328125,311.22265625,-75.33447265625,45.1514892578125,0.3515625,-107.0126953125,45.9863891601563,321.9765625,-74.5406494140625,38.9447021484375,320.32421875,-77.2972412109375,46.4828491210938,399.8984375,-74.429931640625,45.2890625,
- 409.03515625,-74.474609375,22.54296875,400.5,-75.98876953125,46.828125,407.99609375,-105.996948242188,47.1788330078125,407.1953125,-87.547607421875,47.109375,318.8359375,-108.869873046875,43.4649658203125,407.84375,-107.5419921875,43.94921875,411.5390625,-108.0419921875,-0.765625,418.1640625,-107.577514648438,20.9732971191406,0.4609375,-108.433471679688,43.7335205078125,0.328125,-108.299072265625,-47.5703125,155.1796875,-109.61865234375,-48.4979858398438,314.48828125,-110.209350585938,-46.11669921875,331.7109375,-108.5205078125,-45.5390625,408.45703125,-108.2919921875,-23.12109375,395.5234375,-108.542236328125,-45.4765625,411.33984375,-92.393798828125,-23.03515625,401.23828125,-50.0025634765625,-15.455810546875,396.234375,-49.9735107421875,-12.3330078125,401.06640625,-56.8184814453125,-12.3704833984375,400.734375,-70.470947265625,-41.75927734375,400.62109375,-75.0931396484375,-35.6688232421875,395.49609375,-75.0191650390625,-41.7259521484375,340.0703125,-30.3663330078125,-35.79248046875,351.09765625,-30.01611328125,-41.9017333984375,340.0703125,-33.191162109375,-41.86328125,340.0703125,-51.4661865234375,-22.249267578125,348.4921875,-51.5362548828125,-18.078369140625,340.0703125,-46.499755859375,-17.9913330078125,380.7890625,-51.081298828125,-21.1124267578125,381.203125,-30.919921875,-16.7220153808594,377.609375,-51.244873046875,-17.7178955078125,293.859375,4.632080078125,34.793212890625,305.515625,4.1341552734375,45.286865234375,293.51953125,14.72705078125,44.111572265625,385.55078125,6.82958984375,14.0743408203125,382.1640625,7.302734375,6.0013427734375,384.86328125,27.968505859375,7.0020751953125,377.7265625,2.9686279296875,-31.569091796875,357.546875,2.35107421875,-42.253173828125,377.7265625,7.9503173828125,-42.18603515625,377.7265625,40.17822265625,-7.8831787109375,362.31640625,40.3017578125,-0.588623046875,377.7265625,31.419921875,-0.4366455078125,303.22265625,39.49951171875,-5.8948974609375,302.98046875,13.6165771484375,1.083740234375,309.03515625,39.7879638671875,0.041748046875,304.42578125,2.044189453125,-35.998291015625,
- 304.6640625,8.72705078125,-42.135498046875,310.3203125,1.86376953125,-42.235595703125,338.4453125,-30.3934326171875,-12.2332763671875,343.375,-30.4298095703125,-8.73681640625,338.6171875,-21.8338623046875,-8.7789306640625,338.9453125,-4.68896484375,-41.6846923828125,339.05859375,1.11572265625,-34.86474609375,344.10546875,1.0228271484375,-41.64697265625,388.91796875,-23.9793701171875,18.0633544921875,381.18359375,-24.15576171875,10.3050537109375,388.91796875,-15.314453125,10.2069091796875,327.078125,-22.8817138671875,37.917236328125,329.578125,-22.4755859375,44.626953125,327.71875,-7.1029052734375,43.8548583984375,358.3671875,-52.833740234375,35.9012451171875,371.0625,-53.337890625,44.69482421875,358.3671875,-48.767578125,44.639404296875,358.3671875,-22.4627685546875,16.4072265625,368.06640625,-22.3619384765625,10.4036865234375,358.3671875,-29.6114501953125,10.2784423828125,405.25,-23.016845703125,14.7708740234375,405.66015625,-52.0057373046875,8.4129638671875,401.58984375,-22.7813720703125,9.884765625,404.4921875,-53.58837890625,39.546630859375,404.33984375,-48.1336669921875,44.59765625,400.78125,-53.735595703125,44.6802978515625,354.56640625,-75.1572265625,-12.5116577148438,354.53515625,-50.8758544921875,-41.7939453125,354.53515625,-75.0096435546875,-41.6588134765625,354.53515625,-50.4676513671875,-12.3330078125,380.17578125,-29.85986328125,-41.6856079101563,380,-50.3033447265625,-41.5985107421875,294.96875,39.92919921875,4.2845458984375,293.5390625,39.7867431640625,45.1560668945313,384.859375,40.3006591796875,7.0821533203125,384.44140625,40.114990234375,44.57958984375,384.125,1.397705078125,-9.25689697265625,384.45703125,-29.296630859375,-41.7239990234375,384.45703125,1.0108642578125,-41.5726318359375,384.59765625,-29.823974609375,-8.583740234375,389.68359375,4.345947265625,43.7879638671875,389.65234375,4.8900146484375,9.1077880859375,327.71875,4.073486328125,43.7869873046875,327.078125,3.9140625,12.195556640625,401.23828125,-50.3521728515625,-41.8695068359375,400.62109375,-75.37158203125,-12.46826171875,340.0703125,-50.7308349609375,-41.6146240234375,
- 340.0703125,-31.064208984375,-17.413330078125,338.4453125,-29.9542236328125,-41.807861328125,339.05859375,1.46533203125,-8.8873291015625,327.125,-25.2237548828125,11.937744140625,388.91796875,-23.239013671875,44.626953125,384.45703125,4.7515869140625,44.1812744140625,295.00390625,5.49462890625,3.28857421875,304.6640625,38.127685546875,-41.7230224609375,377.7265625,38.8814697265625,-41.751220703125,302.98046875,3.4783935546875,1.4609375,377.7265625,4.1993408203125,0.5745849609375,358.3671875,-51.8292236328125,9.4461669921875,404.33984375,-24.136474609375,44.25830078125,358.3671875,-23.521240234375,44.2813720703125,0,53.84912109375,43.2578125,0,53.84912109375,-40.46484375,89.45703125,140.447998046875,-40.46484375,89.45703125,140.447998046875,43.2578125,178.1015625,140.447998046875,-40.46484375,178.1015625,140.447998046875,43.2578125,265.1796875,49.62744140625,-40.46484375,265.1796875,49.62744140625,43.2578125,377.11328125,19.987548828125,43.2578125,178.1015625,52.48779296875,43.2578125,89.45703125,52.48779296875,43.2578125,89.45703125,52.48779296875,-40.46484375,178.1015625,52.48779296875,-40.46484375,371.33203125,20.63232421875,-40.46484375,396.37890625,-80.124755859375,43.2578125,265.1796875,-80.124755859375,43.2578125,178.1015625,-80.124755859375,43.2578125,89.45703125,-80.124755859375,43.2578125,0,-80.124755859375,43.2578125,291.17578125,52.48779296875,-40.35546875,291.17578125,52.48779296875,43.3671875,312.8984375,-80.124755859375,43.2578125,220.8671875,52.48779296875,-40.46484375,220.8671875,52.48779296875,43.2578125,47.8046875,52.48779296875,43.2578125,47.8046875,52.48779296875,-40.46484375,47.8046875,-80.124755859375,43.2578125,220.8671875,137.882080078125,-40.46484375,220.8671875,137.882080078125,43.2578125,220.8671875,-80.124755859375,43.2578125,47.8046875,138.395263671875,43.2578125,47.8046875,138.395263671875,-40.46484375,220.8671875,169.30712890625,1.39453125,178.1015625,171.873046875,1.39453125,89.45703125,171.873046875,1.39453125,47.8046875,169.8203125,1.39453125,47.8046875,-80.124755859375,-40.46484375,
- 220.8671875,-80.124755859375,-40.46484375,0,-80.124755859375,-40.46484375,89.45703125,-80.124755859375,-40.46484375,178.1015625,-80.124755859375,-40.46484375,265.1796875,-80.124755859375,-40.46484375,312.8671875,-80.124755859375,-40.46484375,387.3203125,-80.124755859375,-40.46484375,0,78.208740234375,1.39453125,47.8046875,76.847412109375,1.39453125,293.5546875,81.086669921875,1.3984375,265.1796875,78.226318359375,1.3984375,220.8671875,81.086669921875,1.3984375,364.08203125,31.606201171875,43.2578125,365.9921875,29.4263916015625,-40.46484375,388.0703125,-32.445068359375,43.2578125,379.6875,-52.921875,-40.46484375,375.9453125,-7.808349609375,43.2578125,369.78515625,-0.132568359375,-40.46484375,374.5703125,35.171630859375,0.94140625,380.0078125,27.234619140625,11.74609375,384.90625,-1.474365234375,3.59765625,400.43359375,-32.08740234375,-13.2890625,396.37890625,-80.125,-19.06640625,371.0859375,35.8572998046875,-20.8046875,376.89453125,14.427734375,-13.2276611328125,387.1875,-5.19677734375,-20.0078125,402.1796875,-32.971435546875,17.89453125,319.73046875,49.9873046875,13.12890625,318.7265625,50.3704833984375,-13.55078125,392.94921875,-20.837890625,13.20703125,392.37109375,-15.883544921875,-4.4375,302.91796875,35.9925537109375,43.3046875,341.53515625,39.07861328125,6.24609375,328.08203125,38.2984619140625,-17.6484375,308.01953125,38.8675537109375,-40.41796875,-4.02734375,50.1181640625,41.2499389648438,-4.02734375,73.02099609375,1.39459228515625,-4.02734375,50.1181640625,-38.4569702148438,-4.02734375,-75.843994140625,-38.4569702148438,-4.02734375,-75.843994140625,41.2499389648438
- }
- PolygonVertexIndex: *1954 {
- a: 0,1,-3,2,3,-1,4,0,-4,0,4,-6,6,7,-9,8,9,-7,10,6,-10,6,10,-12,12,13,-15,13,15,-15,14,16,-13,17,16,-15,18,19,-21,20,19,-22,21,22,-21,22,21,-24,24,22,-24,22,24,-26,18,26,-28,20,26,-19,20,28,-27,28,20,-23,25,28,-23,28,25,-30,18,30,-20,30,18,-32,31,18,-28,32,25,-25,25,32,-34,25,33,-30,34,35,-37,37,35,-35,37,38,-36,38,37,-40,40,38,-40,38,40,-42,34,42,-44,42,34,-45,44,34,-37,45,40,-47,40,45,-48,40,47,-42,48,49,-51,51,49,-49,51,52,-50,52,51,-54,54,52,-54,52,54,-56,48,56,-58,56,48,-59,58,48,-51,59,54,-61,54,59,-62,54,61,-56,39,46,-41,46,39,-63,39,63,-63,63,39,-38,62,63,-44,37,43,-64,34,43,-38,53,60,-55,60,53,-65,53,65,-65,65,53,-52,64,65,-58,51,57,-66,48,57,-52,66,67,-69,67,66,-70,70,69,-67,71,70,-67,72,73,-75,75,73,-73,73,75,-77,76,77,-74,78,76,-76,76,78,-80,76,79,-81,80,79,-82,82,81,-80,83,82,-80,83,79,-85,84,79,-86,86,83,-85,84,87,-87,84,85,-89,84,88,-90,84,89,-91,33,28,-30,91,28,-34,32,91,-34,91,26,-29,23,32,-25,26,31,-28,32,23,-93,92,91,-33,21,92,-24,31,26,-94,26,91,-94,93,30,-32,30,21,-20,94,93,-92,30,93,-95,92,94,-92,94,21,-31,92,21,-95,47,38,-42,95,38,-48,45,95,-48,95,35,-39,62,45,-47,35,44,-37,45,62,-97,96,95,-46,44,35,-98,35,95,-98,97,42,-45,96,98,-96,98,97,-96,62,98,-97,42,97,-99,43,98,-63,98,43,-43,61,52,-56,99,52,-62,59,99,-62,99,49,-53,64,59,-61,49,58,-51,59,64,-101,100,99,-60,58,49,-102,49,99,-102,101,56,-59,100,102,-100,102,101,-100,64,102,-101,56,101,-103,57,102,-65,102,57,-57,103,104,-106,103,105,-13,12,105,-14,105,106,-14,106,105,-105,104,81,-83,82,106,-105,86,82,-84,106,82,-87,106,86,-88,13,106,-108,87,107,-107,15,13,-108,87,108,-108,107,108,-16,90,87,-85,108,87,-91,15,109,-15,15,110,-110,111,108,-91,108,111,-16,110,15,-112,90,89,-112,111,85,-111,89,85,-112,79,110,-86,85,89,-89,110,79,-79,75,110,-79,72,110,-76,112,110,-73,110,112,-110,72,17,-113,17,109,-113,109,17,-15,17,72,-75,73,17,-75,73,113,-18,77,113,-74,16,17,-114,77,16,-114,16,103,-13,16,104,-104,104,16,-78,77,76,-105,104,76,-81,104,80,-82,114,115,-117,115,114,-118,118,117,-115,119,118,-115,116,119,-115,119,116,-121,120,121,-120,
- 3,119,-122,2,119,-4,2,118,-120,2,122,-119,117,118,-124,123,118,-123,122,2,-125,1,124,-3,124,125,-123,125,124,-2,123,122,-127,122,125,-128,122,127,-127,123,126,-129,126,127,-129,123,128,-130,130,127,-132,127,129,-129,129,127,-131,129,130,-133,131,127,-134,133,134,-132,135,129,-133,129,135,-124,136,135,-133,117,123,-136,135,115,-118,115,135,-137,133,127,-138,134,133,-138,125,137,-128,137,125,-2,134,137,-139,1,138,-138,138,139,-135,139,138,-2,139,1,-1,140,141,-143,141,140,-131,140,132,-131,132,140,-137,143,136,-141,142,143,-141,136,143,-116,143,142,-145,141,144,-143,145,115,-144,115,145,-117,145,120,-117,144,146,-144,145,143,-147,141,146,-145,4,120,-146,146,4,-146,120,4,-122,121,4,-4,4,146,-148,147,5,-5,148,147,-147,147,148,-6,141,148,-147,5,139,-1,149,148,-142,148,149,-6,5,150,-140,150,5,-150,139,150,-135,149,134,-151,151,134,-150,141,151,-150,134,151,-132,141,131,-152,131,141,-131,152,7,-7,68,152,-67,7,152,-69,68,153,-8,153,68,-155,68,67,-155,153,155,-8,7,155,-9,156,153,-155,156,155,-154,154,67,-157,157,155,-157,67,157,-157,157,8,-156,157,67,-159,8,157,-159,158,67,-70,8,158,-160,9,8,-160,158,9,-160,11,152,-7,71,66,-153,152,11,-72,160,71,-12,71,160,-162,70,71,-162,162,160,-12,162,11,-11,160,163,-162,163,160,-163,161,163,-71,163,162,-165,164,70,-164,10,164,-163,164,158,-71,10,158,-165,70,158,-70,158,10,-10,165,166,-168,166,165,-169,168,165,-170,170,171,-173,171,170,-174,174,171,-174,175,174,-174,174,175,-177,174,177,-172,174,176,-179,177,174,-180,179,180,-178,181,174,-179,181,179,-175,181,178,-183,183,181,-183,184,181,-184,184,185,-182,168,185,-185,185,168,-170,186,181,-186,186,185,-170,186,179,-182,186,169,-166,165,187,-187,187,165,-168,186,187,-189,179,186,-189,189,187,-168,187,189,-189,179,188,-191,167,191,-190,191,167,-167,179,190,-193,192,180,-180,188,193,-191,192,190,-194,193,188,-190,180,192,-195,180,194,-196,193,194,-193,194,193,-197,193,189,-198,197,196,-194,196,197,-199,191,197,-190,197,191,-200,199,200,-198,200,201,-203,201,200,-200,203,191,-167,203,199,-192,168,203,-167,204,203,-169,168,184,-205,184,183,-205,
- 203,204,-206,205,204,-184,205,199,-204,205,183,-183,205,182,-179,178,206,-206,199,205,-207,206,178,-177,175,206,-177,199,206,-176,199,175,-208,207,201,-200,207,175,-174,201,207,-209,173,170,-208,208,207,-210,209,207,-171,177,172,-172,172,177,-181,172,180,-211,210,170,-173,170,210,-210,209,210,-209,210,180,-203,202,208,-211,208,202,-202,202,180,-196,195,198,-203,198,195,-195,198,194,-197,198,200,-203,200,198,-198,211,212,-214,214,215,-217,217,218,-220,220,221,-223,223,224,-226,226,227,-229,229,230,-232,232,233,-235,235,236,-238,238,239,-241,241,242,-244,244,245,-247,247,248,-250,250,251,-253,253,254,-256,256,257,-259,259,260,-262,262,263,-265,265,266,-268,268,269,-271,269,268,-272,223,272,-225,272,223,-274,274,275,-277,275,277,-277,278,279,-281,279,278,-282,282,283,-285,284,283,-286,211,286,-213,269,212,-287,212,269,-272,271,268,-213,212,268,-288,212,287,-214,272,273,-219,218,273,-289,218,288,-220,224,272,-219,218,289,-225,289,218,-218,244,290,-246,279,245,-291,245,279,-282,245,281,-247,278,246,-282,246,278,-292,292,285,-284,283,251,-293,251,283,-253,254,293,-256,282,255,-294,282,284,-256,287,216,-216,216,287,-269,216,268,-271,216,286,-215,286,216,-270,216,270,-270,221,289,-223,289,221,-225,224,221,-226,288,221,-221,221,288,-274,221,273,-226,225,273,-224,277,227,-295,227,277,-276,227,275,-229,226,274,-296,228,274,-227,274,228,-276,229,277,-295,277,229,-232,277,231,-277,274,230,-296,230,274,-232,231,274,-277,296,243,-243,243,296,-234,233,296,-298,233,297,-235,297,236,-236,236,297,-297,236,296,-241,240,296,-239,242,238,-297,238,242,-240,241,239,-243,239,241,-299,243,298,-242,298,243,-234,233,299,-299,299,233,-233,278,248,-292,278,249,-249,249,278,-281,249,290,-248,290,249,-280,279,249,-281,293,251,-251,251,293,-293,292,293,-255,253,292,-255,282,252,-284,252,282,-251,250,282,-294,253,285,-293,285,253,-256,285,255,-285,260,300,-262,300,260,-264,263,260,-265,266,262,-302,265,262,-267,262,265,-264,288,217,-220,217,288,-221,217,220,-223,217,222,-290,227,229,-295,229,227,-231,227,295,-231,295,227,-227,297,232,-235,232,297,
- -236,232,235,-238,232,237,-300,291,248,-247,247,246,-249,246,247,-291,290,244,-247,257,302,-259,257,301,-303,301,257,-267,266,257,-268,302,256,-259,256,302,-260,256,259,-262,256,261,-301,260,262,-265,262,260,-302,260,302,-302,302,260,-260,300,257,-257,257,300,-264,265,257,-264,257,265,-268,287,215,-214,215,286,-214,286,215,-215,286,211,-214,298,299,-240,299,236,-240,236,299,-238,239,236,-241,308,312,326,-332,306,313,312,-309,305,314,328,-335,307,315,314,-306,311,352,371,323,324,317,354,-357,318,310,326,-333,312,313,320,-320,321,329,327,-304,375,376,377,378,-380,306,337,338,-334,308,336,337,-307,310,350,351,-327,324,323,310,-319,323,349,350,-311,326,351,325,330,335,-332,347,348,328,-305,330,325,315,-308,332,326,312,-320,331,335,336,-309,333,338,334,328,348,-328,333,327,313,-307,327,329,320,-314,336,335,330,-308,337,336,307,-306,338,337,305,-335,339,341,304,-329,342,339,328,-315,340,343,315,-326,344,340,325,-310,343,342,314,-316,345,344,309,-323,346,345,322,374,353,316,357,-356,329,321,341,-340,320,329,339,-343,319,320,342,-344,332,319,343,-341,318,332,340,-345,324,318,344,-346,324,345,346,362,-318,327,348,347,-304,350,349,322,-310,351,350,309,-326,349,368,-323,363,364,316,-354,361,362,346,-356,364,365,357,-317,323,367,-350,311,359,358,-353,356,360,359,-312,361,369,-367,317,362,-367,349,367,-369,358,364,-364,359,360,-365,360,370,-366,354,366,-370,317,366,-355,371,372,367,-324,368,367,372,-374,322,368,373,-375,364,360,-366,365,361,-358,357,361,-356,366,362,-362,358,359,-365,360,369,-371,354,369,360,-357,370,369,-362,365,370,-362,352,358,372,-372,373,372,358,-364,374,373,363,-354,303,347,376,-376,347,304,377,-377,304,341,378,-378,341,321,379,-379,321,303,375,-380
- }
- Edges: *977 {
- a: 0,1,2,3,4,6,8,10,11,12,13,14,15,16,18,20,22,23,24,25,26,27,28,30,31,33,35,36,37,38,40,41,42,43,46,47,48,50,52,53,54,55,56,57,60,61,65,66,70,71,72,73,76,77,80,81,83,85,86,88,90,91,92,93,95,96,97,100,101,102,104,106,107,108,109,110,112,113,116,117,118,119,121,122,124,126,127,128,129,131,132,133,136,137,138,140,142,143,144,145,146,148,149,152,153,154,155,157,158,160,162,166,167,168,169,173,175,176,177,183,187,188,189,190,194,196,197,198,204,205,206,208,209,210,212,213,215,216,217,218,219,221,223,224,225,226,228,230,232,233,235,236,238,239,240,242,243,245,247,248,250,251,252,254,255,256,259,260,262,263,265,266,267,270,272,273,276,279,282,286,287,288,291,295,296,298,300,303,306,308,311,312,315,321,324,326,327,330,333,336,340,341,342,346,347,349,351,354,355,357,360,365,366,372,375,377,378,381,384,387,391,392,393,397,398,400,402,405,406,408,411,416,417,423,424,425,427,428,430,432,433,437,438,440,441,444,449,452,454,455,456,461,462,463,466,468,473,474,475,477,478,480,482,484,488,490,492,493,495,498,506,507,510,513,515,517,519,520,522,530,531,534,535,537,542,543,546,549,554,556,560,564,565,566,568,569,570,572,573,575,576,580,581,582,583,585,587,588,591,594,595,598,599,602,604,605,606,609,610,614,616,617,619,620,622,625,626,628,631,632,633,634,635,636,641,643,644,646,647,648,649,651,653,655,657,659,662,663,668,670,671,674,675,680,682,683,684,687,688,692,695,696,697,698,700,701,702,706,708,710,711,715,718,719,720,723,725,727,729,732,733,737,738,741,743,744,748,754,755,756,759,761,763,765,768,771,773,775,777,778,782,784,786,789,791,792,796,798,804,806,807,808,812,813,814,817,818,820,822,823,826,828,830,831,835,837,839,840,843,847,848,851,854,856,857,860,861,864,869,871,873,875,877,878,881,882,884,887,888,889,893,895,898,899,900,903,906,907,909,918,919,920,922,923,925,926,927,928,929,931,932,933,935,936,938,940,941,942,943,946,947,949,950,951,952,954,956,957,961,962,963,965,966,968,969,970,972,974,977,978,980,983,984,989,990,991,995,997,998,1001,1002,1004,1006,1009,1010,1011,1012,1016,1018,1019,1020,1023,1024,
- 1028,1031,1033,1034,1036,1037,1038,1042,1043,1045,1046,1047,1051,1052,1053,1057,1058,1059,1060,1062,1063,1064,1067,1068,1070,1071,1074,1077,1079,1081,1084,1087,1088,1091,1092,1097,1100,1101,1102,1106,1109,1110,1115,1117,1118,1119,1124,1126,1127,1129,1132,1133,1136,1137,1142,1144,1145,1146,1150,1153,1156,1157,1158,1166,1167,1168,1172,1176,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1243,1244,1245,1246,1249,1250,1251,1252,1253,1254,1255,1257,1258,1259,1261,1262,1263,1264,1265,1267,1268,1269,1270,1272,1274,1277,1279,1282,1283,1285,1288,1289,1291,1292,1294,1298,1299,1300,1304,1305,1306,1308,1310,1313,1315,1317,1321,1322,1323,1325,1326,1327,1330,1332,1333,1335,1337,1339,1341,1343,1346,1349,1350,1351,1354,1359,1360,1363,1366,1368,1370,1373,1375,1380,1381,1382,1385,1387,1389,1390,1391,1392,1398,1400,1403,1405,1407,1408,1411,1416,1418,1420,1421,1423,1424,1426,1428,1430,1433,1435,1436,1438,1440,1444,1446,1450,1451,1452,1457,1458,1459,1463,1464,1465,1467,1472,1473,1474,1477,1482,1484,1486,1490,1491,1494,1498,1503,1508,1512,1513,1516,1517,1519,1521,1522,1523,1524,1528,1530,1535,1538,1542,1546,1548,1554,1559,1562,1564,1567,1569,1574,1578,1579,1581,1582,1585,1588,1590,1594,1595,1598,1601,1602,1606,1608,1614,1619,1620,1627,1629,1630,1639,1641,1642,1684,1719,1822,1665,1657,1654,1724,1653,1650,1781,1704,1673,1674,1681,1679,1760,1658,1662,1666,1655,1740,1663,1722,1685,1670,1680,1744,1792,1754,1750,1827,1706,1669,1825,1773,1675,1677,1712,1738,1660,1682,1683,1718,1713,1652,1651,1728,1676,1714,1785,1694,1661,1659,1734,1715,1695,1691,1693,1730,1696,1692,1759,1763,1767,1771,1775,1779,1783,1762,1770,1768,1766,1782,1774,1790,1794,1798,1802,1806,1810,1814,1817,1720,1737,1717,1707,1699,1701,1708,1700,1667,1787,1852,1671,1789,1876,1672,1788,1854,1850,1869,1872,1875,1842,1818,1848,1851,1855,
- 1873,1839,1838,1836,1844,1832,1835,1843,1897,1860,1909,1863,1883,1889,1847,1865,1833,1871,1898,1862,1867,1859,1858,1878,1918,1910,1874,1668,1923,1882,1929,1888,1786,1892,1937,1935,1686,1939,1687,1943,1688,1947,1689,1690
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *5862 {
- a: -0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.997252345085144,-0.0628190487623215,-0.0392619036138058,-0.99771386384964,0.054992102086544,0.0392800718545914,-0.99771386384964,0.054992102086544,0.0392800718545914,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.99771386384964,0.054992102086544,-0.0392800718545914,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.996914327144623,0.0784971937537193,1.74298783747682e-017,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.99771386384964,0.054992102086544,-0.0392800718545914,-0.997252345085144,-0.0628190487623215,0.0392619036138058,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,-0.998206853866577,-0.055019274353981,-0.0235796887427568,-0.997529208660126,0.0628364831209183,0.0314182415604591,-0.997529208660126,0.0628364831209183,0.0314182415604591,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,-0.997529208660126,0.0628364831209183,-0.0314182415604591,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,-0.997529208660126,0.0628364831209183,-0.0314182415604591,-0.998206853866577,-0.055019274353981,0.0235796887427568,-0.998021900653839,0.0628675222396851,1.39593941383265e-017,-0.99771386384964,0.054992102086544,-0.0392800718545914,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.99771386384964,0.054992102086544,-0.0392800718545914,-0.99771386384964,-0.054992102086544,0.0392800718545914,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.99771386384964,0.054992102086544,0.0392800718545914,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.99799108505249,-0.0550073832273483,-0.0314327888190746,-0.99771386384964,0.054992102086544,0.0392800718545914,
- -0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.998762309551239,-0.0157285407185555,0.0471856184303761,-0.0869599208235741,0.0158108938485384,0.996086359024048,-0.0869599208235741,0.0158108938485384,0.996086359024048,-0.998762309551239,-0.0157285407185555,0.0471856184303761,-0.0706104934215546,-0.0470736660063267,0.996392607688904,-0.0706104934215546,-0.0470736660063267,0.996392607688904,0.0706801414489746,0.0157066993415356,0.99737536907196,-0.0869599208235741,0.0158108938485384,0.996086359024048,0.0706801414489746,0.0157066993415356,0.99737536907196,-0.0706104934215546,-0.0470736660063267,0.996392607688904,0.0866437256336212,-0.0866437256336212,0.992464482784271,0.998762309551239,-0.0157285407185555,0.0471856184303761,0.0706801414489746,0.0157066993415356,0.99737536907196,0.0866437256336212,-0.0866437256336212,0.992464482784271,0.0706801414489746,0.0157066993415356,0.99737536907196,0.998762309551239,-0.0157285407185555,0.0471856184303761,0.99839198589325,0.0314454175531864,0.0471681281924248,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.0788698568940163,0.993760168552399,-0.0788698568940163,-0.999380588531494,0.031476553529501,-0.0157382767647505,-0.0549260377883911,0.996515274047852,0.0627726167440414,-0.0788698568940163,0.993760168552399,-0.0788698568940163,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.0549260377883911,0.996515274047852,0.0627726167440414,0.0549734458327293,0.99737536907196,-0.0471200942993164,-0.0788698568940163,0.993760168552399,-0.0788698568940163,0.0549734458327293,0.99737536907196,-0.0471200942993164,-0.0549260377883911,0.996515274047852,0.0627726167440414,0.0707499980926514,0.990500032901764,0.11791667342186,0.99839198589325,0.0314454175531864,0.0471681281924248,0.0549734458327293,0.99737536907196,-0.0471200942993164,0.0707499980926514,0.990500032901764,0.11791667342186,0.0549734458327293,0.99737536907196,-0.0471200942993164,0.99839198589325,0.0314454175531864,0.0471681281924248,0.999380588531494,0.031476553529501,-0.0157382767647505,
- -0.998453617095947,0.0393091961741447,0.0393091961741447,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.998762309551239,-0.0157285407185555,0.0471856184303761,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.999380588531494,0.031476553529501,-0.0157382767647505,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.99839198589325,0.0314454175531864,0.0471681281924248,0.998762309551239,-0.0157285407185555,0.0471856184303761,0.99839198589325,0.0314454175531864,0.0471681281924248,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.99839198589325,0.0314454175531864,0.0471681281924248,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.999380588531494,0.031476553529501,-0.0157382767647505,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.0788698568940163,0.993760168552399,-0.0788698568940163,-0.999380588531494,0.031476553529501,-0.0157382767647505,-0.0549260377883911,0.996515274047852,0.0627726167440414,-0.0788698568940163,0.993760168552399,-0.0788698568940163,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.0549260377883911,0.996515274047852,0.0627726167440414,0.0549734458327293,0.99737536907196,-0.0471200942993164,-0.0788698568940163,0.993760168552399,-0.0788698568940163,0.0549734458327293,0.99737536907196,-0.0471200942993164,-0.0549260377883911,0.996515274047852,0.0627726167440414,0.0707499980926514,0.990500032901764,0.11791667342186,0.99839198589325,0.0314454175531864,0.0471681281924248,0.0549734458327293,0.99737536907196,-0.0471200942993164,0.0707499980926514,0.990500032901764,0.11791667342186,0.0549734458327293,0.99737536907196,-0.0471200942993164,0.99839198589325,0.0314454175531864,0.0471681281924248,0.999380588531494,0.031476553529501,-0.0157382767647505,-0.998453617095947,0.0393091961741447,0.0393091961741447,
- -0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.998762309551239,-0.0157285407185555,0.0471856184303761,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.999380588531494,0.031476553529501,-0.0157382767647505,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.99839198589325,0.0314454175531864,0.0471681281924248,0.998762309551239,-0.0157285407185555,0.0471856184303761,0.99839198589325,0.0314454175531864,0.0471681281924248,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.99839198589325,0.0314454175531864,0.0471681281924248,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.999380588531494,0.031476553529501,-0.0157382767647505,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.0788698568940163,0.993760168552399,-0.0788698568940163,-0.999380588531494,0.031476553529501,-0.0157382767647505,-0.0549260377883911,0.996515274047852,0.0627726167440414,-0.0788698568940163,0.993760168552399,-0.0788698568940163,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.0549260377883911,0.996515274047852,0.0627726167440414,0.0549734458327293,0.99737536907196,-0.0471200942993164,-0.0788698568940163,0.993760168552399,-0.0788698568940163,0.0549734458327293,0.99737536907196,-0.0471200942993164,-0.0549260377883911,0.996515274047852,0.0627726167440414,0.0707499980926514,0.990500032901764,0.11791667342186,0.99839198589325,0.0314454175531864,0.0471681281924248,0.0549734458327293,0.99737536907196,-0.0471200942993164,0.0707499980926514,0.990500032901764,0.11791667342186,0.0549734458327293,0.99737536907196,-0.0471200942993164,0.99839198589325,0.0314454175531864,0.0471681281924248,0.999380588531494,0.031476553529501,-0.0157382767647505,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,
- -0.998762309551239,-0.0157285407185555,0.0471856184303761,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.999380588531494,0.031476553529501,-0.0157382767647505,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.99839198589325,0.0314454175531864,0.0471681281924248,0.998762309551239,-0.0157285407185555,0.0471856184303761,0.99839198589325,0.0314454175531864,0.0471681281924248,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.99839198589325,0.0314454175531864,0.0471681281924248,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.999380588531494,0.031476553529501,-0.0157382767647505,0.0706801414489746,0.0157066993415356,0.99737536907196,0.998762309551239,-0.0157285407185555,0.0471856184303761,0.99839198589325,0.0314454175531864,0.0471681281924248,0.998762309551239,-0.0157285407185555,0.0471856184303761,0.0706801414489746,0.0157066993415356,0.99737536907196,0.0943129286170006,-0.102172337472439,0.990285754203796,0.0706801414489746,0.0157066993415356,0.99737536907196,-0.055019274353981,-0.0235796887427568,0.998206853866577,0.0943129286170006,-0.102172337472439,0.990285754203796,-0.055019274353981,-0.0235796887427568,0.998206853866577,0.0706801414489746,0.0157066993415356,0.99737536907196,-0.0869599208235741,0.0158108938485384,0.996086359024048,0.0943129286170006,-0.102172337472439,0.990285754203796,-0.055019274353981,-0.0235796887427568,0.998206853866577,-0.973365187644959,-0.180543541908264,0.141294941306114,-0.0869599208235741,0.0158108938485384,0.996086359024048,-0.973365187644959,-0.180543541908264,0.141294941306114,-0.055019274353981,-0.0235796887427568,0.998206853866577,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.973365187644959,-0.180543541908264,0.141294941306114,-0.0869599208235741,0.0158108938485384,0.996086359024048,
- 0.0706801414489746,0.0157066993415356,0.99737536907196,0.998762309551239,-0.0157285407185555,0.0471856184303761,0.99839198589325,0.0314454175531864,0.0471681281924248,0.998762309551239,-0.0157285407185555,0.0471856184303761,0.0706801414489746,0.0157066993415356,0.99737536907196,0.0943129286170006,-0.102172337472439,0.990285754203796,0.0706801414489746,0.0157066993415356,0.99737536907196,-0.055019274353981,-0.0235796887427568,0.998206853866577,0.0943129286170006,-0.102172337472439,0.990285754203796,-0.055019274353981,-0.0235796887427568,0.998206853866577,0.0706801414489746,0.0157066993415356,0.99737536907196,-0.0869599208235741,0.0158108938485384,0.996086359024048,0.0943129286170006,-0.102172337472439,0.990285754203796,-0.055019274353981,-0.0235796887427568,0.998206853866577,-0.973365187644959,-0.180543541908264,0.141294941306114,-0.0869599208235741,0.0158108938485384,0.996086359024048,-0.973365187644959,-0.180543541908264,0.141294941306114,-0.055019274353981,-0.0235796887427568,0.998206853866577,-0.998453617095947,0.0393091961741447,0.0393091961741447,-0.973365187644959,-0.180543541908264,0.141294941306114,-0.0869599208235741,0.0158108938485384,0.996086359024048,0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,0.999845147132874,0.00787279661744833,0.0157455932348967,0.997529208660126,-0.0628364831209183,-0.0314182415604591,0.999845147132874,0.00787279661744833,0.0157455932348967,0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,0.998453617095947,0.0550328753888607,-0.00786183960735798,0.998731434345245,0.039320133626461,-0.031456109136343,0.998453617095947,0.0550328753888607,-0.00786183960735798,0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,0.997529208660126,-0.0628364831209183,0.0314182415604591,0.998731434345245,0.039320133626461,-0.031456109136343,0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,0.963351488113403,-0.181615442037582,0.197408095002174,0.929854869842529,0.0630410090088844,0.36248579621315,0.961942911148071,-0.197119444608688,0.189234673976898,0.986794292926788,-0.110520958900452,0.11841531842947,
- 0.929854869842529,0.0630410090088844,0.36248579621315,0.963351488113403,-0.181615442037582,0.197408095002174,0.929854869842529,0.0630410090088844,0.36248579621315,0.986794292926788,-0.110520958900452,0.11841531842947,0.943362414836884,0.19653382897377,0.267286002635956,0.943362414836884,0.19653382897377,0.267286002635956,0.883974969387054,0.173637941479683,0.434094876050949,0.929854869842529,0.0630410090088844,0.36248579621315,0.996638000011444,-0.0784754380583763,0.0235426295548677,0.943362414836884,0.19653382897377,0.267286002635956,0.986794292926788,-0.110520958900452,0.11841531842947,0.943362414836884,0.19653382897377,0.267286002635956,0.996638000011444,-0.0784754380583763,0.0235426295548677,0.974657237529755,-0.07074124366045,0.212223753333092,0.943362414836884,0.19653382897377,0.267286002635956,0.974657237529755,-0.07074124366045,0.212223753333092,0.90394389629364,0.251532226800919,0.345856815576553,0.90394389629364,0.251532226800919,0.345856815576553,0.974657237529755,-0.07074124366045,0.212223753333092,0.946998059749603,0.284099400043488,0.149941354990005,0.898390054702759,0.433433800935745,-0.0709255263209343,0.946998059749603,0.284099400043488,0.149941354990005,0.974657237529755,-0.07074124366045,0.212223753333092,0.849972248077393,0.511557340621948,-0.125921815633774,0.898390054702759,0.433433800935745,-0.0709255263209343,0.974657237529755,-0.07074124366045,0.212223753333092,0.849972248077393,0.511557340621948,-0.125921815633774,0.974657237529755,-0.07074124366045,0.212223753333092,0.992957532405853,0.00788061507046223,0.118209235370159,0.992957532405853,0.00788061507046223,0.118209235370159,0.974657237529755,-0.07074124366045,0.212223753333092,0.878762543201447,-0.219690635800362,0.423689097166061,0.900777161121368,0.336812317371368,-0.274149566888809,0.849972248077393,0.511557340621948,-0.125921815633774,0.992957532405853,0.00788061507046223,0.118209235370159,0.992957532405853,0.00788061507046223,0.118209235370159,0.916316330432892,0.387064665555954,-0.102690622210503,0.900777161121368,0.336812317371368,-0.274149566888809,
- 0.992957532405853,0.00788061507046223,0.118209235370159,0.878762543201447,-0.219690635800362,0.423689097166061,0.926838159561157,-0.227782249450684,0.298473298549652,0.992957532405853,0.00788061507046223,0.118209235370159,0.926838159561157,-0.227782249450684,0.298473298549652,0.913612425327301,-0.291410863399506,0.28353488445282,0.992957532405853,0.00788061507046223,0.118209235370159,0.913612425327301,-0.291410863399506,0.28353488445282,0.845328330993652,-0.331811100244522,0.418714016675949,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.0868676751852036,0.134250044822693,-0.987132668495178,0.999380588531494,0.031476553529501,-0.0157382767647505,0.0393786244094372,-0.346531927585602,-0.937211275100708,0.0868676751852036,0.134250044822693,-0.987132668495178,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.0393786244094372,-0.346531927585602,-0.937211275100708,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0628616958856583,0.125723391771317,-0.990071713924408,0.0868676751852036,0.134250044822693,-0.987132668495178,0.0631253346800804,-0.994224011898041,0.0867973417043686,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.998762309551239,-0.0157285407185555,0.0471856184303761,-0.0628616958856583,0.125723391771317,-0.990071713924408,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.999380588531494,0.031476553529501,-0.0157382767647505,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.0631253346800804,-0.994224011898041,0.0867973417043686,0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0393786244094372,-0.346531927585602,-0.937211275100708,0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.0395272336900234,-0.996086359024048,0.0790544673800468,0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0631253346800804,-0.994224011898041,0.0867973417043686,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,
- -0.0628616958856583,0.125723391771317,-0.990071713924408,-0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0628616958856583,0.125723391771317,-0.990071713924408,0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.0395272336900234,-0.996086359024048,0.0790544673800468,-0.998762309551239,-0.0157285407185555,0.0471856184303761,-0.0394668504595757,-0.718296706676483,-0.694616615772247,-0.0393786244094372,-0.346531927585602,-0.937211275100708,0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0394668504595757,-0.718296706676483,-0.694616615772247,-0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0394668504595757,-0.718296706676483,-0.694616615772247,-0.0395272336900234,-0.996086359024048,0.0790544673800468,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.0394668504595757,-0.718296706676483,-0.694616615772247,-0.0395272336900234,-0.996086359024048,0.0790544673800468,-0.0394668504595757,-0.718296706676483,-0.694616615772247,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.0868676751852036,0.134250044822693,-0.987132668495178,0.999380588531494,0.031476553529501,-0.0157382767647505,0.0393786244094372,-0.346531927585602,-0.937211275100708,0.0868676751852036,0.134250044822693,-0.987132668495178,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.0393786244094372,-0.346531927585602,-0.937211275100708,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.0393786244094372,-0.346531927585602,-0.937211275100708,
- -0.0628616958856583,0.125723391771317,-0.990071713924408,0.0868676751852036,0.134250044822693,-0.987132668495178,0.0392413474619389,-0.996730208396912,0.0706344172358513,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.998762309551239,-0.0157285407185555,0.0471856184303761,-0.0628616958856583,0.125723391771317,-0.990071713924408,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.999380588531494,0.031476553529501,-0.0157382767647505,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.0392413474619389,-0.996730208396912,0.0706344172358513,0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0393786244094372,-0.346531927585602,-0.937211275100708,0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.0628616958856583,0.125723391771317,-0.990071713924408,-0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0628616958856583,0.125723391771317,-0.990071713924408,0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,0.0394668504595757,-0.718296706676483,-0.694616615772247,-0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0394668504595757,-0.718296706676483,-0.694616615772247,-0.0393786244094372,-0.346531927585602,-0.937211275100708,0.0393786244094372,-0.346531927585602,-0.937211275100708,0.0392413474619389,-0.996730208396912,0.0706344172358513,-0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0394668504595757,-0.718296706676483,-0.694616615772247,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0394668504595757,-0.718296706676483,-0.694616615772247,-0.196893110871315,-0.976589918136597,0.0866329744458199,
- -0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0392413474619389,-0.996730208396912,0.0706344172358513,-0.0394668504595757,-0.718296706676483,-0.694616615772247,-0.196893110871315,-0.976589918136597,0.0866329744458199,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.0868676751852036,0.134250044822693,-0.987132668495178,0.999380588531494,0.031476553529501,-0.0157382767647505,0.0393786244094372,-0.346531927585602,-0.937211275100708,0.0868676751852036,0.134250044822693,-0.987132668495178,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.0393786244094372,-0.346531927585602,-0.937211275100708,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0628616958856583,0.125723391771317,-0.990071713924408,0.0868676751852036,0.134250044822693,-0.987132668495178,0.0392413474619389,-0.996730208396912,0.0706344172358513,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.998762309551239,-0.0157285407185555,0.0471856184303761,-0.0628616958856583,0.125723391771317,-0.990071713924408,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.999380588531494,0.031476553529501,-0.0157382767647505,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.0392413474619389,-0.996730208396912,0.0706344172358513,0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0393786244094372,-0.346531927585602,-0.937211275100708,0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,-0.0628616958856583,0.125723391771317,-0.990071713924408,-0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0628616958856583,0.125723391771317,-0.990071713924408,0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0393786244094372,-0.346531927585602,-0.937211275100708,
- -0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.999473392963409,-0.00786986947059631,-0.0314794778823853,0.0394668504595757,-0.718296706676483,-0.694616615772247,-0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0394668504595757,-0.718296706676483,-0.694616615772247,-0.0393786244094372,-0.346531927585602,-0.937211275100708,0.0393786244094372,-0.346531927585602,-0.937211275100708,0.0392413474619389,-0.996730208396912,0.0706344172358513,-0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0394668504595757,-0.718296706676483,-0.694616615772247,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.0393786244094372,-0.346531927585602,-0.937211275100708,-0.0394668504595757,-0.718296706676483,-0.694616615772247,-0.196893110871315,-0.976589918136597,0.0866329744458199,-0.0394668504595757,-0.718296706676483,-0.694616615772247,0.0392413474619389,-0.996730208396912,0.0706344172358513,-0.0394668504595757,-0.718296706676483,-0.694616615772247,-0.196893110871315,-0.976589918136597,0.0866329744458199,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.00785431824624538,0.824703454971313,0.565510869026184,0.0943916887044907,0.888855040073395,0.448360502719879,0.0864588618278503,0.825289130210876,-0.558052599430084,0.00785431824624538,0.824703454971313,0.565510869026184,0.0864588618278503,0.825289130210876,-0.558052599430084,-0.0314736291766167,0.834051191806793,-0.550788521766663,-0.0314736291766167,0.834051191806793,-0.550788521766663,0.0864588618278503,0.825289130210876,-0.558052599430084,0,0.791457295417786,-0.611224472522736,0.0864588618278503,0.825289130210876,-0.558052599430084,0.00789509247988462,0.781614124774933,-0.623712301254272,0,0.791457295417786,-0.611224472522736,0.00789509247988462,0.781614124774933,-0.623712301254272,0.0864588618278503,0.825289130210876,-0.558052599430084,-0.0552123263478279,0.883397221565247,-0.465361028909683,-0.0552123263478279,0.883397221565247,-0.465361028909683,-0.0158094130456448,0.948564827442169,-0.316188275814056,
- -0.0157675947993994,0.812031149864197,-0.583401083946228,-0.0157675947993994,0.812031149864197,-0.583401083946228,0.00789509247988462,0.781614124774933,-0.623712301254272,-0.0552123263478279,0.883397221565247,-0.465361028909683,-0.0157071854919195,0.824627220630646,-0.565458595752716,-0.0157675947993994,0.812031149864197,-0.583401083946228,-0.0157675947993994,0.812031149864197,-0.583401083946228,0.00789509247988462,0.781614124774933,-0.623712301254272,-0.0157675947993994,0.812031149864197,-0.583401083946228,-0.0157071854919195,0.824627220630646,-0.565458595752716,0.00789509247988462,0.781614124774933,-0.623712301254272,-0.0157071854919195,0.824627220630646,-0.565458595752716,0.0313718244433403,-0.313718259334564,-0.948997735977173,0,0.791457295417786,-0.611224472522736,0.00789509247988462,0.781614124774933,-0.623712301254272,-0.0314483270049095,-0.306621193885803,-0.951311945915222,0.0313718244433403,-0.313718259334564,-0.948997735977173,-0.0314483270049095,-0.306621193885803,-0.951311945915222,0.00789509247988462,0.781614124774933,-0.623712301254272,-0.102473445236683,-0.827670156955719,0.551780104637146,0,0.791457295417786,-0.611224472522736,-0.0314483270049095,-0.306621193885803,-0.951311945915222,0.0313718244433403,-0.313718259334564,-0.948997735977173,-0.0470736660063267,-0.541347146034241,-0.839480400085449,-0.0314483270049095,-0.306621193885803,-0.951311945915222,-0.0314483270049095,-0.306621193885803,-0.951311945915222,-0.0470736660063267,-0.541347146034241,-0.839480400085449,-0.102473445236683,-0.827670156955719,0.551780104637146,0.0314570814371109,-0.526906073093414,-0.849341154098511,0.0313718244433403,-0.313718259334564,-0.948997735977173,0.0236066840589046,-0.424920320510864,-0.904922902584076,-0.0470736660063267,-0.541347146034241,-0.839480400085449,0.0313718244433403,-0.313718259334564,-0.948997735977173,0.0314570814371109,-0.526906073093414,-0.849341154098511,-0.102473445236683,-0.827670156955719,0.551780104637146,-0.102629795670509,-0.994719624519348,-2.20872126037574e-016,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,
- -0.102473445236683,-0.827670156955719,0.551780104637146,0.0236037615686655,-0.999225914478302,0.0314716808497906,-0.102629795670509,-0.994719624519348,-2.20872126037574e-016,-0.015776913613081,-0.828288018703461,0.560080409049988,-0.0470736660063267,-0.541347146034241,-0.839480400085449,0.0314570814371109,-0.526906073093414,-0.849341154098511,-0.0470736660063267,-0.541347146034241,-0.839480400085449,-0.015776913613081,-0.828288018703461,0.560080409049988,-0.102473445236683,-0.827670156955719,0.551780104637146,0.0236037615686655,-0.999225914478302,0.0314716808497906,-0.102473445236683,-0.827670156955719,0.551780104637146,-0.015776913613081,-0.828288018703461,0.560080409049988,0.0314570814371109,-0.526906073093414,-0.849341154098511,0.047338105738163,-0.804747819900513,0.591726362705231,-0.015776913613081,-0.828288018703461,0.560080409049988,-0.015776913613081,-0.828288018703461,0.560080409049988,0.047338105738163,-0.804747819900513,0.591726362705231,0.0236037615686655,-0.999225914478302,0.0314716808497906,0.047338105738163,-0.804747819900513,0.591726362705231,0.047338105738163,-0.804747819900513,0.591726362705231,-0.015776913613081,-0.828288018703461,0.560080409049988,0.062906377017498,-0.982912182807922,0.172992557287216,0.0236037615686655,-0.999225914478302,0.0314716808497906,0.047338105738163,-0.804747819900513,0.591726362705231,0.047338105738163,-0.804747819900513,0.591726362705231,0.047338105738163,-0.804747819900513,0.591726362705231,0.047338105738163,-0.804747819900513,0.591726362705231,0.0236037615686655,-0.999225914478302,0.0314716808497906,0.062906377017498,-0.982912182807922,0.172992557287216,0.0551095679402351,-0.810897946357727,-0.582586884498596,0.0551095679402351,-0.810897946357727,-0.582586884498596,0.0236037615686655,-0.999225914478302,0.0314716808497906,0.0551095679402351,-0.810897946357727,-0.582586884498596,-0.0236889682710171,-0.805424928665161,-0.59222424030304,0.0236037615686655,-0.999225914478302,0.0314716808497906,0.0551095679402351,-0.810897946357727,-0.582586884498596,-0.0708266273140907,-0.826310694217682,-0.558743417263031,
- 0.0236037615686655,-0.999225914478302,0.0314716808497906,-0.0236889682710171,-0.805424928665161,-0.59222424030304,0.0236037615686655,-0.999225914478302,0.0314716808497906,-0.0708266273140907,-0.826310694217682,-0.558743417263031,-0.102629795670509,-0.994719624519348,-2.20872126037574e-016,-0.0236889682710171,-0.805424928665161,-0.59222424030304,-0.134317070245743,-0.60837733745575,0.782199442386627,-0.0708266273140907,-0.826310694217682,-0.558743417263031,-0.134317070245743,-0.60837733745575,0.782199442386627,-0.102629795670509,-0.994719624519348,-2.20872126037574e-016,-0.0708266273140907,-0.826310694217682,-0.558743417263031,-0.102629795670509,-0.994719624519348,-2.20872126037574e-016,-0.134317070245743,-0.60837733745575,0.782199442386627,-0.999721229076386,-0.023615462705493,-5.243686086563e-018,-0.134317070245743,-0.60837733745575,0.782199442386627,-0.0236889682710171,-0.805424928665161,-0.59222424030304,0.0314736291766167,-0.550788521766663,0.834051191806793,0.0235913544893265,-0.306687593460083,0.951517939567566,-0.134317070245743,-0.60837733745575,0.782199442386627,0.0314736291766167,-0.550788521766663,0.834051191806793,0.0235913544893265,-0.306687593460083,0.951517939567566,-0.0314483270049095,-0.306621193885803,0.951311945915222,-0.134317070245743,-0.60837733745575,0.782199442386627,0,0.784681856632233,0.619898676872253,-0.0314483270049095,-0.306621193885803,0.951311945915222,0.0235913544893265,-0.306687593460083,0.951517939567566,0,0.791457295417786,0.611224472522736,-0.134317070245743,-0.60837733745575,0.782199442386627,-0.0314483270049095,-0.306621193885803,0.951311945915222,0,0.784681856632233,0.619898676872253,0,0.791457295417786,0.611224472522736,-0.0314483270049095,-0.306621193885803,0.951311945915222,0,0.791457295417786,0.611224472522736,0.00785431824624538,0.824703454971313,0.565510869026184,-0.986671268939972,0.149974033236504,0.0631469637155533,0,0.791457295417786,0.611224472522736,0.0316099375486374,0.837663352489471,0.545271396636963,0.00785431824624538,0.824703454971313,0.565510869026184,0.0316099375486374,0.837663352489471,0.545271396636963,
- 0,0.791457295417786,0.611224472522736,0,0.784681856632233,0.619898676872253,0,0.784681856632233,0.619898676872253,-0.0157675947993994,0.812031149864197,0.583401083946228,0.0316099375486374,0.837663352489471,0.545271396636963,0.0316099375486374,0.837663352489471,0.545271396636963,-0.0157675947993994,0.812031149864197,0.583401083946228,-0.0157675947993994,0.812031149864197,0.583401083946228,0.0316099375486374,0.837663352489471,0.545271396636963,-0.0157675947993994,0.812031149864197,0.583401083946228,-0.0157426651567221,0.83436131477356,0.550993263721466,0.00787206459790468,0.834438860416412,0.551044464111328,0.0709255263209343,0.898390054702759,-0.433433800935745,0.00787279568612576,0.889625906944275,-0.456622123718262,0.0709255263209343,0.898390054702759,-0.433433800935745,0.00787206459790468,0.834438860416412,0.551044464111328,0.0393310822546482,0.833818972110748,0.550635099411011,0,0.795250952243805,0.606280446052551,0.0393310822546482,0.833818972110748,0.550635099411011,0.00787206459790468,0.834438860416412,0.551044464111328,0,0.828391134738922,0.560150146484375,0,0.795250952243805,0.606280446052551,0.00787206459790468,0.834438860416412,0.551044464111328,0.00788845680654049,0.867730259895325,-0.496972799301147,0,0.828391134738922,0.560150146484375,0.00787206459790468,0.834438860416412,0.551044464111328,0,0.828391134738922,0.560150146484375,0.00788845680654049,0.867730259895325,-0.496972799301147,0.0236594825983047,0.867514371871948,-0.496849119663239,-0.0235665887594223,0.864108264446259,-0.502753913402557,-0.102690622210503,0.821524977684021,-0.560848772525787,0,0.828391134738922,0.560150146484375,-0.157202780246735,0.82531464099884,0.542349576950073,0,0.828391134738922,0.560150146484375,-0.102690622210503,0.821524977684021,-0.560848772525787,-0.118179872632027,0.779987096786499,0.614535331726074,0,0.828391134738922,0.560150146484375,-0.157202780246735,0.82531464099884,0.542349576950073,-0.118179872632027,0.779987096786499,0.614535331726074,0,0.795250952243805,0.606280446052551,0,0.828391134738922,0.560150146484375,
- -0.118179872632027,0.779987096786499,0.614535331726074,-0.00784657709300518,-0.313863068819046,0.949435830116272,0,0.795250952243805,0.606280446052551,0.0393310822546482,0.833818972110748,0.550635099411011,0,0.795250952243805,0.606280446052551,0.0631646737456322,0.797453999519348,0.60006445646286,0.0631646737456322,0.797453999519348,0.60006445646286,0,0.795250952243805,0.606280446052551,-0.00784657709300518,-0.313863068819046,0.949435830116272,-0.00784657709300518,-0.313863068819046,0.949435830116272,-0.118179872632027,0.779987096786499,0.614535331726074,0.00790544785559177,-0.31621789932251,0.948653757572174,-0.0157426651567221,-0.83436131477356,-0.550993263721466,0.00790544785559177,-0.31621789932251,0.948653757572174,-0.118179872632027,0.779987096786499,0.614535331726074,0.00790544785559177,-0.31621789932251,0.948653757572174,0.0157426651567221,-0.550993263721466,0.83436131477356,-0.00784657709300518,-0.313863068819046,0.949435830116272,0.0157426651567221,-0.550993263721466,0.83436131477356,0.00790544785559177,-0.31621789932251,0.948653757572174,-0.0157426651567221,-0.83436131477356,-0.550993263721466,0.0631646737456322,0.797453999519348,0.60006445646286,-0.00784657709300518,-0.313863068819046,0.949435830116272,0.00785916950553656,-0.392958462238312,0.919522762298584,-0.00784657709300518,-0.313863068819046,0.949435830116272,0.0157426651567221,-0.550993263721466,0.83436131477356,0.0235390104353428,-0.588475227355957,0.808172643184662,-0.00784657709300518,-0.313863068819046,0.949435830116272,0.0235390104353428,-0.588475227355957,0.808172643184662,0.00785916950553656,-0.392958462238312,0.919522762298584,0.0631646737456322,0.797453999519348,0.60006445646286,0.00785916950553656,-0.392958462238312,0.919522762298584,0.362384527921677,-0.362384527921677,0.858693718910217,0.00785916950553656,-0.392958462238312,0.919522762298584,0.0235390104353428,-0.588475227355957,0.808172643184662,0.362384527921677,-0.362384527921677,0.858693718910217,0.0631646737456322,0.797453999519348,0.60006445646286,0.362384527921677,-0.362384527921677,0.858693718910217,
- 0.99771386384964,0.054992102086544,0.0392800718545914,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.0235390104353428,-0.588475227355957,0.808172643184662,0.023615462705493,-0.999721229076386,-2.21982705345433e-016,0.997529208660126,-0.0628364831209183,-0.0314182415604591,0.99771386384964,0.054992102086544,0.0392800718545914,0.999876022338867,-3.49633197622281e-018,0.0157460793852806,0.99771386384964,0.054992102086544,0.0392800718545914,0.997529208660126,-0.0628364831209183,-0.0314182415604591,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.99771386384964,0.054992102086544,0.0392800718545914,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.996914327144623,0.0784971937537193,1.74298783747682e-017,0.023615462705493,-0.999721229076386,-2.21982705345433e-016,0.0235390104353428,-0.588475227355957,0.808172643184662,0.0157887078821659,-0.781541049480438,-0.623654007911682,0.0157887078821659,-0.781541049480438,-0.623654007911682,-0.0314794778823853,-0.999473392963409,0.00786986947059631,0.023615462705493,-0.999721229076386,-2.21982705345433e-016,0.0946644246578217,0.828313767910004,0.552209138870239,0.99771386384964,0.054992102086544,0.0392800718545914,0.996914327144623,0.0784971937537193,1.74298783747682e-017,0.99771386384964,0.054992102086544,0.0392800718545914,0.0946644246578217,0.828313767910004,0.552209138870239,0.0631646737456322,0.797453999519348,0.60006445646286,0.0946644246578217,0.828313767910004,-0.552209138870239,0.0946644246578217,0.828313767910004,0.552209138870239,0.996914327144623,0.0784971937537193,1.74298783747682e-017,0.0393310822546482,0.833818972110748,0.550635099411011,0.0631646737456322,0.797453999519348,0.60006445646286,0.0946644246578217,0.828313767910004,0.552209138870239,0.0946644246578217,0.828313767910004,0.552209138870239,-0.00787084549665451,0.905147194862366,-0.425025671720505,0.0393310822546482,0.833818972110748,0.550635099411011,-0.00787084549665451,0.905147194862366,-0.425025671720505,0.0946644246578217,0.828313767910004,0.552209138870239,0.0946644246578217,0.828313767910004,-0.552209138870239,
- 0.0157887078821659,-0.781541049480438,-0.623654007911682,0.0235390104353428,-0.588475227355957,0.808172643184662,-0.0393310822546482,-0.833818972110748,-0.550635099411011,-0.0314794778823853,-0.999473392963409,0.00786986947059631,0.0157887078821659,-0.781541049480438,-0.623654007911682,-0.0393310822546482,-0.833818972110748,-0.550635099411011,0.0157426651567221,-0.550993263721466,0.83436131477356,-0.0393310822546482,-0.833818972110748,-0.550635099411011,0.0235390104353428,-0.588475227355957,0.808172643184662,-0.0393310822546482,-0.833818972110748,-0.550635099411011,0.0157426651567221,-0.550993263721466,0.83436131477356,-0.0157426651567221,-0.83436131477356,-0.550993263721466,-0.0314794778823853,-0.999473392963409,0.00786986947059631,-0.0393310822546482,-0.833818972110748,-0.550635099411011,0.078740157186985,-0.803149580955505,-0.590551197528839,-0.0157426651567221,-0.83436131477356,-0.550993263721466,0.078740157186985,-0.803149580955505,-0.590551197528839,-0.0393310822546482,-0.833818972110748,-0.550635099411011,0.078740157186985,-0.803149580955505,-0.590551197528839,0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,-0.0314794778823853,-0.999473392963409,0.00786986947059631,0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,0.078740157186985,-0.803149580955505,-0.590551197528839,-0.0157426651567221,-0.83436131477356,-0.550993263721466,0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,-0.0157426651567221,-0.83436131477356,-0.550993263721466,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.99771386384964,0.054992102086544,-0.0392800718545914,0.997529208660126,-0.0628364831209183,0.0314182415604591,0.999876022338867,3.49633197622281e-018,-0.0157460793852806,0.997529208660126,-0.0628364831209183,0.0314182415604591,0.99771386384964,0.054992102086544,-0.0392800718545914,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.99771386384964,0.054992102086544,-0.0392800718545914,0.996914327144623,0.0784971937537193,1.74298783747682e-017,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,
- 0.996914327144623,0.0784971937537193,1.74298783747682e-017,0.99771386384964,0.054992102086544,-0.0392800718545914,0.0946644246578217,0.828313767910004,-0.552209138870239,0.0631646737456322,0.797453999519348,-0.60006445646286,0.0946644246578217,0.828313767910004,-0.552209138870239,0.99771386384964,0.054992102086544,-0.0392800718545914,0.362384527921677,-0.362384527921677,-0.858693718910217,0.0631646737456322,0.797453999519348,-0.60006445646286,0.99771386384964,0.054992102086544,-0.0392800718545914,0.0946644246578217,0.828313767910004,-0.552209138870239,0.0631646737456322,0.797453999519348,-0.60006445646286,0.0393310822546482,0.833818972110748,-0.550635099411011,0.0631646737456322,0.797453999519348,-0.60006445646286,0.362384527921677,-0.362384527921677,-0.858693718910217,0.00785916950553656,-0.392958462238312,-0.919522762298584,0.0235390104353428,-0.588475227355957,-0.808172643184662,0.00785916950553656,-0.392958462238312,-0.919522762298584,0.362384527921677,-0.362384527921677,-0.858693718910217,-0.0078735277056694,0.795226275920868,-0.606261670589447,0.0393310822546482,0.833818972110748,-0.550635099411011,0.0631646737456322,0.797453999519348,-0.60006445646286,0.0393310822546482,0.833818972110748,-0.550635099411011,-0.0078735277056694,0.795226275920868,-0.606261670589447,0.00787206459790468,0.834438860416412,-0.551044464111328,-0.0078735277056694,0.795226275920868,-0.606261670589447,0.00788919348269701,0.828365325927734,-0.560132682323456,0.00787206459790468,0.834438860416412,-0.551044464111328,0.00785916950553656,-0.392958462238312,-0.919522762298584,-0.00784657709300518,-0.313863068819046,-0.949435830116272,0.0631646737456322,0.797453999519348,-0.60006445646286,-0.0078735277056694,0.795226275920868,-0.606261670589447,0.0631646737456322,0.797453999519348,-0.60006445646286,-0.00784657709300518,-0.313863068819046,-0.949435830116272,0.0235390104353428,-0.588475227355957,-0.808172643184662,-0.00784657709300518,-0.313863068819046,-0.949435830116272,0.00785916950553656,-0.392958462238312,-0.919522762298584,-0.118179872632027,0.779987096786499,-0.614535331726074,
- 0.00788919348269701,0.828365325927734,-0.560132682323456,-0.0078735277056694,0.795226275920868,-0.606261670589447,-0.00784657709300518,-0.313863068819046,-0.949435830116272,-0.118179872632027,0.779987096786499,-0.614535331726074,-0.0078735277056694,0.795226275920868,-0.606261670589447,0.00788919348269701,0.828365325927734,-0.560132682323456,-0.118179872632027,0.779987096786499,-0.614535331726074,-0.102690622210503,0.821524977684021,-0.560848772525787,-0.102690622210503,0.821524977684021,-0.560848772525787,-0.118179872632027,0.779987096786499,-0.614535331726074,-0.993605554103851,0.11040061712265,-0.0236572753638029,-0.118179872632027,0.779987096786499,-0.614535331726074,-0.00784657709300518,-0.313863068819046,-0.949435830116272,0.00790544785559177,-0.31621789932251,-0.948653757572174,0.00790544785559177,-0.31621789932251,-0.948653757572174,-0.0157426651567221,-0.83436131477356,0.550993263721466,-0.118179872632027,0.779987096786499,-0.614535331726074,0.0157426651567221,-0.550993263721466,-0.83436131477356,0.00790544785559177,-0.31621789932251,-0.948653757572174,-0.00784657709300518,-0.313863068819046,-0.949435830116272,0.00790544785559177,-0.31621789932251,-0.948653757572174,0.0157426651567221,-0.550993263721466,-0.83436131477356,-0.0157426651567221,-0.83436131477356,0.550993263721466,0.0235390104353428,-0.588475227355957,-0.808172643184662,0.0157426651567221,-0.550993263721466,-0.83436131477356,-0.00784657709300518,-0.313863068819046,-0.949435830116272,-0.0157426651567221,-0.83436131477356,0.550993263721466,0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.0393310822546482,-0.833818972110748,0.550635099411011,0.0157426651567221,-0.550993263721466,-0.83436131477356,0.0235390104353428,-0.588475227355957,-0.808172643184662,0.0157426651567221,-0.550993263721466,-0.83436131477356,-0.0393310822546482,-0.833818972110748,0.550635099411011,-0.0157426651567221,-0.83436131477356,0.550993263721466,-0.0157426651567221,-0.83436131477356,0.550993263721466,
- 0.078740157186985,-0.803149580955505,0.590551197528839,0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,0.078740157186985,-0.803149580955505,0.590551197528839,-0.0157426651567221,-0.83436131477356,0.550993263721466,-0.0393310822546482,-0.833818972110748,0.550635099411011,0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,0.078740157186985,-0.803149580955505,0.590551197528839,-0.0314794778823853,-0.999473392963409,-0.00786986947059631,-0.0393310822546482,-0.833818972110748,0.550635099411011,-0.0314794778823853,-0.999473392963409,-0.00786986947059631,0.078740157186985,-0.803149580955505,0.590551197528839,0.0157887078821659,-0.781541049480438,0.623654007911682,-0.0314794778823853,-0.999473392963409,-0.00786986947059631,-0.0393310822546482,-0.833818972110748,0.550635099411011,0.0235390104353428,-0.588475227355957,-0.808172643184662,0.0157887078821659,-0.781541049480438,0.623654007911682,-0.0393310822546482,-0.833818972110748,0.550635099411011,-0.0314794778823853,-0.999473392963409,-0.00786986947059631,0.0157887078821659,-0.781541049480438,0.623654007911682,0.023615462705493,-0.999721229076386,-2.21982705345433e-016,0.0235390104353428,-0.588475227355957,-0.808172643184662,0.023615462705493,-0.999721229076386,-2.21982705345433e-016,0.0157887078821659,-0.781541049480438,0.623654007911682,0.023615462705493,-0.999721229076386,-2.21982705345433e-016,0.0235390104353428,-0.588475227355957,-0.808172643184662,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,-0.0709167197346687,-0.882519245147705,-0.464898526668549,-0.110431522130966,-0.993883728981018,-2.20686519943007e-016,0.0706801414489746,-0.887428462505341,-0.455494254827499,0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,-0.0709167197346687,-0.882519245147705,-0.464898526668549,0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,0.0706801414489746,-0.887428462505341,-0.455494254827499,0.0706801414489746,-0.887428462505341,-0.455494254827499,
- -0.0235571414232254,-0.56537139415741,0.824500024318695,-0.0709167197346687,-0.882519245147705,-0.464898526668549,-0.0235571414232254,-0.56537139415741,0.824500024318695,0.0706801414489746,-0.887428462505341,-0.455494254827499,0.0314027518033981,-0.565249443054199,0.82432222366333,0.0706801414489746,-0.887428462505341,-0.455494254827499,0.995464503765106,0.0711046010255814,0.0632040947675705,0.0314027518033981,-0.565249443054199,0.82432222366333,-0.0235571414232254,-0.56537139415741,0.824500024318695,-0.0236808490008116,-0.363106369972229,0.931446731090546,-0.0709167197346687,-0.882519245147705,-0.464898526668549,-0.0709167197346687,-0.882519245147705,-0.464898526668549,-0.0236808490008116,-0.363106369972229,0.931446731090546,-0.0236323066055775,0.858640432357788,0.51203328371048,0.0313843823969364,-0.376612573862076,0.925839185714722,-0.0235571414232254,-0.56537139415741,0.824500024318695,0.0314027518033981,-0.565249443054199,0.82432222366333,0.0313843823969364,-0.376612573862076,0.925839185714722,-0.0236808490008116,-0.363106369972229,0.931446731090546,-0.0235571414232254,-0.56537139415741,0.824500024318695,0.0314027518033981,-0.565249443054199,0.82432222366333,0.995464503765106,0.0711046010255814,0.0632040947675705,0.0313843823969364,-0.376612573862076,0.925839185714722,0.0236323066055775,0.858640432357788,0.51203328371048,-0.0236808490008116,-0.363106369972229,0.931446731090546,0.0313843823969364,-0.376612573862076,0.925839185714722,0.995464503765106,0.0711046010255814,0.0632040947675705,0.0236323066055775,0.858640432357788,0.51203328371048,0.0313843823969364,-0.376612573862076,0.925839185714722,0.0236323066055775,0.858640432357788,0.51203328371048,-0.0236323066055775,0.858640432357788,0.51203328371048,-0.0236808490008116,-0.363106369972229,0.931446731090546,0.0236323066055775,0.858640432357788,0.51203328371048,0.995464503765106,0.0711046010255814,0.0632040947675705,0.0551968775689602,0.906805813312531,0.417919218540192,-0.0236323066055775,0.858640432357788,0.51203328371048,0.0236323066055775,0.858640432357788,0.51203328371048,
- 0.0551968775689602,0.906805813312531,0.417919218540192,0.0551968775689602,0.906805813312531,0.417919218540192,0.995464503765106,0.0711046010255814,0.0632040947675705,0.998453617095947,0.0550328753888607,-0.00786183960735798,-0.0236323066055775,0.858640432357788,0.51203328371048,0.0551968775689602,0.906805813312531,0.417919218540192,-0.0157970786094666,0.884636402130127,0.466013818979263,-0.996147394180298,0.0862804874777794,0.0156873594969511,-0.0236323066055775,0.858640432357788,0.51203328371048,-0.0157970786094666,0.884636402130127,0.466013818979263,0.0551968775689602,0.906805813312531,0.417919218540192,-0.0235913544893265,0.951517939567566,-0.306687593460083,-0.0157970786094666,0.884636402130127,0.466013818979263,-0.0709167197346687,-0.882519245147705,0.464898526668549,0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,-0.110431522130966,-0.993883728981018,-2.20686519943007e-016,0.071175716817379,-0.885742247104645,0.458687961101532,0.997498512268066,-0.0706888660788536,-1.56960813410775e-017,0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,0.0157460793852806,-0.999876022338867,-2.22017076354246e-016,-0.0709167197346687,-0.882519245147705,0.464898526668549,0.071175716817379,-0.885742247104645,0.458687961101532,-0.0235571414232254,-0.56537139415741,-0.824500024318695,0.071175716817379,-0.885742247104645,0.458687961101532,-0.0709167197346687,-0.882519245147705,0.464898526668549,0.071175716817379,-0.885742247104645,0.458687961101532,-0.0235571414232254,-0.56537139415741,-0.824500024318695,0.0314027518033981,-0.565249443054199,-0.82432222366333,0.992402911186218,0.0945145636796951,-0.0787621363997459,0.071175716817379,-0.885742247104645,0.458687961101532,0.0314027518033981,-0.565249443054199,-0.82432222366333,-0.0236808490008116,-0.363106369972229,-0.931446731090546,-0.0235571414232254,-0.56537139415741,-0.824500024318695,-0.0709167197346687,-0.882519245147705,0.464898526668549,-0.0236808490008116,-0.363106369972229,-0.931446731090546,-0.0709167197346687,-0.882519245147705,0.464898526668549,-0.0236323066055775,0.858640432357788,-0.51203328371048,
- -0.0235571414232254,-0.56537139415741,-0.824500024318695,0.0313843823969364,-0.376612573862076,-0.925839185714722,0.0314027518033981,-0.565249443054199,-0.82432222366333,0.0313843823969364,-0.376612573862076,-0.925839185714722,-0.0235571414232254,-0.56537139415741,-0.824500024318695,-0.0236808490008116,-0.363106369972229,-0.931446731090546,0.0314027518033981,-0.565249443054199,-0.82432222366333,0.0313843823969364,-0.376612573862076,-0.925839185714722,0.992402911186218,0.0945145636796951,-0.0787621363997459,0.0313843823969364,-0.376612573862076,-0.925839185714722,-0.0236808490008116,-0.363106369972229,-0.931446731090546,0.039367638528347,0.858214497566223,-0.511779308319092,0.039367638528347,0.858214497566223,-0.511779308319092,0.992402911186218,0.0945145636796951,-0.0787621363997459,0.0313843823969364,-0.376612573862076,-0.925839185714722,-0.0236323066055775,0.858640432357788,-0.51203328371048,0.039367638528347,0.858214497566223,-0.511779308319092,-0.0236808490008116,-0.363106369972229,-0.931446731090546,0.039367638528347,0.858214497566223,-0.511779308319092,0.0630703791975975,0.882985353469849,-0.465144068002701,0.992402911186218,0.0945145636796951,-0.0787621363997459,-0.0236323066055775,0.858640432357788,-0.51203328371048,0.0630703791975975,0.882985353469849,-0.465144068002701,0.039367638528347,0.858214497566223,-0.511779308319092,0.992402911186218,0.0945145636796951,-0.0787621363997459,0.0630703791975975,0.882985353469849,-0.465144068002701,0.998453617095947,0.0550328753888607,-0.00786183960735798,0.0630703791975975,0.882985353469849,-0.465144068002701,-0.0236323066055775,0.858640432357788,-0.51203328371048,-0.0473440103232861,0.883754789829254,-0.465549409389496,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.998731434345245,-0.039320133626461,0.031456109136343,-0.998731434345245,0.039320133626461,0.031456109136343,-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.999690115451813,0.023614726960659,-0.00787157565355301,0,-0.0784971937537193,-0.996914327144623,0,0.0393396019935608,-0.999225914478302,0,2.22044604925031e-016,-1,0,0.0393396019935608,-0.999225914478302,0,-0.0784971937537193,-0.996914327144623,-0.00785819720476866,-0.0628655776381493,-0.99799108505249,0.00785819720476866,0.0628655776381493,-0.99799108505249,0,0.0393396019935608,-0.999225914478302,-0.00785819720476866,-0.0628655776381493,-0.99799108505249,0.125735059380531,-0.282903850078583,-0.950871348381042,0.00785819720476866,0.0628655776381493,-0.99799108505249,-0.00785819720476866,-0.0628655776381493,-0.99799108505249,0.00785819720476866,0.0628655776381493,-0.99799108505249,0.125735059380531,-0.282903850078583,-0.950871348381042,0.0157149396836758,-0.0628597587347031,-0.997898638248444,0.00785819720476866,0.0628655776381493,-0.99799108505249,0,0.999876022338867,-0.0157460793852806,0,0.0393396019935608,-0.999225914478302,0.00785819720476866,0.0628655776381493,-0.99799108505249,0.0157149396836758,-0.0628597587347031,-0.997898638248444,0,-0.0784971937537193,-0.996914327144623,0,0.999876022338867,-0.0157460793852806,0.00785819720476866,0.0628655776381493,-0.99799108505249,0.0157441273331642,0.999752104282379,-0.0157441273331642,0.0157441273331642,0.999752104282379,-0.0157441273331642,0,0.999969005584717,-0.00787377171218395,0,0.999876022338867,-0.0157460793852806,0.0236359722912312,0.118179865181446,-0.992710888385773,0.00785819720476866,0.0628655776381493,-0.99799108505249,0,-0.0784971937537193,-0.996914327144623,0.0236359722912312,0.118179865181446,-0.992710888385773,0.0157441273331642,0.999752104282379,-0.0157441273331642,0.00785819720476866,0.0628655776381493,-0.99799108505249,0.0236359722912312,0.118179865181446,-0.992710888385773,0,-0.0784971937537193,-0.996914327144623,0.0549260377883911,-0.0627726167440414,-0.996515274047852,-0.0631666406989098,-0.0789583027362823,-0.994874656200409,0.0236359722912312,0.118179865181446,-0.992710888385773,0.0549260377883911,-0.0627726167440414,-0.996515274047852,
- -0.0470736660063267,-0.0706104934215546,-0.996392607688904,0.0236359722912312,0.118179865181446,-0.992710888385773,-0.0631666406989098,-0.0789583027362823,-0.994874656200409,-0.0470736660063267,-0.0706104934215546,-0.996392607688904,-0.00786499958485365,0.047189999371767,-0.998854994773865,0.0236359722912312,0.118179865181446,-0.992710888385773,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.00786499958485365,0.047189999371767,-0.998854994773865,-0.0470736660063267,-0.0706104934215546,-0.996392607688904,-0.00786499958485365,0.047189999371767,-0.998854994773865,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.0157382767647505,0.999380588531494,-0.031476553529501,0.0236359722912312,0.118179865181446,-0.992710888385773,-0.00786499958485365,0.047189999371767,-0.998854994773865,-0.0157382767647505,0.999380588531494,-0.031476553529501,-0.00786499958485365,0.047189999371767,-0.998854994773865,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.0157382767647505,0.999380588531494,-0.031476553529501,0.0157441273331642,0.999752104282379,-0.0157441273331642,0.0236359722912312,0.118179865181446,-0.992710888385773,-0.0157382767647505,0.999380588531494,-0.031476553529501,-0.999690115451813,0.023614726960659,-0.00787157565355301,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.0157382767647505,0.999380588531494,0.031476553529501,-0.0157382767647505,0.999380588531494,-0.031476553529501,-0.0157382767647505,0.999380588531494,0.031476553529501,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.998731434345245,0.039320133626461,0.031456109136343,-0.0157382767647505,0.999380588531494,-0.031476553529501,-0.0157382767647505,0.999380588531494,0.031476553529501,0,0.999504387378693,0.0314804539084435,0.0157441273331642,0.999752104282379,-0.0157441273331642,-0.0157382767647505,0.999380588531494,-0.031476553529501,0,0.999504387378693,0.0314804539084435,-0.0156873594969511,0.0862804874777794,0.996147394180298,
- -0.0157382767647505,0.999380588531494,0.031476553529501,-0.998731434345245,0.039320133626461,0.031456109136343,-0.0157382767647505,0.999380588531494,0.031476553529501,-0.0156873594969511,0.0862804874777794,0.996147394180298,0,0.999504387378693,0.0314804539084435,0.0157441273331642,0.999752104282379,-0.0157441273331642,0,0.999504387378693,0.0314804539084435,0.0236088801175356,0.999442577362061,0.0236088801175356,-0.998731434345245,0.039320133626461,0.031456109136343,-0.0156873594969511,-0.0862804874777794,0.996147394180298,-0.0156873594969511,0.0862804874777794,0.996147394180298,-0.0156873594969511,-0.0862804874777794,0.996147394180298,-0.998731434345245,0.039320133626461,0.031456109136343,-0.998731434345245,-0.039320133626461,0.031456109136343,0.0157441273331642,0.999752104282379,-0.0157441273331642,0.0236088801175356,0.999442577362061,0.0236088801175356,-0.023614726960659,0.999690115451813,0.00787157565355301,-0.023614726960659,0.999690115451813,0.00787157565355301,0,0.999969005584717,-0.00787377171218395,0.0157441273331642,0.999752104282379,-0.0157441273331642,0,0.999504387378693,0.0314804539084435,0,0.0706888660788536,0.997498512268066,0.0236088801175356,0.999442577362061,0.0236088801175356,-0.023614726960659,0.999690115451813,0.00787157565355301,0.0236088801175356,0.999442577362061,0.0236088801175356,0,0.0706888660788536,0.997498512268066,0,0.0706888660788536,0.997498512268066,0,0.999504387378693,0.0314804539084435,-0.0156873594969511,0.0862804874777794,0.996147394180298,0,0.999969005584717,-0.00787377171218395,-0.023614726960659,0.999690115451813,0.00787157565355301,0,0.999876022338867,0.0157460793852806,0,0.999969005584717,-0.00787377171218395,0,0.999876022338867,0.0157460793852806,0,1,2.22044604925031e-016,0,0.0706888660788536,0.997498512268066,0,0.999876022338867,0.0157460793852806,-0.023614726960659,0.999690115451813,0.00787157565355301,0,0.999876022338867,0.0157460793852806,0,0.0706888660788536,0.997498512268066,0,0.047191459685564,0.998885869979858,0,0.0706888660788536,0.997498512268066,-0.0156873594969511,0.0862804874777794,0.996147394180298,
- 0.00790618918836117,-0.0869680792093277,0.996179819107056,0.00790618918836117,-0.0869680792093277,0.996179819107056,0,0.047191459685564,0.998885869979858,0,0.0706888660788536,0.997498512268066,0,0.047191459685564,0.998885869979858,0.00790618918836117,-0.0869680792093277,0.996179819107056,0,0.0157460793852806,0.999876022338867,-0.0156873594969511,-0.0862804874777794,0.996147394180298,0.00790618918836117,-0.0869680792093277,0.996179819107056,-0.0156873594969511,0.0862804874777794,0.996147394180298,0.00790618918836117,-0.0869680792093277,0.996179819107056,-0.0156873594969511,-0.0862804874777794,0.996147394180298,0.0236088801175356,-0.999442577362061,0.0236088801175356,0.0236088801175356,-0.999442577362061,0.0236088801175356,0,-0.999721229076386,0.023615462705493,0.00790618918836117,-0.0869680792093277,0.996179819107056,0,-0.999721229076386,0.023615462705493,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-0.999969005584717,0.00787377171218395,0,-0.999721229076386,0.023615462705493,0.0236088801175356,-0.999442577362061,0.0236088801175356,-0.0157441273331642,-0.999752104282379,0.0157441273331642,-0.0156873594969511,-0.0862804874777794,0.996147394180298,-0.998731434345245,-0.039320133626461,0.031456109136343,-0.0157441273331642,-0.999752104282379,0.0157441273331642,0.0236088801175356,-0.999442577362061,0.0236088801175356,-0.0156873594969511,-0.0862804874777794,0.996147394180298,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.0157441273331642,-0.999752104282379,0.0157441273331642,-0.998731434345245,-0.039320133626461,0.031456109136343,-0.0157416891306639,-0.999597251415253,-0.0236125327646732,-0.0157441273331642,-0.999752104282379,0.0157441273331642,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.998854994773865,-0.047189999371767,-0.00786499958485365,-0.0470736660063267,-0.0706104934215546,-0.996392607688904,-0.0157416891306639,-0.999597251415253,-0.0236125327646732,-0.0470736660063267,-0.0706104934215546,-0.996392607688904,-0.0236808490008116,-0.26838293671608,-0.963021218776703,
- -0.0157416891306639,-0.999597251415253,-0.0236125327646732,-0.0157441273331642,-0.999752104282379,0.0157441273331642,-0.0157416891306639,-0.999597251415253,-0.0236125327646732,-0.00787279661744833,-0.999845147132874,-0.0157455932348967,-0.00787279661744833,-0.999845147132874,-0.0157455932348967,-0.0157416891306639,-0.999597251415253,-0.0236125327646732,-0.0236808490008116,-0.26838293671608,-0.963021218776703,-0.00787279661744833,-0.999845147132874,-0.0157455932348967,0.0236088801175356,-0.999442577362061,0.0236088801175356,-0.0157441273331642,-0.999752104282379,0.0157441273331642,-0.00787279661744833,-0.999845147132874,-0.0157455932348967,-0.0236808490008116,-0.26838293671608,-0.963021218776703,0.0630175322294235,-0.204806983470917,-0.976771771907806,-0.00787279661744833,-0.999845147132874,-0.0157455932348967,0.0630175322294235,-0.204806983470917,-0.976771771907806,0,-0.0784971937537193,-0.996914327144623,0,-0.0784971937537193,-0.996914327144623,0.0393383838236332,-0.999194979667664,-0.00786767713725567,-0.00787279661744833,-0.999845147132874,-0.0157455932348967,0.0236088801175356,-0.999442577362061,0.0236088801175356,-0.00787279661744833,-0.999845147132874,-0.0157455932348967,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0,-0.0784971937537193,-0.996914327144623,0.015776913613081,-0.165657594799995,-0.986057102680206,0.173072829842567,-0.983368337154388,-0.0550686232745647,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.015776913613081,-0.165657594799995,-0.986057102680206,0.0236088801175356,-0.999442577362061,0.0236088801175356,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.173072829842567,-0.983368337154388,-0.0550686232745647,0.0236088801175356,-0.999442577362061,0.0236088801175356,0.173072829842567,-0.983368337154388,-0.0550686232745647,-0.0157455932348967,-0.999845147132874,-0.00787279661744833,-0.0157455932348967,-0.999845147132874,-0.00787279661744833,0,-0.999969005584717,0.00787377171218395,0.0236088801175356,-0.999442577362061,0.0236088801175356,
- -0.0157455932348967,-0.999845147132874,-0.00787279661744833,0.173072829842567,-0.983368337154388,-0.0550686232745647,-0.00785819720476866,-0.0628655776381493,-0.99799108505249,0,-0.999969005584717,0.00787377171218395,-0.0157455932348967,-0.999845147132874,-0.00787279661744833,0,-0.999969005584717,0.00787377171218395,-0.00785819720476866,-0.0628655776381493,-0.99799108505249,0,-0.0784971937537193,-0.996914327144623,-0.0157455932348967,-0.999845147132874,-0.00787279661744833,0,-0.999969005584717,0.00787377171218395,-0.0157455932348967,-0.999845147132874,-0.00787279661744833,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,-0.0157455932348967,-0.999845147132874,-0.00787279661744833,0,-0.0784971937537193,-0.996914327144623,0.75609302520752,0.504062056541443,-0.417426377534866,0.827670156955719,0.275890052318573,-0.488719522953033,0.75609302520752,0.504062056541443,-0.417426377534866,0.827670156955719,0.275890052318573,-0.488719522953033,0.75609302520752,0.504062056541443,-0.417426377534866,0.84054172039032,0.471331804990768,-0.267087996006012,0.827670156955719,0.275890052318573,-0.488719522953033,0.84054172039032,0.471331804990768,-0.267087996006012,0.922117829322815,0.212796419858933,-0.323135316371918,0.922117829322815,0.212796419858933,-0.323135316371918,0.839480400085449,-0.0470736660063267,-0.541347146034241,0.827670156955719,0.275890052318573,-0.488719522953033,0.839480400085449,-0.0470736660063267,-0.541347146034241,0.922117829322815,0.212796419858933,-0.323135316371918,0.839480400085449,-0.0470736660063267,-0.541347146034241,0.839480400085449,-0.0470736660063267,-0.541347146034241,0.922117829322815,0.212796419858933,-0.323135316371918,0.903441667556763,-0.102128185331821,-0.416368782520294,0.922117829322815,0.212796419858933,-0.323135316371918,0.84054172039032,0.471331804990768,-0.267087996006012,0.994224011898041,0.0631253346800804,0.0867973417043686,0.994224011898041,0.0631253346800804,0.0867973417043686,0.903441667556763,-0.102128185331821,-0.416368782520294,0.922117829322815,0.212796419858933,-0.323135316371918,
- 0.903441667556763,-0.102128185331821,-0.416368782520294,0.994224011898041,0.0631253346800804,0.0867973417043686,0.977317631244659,-0.149750277400017,-0.149750277400017,0.994224011898041,0.0631253346800804,0.0867973417043686,0.84054172039032,0.471331804990768,-0.267087996006012,0.923754572868347,0.378976255655289,0.0552673675119877,0.923754572868347,0.378976255655289,0.0552673675119877,0.924706161022186,0.25291109085083,0.284524977207184,0.994224011898041,0.0631253346800804,0.0867973417043686,0.924706161022186,0.25291109085083,0.284524977207184,0.923754572868347,0.378976255655289,0.0552673675119877,0.891478955745697,0.370792120695114,0.26034340262413,0.924706161022186,0.25291109085083,0.284524977207184,0.891478955745697,0.370792120695114,0.26034340262413,0.891478955745697,0.370792120695114,0.26034340262413,0.924706161022186,0.25291109085083,0.284524977207184,0.946173369884491,0.0157695561647415,0.32327589392662,0.994224011898041,0.0631253346800804,0.0867973417043686,0.946173369884491,0.0157695561647415,0.32327589392662,0.924706161022186,0.25291109085083,0.284524977207184,0.94602632522583,0.0236506573855877,0.323225647211075,0.496417075395584,0.346704006195068,0.795843243598938,0.496417075395584,0.346704006195068,0.795843243598938,0.496417075395584,0.346704006195068,0.795843243598938,0.567721664905548,-0.662341952323914,-0.488871455192566,0.567721664905548,-0.662341952323914,-0.488871455192566,0.567721664905548,-0.662341952323914,-0.488871455192566,-0.252595722675323,0.876191437244415,-0.41046804189682,-0.252595722675323,0.876191437244415,-0.41046804189682,-0.252595722675323,0.876191437244415,-0.41046804189682,-0.355157405138016,-0.60771381855011,0.710314810276031,-0.355157405138016,-0.60771381855011,0.710314810276031,-0.355157405138016,-0.60771381855011,0.710314810276031,0.721374571323395,-0.188184678554535,0.666487336158752,0.721374571323395,-0.188184678554535,0.666487336158752,0.721374571323395,-0.188184678554535,0.666487336158752,-0.537100672721863,-0.584491908550262,0.608187556266785,-0.537100672721863,-0.584491908550262,0.608187556266785,
- -0.537100672721863,-0.584491908550262,0.608187556266785,0.913499116897583,-0.102374896407127,-0.393749624490738,0.913499116897583,-0.102374896407127,-0.393749624490738,0.913499116897583,-0.102374896407127,-0.393749624490738,0.24518384039402,-0.87791633605957,-0.41127610206604,0.24518384039402,-0.87791633605957,-0.41127610206604,0.24518384039402,-0.87791633605957,-0.41127610206604,0.34627428650856,0.605979979038239,0.716158151626587,0.34627428650856,0.605979979038239,0.716158151626587,0.34627428650856,0.605979979038239,0.716158151626587,-0.706126749515533,0.188300460577011,0.682589173316956,-0.706126749515533,0.188300460577011,0.682589173316956,-0.706126749515533,0.188300460577011,0.682589173316956,-0.630468785762787,-0.512255907058716,-0.583183646202087,-0.630468785762787,-0.512255907058716,-0.583183646202087,-0.630468785762787,-0.512255907058716,-0.583183646202087,-0.550907969474792,-0.299064338207245,0.779141306877136,-0.550907969474792,-0.299064338207245,0.779141306877136,-0.550907969474792,-0.299064338207245,0.779141306877136,-0.644392073154449,0.589383006095886,-0.487223297357559,-0.644392073154449,0.589383006095886,-0.487223297357559,-0.644392073154449,0.589383006095886,-0.487223297357559,0.605380356311798,-0.534621596336365,-0.589656174182892,0.605380356311798,-0.534621596336365,-0.589656174182892,0.605380356311798,-0.534621596336365,-0.589656174182892,-0.930172502994537,-0.0945938155055046,0.354726821184158,-0.930172502994537,-0.0945938155055046,0.354726821184158,-0.930172502994537,-0.0945938155055046,0.354726821184158,-0.315420538187027,-0.859520971775055,0.402161180973053,-0.315420538187027,-0.859520971775055,0.402161180973053,-0.315420538187027,-0.859520971775055,0.402161180973053,-0.431867629289627,0.588910400867462,-0.68313604593277,-0.431867629289627,0.588910400867462,-0.68313604593277,-0.431867629289627,0.588910400867462,-0.68313604593277,0.795546889305115,0.165410742163658,-0.582875967025757,0.795546889305115,0.165410742163658,-0.582875967025757,0.795546889305115,0.165410742163658,-0.582875967025757,
- 0.726122200489044,-0.457772701978683,0.513021111488342,0.726122200489044,-0.457772701978683,0.513021111488342,0.726122200489044,-0.457772701978683,0.513021111488342,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.999225914478302,8.73514638256818e-018,-0.0393396019935608,0.999225914478302,8.73514638256818e-018,-0.0393396019935608,0.999225914478302,8.73514638256818e-018,-0.0393396019935608,0.999225914478302,8.73514638256818e-018,-0.0393396019935608,0.999225914478302,8.73514638256818e-018,-0.0393396019935608,0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0078735277056694,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.999938011169434,0.0078735277056694,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.999845147132874,-0.0157455932348967,-0.00787279661744833,0.999845147132874,-0.0157455932348967,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,
- 0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.00787377171218395,0.999969005584717,0,-0.0157460793852806,-0.999876022338867,0,-0.0157460793852806,-0.999876022338867,0,-0.0157460793852806,-0.999876022338867,0,-0.0157460793852806,-0.999876022338867,0,-0.0157460793852806,-0.999876022338867,0,-0.0157460793852806,-0.999876022338867,0,-0.0157460793852806,-0.999876022338867,0,-0.0157460793852806,-0.999876022338867,0,-0.0157460793852806,-0.999876022338867,-0.00786767713725567,0.999194979667664,0.0393383838236332,-0.00786767713725567,0.999194979667664,0.0393383838236332,-0.00786767713725567,0.999194979667664,0.0393383838236332,-0.00786767713725567,0.999194979667664,0.0393383838236332,-0.00786767713725567,0.999194979667664,0.0393383838236332,-0.00786767713725567,0.999194979667664,0.0393383838236332,-0.00786767713725567,0.999194979667664,0.0393383838236332,-0.00786767713725567,0.999194979667664,0.0393383838236332,-0.00786767713725567,0.999194979667664,0.0393383838236332,0.0157441273331642,-0.999752104282379,-0.0157441273331642,0.0157441273331642,-0.999752104282379,-0.0157441273331642,0.0157441273331642,-0.999752104282379,-0.0157441273331642,0.0157441273331642,-0.999752104282379,-0.0157441273331642,0.0157441273331642,-0.999752104282379,-0.0157441273331642,0.0157441273331642,-0.999752104282379,-0.0157441273331642,0.0157441273331642,-0.999752104282379,-0.0157441273331642,0.0157441273331642,-0.999752104282379,-0.0157441273331642,0.0157441273331642,-0.999752104282379,-0.0157441273331642,0,0.00787377171218395,0.999969005584717,0,0.00787377171218395,0.999969005584717,0,0.00787377171218395,0.999969005584717,0,0.00787377171218395,0.999969005584717,0,0.00787377171218395,0.999969005584717,0,0.00787377171218395,0.999969005584717,0,0.00787377171218395,0.999969005584717,0,0.00787377171218395,0.999969005584717,0,0.00787377171218395,0.999969005584717,-0.0784947723150253,-0.00784947723150253,-0.996883630752563,-0.0784947723150253,-0.00784947723150253,-0.996883630752563,0.00787279661744833,-0.0157455932348967,-0.999845147132874,
- 0.00787279661744833,-0.0157455932348967,-0.999845147132874,0,-0.00787377171218395,-0.999969005584717,-0.0784947723150253,-0.00784947723150253,-0.996883630752563,0,-0.00787377171218395,-0.999969005584717,0.00787279661744833,-0.0157455932348967,-0.999845147132874,0,-0.00787377171218395,-0.999969005584717,0,0.0314804539084435,0.999504387378693,0,0.0314804539084435,0.999504387378693,0,0.0314804539084435,0.999504387378693,0,0.0314804539084435,0.999504387378693,0,0.0314804539084435,0.999504387378693,0,0.0314804539084435,0.999504387378693,0,0.0314804539084435,0.999504387378693,0,0.0314804539084435,0.999504387378693,0,0.0314804539084435,0.999504387378693,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.999969005584717,-0.00787377171218395,0,-0.00787377171218395,-0.999969005584717,0,-0.00787377171218395,-0.999969005584717,0,-0.00787377171218395,-0.999969005584717,0,-0.00787377171218395,-0.999969005584717,0,-0.00787377171218395,-0.999969005584717,0,-0.00787377171218395,-0.999969005584717,0,-0.00787377171218395,-0.999969005584717,0,-0.00787377171218395,-0.999969005584717,0,-0.00787377171218395,-0.999969005584717,-0.0157338920980692,-0.0393347330391407,0.999102234840393,-0.0157338920980692,-0.0393347330391407,0.999102234840393,-0.0157338920980692,-0.0393347330391407,0.999102234840393,-0.0157338920980692,-0.0393347330391407,0.999102234840393,-0.0157338920980692,-0.0393347330391407,0.999102234840393,-0.0157338920980692,-0.0393347330391407,0.999102234840393,-0.0157338920980692,-0.0393347330391407,0.999102234840393,-0.0157338920980692,-0.0393347330391407,0.999102234840393,-0.0157338920980692,-0.0393347330391407,0.999102234840393,0.00786767713725567,-0.999194979667664,-0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.0393383838236332,
- 0.00786767713725567,-0.999194979667664,-0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.0393383838236332,0.00786767713725567,-0.999194979667664,-0.0393383838236332,0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.0314794778823853,-0.00786986947059631,0.999473392963409,0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.0314794778823853,-0.00786986947059631,0.999473392963409,0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.0314794778823853,-0.00786986947059631,0.999473392963409,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,0.999752104282379,0.0157441273331642,0.0157441273331642,0.999752104282379,0.0157441273331642,0.0157441273331642,0.999752104282379,0.0157441273331642,0.0157441273331642,0.999752104282379,0.0157441273331642,0.0157441273331642,0.999752104282379,0.0157441273331642,0.0157441273331642,0.999752104282379,0.0157441273331642,0.0157441273331642,0.999752104282379,0.0157441273331642,0.0157441273331642,
- 0.999752104282379,0.0157441273331642,0.0157441273331642,0.999752104282379,0.0157441273331642,0.0157441273331642,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.999009490013123,0.0314648635685444,0.0314648635685444,-0.999009490013123,0,0.0157460793852806,-0.999876022338867,0,0.0157460793852806,-0.999876022338867,0,0.0157460793852806,-0.999876022338867,0,0.0157460793852806,-0.999876022338867,0,0.0157460793852806,-0.999876022338867,0,0.0157460793852806,-0.999876022338867,0,0.0157460793852806,-0.999876022338867,0,0.0157460793852806,-0.999876022338867,0,0.0157460793852806,-0.999876022338867,0,0.0157460793852806,-0.999876022338867,0,0.0157460793852806,-0.999876022338867,0,0.0157460793852806,-0.999876022338867,-0.00786767713725567,0.999194979667664,-0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.0393383838236332,-0.00786767713725567,0.999194979667664,-0.0393383838236332,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,
- -0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,-0.999225914478302,8.73514638256818e-018,-0.0393396019935608,0.00786767713725567,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0393383838236332,0.00786767713725567,-0.999194979667664,0.0393383838236332,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,0,0.999969005584717,-0.00787377171218395,0,0.00787377171218395,-0.999969005584717,0,0.00787377171218395,-0.999969005584717,0,0.00787377171218395,-0.999969005584717,0,0.00787377171218395,-0.999969005584717,0,0.00787377171218395,-0.999969005584717,0,0.00787377171218395,-0.999969005584717,0,0.00787377171218395,-0.999969005584717,0,0.00787377171218395,-0.999969005584717,0,0.00787377171218395,-0.999969005584717,0,-0.998484432697296,0.0550345741212368,0,-0.998484432697296,0.0550345741212368,0,-0.998484432697296,0.0550345741212368,0,-0.998484432697296,0.0550345741212368,
- 0,-0.998484432697296,0.0550345741212368,0,-0.998484432697296,0.0550345741212368,0,-0.998484432697296,0.0550345741212368,0,-0.998484432697296,0.0550345741212368,0,-0.998484432697296,0.0550345741212368,0,-0.998484432697296,0.0550345741212368,0,-0.998484432697296,0.0550345741212368,0,-0.998484432697296,0.0550345741212368,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.999845147132874,0.00787279661744833,0.0157455932348967,-0.0157338920980692,0.0393347330391407,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.999102234840393,-0.0157338920980692,0.0393347330391407,-0.999102234840393,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,
- 0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,0.999504387378693,-6.99006495096098e-018,0.0314804539084435,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.0157285407185555,-0.998762309551239,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.0471856184303761,0.0157285407185555,-0.998762309551239,-0.0471856184303761,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,1,0,0,-0.999876022338867,0.0157460793852806,3.49633197622281e-018,-0.999876022338867,0.0157460793852806,3.49633197622281e-018,-0.999876022338867,0.0157460793852806,3.49633197622281e-018,-0.999876022338867,0.0157460793852806,3.49633197622281e-018,-0.999876022338867,0.0157460793852806,3.49633197622281e-018,-0.999876022338867,0.0157460793852806,3.49633197622281e-018,-0.999876022338867,0.0157460793852806,3.49633197622281e-018,-0.999876022338867,0.0157460793852806,3.49633197622281e-018,-0.999876022338867,0.0157460793852806,3.49633197622281e-018,-0.999876022338867,0.0157460793852806,3.49633197622281e-018,-0.999876022338867,0.0157460793852806,3.49633197622281e-018,-0.999876022338867,0.0157460793852806,3.49633197622281e-018,0,0.0157460793852806,0.999876022338867,0,0.0157460793852806,0.999876022338867,0,0.0157460793852806,0.999876022338867,
- 0,0.0157460793852806,0.999876022338867,0,0.0157460793852806,0.999876022338867,0,0.0157460793852806,0.999876022338867,0,0.0157460793852806,0.999876022338867,0,0.0157460793852806,0.999876022338867,0,0.0157460793852806,0.999876022338867,0,0.0157460793852806,0.999876022338867,0,0.0157460793852806,0.999876022338867,0,0.0157460793852806,0.999876022338867,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0.0157338920980692,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999102234840393,0.0393347330391407,0.0157338920980692,0.999102234840393,0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,-0.0157338920980692,-0.999102234840393,-0.0393347330391407,0.999721229076386,-0.023615462705493,-5.243686086563e-018,0.999721229076386,-0.023615462705493,-5.243686086563e-018,0.999721229076386,-0.023615462705493,-5.243686086563e-018,0.999721229076386,-0.023615462705493,-5.243686086563e-018,0.999721229076386,-0.023615462705493,-5.243686086563e-018,
- 0.999721229076386,-0.023615462705493,-5.243686086563e-018,0.999721229076386,-0.023615462705493,-5.243686086563e-018,0.999721229076386,-0.023615462705493,-5.243686086563e-018,0.999721229076386,-0.023615462705493,-5.243686086563e-018,0.999721229076386,-0.023615462705493,-5.243686086563e-018,0.999721229076386,-0.023615462705493,-5.243686086563e-018,0.999721229076386,-0.023615462705493,-5.243686086563e-018,0.00786767713725567,0.0393383838236332,0.999194979667664,0.00786767713725567,0.0393383838236332,0.999194979667664,0.00786767713725567,0.0393383838236332,0.999194979667664,0.00786767713725567,0.0393383838236332,0.999194979667664,0.00786767713725567,0.0393383838236332,0.999194979667664,0.00786767713725567,0.0393383838236332,0.999194979667664,0.00786767713725567,0.0393383838236332,0.999194979667664,0.00786767713725567,0.0393383838236332,0.999194979667664,0.00786767713725567,0.0393383838236332,0.999194979667664,0.00786767713725567,0.0393383838236332,0.999194979667664,0.00786767713725567,0.0393383838236332,0.999194979667664,0.00786767713725567,0.0393383838236332,0.999194979667664,7.7499926476321e-009,0,1,3.16456016946631e-009,0,1,6.12288930668115e-009,0,1,2.46985454310789e-008,0,1,-6.53731424549164e-009,0,1,-2.65858624004522e-009,0,1,3.16456016946631e-009,0,1,7.7499926476321e-009,0,1,8.49850856354806e-009,0,-1,3.45616202324095e-009,0,-1,6.34475361138698e-009,0,-1,2.7390823831297e-008,0,-0.999999940395355,-1.03333235301761e-008,0,-1,-4.21941370731815e-009,0,-1,3.45616202324095e-009,0,-1,8.49850856354806e-009,0,-1,0.00063749379478395,-0.000126499580801465,0.999999821186066,0.00063749379478395,-0.000126499580801465,0.999999821186066,0.00063749379478395,-0.000126499566249549,0.999999821186066,-0.000732922344468534,-0.000394992297515273,0.999999701976776,7.18321462045424e-006,-0.000249990465817973,1,0.00063749379478395,-0.000126499566249549,0.999999761581421,0.00063749379478395,-0.000126499566249549,0.999999821186066,0.000637493852991611,-0.000126499580801465,0.999999761581421,-0.000665413506794721,-0.000244722148636356,0.999999821186066,
- -0.000675299786962569,-0.000248358090175316,0.999999761581421,6.12288930668115e-009,0,1,0,0,1,3.16456016946631e-009,0,1,-2.65858624004522e-009,0,1,0,0,1,0,0,1,-0.0202649626880884,0,0.999794721603394,0,0,1,-4.88057994019186e-009,0,1,-0.0222806483507156,0,0.999751687049866,-0.999999940395355,-2.78627809713328e-009,0,-1,-2.78627831917788e-009,0,-1,-2.78627809713328e-009,0,-1,-2.78627831917788e-009,0,-1,-2.78627831917788e-009,0,-0.0127587178722024,0.799681961536407,0.600288331508636,-0.0124362269416451,0.799685120582581,0.600290775299072,-0.0393830016255379,0.799126505851746,0.599871397018433,-0.0393830053508282,0.79912656545639,0.599871456623077,0.0158532746136189,0.799646496772766,0.600261688232422,0.0153710823506117,0.799652576446533,0.600266218185425,-0.0124362269416451,0.799685120582581,0.600290775299072,-0.0127587178722024,0.799681961536407,0.600288331508636,4.29564761361689e-006,0.826258897781372,0.563290596008301,-0.000892989337444305,0.826268136501312,0.563276350498199,0.0532224327325821,0.824520587921143,0.563323318958282,0.0532224364578724,0.824520587921143,0.563323318958282,7.18321462045424e-006,-0.000249990465817973,1,-0.000732922344468534,-0.000394992297515273,0.999999701976776,-0.000675299786962569,-0.000248358090175316,0.999999761581421,-0.000665413506794721,-0.000244722148636356,0.999999821186066,-0.0878239497542381,0.824000477790833,0.559741199016571,-0.0878239423036575,0.824000477790833,0.559741139411926,-0.000892989337444305,0.826268136501312,0.563276350498199,4.29564761361689e-006,0.826258897781372,0.563290596008301,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0.0246051903814077,0.864041090011597,-0.5028195977211,0.0246051885187626,0.864041090011597,-0.502819538116455,0.0246051903814077,0.864041090011597,-0.5028195977211,0.0246051885187626,0.864041090011597,-0.502819538116455,-3.29313962765809e-008,0,-1,-8.16385270496767e-009,0,-1,-4.21941370731815e-009,0,-1,-1.03333235301761e-008,0,-1,0,0,1,6.12288930668115e-009,0,1,3.16456016946631e-009,0,1,0,0,1,0.0479293055832386,0.798827886581421,0.599647223949432,
- 0.0479293055832386,0.798827946186066,0.599647164344788,0.0153710823506117,0.799652576446533,0.600266218185425,0.0158532746136189,0.799646496772766,0.600261688232422,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,-2.10698658520414e-008,0,0.999999940395355,-4.88057994019186e-009,0,1,-2.65858624004522e-009,0,1,-6.53731424549164e-009,0,1,-4.88057994019186e-009,0,1,0,0,1,0,0,1,-2.65858624004522e-009,0,1,0.015370549634099,0.799625635147095,-0.60030210018158,0.0479276962578297,0.798801004886627,-0.599683165550232,0.04792769998312,0.798801004886627,-0.599683165550232,0.0158527549356222,0.799619615077972,-0.600297570228577,-0.0124358050525188,0.799658238887787,-0.600326597690582,0.015370549634099,0.799625635147095,-0.60030210018158,0.0158527549356222,0.799619615077972,-0.600297570228577,-0.0127583025023341,0.799654901027679,-0.600324094295502,-0.0393816977739334,0.799099683761597,-0.599907279014587,-0.0124358050525188,0.799658238887787,-0.600326597690582,-0.0127583025023341,0.799654901027679,-0.600324094295502,-0.0393816977739334,0.799099683761597,-0.599907279014587,0,0,-1,-0.0202649254351854,0,-0.999794721603394,-0.0222806036472321,0,-0.999751687049866,6.34475361138698e-009,0,-1,0,0,-1,0,0,-1,6.34475361138698e-009,0,-1,3.45616202324095e-009,0,-1,0,0,-1,0,0,-1,-4.21941370731815e-009,0,-1,-8.16385270496767e-009,0,-1,0.000665542902424932,0.000244609429500997,-0.999999761581421,0,0,-1,-8.16385270496767e-009,0,-1,0.000675433140713722,0.000248244439717382,-0.999999821186066,0,0,-1,0,0,-1,3.45616202324095e-009,0,-1,-4.21941370731815e-009,0,-1,-1.61529278557282e-005,0.00029329102835618,-1,0.000665542902424932,0.000244609429500997,-0.999999761581421,0.000675433140713722,0.000248244439717382,-0.999999821186066,0.000513534934725612,0.000380849931389093,-0.999999821186066,-0.000713579414878041,0.000178004338522442,-0.999999761581421,-1.61529278557282e-005,0.00029329102835618,-1,0.000513534934725612,0.000380849931389093,-0.999999821186066,-0.000713579298462719,0.000178004309418611,-0.999999701976776,-0.000713579240255058,0.000178004294866696,-0.999999701976776,
- -0.00071357935667038,0.000178004338522442,-0.999999761581421,-0.000713579414878041,0.000178004323970526,-0.999999821186066,-0.000713579298462719,0.000178004309418611,-0.999999701976776,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,-9.90342585716064e-010,0,-1,0,0,-1,0,0,-1,-9.90342585716064e-010,-9.38865639454889e-007,-1,1.3386741670729e-007,0,-1,-9.90342585716064e-010,0,-1,-9.90342585716064e-010,-9.38538278205669e-007,-1,1.33820094561088e-007,-9.38865639454889e-007,-1,1.3386741670729e-007,-9.38538278205669e-007,-1,1.33820094561088e-007,-1.48254298437678e-006,-1,2.12493432627525e-007,-1.48254287068994e-006,-1,2.12493432627525e-007,-1.4825427570031e-006,-1,2.12493404205816e-007,0.0246057603508234,0.86406147480011,0.502784550189972,0.0246057566255331,0.864061415195465,0.502784550189972,0.0246057603508234,0.86406147480011,0.502784550189972,0.0246057566255331,0.864061415195465,0.502784550189972,6.38898927718401e-005,0.826018750667572,-0.563642561435699,-0.0855148956179619,0.823480248451233,-0.560863018035889,-0.0855149030685425,0.823480248451233,-0.560863077640533,0.001095553743653,0.826012432575226,-0.563650786876678,0.0532239973545074,0.8245450258255,-0.563287496566772,6.38898927718401e-005,0.826018750667572,-0.563642561435699,0.001095553743653,0.826012432575226,-0.563650786876678,0.0532239936292171,0.824544906616211,-0.563287436962128,0.667067348957062,0.744644284248352,0.0229356493800879,0.604159772396088,0.721177637577057,-0.338959783315659,0.547227084636688,0.670840203762054,-0.500515699386597,0.326125741004944,0.932870447635651,-0.15295372903347,0.926807224750519,0.279946625232697,-0.250316172838211,0.915381908416748,0.273289620876312,-0.295615762472153,0.352409422397614,0.907585263252258,-0.228246808052063,0.912231743335724,0.0973486080765724,-0.397940337657928,0.954558551311493,-0.0140051087364554,-0.297694236040115,0.833516597747803,0.0815965905785561,-0.546435952186584,0.800853550434113,0.101620592176914,-0.590175211429596,0.926807224750519,0.279946625232697,-0.250316172838211,
- 0.878601372241974,0.310498386621475,-0.36283665895462,0.830301642417908,0.208771750330925,-0.516733467578888,0.915381908416748,0.273289620876312,-0.295615762472153,0.578168630599976,0.612497448921204,0.539043605327606,0.635883450508118,0.676290512084961,0.371864944696426,0.667067348957062,0.744644284248352,0.0229356493800879,0.945851504802704,0.256175756454468,0.199346154928207,0.923903107643127,0.353953570127487,0.145327016711235,0.261581659317017,0.963310182094574,0.060071375221014,0.20142163336277,0.966186881065369,0.160972371697426,0.941619277000427,0.24427255988121,0.231698125600815,0.957351684570313,0.251150727272034,0.142832189798355,0.923903107643127,0.353953570127487,0.145327016711235,0.945851504802704,0.256175756454468,0.199346154928207,0.912231743335724,0.0973486080765724,-0.397940337657928,0.840335309505463,0.487365067005157,0.237301349639893,0.989484071731567,0.0713470652699471,0.125820830464363,0.992804408073425,-0.0697960555553436,0.0973028615117073,0.954558551311493,-0.0140051087364554,-0.297694236040115,0.989484071731567,0.0713470652699471,0.125820830464363,0.667067348957062,0.744644284248352,0.0229356493800879,0.635883450508118,0.676290512084961,0.371864944696426,0.604159772396088,0.721177637577057,-0.338959783315659,0.261581659317017,0.963310182094574,0.060071375221014,0.926807224750519,0.279946625232697,-0.250316172838211,0.326125741004944,0.932870447635651,-0.15295372903347,0.923903107643127,0.353953570127487,0.145327016711235,0.957351684570313,0.251150727272034,0.142832189798355,0.926807224750519,0.279946625232697,-0.250316172838211,0.957351684570313,0.251150727272034,0.142832189798355,0.901381075382233,0.430544078350067,0.0463041961193085,0.878601372241974,0.310498386621475,-0.36283665895462,0.862271666526794,0.331276297569275,0.383071303367615,0.989484071731567,0.0713470652699471,0.125820830464363,0.840335309505463,0.487365067005157,0.237301349639893,0.992804408073425,-0.0697960555553436,0.0973028615117073,0.989484071731567,0.0713470652699471,0.125820830464363,0.862271666526794,0.331276297569275,0.383071303367615,
- 0.37954568862915,0.831422924995422,0.405808836221695,0.175888389348984,0.978545069694519,0.107297815382481,0.635883450508118,0.676290512084961,0.371864944696426,0.578168630599976,0.612497448921204,0.539043605327606,0.604159772396088,0.721177637577057,-0.338959783315659,0.635883450508118,0.676290512084961,0.371864944696426,0.175888389348984,0.978545069694519,0.107297815382481,0.254200667142868,0.943125545978546,-0.214234098792076,0.547227084636688,0.670840203762054,-0.500515699386597,0.604159772396088,0.721177637577057,-0.338959783315659,0.254200667142868,0.943125545978546,-0.214234098792076,0.381012409925461,0.838665425777435,-0.389191329479218,0.926807224750519,0.279946625232697,-0.250316172838211,0.957351684570313,0.251150727272034,0.142832189798355,0.878601372241974,0.310498386621475,-0.36283665895462,0.878601372241974,0.310498386621475,-0.36283665895462,0.912231743335724,0.0973486080765724,-0.397940337657928,0.830301642417908,0.208771750330925,-0.516733467578888,0.830301642417908,0.208771750330925,-0.516733467578888,0.912231743335724,0.0973486080765724,-0.397940337657928,0.800853550434113,0.101620592176914,-0.590175211429596,0.989484071731567,0.0713470652699471,0.125820830464363,0.954558551311493,-0.0140051087364554,-0.297694236040115,0.912231743335724,0.0973486080765724,-0.397940337657928,0.261581659317017,0.963310182094574,0.060071375221014,0.923903107643127,0.353953570127487,0.145327016711235,0.926807224750519,0.279946625232697,-0.250316172838211,0.957351684570313,0.251150727272034,0.142832189798355,0.840335309505463,0.487365067005157,0.237301349639893,0.901381075382233,0.430544078350067,0.0463041961193085,0.862271666526794,0.331276297569275,0.383071303367615,0.840335309505463,0.487365067005157,0.237301349639893,0.957351684570313,0.251150727272034,0.142832189798355,0.941619277000427,0.24427255988121,0.231698125600815,0.901381075382233,0.430544078350067,0.0463041961193085,0.840335309505463,0.487365067005157,0.237301349639893,0.912231743335724,0.0973486080765724,-0.397940337657928,0.878601372241974,0.310498386621475,-0.36283665895462,
- 0.901381075382233,0.430544078350067,0.0463041961193085,0.912231743335724,0.0973486080765724,-0.397940337657928,0.20142163336277,0.966186881065369,0.160972371697426,0.261581659317017,0.963310182094574,0.060071375221014,0.175888389348984,0.978545069694519,0.107297815382481,0.37954568862915,0.831422924995422,0.405808836221695,0.254200667142868,0.943125545978546,-0.214234098792076,0.175888389348984,0.978545069694519,0.107297815382481,0.261581659317017,0.963310182094574,0.060071375221014,0.326125741004944,0.932870447635651,-0.15295372903347,0.381012409925461,0.838665425777435,-0.389191329479218,0.254200667142868,0.943125545978546,-0.214234098792076,0.326125741004944,0.932870447635651,-0.15295372903347,0.352409422397614,0.907585263252258,-0.228246808052063,-0.734794318675995,0.587160468101501,0.339587718248367,-0.73479437828064,0.587160527706146,0.339587777853012,-0.734794318675995,0.587160468101501,0.33958774805069,-0.734794318675995,0.587160527706146,0.339587718248367,-0.734792292118073,0.587148547172546,-0.339612811803818,-0.734792232513428,0.587148547172546,-0.339612782001495,-0.734792292118073,0.587148606777191,-0.339612811803818,-0.734792292118073,0.587148606777191,-0.339612811803818,-0.0222806036472321,0,-0.999751687049866,-0.0202649254351854,0,-0.999794721603394,-0.44618222117424,0,-0.894942164421082,-0.446182161569595,0,-0.894942164421082,-0.728336572647095,-0.685219645500183,0,-0.728336572647095,-0.685219645500183,0,-0.72833651304245,-0.685219585895538,0,-0.72833651304245,-0.685219585895538,0,-0.0202649626880884,0,0.999794721603394,-0.0222806483507156,0,0.999751687049866,-0.446182787418365,0,0.894941866397858,-0.446182787418365,0,0.894941806793213
- }
- NormalsW: *1954 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *5862 {
- a: -0.0145813655108213,0.462958335876465,-0.886260211467743,0.00575198046863079,0.462735772132874,-0.886477589607239,-0.00938044115900993,0.462919592857361,-0.886350691318512,-0.00878175534307957,0.470810145139694,-0.882190883159637,0.0370916910469532,0.471064448356628,-0.881318628787994,-0.0148252844810486,0.470702767372131,-0.882167398929596,-0.00936576910316944,0.463113516569138,0.886249542236328,-0.0145833175629377,0.463020324707031,0.88622772693634,0.0364874117076397,0.463390111923218,0.885402858257294,-0.0138288522139192,0.439066052436829,0.898348391056061,-0.0111705120652914,0.439045876264572,0.898395240306854,0.0077340230345726,0.438813030719757,0.898545145988464,-0.0185846630483866,0.472050428390503,-0.8813756108284,-0.00519348680973053,0.472037494182587,-0.881563186645508,0.00196513719856739,0.471995860338211,-0.881598651409149,-0.00130213983356953,0.430599600076675,-0.902542173862457,0.0236920695751905,0.429841846227646,-0.902593433856964,-0.0169660337269306,0.430937260389328,-0.902222394943237,-0.00180937722325325,0.424086183309555,0.905620098114014,-0.0167081579566002,0.424387186765671,0.905326664447784,0.0233350489288569,0.423364490270615,0.905658900737762,-0.0185828395187855,0.472004145383835,0.881400465965271,0.00196143798530102,0.471949547529221,0.881623446941376,-0.00519034452736378,0.471991121768951,0.881588041782379,0.0281867198646069,0.447464168071747,0.893857598304749,-0.0105314012616873,0.447618007659912,0.894162893295288,-0.0105736497789621,0.447617799043655,0.89416241645813,-0.0107206804677844,0.445084899663925,0.89542418718338,0.0107446629554033,0.444763630628586,0.895583510398865,-0.0105137666687369,0.445082753896713,0.895427703857422,-0.0110259959474206,0.466767132282257,-0.884311497211456,-0.00908837467432022,0.466774821281433,-0.884329497814178,0.0257189013063908,0.466614365577698,-0.884086966514587,0.00293451873585582,0.455471217632294,-0.890245676040649,-0.00993390753865242,0.455583214759827,-0.890137791633606,-0.0107619185000658,0.455587834119797,-0.890125751495361,
- 0.0393083617091179,-0.000794388761278242,0.999226868152618,0.0472035780549049,-0.000772280560340732,0.998885035514832,0.996210992336273,0.00267204968258739,0.0869283825159073,0.996211767196655,0.00171531352680177,0.0869436413049698,0.0474202893674374,-0.0148965315893292,0.998763978481293,0.997489929199219,0.00196258979849517,0.070780985057354,0.997484564781189,0.00290922098793089,0.0708253234624863,0.99748283624649,0.00458734016865492,-0.0707599967718124,0.996210932731628,0.00271358294412494,0.0869277268648148,0.997499108314514,-0.00131304934620857,-0.0706682354211807,0.997503876686096,-0.00277826678939164,0.070557989180088,0.996201634407043,-0.00114022567868233,-0.0870695188641548,0.0473024956882,0.00714365672320127,-0.99885505437851,0.997498691082001,-0.00195051985792816,-0.0706581622362137,0.996195375919342,-0.00182757712900639,-0.0871289893984795,0.997487366199493,-0.00594598520547152,-0.0705944448709488,0.0471251346170902,-0.00419426755979657,-0.998880207538605,0.0473228879272938,-0.00419535441324115,-0.99887090921402,-0.0398506335914135,-0.999119937419891,-0.0130861438810825,-0.996780157089233,-0.0797615051269531,-0.00821485742926598,-0.0312728136777878,-0.999425947666168,-0.0130281634628773,-0.998484075069427,-0.0550409518182278,0.000101500423625112,-0.996865928173065,-0.0791091546416283,9.07159337657504e-005,-0.0393566712737083,-0.99922513961792,-0.00043433322571218,-0.998490512371063,-0.0548193193972111,-0.00342246680520475,-0.998487889766693,0.054923988878727,-0.00234483764506876,-0.996835768222809,-0.0794043615460396,-0.00365909934043884,-0.998477935791016,0.0551218204200268,0.00185418338514864,-0.998485922813416,-0.0550078041851521,-0.000426311511546373,-0.997474849224091,0.0709884390234947,0.00218202383257449,-0.0324513874948025,0.999258697032928,0.0207152366638184,-0.998477935791016,0.0551218204200268,0.00185418338514864,-0.997474849224091,0.0709884390234947,0.00218202383257449,-0.99847400188446,0.0551596619188786,0.00265983329154551,-0.0320974066853523,0.999398469924927,0.013129417784512,-0.0312712006270885,0.999424695968628,0.013128156773746,
- 0.0392408445477486,0.999226629734039,-0.00250920676626265,-0.0314105153083801,0.999504148960114,-0.00222022202797234,-0.0158539582043886,0.999871730804443,-0.00228486047126353,-0.0277520995587111,0.993301212787628,-0.112171985208988,0.0346866399049759,0.993096351623535,-0.11205567419529,-0.00429102592170238,0.993678689002991,-0.112179577350616,-0.00818303041160107,0.999918282032013,0.00983164645731449,0.0397307276725769,0.999160468578339,0.0100000835955143,0.0313219986855984,0.999459624290466,0.00997216254472733,0.0316510759294033,0.999484300613403,0.00543738063424826,-0.0317234955728054,0.999483466148376,0.00515834055840969,0.0154922977089882,0.999865651130676,0.00536825601011515,-0.0261567831039429,0.993716716766357,-0.108825907111168,0.0278665572404861,0.993662178516388,-0.108898870646954,0.0122229214757681,0.993976414203644,-0.108910441398621,-0.0319443047046661,0.999441087245941,0.0098603256046772,0.0160579979419708,0.999821782112122,0.00993060134351254,-0.031323779374361,0.999460637569427,0.00986137893050909,-0.0398506000638008,-0.999120056629181,-0.0130852069705725,-0.996780157089233,-0.0797614976763725,-0.00821477267891169,-0.0312728323042393,-0.999426066875458,-0.0130272256210446,-0.998484075069427,-0.0550409816205502,0.000101987039670348,-0.996865928173065,-0.0791090950369835,9.14153570192866e-005,-0.0393563210964203,-0.99922513961792,-0.000425485020969063,-0.998490512371063,-0.0548193491995335,-0.00342199788428843,-0.998487889766693,0.0549239665269852,-0.00234525999985635,-0.996835768222809,-0.0794043093919754,-0.00365842925384641,-0.998477697372437,0.05512485653162,0.00191876734606922,-0.998485743999481,-0.0550118833780289,-0.000361366925062612,-0.997475147247314,0.0709808096289635,0.00224625016562641,-0.0324512720108032,0.999258756637573,0.0207127425819635,-0.998477697372437,0.05512485653162,0.00191876734606922,-0.997475147247314,0.0709808096289635,0.00224625016562641,-0.99847400188446,0.0551600642502308,0.00266841612756252,-0.0320973992347717,0.999398589134216,0.0131291123107076,-0.0312712080776691,0.999424815177917,0.0131278447806835,
- 0.0392275862395763,0.999226272106171,-0.00284555950202048,-0.0313961952924728,0.999503433704376,-0.00267424923367798,-0.0158741660416126,0.999870359897614,-0.00271307793445885,-0.0277520995587111,0.993301212787628,-0.112171985208988,0.0346866399049759,0.993096351623535,-0.11205567419529,-0.00429102592170238,0.993678689002991,-0.112179577350616,-0.00818303041160107,0.999918282032013,0.00983164645731449,0.0397307276725769,0.999160468578339,0.0100000835955143,0.0313219986855984,0.999459624290466,0.00997216254472733,0.0316507965326309,0.999484360218048,0.00542843155562878,-0.0317239165306091,0.999483406543732,0.00516730779781938,0.0154925044625998,0.999865591526031,0.00536387646570802,-0.0261569377034903,0.993716955184937,-0.108822770416737,0.0278664417564869,0.993661820888519,-0.1089021936059,0.0122228730469942,0.993976235389709,-0.108911894261837,-0.0319443047046661,0.999441087245941,0.0098603256046772,0.0160579979419708,0.999821782112122,0.00993060134351254,-0.031323779374361,0.999460637569427,0.00986137893050909,-0.0398505032062531,-0.999119997024536,-0.0130827752873302,-0.99678111076355,-0.0797561183571815,-0.00814604852348566,-0.0312728621065617,-0.999426007270813,-0.0130253862589598,-0.99848461151123,-0.0550331063568592,-2.34905201068614e-005,-0.996865153312683,-0.0791189670562744,-3.37716155627277e-005,-0.0393563620746136,-0.99922513961792,-0.000426514132414013,-0.998490452766418,-0.0548152737319469,-0.0034866260830313,-0.998487830162048,0.0549208968877792,-0.00241016573272645,-0.996835112571716,-0.0794093757867813,-0.00372299272567034,-0.998477697372437,0.0551248900592327,0.00191944371908903,-0.998485743999481,-0.0550118423998356,-0.000362036313163117,-0.997475147247314,0.0709807127714157,0.00224711676128209,-0.0324518382549286,0.999258399009705,0.0207249484956265,-0.998477697372437,0.0551248900592327,0.00191944371908903,-0.997475147247314,0.0709807127714157,0.00224711676128209,-0.998472630977631,0.0551722124218941,0.00292705604806542,-0.0320977866649628,0.999398469924927,0.0131374318152666,-0.0312710776925087,0.999424695968628,0.0131359491497278,
- 0.0392272435128689,0.999226331710815,-0.00285435281693935,-0.0313959270715714,0.999503433704376,-0.00268276827409863,-0.0158745739609003,0.999870359897614,-0.00272165983915329,-0.0277522131800652,0.993301570415497,-0.112168692052364,0.0346864610910416,0.993095934391022,-0.112059809267521,-0.00429104315117002,0.993678748607636,-0.112179070711136,-0.00818304810672998,0.999918282032013,0.00983221363276243,0.0397306196391582,0.999160408973694,0.00999733060598373,0.0313220322132111,0.999459624290466,0.0099699916318059,0.031650934368372,0.999484300613403,0.00543293077498674,-0.0317237004637718,0.999483346939087,0.00516279926523566,0.0154924001544714,0.999865591526031,0.00536607811227441,-0.0261570177972317,0.993717193603516,-0.108821228146553,0.0278663858771324,0.993661642074585,-0.108903855085373,0.0122228488326073,0.993976175785065,-0.108912624418736,-0.0319447182118893,0.999440968036652,0.00986917596310377,0.0160578601062298,0.999821841716766,0.00992615148425102,-0.0313236378133297,0.999460577964783,0.00987005699425936,0.997487366199493,-0.00594598986208439,-0.0705944448709488,0.0471251308917999,-0.00419433275237679,-0.998880207538605,0.0473228916525841,-0.00419542007148266,-0.99887090921402,0.0474113598465919,0.0143023617565632,-0.998773038387299,0.997499048709869,-0.000766990939155221,-0.0706768333911896,0.9954913854599,-0.000415164045989513,-0.0948515385389328,0.997499048709869,-0.000766990939155221,-0.0706768333911896,0.998484432697296,-0.00257873465307057,0.0549736618995667,0.9954913854599,-0.000415164045989513,-0.0948515385389328,0.998477578163147,0.00265017570927739,0.0550968013703823,0.997488141059875,0.00356680946424603,-0.0707443058490753,0.996211290359497,0.00241058738902211,0.0869325622916222,0.984430909156799,-0.138632699847221,-0.108058698475361,0.939629554748535,-0.339381963014603,0.0437737107276917,0.228436782956123,-0.815965175628662,0.531053364276886,0.99620920419693,-0.000913817319087684,0.0869851484894753,0.146977245807648,-0.018423905596137,0.988968312740326,0.998484790325165,-0.000313410389935598,0.0550271905958653,
- 0.0394271053373814,0.00222840555943549,0.999220073223114,0.143213033676147,0.00243403553031385,0.98968893289566,0.996211349964142,0.00235638115555048,0.086933434009552,0.997486889362335,-0.00606305152177811,-0.0705925598740578,0.0471250414848328,-0.00420031324028969,-0.998880207538605,0.047323077917099,-0.00420142477378249,-0.99887079000473,0.0474113747477531,0.0143032791092992,-0.998773038387299,0.997499048709869,-0.000766946119256318,-0.0706768333911896,0.9954913854599,-0.000415096990764141,-0.0948515310883522,0.997499048709869,-0.000766946119256318,-0.0706768333911896,0.998484432697296,-0.00257880543358624,0.0549736581742764,0.9954913854599,-0.000415096990764141,-0.0948515310883522,0.998477578163147,0.00265039224177599,0.0550968050956726,0.997488141059875,0.00356651283800602,-0.0707442983984947,0.996211290359497,0.00241093384101987,0.0869325622916222,0.98442816734314,-0.138651162385941,-0.108060345053673,0.939606785774231,-0.339445501565933,0.0437709540128708,0.228434413671494,-0.816030919551849,0.530953168869019,0.99620920419693,-0.000913503346964717,0.0869851484894753,0.146976605057716,-0.0184203311800957,0.988968431949615,0.998484790325165,-0.00031321236747317,0.0550271943211555,0.0394269004464149,0.00222334894351661,0.999220013618469,0.143215835094452,0.00241872295737267,0.989688575267792,0.996211409568787,0.00225765537470579,0.086935006082058,0.000142510500154458,0.00201098155230284,-0.999998033046722,0.0157350450754166,0.0013999076327309,-0.999875247478485,-0.0312763415277004,0.00324079929850996,-0.999505519866943,0.0157495774328709,-0.000444343779236078,-0.999875962734222,-1.57040454360152e-017,4.43059132586598e-019,-1,-0.00788603443652391,0.000222489150473848,-0.999968886375427,-0.0315154194831848,0.000889146351255476,-0.999502956867218,-0.00788603443652391,0.000222489150473848,-0.999968886375427,-1.57040454360152e-017,4.43059132586598e-019,-1,0.0324564166367054,0.0155697222799063,-0.999351918697357,-0.0321866683661938,0.0180867183953524,-0.999318242073059,0.00119026273023337,0.0167959313839674,-0.999858319759369,
- 0.17775359749794,0.983369290828705,0.0372621938586235,-0.084190770983696,0.995528697967529,0.0428322069346905,0.193651854991913,0.980378746986389,0.0368308946490288,0.0993688404560089,0.990381598472595,0.0962825641036034,-0.0849438458681107,0.995378613471985,0.0447901040315628,0.161642298102379,0.980346441268921,0.113104313611984,-0.0835434570908546,0.995654106140137,0.0411498956382275,0.100247479975224,0.990931332111359,0.0894735604524612,-0.206027045845985,0.978516399860382,0.00765693187713623,-0.250234663486481,0.950482785701752,0.184296742081642,-0.269031256437302,0.948270738124847,0.168537154793739,-0.163622751832008,0.953279554843903,0.253940165042877,0.078800305724144,0.996802985668182,-0.0132030425593257,-0.198013603687286,0.97995936870575,-0.0216867532581091,0.112727433443069,0.993552505970001,-0.0120795788243413,-0.198115885257721,0.979946851730347,-0.0213165357708931,0.0781630799174309,0.996843576431274,0.0139085510745645,0.0696066692471504,0.99749219417572,0.0128222825005651,-0.200695753097534,0.979580819606781,-0.0119420439004898,0.0622659809887409,0.996982097625732,0.0463650189340115,-0.259026855230331,0.965541064739227,-0.0252097398042679,-0.272825479507446,0.961969494819641,0.0134524032473564,0.0432327874004841,0.990363597869873,0.13157057762146,-0.288396447896957,0.957483530044556,0.00727200042456388,-0.435549825429916,0.900005400180817,-0.0169311854988337,-0.283298045396805,0.958648025989532,-0.0271347463130951,0.0825198218226433,0.995473146438599,-0.0471555665135384,-0.519037485122681,0.854083359241486,-0.0337898395955563,-0.436018645763397,0.899576663970947,-0.0254899319261312,0.0676004141569138,0.997469246387482,0.0220285542309284,-0.519988179206848,0.85300999879837,-0.0445674024522305,0.062116913497448,0.996959745883942,0.0470422171056271,-0.0122316051274538,0.999272406101227,0.036127332597971,-0.0432630814611912,0.952996432781219,0.299876779317856,-0.010151632130146,0.933719277381897,0.357862055301666,0.0254122018814087,0.908033788204193,0.418125540018082,-0.343370974063873,0.938860774040222,0.0252385549247265,
- -0.500093996524811,0.858627378940582,0.112538933753967,0.0102693429216743,0.988304138183594,-0.15214940905571,-0.00404076417908072,0.99945741891861,-0.032688070088625,-0.374780297279358,0.91923451423645,0.120613850653172,-0.322101294994354,0.941571772098541,0.0984552353620529,-0.0100134778767824,0.999797463417053,0.0174600537866354,0.221903681755066,0.974038362503052,0.0448122471570969,0.224687084555626,0.973385214805603,0.0451340936124325,-0.0261610895395279,0.987739503383636,0.153903856873512,0.15418329834938,0.955734729766846,0.250596731901169,0.2117959856987,0.936367869377136,0.27992445230484,-0.0206487979739904,0.994025111198425,0.107181563973427,0.218547001481056,0.940017938613892,0.261922568082809,0.232597455382347,0.934146165847778,0.270683199167252,0.0173356793820858,0.998541176319122,0.0511372126638889,-0.0650583654642105,0.989527702331543,0.128850638866425,-0.0298297684639692,0.994960248470306,0.0957302004098892,0.228982508182526,0.916108548641205,-0.329108148813248,-0.140774384140968,0.982589662075043,0.121244058012962,0.0135377068072557,0.997528791427612,-0.0689421966671944,0.0251456517726183,0.982568264007568,-0.184193715453148,0.163524508476257,0.927528619766235,-0.336080998182297,0.0102516449987888,0.985831439495087,-0.167425975203514,0.00829541776329279,0.938019812107086,-0.346482336521149,0.00212732423096895,0.992048382759094,0.125839322805405,0.00199995958246291,0.990852892398834,0.134931996464729,0.201095044612885,-0.0725155919790268,-0.976884067058563,-0.029465215280652,0.0621134266257286,-0.997634053230286,0.0474600419402123,0.0175565630197525,-0.998718857765198,0.0200551748275757,0.99199253320694,0.124693959951401,-0.0111001953482628,0.994536638259888,0.103797033429146,0.0291527975350618,0.990984559059143,0.130766361951828,-0.00926166772842407,0.544592022895813,-0.838649988174438,0.377366572618485,-0.0567352101206779,-0.9243243932724,-0.137588337063789,0.684630036354065,-0.715787172317505,-0.137588337063789,0.684630036354065,-0.715787172317505,-0.383457064628601,0.860884845256805,-0.334422022104263,
- -0.00926166772842407,0.544592022895813,-0.838649988174438,-0.000466697616502643,-0.0790978893637657,-0.996866762638092,-0.00557777797803283,0.694989025592804,-0.718998730182648,-0.000410976412240416,-0.0869966968894005,-0.996208608150482,-0.00599592830985785,0.998229026794434,-0.0591865442693233,0.136993184685707,0.983730554580688,0.116220183670521,-0.230352967977524,0.915823459625244,-0.328945130109787,3.56663986167405e-005,0.992034077644348,0.12597031891346,3.37213277816772e-005,0.93793922662735,-0.346799671649933,3.37213277816772e-005,0.937938332557678,-0.346802175045013,-0.163115233182907,0.927586674690247,-0.336119651794434,-0.0251161344349384,0.982420682907104,-0.184983372688293,-0.00273924646899104,0.987143218517303,-0.159814730286598,0.0301347821950912,0.0418883673846722,-0.998667776584625,-0.162094548344612,-0.0716762915253639,-0.984168648719788,-0.0471343547105789,-0.00361440097913146,-0.998882055282593,2.4992972612381e-005,0.695157527923584,-0.71885746717453,3.37213277816772e-005,0.937938332557678,-0.346802175045013,3.37213277816772e-005,0.93793922662735,-0.346799671649933,0.00927453860640526,0.544344127178192,-0.838810741901398,0.384866714477539,0.860314428806305,-0.334270387887955,0.138290345668793,0.684542000293732,-0.715736031532288,-9.99495387077332e-006,0.695158004760742,-0.718857049942017,-9.99681651592255e-006,0.695158541202545,-0.718856513500214,-1.34874153445708e-005,0.937938690185547,-0.346801429986954,0.138290345668793,0.684542000293732,-0.715736031532288,-0.379316747188568,-0.0582360289990902,-0.923432409763336,0.00927453860640526,0.544344127178192,-0.838810741901398,-9.99495387077332e-006,0.695158004760742,-0.718857049942017,1.13784324184962e-006,-0.0791163444519043,-0.996865391731262,-9.99681651592255e-006,0.695158541202545,-0.718856513500214,0.0173282399773598,0.998553693294525,0.050894770771265,-0.0651530250906944,0.989522635936737,0.128841623663902,-0.0298327710479498,0.994975566864014,0.0955701246857643,0.22974956035614,0.91594922542572,-0.329016983509064,-0.141246050596237,0.982528209686279,0.121194191277027,
- 0.0135395471006632,0.997532725334167,-0.0688857063651085,0.0251493416726589,0.982586681842804,-0.184094995260239,0.164085224270821,0.927448749542236,-0.336027950048447,0.0102530289441347,0.985838234424591,-0.167385458946228,0.00828215293586254,0.938019752502441,-0.346482872962952,0.00212739128619432,0.992048382759094,0.125839307904243,0.00200029206462204,0.990852892398834,0.134932026267052,0.127197191119194,-0.0651310533285141,-0.98973673582077,-0.0305607561022043,0.028813449665904,-0.9991175532341,0.0469129383563995,-0.0172768477350473,-0.998749554157257,0.0203328207135201,0.991989135742188,0.124675892293453,-0.0110942060127854,0.994557082653046,0.103601776063442,0.0291568152606487,0.991011023521423,0.130564302206039,-0.00926364492624998,0.544553935527802,-0.83867472410202,0.375616371631622,-0.0507902279496193,-0.925382435321808,-0.138067066669464,0.684570074081421,-0.715752363204956,-0.138067066669464,0.684570074081421,-0.715752363204956,-0.384621828794479,0.860413670539856,-0.33429679274559,-0.00926364492624998,0.544553935527802,-0.83867472410202,-0.00599583331495523,0.998228847980499,-0.0591895096004009,0.136996150016785,0.983730137348175,0.116219945251942,-0.230351820588112,0.915823698043823,-0.328945249319077,3.5662673326442e-005,0.992034077644348,0.12597031891346,3.37176024913788e-005,0.93793922662735,-0.346799671649933,3.37176024913788e-005,0.937938332557678,-0.346802175045013,-0.163115233182907,0.927586674690247,-0.336119651794434,-0.0251161344349384,0.982420682907104,-0.184983372688293,-0.00273924646899104,0.987143218517303,-0.159814730286598,-9.99495387077332e-006,0.695158004760742,-0.718857049942017,-9.99681651592255e-006,0.695158541202545,-0.718856513500214,-1.34874153445708e-005,0.937938690185547,-0.346801429986954,2.49911099672318e-005,0.695157527923584,-0.71885746717453,3.37176024913788e-005,0.937938332557678,-0.346802175045013,3.37176024913788e-005,0.93793922662735,-0.346799671649933,1.0163056458623e-006,-0.07068882137537,-0.997498393058777,-9.99681651592255e-006,0.695158541202545,-0.718856513500214,
- -9.99495387077332e-006,0.695158004760742,-0.718857049942017,0.00927354954183102,0.54436320066452,-0.838798403739929,0.384283304214478,0.860550820827484,-0.334333211183548,0.138050198554993,0.684572160243988,-0.715753614902496,0.00039319135248661,-0.088441327214241,-0.996081292629242,0.0232673268765211,0.694309115409851,-0.719300746917725,0.000936835189349949,-0.0706521347165108,-0.997500658035278,0.138050198554993,0.684572160243988,-0.715753614902496,-0.355108022689819,-0.0113276019692421,-0.934756696224213,0.00927354954183102,0.54436320066452,-0.838798403739929,0.0173313375562429,0.99854850769043,0.050995722413063,-0.0654594525694847,0.989506185054779,0.128812402486801,-0.0298352874815464,0.99498838186264,0.0954359918832779,0.228983640670776,0.916108310222626,-0.329107969999313,-0.140776991844177,0.982589304447174,0.1212437748909,0.0135376621037722,0.997528731822968,-0.0689436122775078,0.0251456517726183,0.982568264007568,-0.184193715453148,0.163524508476257,0.927528619766235,-0.336080998182297,0.0102516449987888,0.985831439495087,-0.167425975203514,0.00828715600073338,0.938019752502441,-0.346482664346695,0.00213075149804354,0.992048382759094,0.125839099287987,0.00200360384769738,0.990852892398834,0.134932309389114,0.127097502350807,-0.0651358738541603,-0.989749312400818,-0.0305629502981901,0.0287456940859556,-0.999119400978088,0.0469118431210518,-0.0173432063311338,-0.998748481273651,0.0202342383563519,0.991990387439728,0.124682322144508,-0.011096378788352,0.994549572467804,0.103672631084919,0.0291553996503353,0.991001784801483,0.130635619163513,-0.00926166772842407,0.544592022895813,-0.838649988174438,0.374470084905624,-0.0508679747581482,-0.925842642784119,-0.137588337063789,0.684630036354065,-0.715787172317505,-0.137588337063789,0.684630036354065,-0.715787172317505,-0.383457064628601,0.860884845256805,-0.334422022104263,-0.00926166772842407,0.544592022895813,-0.838649988174438,-0.00599545240402222,0.998228132724762,-0.0592014119029045,0.13676181435585,0.983760535717011,0.116238683462143,-0.229966074228287,0.91590416431427,-0.328991234302521,
- 3.56705895683263e-005,0.992034077644348,0.12597031891346,3.37250530719757e-005,0.93793922662735,-0.346799671649933,3.37259843945503e-005,0.937938332557678,-0.346802175045013,-0.162836477160454,0.927626073360443,-0.336145967245102,-0.025114294141531,0.982411503791809,-0.185032680630684,-0.00273906905204058,0.987142324447632,-0.159820154309273,-9.99867916107178e-006,0.695158004760742,-0.718857049942017,-9.99867916107178e-006,0.695158541202545,-0.718856513500214,-1.348927798972e-005,0.937938690185547,-0.346801429986954,2.49966979026794e-005,0.695157527923584,-0.71885746717453,3.37259843945503e-005,0.937938332557678,-0.346802175045013,3.37250530719757e-005,0.93793922662735,-0.346799671649933,1.01653847650596e-006,-0.07068882137537,-0.997498393058777,-9.99867916107178e-006,0.695158541202545,-0.718856513500214,-9.99867916107178e-006,0.695158004760742,-0.718857049942017,0.00927255861461163,0.544382274150848,-0.838786065578461,0.383701503276825,0.860786080360413,-0.33439576625824,0.137810885906219,0.68460214138031,-0.715770959854126,0.000399664044380188,-0.0884426236152649,-0.996081173419952,0.0232733506709337,0.694308876991272,-0.719300806522369,0.000943395891226828,-0.0706518813967705,-0.997500658035278,0.137810885906219,0.68460214138031,-0.715770959854126,-0.354604095220566,-0.0114460438489914,-0.934946477413177,0.00927255861461163,0.544382274150848,-0.838786065578461,-0.0331053771078587,-0.565003871917725,0.824423849582672,-0.0306291226297617,-0.447565227746964,0.893726646900177,0.0026906318962574,0.559954702854156,0.828518927097321,-0.0959227830171585,-0.562299013137817,0.821351766586304,-0.000923082116059959,0.560216248035431,0.828345835208893,-0.00206645205616951,0.551006078720093,0.834498763084412,0.0161127056926489,0.551413357257843,0.834076702594757,0.0164421927183867,0.558891832828522,0.8290776014328,0.0187624972313643,0.611116886138916,0.791317999362946,0.0256307628005743,0.558122098445892,0.82936292886734,0.0287684537470341,0.623296022415161,0.781456649303436,0.0281749721616507,0.610981822013855,0.791143119335175,
- 0.0916121155023575,0.620543241500854,0.778802454471588,0.0566767863929272,0.555168449878693,0.82980477809906,0.0121205914765596,0.466630637645721,0.884369313716888,-0.00298454239964485,0.465923875570297,0.884819746017456,-0.000282385357422754,0.316223531961441,0.948684692382813,-0.00521784834563732,0.583398878574371,0.812169075012207,-0.0507501624524593,0.582071661949158,0.811552345752716,-0.052360936999321,0.623199224472046,0.780308306217194,-0.0457267798483372,0.463345915079117,0.884997069835663,0.0237993337213993,0.565676391124725,0.82428377866745,0.0240888278931379,0.58361279964447,0.81167471408844,0.0240888278931379,0.58361279964447,0.81167471408844,0.0011798640480265,0.623724043369293,0.781643688678741,0.00211084028705955,0.583499312400818,0.812110900878906,0.00251366361044347,0.565559148788452,0.824703991413116,0.0134597206488252,0.62359219789505,0.781633913516998,0.0116496533155441,0.565640866756439,0.824569404125214,0.0277636460959911,0.949372291564941,-0.312924265861511,0.0363291539251804,0.610821008682251,0.790934801101685,0.0372578464448452,0.623068749904633,0.781279325485229,0.0684965997934341,0.948884010314941,-0.308102995157242,0.0338649749755859,0.949253559112549,-0.312683343887329,0.0339136645197868,0.950907349586487,-0.307611912488937,0.0204310640692711,0.62347549200058,0.781575918197632,-0.782250285148621,-0.275605082511902,-0.55868262052536,0.798213601112366,0.368186146020889,0.476753830909729,0.533601105213165,0.799648225307465,-0.275377541780472,0.0338649749755859,0.949253559112549,-0.312683343887329,0.030429482460022,0.839244842529297,-0.542901575565338,0.0339136645197868,0.950907349586487,-0.307611912488937,0.787515103816986,0.578503668308258,-0.212493404746056,0.685339033603668,0.593902766704559,-0.421414226293564,-0.779704451560974,-0.27762296795845,-0.561236679553986,-0.315806239843369,0.800990223884583,-0.508607149124146,-0.342225193977356,0.888704657554626,-0.305099904537201,-0.331252098083496,0.850717067718506,-0.408108502626419,0.0172835271805525,0.839844822883606,-0.542551279067993,
- 0.0181864388287067,0.949487090110779,-0.313278824090958,0.0173897035419941,0.849921703338623,-0.526622176170349,-0.0516355000436306,-0.549526453018188,-0.833879113197327,0.494986742734909,-0.0510700568556786,-0.867398381233215,0.0119587853550911,-0.506255269050598,-0.862300753593445,-0.0137400403618813,-0.55346953868866,-0.832756042480469,0.0129949478432536,-0.0311711300164461,-0.999429643154144,0.0143843367695808,-0.00148409814573824,-0.999895453453064,-0.00615773815661669,-0.560059010982513,-0.828429818153381,0.0172835271805525,0.839844822883606,-0.542551279067993,0.0173897035419941,0.849921703338623,-0.526622176170349,0.0509694144129753,0.838015615940094,-0.543260633945465,-0.00968449655920267,-0.559997260570526,-0.828437805175781,-0.00930942595005035,-0.553877949714661,-0.832545816898346,0.0189691577106714,-0.0310271419584751,-0.999338626861572,-0.00930942595005035,-0.553877949714661,-0.832545816898346,-0.00968449655920267,-0.559997260570526,-0.828437805175781,-0.0539230406284332,0.847629487514496,-0.52784138917923,0.0383984297513962,-0.590486526489258,-0.806133568286896,0.0364769659936428,-0.560254037380219,-0.82751727104187,-0.0161018408834934,-0.559867024421692,-0.828426063060761,-0.0139969903975725,-0.592866718769073,-0.805178999900818,-0.0412121154367924,-0.0324262417852879,-0.99862414598465,0.0384873822331429,-0.590481102466583,-0.806133270263672,0.0384873822331429,-0.590481102466583,-0.806133270263672,0.0368301048874855,-0.560251414775848,-0.827503442764282,-0.0579546801745892,-0.176641032099724,-0.982567727565765,-0.0611825697124004,-0.0328652672469616,-0.997585356235504,-0.0402361527085304,-0.593445897102356,-0.803867518901825,0.0986324474215508,-0.585729539394379,-0.804482758045197,0.0986324474215508,-0.585729539394379,-0.804482758045197,0.0986324474215508,-0.585729539394379,-0.804482758045197,-0.0591833628714085,0.0300285946577787,0.997795343399048,-0.0611678436398506,0.169212877750397,0.983679592609406,-0.0357608385384083,-0.58470219373703,0.81045937538147,-0.0302844773977995,-0.584562599658966,0.810783207416534,
- -0.0595660693943501,0.0300188437104225,0.997772932052612,-0.0302844773977995,-0.584562599658966,0.810783207416534,-0.018042303621769,-0.591949582099915,0.805773019790649,-0.0890036374330521,0.0292550846934319,0.995601654052734,-0.0192049834877253,-0.584226489067078,0.811363399028778,-0.0164468195289373,-0.559106647968292,0.828932702541351,0.00630532018840313,0.0316286198794842,0.999479830265045,-0.0177823062986135,-0.591957271099091,0.805773138999939,0.0115000205114484,0.031749751418829,0.999429702758789,-0.0190115515142679,-0.558930158615112,0.828996777534485,0.00990652572363615,-0.00102210184559226,0.999950408935547,-0.0173259451985359,-0.59197074174881,0.805773198604584,0.0308174267411232,0.786405861377716,0.616940915584564,-0.0160512030124664,-0.559133529663086,0.828922212123871,0.696996748447418,0.503088355064392,0.510977268218994,0.303642928600311,-0.031328234821558,0.952270746231079,-0.254894345998764,-0.526560068130493,0.811026096343994,0.62992799282074,-0.0649925693869591,0.773929417133331,0.781453549861908,0.420348286628723,0.461126565933228,0.0165134891867638,-0.699071109294891,0.714861571788788,0.0219445526599884,0.787332534790039,0.616137981414795,-0.00448724953457713,-0.592298865318298,0.805705904960632,0.0222893357276917,0.834643840789795,0.550338804721832,0.030598932877183,0.951558351516724,0.305941998958588,0.0268936604261398,0.786823511123657,0.616591930389404,0.0280723311007023,0.834622621536255,0.550106525421143,0.0440487451851368,0.95117723941803,0.30548569560051,0.0440200641751289,0.950434327125549,0.307793527841568,0.0372074954211712,0.785699307918549,0.617488622665405,0.0288894679397345,0.619639933109283,-0.784354329109192,0.0451954230666161,0.950372993946075,0.307812601327896,0.0452301613986492,0.951135635375977,0.305442988872528,0.801422655582428,0.365572452545166,-0.473369419574738,0.0476785860955715,0.78447037935257,0.618330836296082,0.441687971353531,0.849543988704681,0.288421183824539,0.0205371454358101,0.619767963886261,-0.784516394138336,0.0201682150363922,0.611100196838379,-0.791296362876892,
- 0.038458701223135,0.950706720352173,0.307697474956512,-0.618917524814606,0.48008993268013,-0.621654868125916,-0.605607211589813,0.453941941261292,-0.653587520122528,-0.0968284159898758,-0.229220002889633,-0.968546569347382,0.0116508007049561,0.611182987689972,-0.791403591632843,0.00884168036282063,0.545288324356079,-0.838201940059662,0.00969081278890371,0.565438985824585,-0.824733257293701,0.0162962414324284,0.545039534568787,-0.838251948356628,0.0187303889542818,0.611117243766785,-0.791318476200104,0.0190516505390406,0.619786143302917,-0.784539461135864,-0.0914469212293625,0.617301285266876,-0.781394004821777,-0.0884605795145035,0.580052733421326,-0.809761464595795,-0.0856373235583305,0.545807719230652,-0.833522737026215,-0.0609736107289791,0.546144068241119,-0.835469245910645,-0.0604098774492741,0.581634044647217,-0.811204373836517,-0.0604098774492741,0.581634044647217,-0.811204373836517,-0.044810950756073,0.546183228492737,-0.836466312408447,-0.0453132316470146,0.582293808460236,-0.811714649200439,-0.0448661632835865,0.549916982650757,-0.83401346206665,-0.0113226072862744,0.551100552082062,-0.834361970424652,-0.0256408266723156,-0.432742476463318,-0.901152908802032,-0.0256886444985867,-0.456305682659149,-0.889452278614044,-0.0073702409863472,-0.434044271707535,-0.900861442089081,0.00907438155263662,0.550979256629944,-0.834469676017761,0.00907038245350122,0.550740897655487,-0.834627032279968,0.0100021651014686,0.606250107288361,-0.79521119594574,0.00907038245350122,0.550740897655487,-0.834627032279968,0.00907438155263662,0.550979256629944,-0.834469676017761,0.0424650497734547,0.559644877910614,-0.827643871307373,0.0448040850460529,0.605671644210815,-0.794452309608459,0.0419847704470158,0.550299763679504,-0.833911001682281,-0.00533734867349267,-0.496944665908813,-0.867765784263611,0.0473196133971214,0.559522688388824,-0.827463150024414,0.0469878204166889,0.550144135951996,-0.833746671676636,0.104371890425682,0.557090818881989,-0.823866784572601,0.0512134805321693,-0.496686667203903,-0.866417765617371,0.0511396937072277,-0.497387856245041,-0.866019785404205,
- 0.0161165073513985,-0.502499878406525,-0.864427030086517,0.0216739121824503,-0.561847746372223,-0.826956808567047,-0.0647460147738457,0.558974862098694,-0.826653003692627,-0.0756481811404228,0.53750091791153,-0.839863240718842,-0.0759042277932167,0.558534204959869,-0.826001346111298,-0.0192763395607471,-0.565367221832275,-0.82461404800415,-0.060164138674736,0.61211085319519,-0.788479924201965,-0.0558134950697422,0.55927699804306,-0.827099859714508,-0.0543091781437397,0.541122078895569,-0.839188575744629,-0.0408400855958462,0.614530742168427,-0.78783506155014,-0.0401356816291809,0.605791926383972,-0.794610202312469,-0.036443468183279,0.559778034687042,-0.827840805053711,-0.030685793608427,0.61570805311203,-0.787376642227173,-0.0493745841085911,0.948428571224213,0.313122034072876,-0.0301746763288975,0.606004357337952,-0.79488879442215,0.0183603819459677,0.550365388393402,-0.83472204208374,0.0200522914528847,0.606158554553986,-0.795091092586517,0.0198701974004507,0.600141048431396,-0.799647390842438,0.0219966825097799,0.600006639957428,-0.799692511558533,0.0222237184643745,0.606130719184875,-0.795054495334625,0.0350948795676231,0.948793709278107,0.313940823078156,-0.0511079877614975,0.948350012302399,0.313081741333008,-0.0298061519861221,0.615806996822357,-0.787333071231842,-0.0510641597211361,0.947317898273468,0.316198140382767,-0.754971206188202,-0.351384490728378,0.553667187690735,0.442092776298523,0.852038681507111,0.280328780412674,0.760132670402527,0.469267308712006,-0.449429094791412,-0.0510641597211361,0.947317898273468,0.316198140382767,-0.0458437465131283,0.833189308643341,0.551084280014038,-0.0511079877614975,0.948350012302399,0.313081741333008,-0.396772235631943,0.762509047985077,0.511029958724976,-0.390682637691498,0.872305572032928,0.29402419924736,0.0250071045011282,-0.55121773481369,0.833986699581146,0.016815098002553,0.600329399108887,-0.799576163291931,0.0288627110421658,0.94899845123291,0.313957005739212,0.0280866492539644,0.919274985790253,0.392612516880035,0.00914447568356991,0.949402868747711,0.313927710056305,
- 0.00878656469285488,0.834508657455444,0.550924777984619,0.00866152625530958,0.808486223220825,0.588451325893402,0.0288627110421658,0.94899845123291,0.313957005739212,0.0250527076423168,0.808489859104156,0.587976574897766,0.0280866492539644,0.919274985790253,0.392612516880035,-0.126359045505524,0.602816641330719,-0.787810564041138,0.0655590668320656,0.91777515411377,0.391651272773743,0.0614194348454475,0.928599417209625,0.365965873003006,0.105828262865543,0.914713740348816,0.38999879360199,0.117967203259468,0.804383754730225,0.582280397415161,0.102804370224476,0.931236624717712,0.349613636732101,-0.93430495262146,0.25861668586731,-0.245340079069138,0.801988482475281,0.590643346309662,-0.0891915485262871,-0.0377392843365669,0.935545146465302,-0.351185292005539,-0.0129922227934003,-0.412503063678741,0.910863637924194,-0.998667001724243,0.0233045555651188,0.0460567250847816,-0.988715410232544,-0.0233554840087891,0.147974073886871,0.00768944155424833,0.542182624340057,-0.840225517749786,0.00317905470728874,0.542403101921082,-0.840112328529358,0.0132337203249335,0.541896462440491,-0.840341210365295,0.0107807759195566,0.444279730319977,-0.895823299884796,-0.00021008588373661,0.44454351067543,-0.895757257938385,0.0139903165400028,0.44419252872467,-0.895822107791901,0.0103413490578532,0.450156718492508,-0.892889678478241,0.0141775077208877,0.450135886669159,-0.89284759759903,-0.0354247689247131,0.449894577264786,-0.892378807067871,-0.996419012546539,-0.0235374569892883,0.0812102407217026,-0.999081134796143,0.0151143884286284,0.040105078369379,-0.825194597244263,-0.362405270338058,0.433262407779694,-0.0125360488891602,-0.623837471008301,0.781453669071198,0.00476176990196109,0.00772371562197804,0.99995893239975,0.00456534139811993,0.00010784270853037,0.999989628791809,0.311696082353592,0.502147853374481,-0.806655466556549,0.0157558061182499,0.375938087701797,-0.926510810852051,-0.0278497040271759,0.353691220283508,-0.934947550296783,-0.0473241657018662,0.98346334695816,-0.174814879894257,-0.758070826530457,0.419522613286972,-0.499328970909119,
- -0.75116765499115,0.4338598549366,-0.497506588697433,-0.546394109725952,-0.420451015233994,-0.72434413433075,0.546394109725952,0.420451015233994,-0.72434413433075,1.64849899610489e-017,1.26852249750845e-017,-1,-0.00398527784273028,0.551188051700592,-0.834371566772461,-0.00218337215483189,0.60137414932251,-0.798964619636536,-0.00385147333145142,0.555000722408295,-0.831840991973877,-0.000197667599422857,0.554715812206268,-0.832039833068848,-0.0358445681631565,-0.425021022558212,-0.904473483562469,-0.000380298122763634,0.551073908805847,-0.834456384181976,-0.105232104659081,-0.423428475856781,-0.899797022342682,-0.0564972199499607,0.558276295661926,-0.827729225158691,-0.103860095143318,-0.543455600738525,-0.832988083362579,-0.00370681192725897,-0.623773217201233,0.781596541404724,0.0269568488001823,0.808476209640503,0.587911188602448,-0.00128112733364105,-0.551018953323364,0.834491789340973,0.0100590642541647,0.00755657162517309,0.999920845031738,-0.00403673434630036,-0.623776495456696,0.78159236907959,-0.00213647447526455,-0.550990045070648,0.834509074687958,0.0135405184701085,0.834505558013916,0.55083304643631,-0.0071250144392252,-0.550813496112823,0.834598064422607,0.0132013875991106,0.808508992195129,0.588335692882538,0.0624759383499622,-0.552035391330719,0.831476807594299,-0.0767476633191109,0.831336915493011,0.55044412612915,0.0623627156019211,-0.550807952880859,0.832298874855042,-0.429419249296188,0.0206342246383429,0.902869522571564,-0.428253024816513,-0.483818620443344,0.763229250907898,-0.414865374565125,-0.565056145191193,0.713160872459412,0.0416413620114326,-0.551130473613739,0.83337938785553,0.04395941644907,-0.589016914367676,0.806924164295197,0.0416917502880096,-0.551951050758362,0.832833766937256,0.0282408781349659,-0.590355694293976,0.806649148464203,-0.014393700286746,-0.000226672447752208,0.999896466732025,-0.0149718569591641,0.00834441464394331,0.999853193759918,0.0153990816324949,0.000242505222558975,0.999881386756897,0.0571719072759151,-0.587777376174927,0.807000041007996,0.0547665655612946,-0.55095386505127,0.832736790180206,
- 0.512906134128571,0.00807726196944714,0.858406722545624,-0.0462344102561474,-0.549864649772644,0.833973169326782,0.0158758424222469,-0.504058003425598,0.863523900508881,0.00790230743587017,0.482316315174103,0.875961482524872,0.00281199812889099,0.482567578554153,0.875854253768921,0.0137961776927114,0.482009708881378,0.876057267189026,-0.000195082277059555,0.444734305143356,0.895662546157837,0.010766489431262,0.444471120834351,0.895728528499603,0.0139963272958994,0.444383382797241,0.895727396011353,0.0123117864131927,0.423603355884552,0.905764102935791,-0.0333383083343506,0.423396497964859,0.905330896377563,0.0133416643366218,0.42359784245491,0.905752122402191,-0.0410967357456684,0.521928548812866,0.851998627185822,0.00310686975717545,0.543299198150635,0.839533388614655,0.023493554443121,0.552686870098114,0.833057820796967,-0.770041406154633,0.421425670385361,0.478995472192764,-0.776003062725067,0.408861011266708,0.480262488126755,-0.0472156219184399,0.983073055744171,0.177025511860847,0.794488906860352,0.601810157299042,0.0813139677047729,-0.945946156978607,0.239492192864418,0.218699216842651,-0.0396666564047337,0.947116196155548,0.318429678678513,0.00787856429815292,0.554059445858002,0.83243989944458,0.00948931369930506,0.600758075714111,0.79937469959259,0.00776713155210018,0.550789713859558,0.834607899188995,-0.128795310854912,0.602750658988953,0.787466406822205,0.0491598695516586,0.927466154098511,-0.370661377906799,0.0525880716741085,0.918440997600555,-0.392046689987183,0.064523734152317,0.80760532617569,-0.586182832717896,0.051327932626009,0.918497383594513,-0.392081558704376,0.0497833862900734,0.927527666091919,-0.370424211025238,0.0201756507158279,0.606283366680145,0.794992744922638,0.0184754263609648,0.550360441207886,0.834722757339478,0.019989088177681,0.6001335978508,0.799650013446808,0.00308975949883461,0.550957441329956,0.834527730941772,0.00402315007522702,0.606300711631775,0.795225262641907,0.00309110805392265,0.551038503646851,0.83447402715683,0.0541868582367897,0.605728924274445,0.793823778629303,0.0518241450190544,0.559058666229248,0.827506840229034,
- 0.0513565875589848,0.549996852874756,0.833586156368256,0.0281813945621252,0.919272840023041,-0.392610788345337,0.0289550293236971,0.948995649814606,-0.3139568567276,0.0168137233704329,0.600329458713531,0.799576103687286,0.0222564730793238,0.606269657611847,0.794947683811188,0.0220227837562561,0.600004971027374,0.79969310760498,0.0352765619754791,0.948787271976471,-0.313940227031708,0.025150615721941,0.808489263057709,-0.587973296642303,0.0289550293236971,0.948995649814606,-0.3139568567276,0.0281813945621252,0.919272840023041,-0.392610788345337,-0.0396215058863163,0.614675402641296,0.787784457206726,-0.0352304168045521,0.560032665729523,0.827721238136292,-0.038887295871973,0.605578362941742,0.794834971427917,-0.0493840612471104,0.948428094387054,-0.313121825456619,-0.0301850065588951,0.615764439105988,0.787351906299591,-0.0296592656522989,0.605828046798706,0.795042634010315,-0.0659740716218948,0.559360861778259,0.826294660568237,-0.0697243809700012,0.61082661151886,0.78868842124939,-0.0657984912395477,0.556984543800354,0.827912330627441,-0.61700302362442,0.389648973941803,0.683725833892822,-0.633419752120972,0.417395681142807,0.651582896709442,-0.053608525544405,-0.276889950037003,0.959405064582825,-0.0297127664089203,0.615817546844482,0.787328481674194,-0.0511807948350906,0.948346674442291,-0.313080042600632,-0.0511373654007912,0.947314143180847,-0.316197484731674,0.442936539649963,0.851645767688751,-0.280190765857697,-0.755496442317963,-0.351044028997421,-0.553166627883911,0.760673761367798,0.468916475772858,0.44887974858284,-0.045947004109621,0.833184480667114,-0.551083028316498,-0.0511373654007912,0.947314143180847,-0.316197484731674,-0.0511807948350906,0.948346674442291,-0.313080042600632,-0.555389404296875,0.787516415119171,-0.267133742570877,-0.560986995697021,0.685883760452271,-0.463526695966721,0.0472161807119846,-0.551067054271698,-0.833124041557312,0.0114798471331596,0.808502376079559,-0.588380992412567,0.0116292349994183,0.834509134292603,-0.55087149143219,0.0120113138109446,0.949367046356201,-0.313939601182938,
- 0.294434815645218,-0.530495941638947,-0.794910132884979,0.663076758384705,0.0104421535506845,-0.748478531837463,0.0234003309160471,-0.742960453033447,-0.668926179409027,-0.00549552775919437,-0.550872623920441,-0.834571242332459,0.0138949947431684,0.8345046043396,-0.550825715065002,0.0136298984289169,0.808510303497314,-0.588324129581451,-0.0816791206598282,0.83096706867218,-0.550292909145355,0.0626331344246864,-0.552035093307495,-0.831465244293213,0.0625122711062431,-0.550804853439331,-0.83228987455368,0.0550890862941742,-0.550948262214661,-0.832719147205353,0.0574829392135143,-0.587746918201447,-0.807000160217285,0.0157851912081242,0.000248585711233318,-0.999875366687775,0.0438681095838547,-0.58902508020401,-0.806923151016235,0.0415459498763084,-0.551131427288055,-0.833383500576019,0.0415962897241116,-0.551950097084045,-0.832839012145996,-0.0144816981628537,-0.00022805824119132,-0.99989515542984,0.0281702019274235,-0.590361356735229,-0.806647479534149,-0.0150601314380765,0.00834718439728022,-0.999851822853088,-0.434782922267914,-0.48187991976738,-0.760759949684143,-0.437069982290268,0.0208461880683899,-0.899186015129089,-0.420916944742203,-0.563780844211578,-0.710619628429413,-0.00691738910973072,-0.623802185058594,-0.781551599502563,0.00778710981830955,0.00762828486040235,-0.999940574169159,-0.00500737782567739,-0.55089008808136,-0.8345627784729,0.0235299188643694,0.808498799800873,-0.588027358055115,-0.00736720487475395,-0.62380576133728,-0.78154468536377,-0.00524501781910658,-0.550881683826447,-0.834566950798035,0.00251967506483197,0.00779439229518175,-0.999966502189636,-0.0153511594980955,-0.623847723007202,-0.781395196914673,0.00230693863704801,5.44946124136914e-005,-0.99999737739563,-0.998883783817291,0.0192703567445278,-0.0431255176663399,-0.992610037326813,-0.0234474819153547,-0.119061730802059,0.950095891952515,-0.18262642621994,-0.252914011478424,-0.950257956981659,-0.0224470403045416,-0.310653984546661,-0.998257577419281,0.0299176461994648,-0.0508601628243923,-0.00599691225215793,-0.190401956439018,-0.981687903404236,
- 0.0143766487017274,0.000226403921260498,0.999896705150604,0.00257635675370693,-0.466232478618622,0.884658515453339,0.0143370730802417,-0.00159300805535167,0.999896049499512,-0.270584911108017,-0.45657205581665,0.847540974617004,-0.574986636638641,-0.00905490759760141,0.818112730979919,-0.0470915138721466,-0.66451370716095,0.745790839195251,-0.00713319703936577,-0.46561136841774,0.88496059179306,0.00560337258502841,8.82420863490552e-005,0.999984323978424,-0.00688622053712606,-0.457059562206268,0.88940954208374,-0.00163394189439714,-0.45673868060112,0.88959938287735,0.00822562072426081,0.824591398239136,0.565669119358063,-0.00172223872505128,-0.465962946414948,0.884802520275116,0.020769665017724,0.824274063110352,0.565809905529022,-0.00537186115980148,-0.456968277692795,0.889466762542725,0.0207788627594709,0.824919819831848,0.564867675304413,0.924891710281372,-0.11272494494915,0.363136976957321,-0.0929160937666893,0.584025204181671,0.806400060653687,-0.720248818397522,0.559025764465332,0.410769939422607,0.358467608690262,0.765110790729523,0.534889280796051,0.552607953548431,0.771673917770386,0.314871430397034,-0.767513632774353,-0.249405026435852,0.590525150299072,-0.808653295040131,-0.222005262970924,0.544787645339966,-0.413874804973602,0.851676881313324,0.321487426757813,0.784268736839294,0.333546280860901,-0.523134469985962,0.0220148582011461,0.926331162452698,0.376066446304321,0.020769665017724,0.824274063110352,0.565809905529022,0.0207788627594709,0.824919819831848,0.564867675304413,0.0211445167660713,0.926338255405426,0.376098811626434,0.0212807171046734,0.931313812732697,0.363595604896545,0.0184562765061855,0.824342429637909,0.56579065322876,0.55520236492157,0.695653557777405,0.455868929624558,-0.0750162526965141,0.995263278484344,0.0618348307907581,0.357738614082336,0.869164824485779,0.341431885957718,0.00597975496202707,0.512045741081238,-0.858937323093414,0.022705964744091,0.931272327899933,0.363615661859512,0.022673549130559,0.926325261592865,0.37604171037674,-0.0712660029530525,0.997457385063171,0.000300034851534292,
- -0.649473369121552,0.402557700872421,-0.645082652568817,0.276518195867538,0.893413126468658,0.354048848152161,0.00359759060665965,0.512099981307983,-0.858918309211731,0.0036001680418849,0.512246072292328,-0.858831167221069,0.015527518466115,0.931462049484253,0.363507091999054,-0.627256035804749,0.411552578210831,-0.661191701889038,-0.0402382165193558,0.916702747344971,-0.397538542747498,-0.663177609443665,0.346193611621857,-0.663585245609283,0.0046120947226882,0.512264490127563,-0.858815371990204,0.00461029587313533,0.512077331542969,-0.858927071094513,0.00371189648285508,0.418368130922318,-0.908270061016083,0.64649373292923,0.286517202854156,-0.707074165344238,0.079471193253994,-0.25631058216095,-0.96332198381424,0.00952563714236021,-0.308695614337921,-0.951113283634186,-0.0182723980396986,0.511719822883606,-0.858958184719086,-0.0206558592617512,0.419504761695862,-0.907518088817596,-0.0195044558495283,0.465710669755936,-0.884722113609314,-0.0306296795606613,-0.174698024988174,-0.98414558172226,-0.56044864654541,0.412745893001556,-0.718009948730469,-0.539216101169586,0.384953290224075,-0.749037384986877,-0.0005381740629673,0.418584287166595,-0.90817779302597,-0.00451991660520434,-0.306871324777603,-0.951740264892578,-0.000215028849197552,0.466068953275681,-0.884748339653015,0.00228632986545563,-0.466214597225189,-0.88466876745224,0.014031033962965,0.000220961170271039,-0.999901592731476,0.013992466032505,-0.00155471835751086,-0.999900937080383,-0.267074733972549,-0.459986835718155,-0.846807777881622,-0.0470701679587364,-0.66421240568161,-0.746060609817505,-0.574646890163422,-0.00904955714941025,-0.818351566791534,0.00908960308879614,0.00014314336294774,-0.999958693981171,-0.00310982018709183,-0.46587410569191,-0.884845614433289,-0.00294245779514313,-0.460038721561432,-0.887893974781036,0.0140183214098215,0.824460983276367,-0.565745115280151,0.00189830758608878,-0.459733188152313,-0.888055145740509,0.00179715640842915,-0.466184258460999,-0.884685873985291,-0.0088450089097023,-0.460396647453308,-0.887669265270233,0.0169791243970394,0.824383676052094,-0.565776705741882,
- 0.0169893987476826,0.824911534786224,-0.565006375312805,-0.121668539941311,0.658957064151764,-0.74227511882782,0.92813503742218,-0.109636195003986,-0.355732172727585,-0.610600292682648,0.642094194889069,-0.46355402469635,0.688376128673553,0.669724822044373,-0.278580278158188,0.554304242134094,0.678962349891663,-0.481411427259445,-0.763518750667572,-0.25189083814621,-0.594634592533112,-0.143564596772194,0.923286080360413,-0.356275171041489,-0.804766654968262,-0.224746912717819,-0.549399197101593,0.79328590631485,0.327796339988709,0.513076066970825,0.0154090765863657,0.824425637722015,-0.565760612487793,0.0166434030979872,0.926363945007324,-0.376261860132217,0.0154153751209378,0.82490473985672,-0.565061628818512,0.0211762208491564,0.926338076591492,-0.376097679138184,0.0185039415955544,0.824341118335724,-0.565791070461273,0.0213113483041525,0.93131297826767,-0.363596051931381,0.456692844629288,0.741717994213104,-0.491208761930466,0.224030151963234,0.90537816286087,-0.36069518327713,-0.105034217238426,0.984226524829865,-0.142359286546707,0.0227052662521601,0.926324963569641,-0.376040518283844,0.022736631333828,0.931271433830261,-0.363616079092026,0.00590526312589645,0.511967599391937,0.858984470367432,-0.697441399097443,0.390377342700958,0.600983440876007,-0.10334649682045,0.987756967544556,-0.116857536137104,0.166405588388443,0.91533637046814,-0.366699367761612,0.00958834774792194,0.512347459793091,0.8587247133255,0.0095760952681303,0.511828780174255,0.859034061431885,0.0215841643512249,0.931305170059204,-0.363599926233292,-0.665566086769104,0.404542773962021,0.627189695835114,-0.678708672523499,0.379650980234146,0.628665089607239,-0.0607232227921486,0.933059751987457,0.354559123516083,0.00884427968412638,0.51233583688736,0.858739614486694,0.00838804803788662,0.465586543083191,0.884962677955627,0.00883966498076916,0.511857151985168,0.859025061130524,0.0755492076277733,0.0371093861758709,0.996451318264008,0.594370603561401,0.341169118881226,0.728235721588135,0.00799841899424791,-0.00226195901632309,0.999965488910675,
- -0.0112938731908798,0.466673612594604,0.884357511997223,-0.0111273741349578,0.511918723583221,0.858961880207062,-0.0112975081428885,0.465568423271179,0.884939789772034,0.0393196009099483,0.999223589897156,-0.00252838176675141,-0.0393974520266056,0.999221980571747,-0.00184169819112867,0.0392599813640118,0.999225854873657,-0.002527866512537,-0.0389434583485127,0.999163329601288,0.01249935105443,0.0394315868616104,0.999149441719055,0.012064253911376,-0.0472862757742405,0.998802661895752,0.0125412130728364,-0.0473355017602444,0.9986891746521,0.0194740518927574,0.0394877158105373,0.9990234375,0.0198229234665632,0.0234552659094334,0.999529480934143,0.0197696797549725,0.0693297833204269,0.994515597820282,-0.0783083140850067,0.0685500502586365,0.996875464916229,0.0392470620572567,0.0689164027571678,0.997622430324554,2.21516678405765e-016,0.122874766588211,0.991653919219971,0.039041493088007,0.122925989329815,0.989353597164154,-0.0779018625617027,0.123011544346809,0.990380942821503,-0.0633547902107239,-0.0270254388451576,0.997670710086823,0.0626325979828835,-0.0269801802933216,0.998862206935883,0.0393252819776535,-0.0266103483736515,0.997681617736816,-0.0626365542411804,0.102298825979233,0.95706582069397,-0.271219730377197,0.239497900009155,0.96885621547699,0.0629161223769188,0.191055998206139,0.979541957378387,-0.0632078051567078,-0.583698630332947,0.810639619827271,0.0464678592979908,-0.357063740491867,0.881338536739349,-0.309431463479996,-0.525783538818359,0.848376214504242,-0.0617210790514946,-0.0241099894046783,0.997743725776672,0.0626601502299309,-0.01736163161695,0.0157437082380056,0.99972540140152,-0.0237410180270672,0.998944282531738,0.0393285118043423,0.00485939485952258,0.998007714748383,0.0629048869013786,0.00649516098201275,0.998007237911224,-0.0627643093466759,0.00669358065351844,0.996892094612122,-0.0784954428672791,-0.0142608853057027,0.0157444775104523,0.99977433681488,-0.00589147070422769,0.998007535934448,0.0628202185034752,-0.0142619591206312,0.0159690193831921,0.999770760536194,-0.0153168961405754,0.0159853827208281,0.999754905700684,
- -0.0153386946767569,0.00787284504622221,0.99985134601593,-0.0153175592422485,0.0157442316412926,0.999758720397949,0.0138093661516905,0.99285501241684,0.118525810539722,0.0145492441952229,0.997909069061279,0.0629749670624733,0.0162187721580267,0.996783196926117,-0.078486867249012,0.0139999724924564,0.992851793766022,0.118529967963696,-0.009602390229702,0.0158965345472097,0.999827563762665,0.0146242529153824,0.997907996177673,0.0629754886031151,0.281637132167816,0.951983034610748,0.120036952197552,0.306982785463333,0.948778390884399,-0.0747069641947746,0.303667068481445,0.951797485351563,-0.0432181917130947,-0.00614737113937736,0.996877253055573,-0.0787269324064255,-0.00468604313209653,0.992990553379059,0.118101581931114,-0.00603997148573399,0.997982800006866,-0.0631979778409004,0.00691737420856953,0.997451484203339,-0.0710123330354691,0.0072407596744597,0.992941975593567,0.118379779160023,0.00689680501818657,0.996807098388672,-0.0795495584607124,0.00834289751946926,0.997435867786407,-0.0710785761475563,0.00975671410560608,0.998842000961304,0.0471125617623329,0.0105476062744856,0.992903530597687,0.118453934788704,-0.0471151731908321,0.998844921588898,-0.00944272056221962,0.08990877866745,0.994873583316803,0.0462939627468586,-0.174387857317925,0.982760548591614,-0.0614056438207626,-0.691770732402802,0.721035480499268,0.0395116806030273,-0.0477131530642509,0.970625936985016,0.235814988613129,0.0209067761898041,0.968180119991302,0.249379873275757,0.0191024802625179,0.0317752361297607,0.999312579631805,0.00223999586887658,0.992979526519775,0.118265181779861,0.000881073472555727,0.998885869979858,0.047184519469738,0.996842980384827,0.0181329846382141,0.0773008018732071,-0.980965256690979,0.193449661135674,0.01686348952353,0.0184300877153873,0.91474449634552,0.403612434864044,-0.00356096983887255,0.0314242318272591,0.999499797821045,-0.00362037844024599,0.015802975744009,0.999868631362915,0.00325484247878194,0.992973923683167,0.118288673460484,0.956370413303375,0.0242310371249914,0.291150271892548,0.0183123685419559,0.911895215511322,0.410014599561691,
- 0.0390560813248158,0.909057080745697,0.414837062358856,0.0381923094391823,0.872750759124756,0.486669808626175,0.763312697410584,-0.00832502171397209,0.645975708961487,0.75237101316452,0.0325706899166107,0.65793389081955,-0.354349553585052,-0.0350120365619659,0.934457361698151,-0.02848194912076,-0.833729207515717,0.551438450813293,-0.0167204719036818,-0.848213076591492,0.529391348361969,0.00417124899104238,0.0315458029508591,0.999493598937988,0.00477066915482283,-0.0314050428569317,0.999495446681976,0.00477137183770537,-0.0314800962805748,0.999493002891541,-0.00395407481119037,0.0158082097768784,0.999867260456085,-0.00388695416040719,0.0314190648496151,0.999498724937439,-0.00415141554549336,-0.0314801819622517,0.9994957447052,-0.027603629976511,-0.995927691459656,0.0858267545700073,0.0621567629277706,-0.0304416920989752,0.997602045536041,0.0446199886500835,0.980584263801575,0.190954312682152,0.000325361092109233,-0.0314753353595734,0.999504566192627,0.0115944966673851,-0.996187329292297,0.0864665359258652,0.000325420667650178,-0.0314804501831532,0.999504327774048,-0.00206024805083871,0.0157784819602966,0.999873459339142,-0.00294375978410244,-0.0314803160727024,0.999500036239624,-0.0027958566788584,-0.0235493592917919,0.99971878528595,-0.00735292583703995,-0.731879711151123,0.681394219398499,0.43423667550087,-0.89800101518631,-0.0709412470459938,0.369655191898346,-0.925184726715088,0.0859554558992386,-0.224273562431335,-0.970581293106079,-0.0875979661941528,-0.0449673607945442,-0.97757089138031,-0.20575013756752,0.0301416479051113,-0.967243075370789,-0.252056539058685,-0.0723849460482597,0.0168444011360407,0.997234523296356,-0.0706605464220047,-0.0218881815671921,0.997260212898254,-0.0712221711874008,-0.00953607447445393,0.997414886951447,-0.000560110260266811,-0.00788700114935637,0.999968826770782,-0.000541381072252989,0.00787377078086138,0.999968886375427,-0.000531964760739356,0.0157544519752264,0.999875783920288,-0.00927388947457075,-0.0314791016280651,0.99946141242981,-0.0132987387478352,-0.997410178184509,0.0706826075911522,
- -0.0091732032597065,-0.0233978983014822,0.999684154987335,0.101653002202511,-0.00543186021968722,0.994805157184601,0.0992773845791817,-0.0258425567299128,0.994724214076996,-0.10779232531786,-0.991686403751373,0.0702769830822945,-0.0078061637468636,-0.997467994689941,0.0706867054104805,-0.00176791124977171,-0.0314804054796696,0.999502837657928,-0.00782038178294897,-0.996250092983246,0.0861662328243256,0.0562757700681686,0.00786129385232925,0.998384356498718,0.0562948808073998,-0.00653156125918031,0.998392879962921,0.0563009791076183,-0.0157211031764746,0.998290061950684,-0.0288757495582104,0.00787048973143101,0.999552130699158,-0.0289340633898973,-0.0157394874840975,0.99945741891861,-0.028896976262331,-2.21951881287087e-016,0.999582409858704,0.0400803871452808,-0.996696889400482,0.0706320554018021,0.0228532738983631,-0.0157419666647911,0.999614894390106,0.022530959919095,-0.00733957719057798,0.999719202518463,0.0221672207117081,-0.0157422106713057,0.999630331993103,0.0440411232411861,-0.996530652046204,0.0706202760338783,0.0435963347554207,-0.997936189174652,0.0471465922892094,-0.00761570455506444,-0.997469544410706,0.0706868171691895,-0.00760572450235486,-0.996251463890076,0.0861697271466255,-0.00761278625577688,-0.996187210083008,-0.0869083032011986,0.0500958934426308,-0.994925558567047,-0.087256170809269,0.0497012883424759,-0.997651338577271,0.047133132815361,0.0495396815240383,-0.996273636817932,0.0706020593643188,-0.2169528901577,-0.975094497203827,0.0460674576461315,-0.211637988686562,-0.973788917064667,-0.0833336487412453,-0.216019511222839,-0.976267993450165,0.0153742991387844,-0.00455647381022573,-0.996253490447998,-0.0863614305853844,-0.00455462699756026,-0.996203660964966,-0.0869340151548386,-0.00504066003486514,-0.996264159679413,0.0862112194299698,-0.00182581879198551,-0.99621045589447,-0.086956262588501,-0.0018243599915877,-0.996265888214111,-0.0863194838166237,-0.00246936595067382,-0.0236736871302128,-0.999716758728027,-0.122538007795811,-0.0263303741812706,-0.99211448431015,-0.122415348887444,-0.0234378464519978,-0.992202162742615,
- -0.0564304180443287,-0.994662225246429,-0.0863877311348915,0.0187472011893988,-0.0236113090068102,-0.999545454978943,0.0183342639356852,-0.00787244830280542,-0.99980092048645,0.0183342639356852,-0.00787244830280542,-0.99980092048645,-0.0547197461128235,-0.0078619746491313,-0.998470842838287,-0.0544841326773167,-0.0235803816467524,-0.998236179351807,-0.0544642545282841,-0.0248662270605564,-0.99820601940155,0.547807931900024,-0.0217972919344902,-0.836320161819458,-0.37072542309761,-0.92475825548172,-0.0859353765845299,0.0135790258646011,-0.811861336231232,-0.58369243144989,0.00628287391737103,-0.0158446859568357,-0.999854743480682,0.00630551157519221,-0.0234661269932985,-0.999704837799072,0.00361904269084334,-0.996268391609192,-0.0862339735031128,0.025458812713623,-0.385126054286957,-0.922512769699097,0.371832430362701,-0.0204709693789482,-0.92807412147522,-0.0121245365589857,-0.418533265590668,-0.908120572566986,-0.591434836387634,0.0283498615026474,-0.805854320526123,-0.616794109344482,-0.00268229958601296,-0.78712010383606,-0.0172112081199884,0.50784957408905,-0.86127382516861,-0.0172112081199884,0.50784957408905,-0.86127382516861,0.762667298316956,0.641635477542877,-0.0815017521381378,-0.591434836387634,0.0283498615026474,-0.805854320526123,0.00892325770109892,0.997428894042969,-0.0711055025458336,0.00703177088871598,0.963222801685333,-0.268612027168274,-0.0077012893743813,0.0237359721213579,-0.999688625335693,0.00459390785545111,-0.015818240121007,-0.999864339828491,0.00492917140945792,0.0235375873744488,-0.99971079826355,0.00486305356025696,0.0157076101750135,-0.999864816665649,0.00309332786127925,0.0157216545194387,-0.999871611595154,0.00320857856422663,0.0235648360103369,-0.999717175960541,0.0149754025042057,0.963088035583496,-0.268769800662994,0.00438759103417397,0.0157113894820213,-0.999866962432861,0.00433531822636724,-0.0235128868371248,-0.999714136123657,0.00434610713273287,-0.0158143546432257,-0.999865531921387,-0.0074917976744473,0.0158046148717403,-0.999847114086151,-0.0155111290514469,0.96327406167984,-0.268071979284287,
- -0.0152738438919187,0.978404402732849,-0.206134721636772,0.274434506893158,0.012981116771698,-0.961518168449402,0.468173235654831,0.870412588119507,-0.152301147580147,0.453948646783829,0.888278543949127,-0.0699431970715523,0.00212504388764501,0.996912062168121,-0.078497014939785,0.0117928460240364,0.0083374809473753,-0.999895811080933,0.0118006141856313,0.0156520865857601,-0.999807834625244,0.00969955511391163,-0.0233853533864021,-0.999679446220398,0.009848871268332,0.015667786821723,-0.999828815460205,0.00982169527560472,0.00826004799455404,-0.999917685985565,0.0130626251921058,0.00838734395802021,-0.999879539012909,0.00669358065351844,0.996892094612122,-0.0784954428672791,0.00776575412601233,0.986170411109924,-0.165552377700806,0.277733504772186,0.102371618151665,-0.955188035964966,0.347655475139618,0.0210682135075331,-0.937385678291321,-0.652203917503357,0.745793402194977,-0.135728567838669,0.375686287879944,-0.0130150215700269,-0.926655471324921,0.347655475139618,0.0210682135075331,-0.937385678291321,0.277733504772186,0.102371618151665,-0.955188035964966,-0.119804315268993,-0.0262737218290567,-0.992449879646301,-0.0924222841858864,0.0394502095878124,-0.994938135147095,-0.10497573018074,0.00948331598192453,-0.994429588317871,-0.0342293679714203,0.00840816833078861,-0.999378681182861,-0.034104697406292,-0.00786919239908457,-0.999387383460999,-0.0339687801897526,-0.0244037862867117,-0.999124884605408,-0.128418788313866,0.00983077939599752,-0.991671323776245,-0.117181807756424,0.0349557250738144,-0.992495119571686,0.404083430767059,0.912707686424255,-0.0606751553714275,-0.00963270384818316,-0.0078734066337347,-0.999922633171082,-0.00962618738412857,0.00802499055862427,-0.999921441078186,-0.00963270384818316,-0.0078734066337347,-0.999922633171082,-0.00564859760925174,0.998008787631989,-0.0628222152590752,-0.00573545368388295,0.99689793586731,-0.0784959048032761,-0.00595808355137706,0.00796745531260967,-0.999950587749481,0.000976720009930432,-0.00787376798689365,-0.999968528747559,0.000982077210210264,0.00785830430686474,-0.999968707561493,
- 0.000979431439191103,2.22044499045913e-016,-0.999999523162842,0.000979431439191103,2.22044499045913e-016,-0.999999523162842,0.000982077210210264,0.00785830430686474,-0.999968707561493,0.00041633757064119,0.996914267539978,-0.0784971863031387,-0.498931974172592,0.856714129447937,0.13079696893692,-0.300341486930847,0.953373849391937,0.0295520648360252,-0.498931974172592,0.856714129447937,0.13079696893692,-0.275540947914124,0.958406448364258,0.0743939802050591,-0.474619120359421,0.861468911170959,0.180576920509338,-0.442588567733765,0.881752371788025,0.163181349635124,-0.272212833166122,0.95888078212738,0.0802980586886406,-0.441219031810761,0.881661176681519,0.1673304438591,-0.208554536104202,0.976825714111328,0.0481320768594742,-0.210163101553917,0.976699948310852,0.043458953499794,-0.00829209294170141,0.995014786720276,-0.0993817821145058,-0.268841028213501,0.95931476354599,0.0862534046173096,0.00204962468706071,0.996507823467255,-0.0834744498133659,-0.212508708238602,0.976472914218903,0.0366158671677113,0.00204962468706071,0.996507823467255,-0.0834744498133659,-0.00149451196193695,0.996036887168884,-0.0889294892549515,-0.212148636579514,0.976511180400848,0.0376685671508312,0.0556406937539577,0.990928888320923,-0.122328221797943,-0.184200763702393,0.975897967815399,0.117018431425095,-0.459618777036667,0.881405293941498,0.108973786234856,-0.0731373429298401,0.990378499031067,0.117479734122753,-0.0710310190916061,0.993293046951294,0.0912331119179726,0.134535878896713,0.989688336849213,0.0491637215018272,-0.185585528612137,0.976086974143982,0.113191232085228,0.108633808791637,0.994048774242401,-0.00810840725898743,-0.0631299540400505,0.998001754283905,-0.00269449735060334,0.150045126676559,0.988634645938873,-0.00939270574599504,-0.065614677965641,0.997502863407135,0.0261296667158604,-0.460430055856705,0.881313443183899,0.106258556246758,-0.382631242275238,0.919442176818848,0.0906610265374184,-0.382255256175995,0.921247899532318,0.071994885802269,-0.289228230714798,0.952719271183014,0.0931301191449165,-0.0746142268180847,0.987864017486572,0.136225417256355,
- -0.289321422576904,0.952655792236328,0.093489445745945,-0.381977707147598,0.922140777111053,0.0612333342432976,-0.397264808416367,0.916011571884155,0.0557086169719696,-0.336112916469574,0.893337488174438,0.298289209604263,-0.437784790992737,0.852960467338562,0.284258782863617,-0.437784790992737,0.852960467338562,0.284258782863617,-0.277442842721939,0.959502160549164,0.0487984642386436,-0.0675231292843819,0.986452162265778,0.149509057402611,-0.0753692165017128,0.986420750617981,0.145923227071762,-0.111008115112782,0.954039335250854,0.278363317251205,-0.332651138305664,0.900243639945984,0.28089964389801,-0.119048245251179,0.952969789505005,0.278704404830933,-0.629033803939819,-0.488128960132599,0.605017900466919,-0.629033803939819,-0.488128960132599,0.605017900466919,-0.629033803939819,-0.488128960132599,0.605017900466919,0.0712737888097763,0.631169557571411,-0.772363364696503,0.0712737888097763,0.631169557571411,-0.772363364696503,0.0712737888097763,0.631169557571411,-0.772363364696503,0.0350782945752144,0.432238727807999,0.901076793670654,0.0350782945752144,0.432238727807999,0.901076793670654,0.0350782945752144,0.432238727807999,0.901076793670654,-0.163042709231377,-0.707935988903046,-0.687199950218201,-0.163042709231377,-0.707935988903046,-0.687199950218201,-0.163042709231377,-0.707935988903046,-0.687199950218201,-0.648767411708832,0.153106778860092,0.745425581932068,-0.648767411708832,0.153106778860092,0.745425581932068,-0.648767411708832,0.153106778860092,0.745425581932068,-0.390179753303528,-0.467089354991913,-0.793465375900269,-0.390179753303528,-0.467089354991913,-0.793465375900269,-0.390179753303528,-0.467089354991913,-0.793465375900269,-0.390417695045471,0.0516180209815502,-0.919189691543579,-0.390417695045471,0.0516180209815502,-0.919189691543579,-0.390417695045471,0.0516180209815502,-0.919189691543579,-0.0450953878462315,-0.434093326330185,0.899738490581512,-0.0450953878462315,-0.434093326330185,0.899738490581512,-0.0450953878462315,-0.434093326330185,0.899738490581512,0.171270966529846,0.709721505641937,-0.683345913887024,
- 0.171270966529846,0.709721505641937,-0.683345913887024,0.171270966529846,0.709721505641937,-0.683345913887024,0.659708201885223,-0.175252035260201,0.730802178382874,0.659708201885223,-0.175252035260201,0.730802178382874,0.659708201885223,-0.175252035260201,0.730802178382874,-0.52296382188797,-0.274879723787308,0.806814670562744,-0.52296382188797,-0.274879723787308,0.806814670562744,-0.52296382188797,-0.274879723787308,0.806814670562744,0.649772226810455,0.432171583175659,0.625318944454193,0.649772226810455,0.432171583175659,0.625318944454193,0.649772226810455,0.432171583175659,0.625318944454193,-0.019351989030838,-0.649511814117432,-0.760105192661285,-0.019351989030838,-0.649511814117432,-0.760105192661285,-0.019351989030838,-0.649511814117432,-0.760105192661285,0.416763752698898,-0.418240994215012,0.807082653045654,0.416763752698898,-0.418240994215012,0.807082653045654,0.416763752698898,-0.418240994215012,0.807082653045654,0.35374054312706,0.0275663249194622,0.934937298297882,0.35374054312706,0.0275663249194622,0.934937298297882,0.35374054312706,0.0275663249194622,0.934937298297882,0.0336147919297218,-0.433649301528931,-0.900454521179199,0.0336147919297218,-0.433649301528931,-0.900454521179199,0.0336147919297218,-0.433649301528931,-0.900454521179199,-0.189197212457657,0.681407570838928,0.707027733325958,-0.189197212457657,0.681407570838928,0.707027733325958,-0.189197212457657,0.681407570838928,0.707027733325958,-0.574544489383698,-0.099477507174015,-0.812405586242676,-0.574544489383698,-0.099477507174015,-0.812405586242676,-0.574544489383698,-0.099477507174015,-0.812405586242676,0.478564411401749,-0.199251264333725,-0.855146169662476,0.478564411401749,-0.199251264333725,-0.855146169662476,0.478564411401749,-0.199251264333725,-0.855146169662476,0,0.00559919187799096,0.999984323978424,0,0.00559919187799096,0.999984323978424,0,0.00559919187799096,0.999984323978424,0,-0.000606709509156644,0.999999821186066,0,-0.000606709509156644,0.999999821186066,0,-0.000606709509156644,0.999999821186066,0.039337120950222,-0.0112333130091429,0.99916285276413,
- 0.039337120950222,-0.0112333130091429,0.99916285276413,0.039337120950222,-0.0112333130091429,0.99916285276413,0.0393360666930676,-0.0134060299023986,0.999136090278625,0.0393360666930676,-0.0134060299023986,0.999136090278625,0.0393360666930676,-0.0134060299023986,0.999136090278625,0.0256294049322605,0.00807297881692648,-0.999638915061951,0.0256294049322605,0.00807297881692648,-0.999638915061951,0.0256294049322605,0.00807297881692648,-0.999638915061951,0.0230955015867949,0.00805351417511702,-0.999700844287872,0.0230955015867949,0.00805351417511702,-0.999700844287872,0.0230955015867949,0.00805351417511702,-0.999700844287872,0,-0.00499431882053614,0.999987542629242,0,-0.00499431882053614,0.999987542629242,0,-0.00499431882053614,0.999987542629242,0,-0.00202798470854759,0.999997913837433,0,-0.00202798470854759,0.999997913837433,0,-0.00202798470854759,0.999997913837433,0.00668193306773901,-0.00782098527997732,0.999947071075439,0.00668193306773901,-0.00782098527997732,0.999947071075439,0.00668193306773901,-0.00782098527997732,0.999947071075439,0.010119910351932,-0.00779368914663792,0.999918460845947,0.010119910351932,-0.00779368914663792,0.999918460845947,0.010119910351932,-0.00779368914663792,0.999918460845947,-0.0230171363800764,0.0155607163906097,0.999614059925079,-0.0230171363800764,0.0155607163906097,0.999614059925079,-0.0230171363800764,0.0155607163906097,0.999614059925079,0.00869922246783972,0.0158139634877443,0.999837100505829,0.00869922246783972,0.0158139634877443,0.999837100505829,0.00869922246783972,0.0158139634877443,0.999837100505829,-0.0120266769081354,0.0156502667814493,0.999805212020874,-0.0120266769081354,0.0156502667814493,0.999805212020874,-0.0120266769081354,0.0156502667814493,0.999805212020874,7.69732650951482e-006,-0.999969005584717,-0.00787377171218395,7.69732650951482e-006,-0.999969005584717,-0.00787377171218395,7.69732650951482e-006,-0.999969005584717,-0.00787377171218395,-0.0156447310000658,-0.999846637248993,-0.00787280779331923,-0.0156447310000658,-0.999846637248993,-0.00787280779331923,-0.0156447310000658,-0.999846637248993,-0.00787280779331923,
- 0.073744997382164,-0.997246325016022,-0.00785233359783888,0.073744997382164,-0.997246325016022,-0.00785233359783888,0.073744997382164,-0.997246325016022,-0.00785233359783888,0.0238559544086456,0.999591469764709,-0.0157415978610516,0.0238559544086456,0.999591469764709,-0.0157415978610516,0.0238559544086456,0.999591469764709,-0.0157415978610516,-0.0267242733389139,0.999518930912018,-0.0157404560595751,-0.0267242733389139,0.999518930912018,-0.0157404560595751,-0.0267242733389139,0.999518930912018,-0.0157404560595751,-0.140366464853287,0.98997688293457,-0.0155901871621609,-0.140366464853287,0.98997688293457,-0.0155901871621609,-0.140366464853287,0.98997688293457,-0.0155901871621609,0.0389772243797779,-0.0390032753348351,0.998478591442108,0.0389772243797779,-0.0390032753348351,0.998478591442108,0.0389772243797779,-0.0390032753348351,0.998478591442108,0.0666783675551414,-0.0387278348207474,0.99702262878418,0.0666783675551414,-0.0387278348207474,0.99702262878418,0.0666783675551414,-0.0387278348207474,0.99702262878418,0.104186080396175,-0.038306400179863,0.993819832801819,0.104186080396175,-0.038306400179863,0.993819832801819,0.104186080396175,-0.038306400179863,0.993819832801819,0.0697451159358025,-0.0146096479147673,0.99745786190033,0.0697451159358025,-0.0146096479147673,0.99745786190033,0.0697451159358025,-0.0146096479147673,0.99745786190033,-0.00984491035342216,-0.0159003138542175,0.999825119972229,-0.00984491035342216,-0.0159003138542175,0.999825119972229,-0.00984491035342216,-0.0159003138542175,0.999825119972229,0.0143821788951755,-0.0155180152505636,0.999776184558868,0.0143821788951755,-0.0155180152505636,0.999776184558868,0.0143821788951755,-0.0155180152505636,0.999776184558868,0.00513617554679513,0.999955832958221,-0.00787366833537817,0.00513617554679513,0.999955832958221,-0.00787366833537817,0.00513617554679513,0.999955832958221,-0.00787366833537817,0.00176210980862379,0.999967455863953,-0.00787375960499048,0.00176210980862379,0.999967455863953,-0.00787375960499048,0.00176210980862379,0.999967455863953,-0.00787375960499048,
- 0.0205872394144535,0.999757051467896,-0.00787210278213024,0.0205872394144535,0.999757051467896,-0.00787210278213024,0.0205872394144535,0.999757051467896,-0.00787210278213024,-0.0579961687326431,0.998311400413513,-0.00329409167170525,-0.0579961687326431,0.998311400413513,-0.00329409167170525,-0.0586178824305534,0.998149394989014,-0.0161804463714361,-0.0554167628288269,0.998332560062408,-0.0161581262946129,-0.0551629289984703,0.998446524143219,-0.0078617837280035,-0.0550288520753384,0.998478531837463,-0.00352905504405499,-0.0606877580285072,0.998125851154327,-0.00785925891250372,-0.0602815002202988,0.998050153255463,-0.0161919835954905,-0.0606877580285072,0.998125851154327,-0.00785925891250372,0.0160106029361486,-0.99937629699707,0.0314764194190502,0.0160106029361486,-0.99937629699707,0.0314764194190502,0.0160106029361486,-0.99937629699707,0.0314764194190502,0.0363729931414127,-0.998843014240265,0.0314596220850945,0.0363729931414127,-0.998843014240265,0.0314596220850945,0.0363729931414127,-0.998843014240265,0.0314596220850945,0.0177479796111584,-0.999346911907196,0.0314754955470562,0.0177479796111584,-0.999346911907196,0.0314754955470562,0.0177479796111584,-0.999346911907196,0.0314754955470562,0.11953604221344,0.00781731586903334,-0.99279910326004,0.11953604221344,0.00781731586903334,-0.99279910326004,0.11953604221344,0.00781731586903334,-0.99279910326004,0.0080671664327383,0.00787351559847593,-0.999936461448669,0.0080671664327383,0.00787351559847593,-0.999936461448669,0.0080671664327383,0.00787351559847593,-0.999936461448669,0.00631334353238344,0.00787361524999142,-0.999949097633362,0.00631334353238344,0.00787361524999142,-0.999949097633362,0.00631334353238344,0.00787361524999142,-0.999949097633362,-0.0760364085435867,0.99707418680191,-0.00785097759217024,-0.0760364085435867,0.99707418680191,-0.00785097759217024,-0.0760364085435867,0.99707418680191,-0.00785097759217024,-0.0076139448210597,0.999940037727356,-0.00787354353815317,-0.0076139448210597,0.999940037727356,-0.00787354353815317,-0.0076139448210597,0.999940037727356,-0.00787354353815317,
- 0.00823556073009968,0.99993509054184,-0.00787350442260504,0.00823556073009968,0.99993509054184,-0.00787350442260504,0.00823556073009968,0.99993509054184,-0.00787350442260504,0.0855908915400505,-0.995611190795898,-0.0378494039177895,0.0855908915400505,-0.995611190795898,-0.0378494039177895,0.0855908915400505,-0.995611190795898,-0.0378494039177895,0.0882206708192825,-0.995383560657501,-0.0377990230917931,0.0882206708192825,-0.995383560657501,-0.0377990230917931,0.0882206708192825,-0.995383560657501,-0.0377990230917931,0.0887912213802338,-0.995333194732666,-0.0377880595624447,0.0887912213802338,-0.995333194732666,-0.0377880595624447,0.0887912213802338,-0.995333194732666,-0.0377880595624447,-0.00180272979196161,0.0393253676593304,-0.999224901199341,-0.00180272979196161,0.0393253676593304,-0.999224901199341,-0.00180272979196161,0.0393253676593304,-0.999224901199341,-0.0160079877823591,0.0392087064683437,-0.999102830886841,-0.0160079877823591,0.0392087064683437,-0.999102830886841,-0.0160079877823591,0.0392087064683437,-0.999102830886841,-0.000619761936832219,0.0393347218632698,-0.999225914478302,-0.000619761936832219,0.0393347218632698,-0.999225914478302,-0.000619761936832219,0.0393347218632698,-0.999225914478302,0.00598692148923874,0.0393859632313252,-0.999206185340881,0.00598692148923874,0.0393859632313252,-0.999206185340881,0.00598692148923874,0.0393859632313252,-0.999206185340881,0.0238608047366142,0.999689936637878,0.00712005281820893,0.0238821040838957,0.99967759847641,0.00862366985529661,0.0238608047366142,0.999689936637878,0.00712005281820893,0.0212399289011955,0.999737977981567,0.00854092743247747,0.0212318655103445,0.999748706817627,0.00720331724733114,0.0212399289011955,0.999737977981567,0.00854092743247747,-0.0105499653145671,0.999916017055511,0.00754107255488634,-0.0105499653145671,0.999916017055511,0.00754107255488634,-0.0105499653145671,0.999916017055511,0.00754107255488634,0.0393395908176899,0.000771165476180613,-0.999225616455078,0.0393395908176899,0.000771165476180613,-0.999225616455078,0.0393395908176899,0.000771165476180613,-0.999225616455078,
- 0.0393389724195004,0.00566281052306294,-0.999209880828857,0.0393389724195004,0.00566281052306294,-0.999209880828857,0.0393389724195004,0.00566281052306294,-0.999209880828857,0.0393387265503407,-0.00666388962417841,-0.999203681945801,0.0393387265503407,-0.00666388962417841,-0.999203681945801,0.0393387265503407,-0.00666388962417841,-0.999203681945801,0.0161085296422243,-0.0232927091419697,-0.999598920345306,0.0161085296422243,-0.0232927091419697,-0.999598920345306,0.0161085296422243,-0.0232927091419697,-0.999598920345306,0.0159575380384922,-0.0135225346311927,-0.999781250953674,0.0159575380384922,-0.0135225346311927,-0.999781250953674,0.0159575380384922,-0.0135225346311927,-0.999781250953674,0.0159512534737587,-0.0131178461015224,-0.999786734580994,0.0159512534737587,-0.0131178461015224,-0.999786734580994,0.0159512534737587,-0.0131178461015224,-0.999786734580994,-0.00445599667727947,-0.999490022659302,-0.0316203460097313,-0.00445599667727947,-0.999490022659302,-0.0316203460097313,-0.00445599667727947,-0.999490022659302,-0.0316203460097313,-0.00160131184384227,-0.999501585960388,-0.0315307974815369,-0.00160131184384227,-0.999501585960388,-0.0315307974815369,-0.00160131184384227,-0.999501585960388,-0.0315307974815369,-0.00250695738941431,-0.999498844146729,-0.0315592363476753,-0.00250695738941431,-0.999498844146729,-0.0315592363476753,-0.00250695738941431,-0.999498844146729,-0.0315592363476753,0.0466428324580193,-0.998787760734558,-0.0157289411872625,0.0466428324580193,-0.998787760734558,-0.0157289411872625,0.0466428324580193,-0.998787760734558,-0.0157289411872625,-0.0177039541304111,-0.999719440937042,-0.015743613243103,-0.0177039541304111,-0.999719440937042,-0.015743613243103,-0.0177039541304111,-0.999719440937042,-0.015743613243103,0.0297106392681599,-0.999434649944305,-0.0157391279935837,0.0297106392681599,-0.999434649944305,-0.0157391279935837,0.0297106392681599,-0.999434649944305,-0.0157391279935837,0.121074743568897,-0.992520332336426,-0.0156302414834499,0.121074743568897,-0.992520332336426,-0.0156302414834499,
- 0.121074743568897,-0.992520332336426,-0.0156302414834499,-0.0162910576909781,-0.0394624583423138,-0.999088227748871,-0.0162910576909781,-0.0394624583423138,-0.999088227748871,-0.0162910576909781,-0.0394624583423138,-0.999088227748871,0.0183247979730368,-0.0391889289021492,-0.999063849449158,0.0183247979730368,-0.0391889289021492,-0.999063849449158,0.0183247979730368,-0.0391889289021492,-0.999063849449158,-0.00281912949867547,-0.0393616110086441,-0.99922114610672,-0.00281912949867547,-0.0393616110086441,-0.99922114610672,-0.00281912949867547,-0.0393616110086441,-0.99922114610672,-0.00534067489206791,-0.03938103094697,-0.999210000038147,-0.00534067489206791,-0.03938103094697,-0.999210000038147,-0.00534067489206791,-0.03938103094697,-0.999210000038147,-0.0393342562019825,0.0164884459227324,0.999090075492859,-0.0393342562019825,0.0164884459227324,0.999090075492859,-0.0393342562019825,0.0164884459227324,0.999090075492859,-0.0393372029066086,0.0110472925007343,0.999164938926697,-0.0393372029066086,0.0110472925007343,0.999164938926697,-0.0393372029066086,0.0110472925007343,0.999164938926697,-0.039335947483778,-0.0136317750439048,0.999133050441742,-0.039335947483778,-0.0136317750439048,0.999133050441742,-0.039335947483778,-0.0136317750439048,0.999133050441742,-0.039312444627285,0.0371511392295361,0.998536109924316,-0.039312444627285,0.0371511392295361,0.998536109924316,-0.039312444627285,0.0371511392295361,0.998536109924316,-0.0945588648319244,0.0384199135005474,0.994777619838715,-0.0945588648319244,0.0384199135005474,0.994777619838715,-0.0945588648319244,0.0384199135005474,0.994777619838715,-0.0380359590053558,0.0390121042728424,0.998514652252197,-0.0380359590053558,0.0390121042728424,0.998514652252197,-0.0380359590053558,0.0390121042728424,0.998514652252197,-0.0626114085316658,0.0387701727449894,0.997284650802612,-0.0626114085316658,0.0387701727449894,0.997284650802612,-0.0626114085316658,0.0387701727449894,0.997284650802612,-0.10310672968626,0.0383193120360374,0.993931889533997,-0.10310672968626,0.0383193120360374,0.993931889533997,
- -0.10310672968626,0.0383193120360374,0.993931889533997,-0.00821180269122124,-0.00787350628525019,-0.999935269355774,-0.00821180269122124,-0.00787350628525019,-0.999935269355774,-0.00821180269122124,-0.00787350628525019,-0.999935269355774,-0.0526200160384178,-0.00786286313086748,-0.998583674430847,-0.0526200160384178,-0.00786286313086748,-0.998583674430847,-0.0526200160384178,-0.00786286313086748,-0.998583674430847,-0.00715815369039774,-0.00787356961518526,-0.999943375587463,-0.00715815369039774,-0.00787356961518526,-0.999943375587463,-0.00715815369039774,-0.00787356961518526,-0.999943375587463,0.0470066554844379,-0.998863637447357,-0.0078650675714016,0.0470066554844379,-0.998863637447357,-0.0078650675714016,0.0470066554844379,-0.998863637447357,-0.0078650675714016,0.014304299838841,-0.999866783618927,-0.00787296704947948,0.014304299838841,-0.999866783618927,-0.00787296704947948,0.014304299838841,-0.999866783618927,-0.00787296704947948,-0.0104312794283032,-0.999914586544037,-0.00787334330379963,-0.0104312794283032,-0.999914586544037,-0.00787334330379963,-0.0104312794283032,-0.999914586544037,-0.00787334330379963,0.0368365682661533,-0.0549972280859947,-0.99780684709549,0.0368365682661533,-0.0549972280859947,-0.99780684709549,0.0368365682661533,-0.0549972280859947,-0.99780684709549,0.032400120049715,-0.0550056807696819,-0.997960209846497,0.032400120049715,-0.0550056807696819,-0.997960209846497,0.032400120049715,-0.0550056807696819,-0.997960209846497,0.0275612473487854,-0.0550136677920818,-0.99810516834259,0.0275612473487854,-0.0550136677920818,-0.99810516834259,0.0275612473487854,-0.0550136677920818,-0.99810516834259,0.2008997797966,-0.053912527859211,-0.978127241134644,0.2008997797966,-0.053912527859211,-0.978127241134644,0.2008997797966,-0.053912527859211,-0.978127241134644,-0.000800942594651133,-0.0254299268126488,0.999676287174225,-0.000800942594651133,-0.0254299268126488,0.999676287174225,-0.000800942594651133,-0.0254299268126488,0.999676287174225,0.000179718117578886,0.00570604996755719,0.999983787536621,0.000179718117578886,0.00570604996755719,0.999983787536621,
- 0.000179718117578886,0.00570604996755719,0.999983787536621,2.46751096710796e-005,0.000783434719778597,0.999999761581421,2.46751096710796e-005,0.000783434719778597,0.999999761581421,2.46751096710796e-005,0.000783434719778597,0.999999761581421,0.01556137483567,-0.0229370035231113,0.999615788459778,0.01556137483567,-0.0229370035231113,0.999615788459778,0.01556137483567,-0.0229370035231113,0.999615788459778,0.0156276002526283,-0.0148307858034968,0.999767959117889,0.0156276002526283,-0.0148307858034968,0.999767959117889,0.0156276002526283,-0.0148307858034968,0.999767959117889,0.0157935861498117,0.00607185019180179,0.99985682964325,0.0157935861498117,0.00607185019180179,0.99985682964325,0.0157935861498117,0.00607185019180179,0.99985682964325,0.106747470796108,0.993581175804138,0.037436306476593,0.106747470796108,0.993581175804138,0.037436306476593,0.106747470796108,0.993581175804138,0.037436306476593,0.111587539315224,0.993052899837494,0.0373392887413502,0.111587539315224,0.993052899837494,0.0373392887413502,0.111587539315224,0.993052899837494,0.0373392887413502,0.11339895427227,0.992849051952362,0.0373027324676514,0.11339895427227,0.992849051952362,0.0373027324676514,0.11339895427227,0.992849051952362,0.0373027324676514,0.0314792022109032,0.00892371125519276,-0.999464571475983,0.0314792022109032,0.00892371125519276,-0.999464571475983,0.0314792022109032,0.00892371125519276,-0.999464571475983,0.0314783789217472,0.0114798378199339,-0.999438524246216,0.0314783789217472,0.0114798378199339,-0.999438524246216,0.0314783789217472,0.0114798378199339,-0.999438524246216,0.031478974968195,0.00969815906137228,-0.999457359313965,0.031478974968195,0.00969815906137228,-0.999457359313965,0.031478974968195,0.00969815906137228,-0.999457359313965,0,0.0930525735020638,0.995661199092865,0,0.0930525735020638,0.995661199092865,0,0.0930525735020638,0.995661199092865,0,0.110617384314537,0.993863046169281,0,0.110617384314537,0.993863046169281,0,0.110617384314537,0.993863046169281,0,0.113574296236038,0.993529498577118,0,0.113574296236038,0.993529498577118,
- 0,0.113574296236038,0.993529498577118,0,0.112129613757133,0.993693590164185,0,0.112129613757133,0.993693590164185,0,0.112129613757133,0.993693590164185,-0.054052546620369,-0.0479717738926411,0.997385144233704,-0.054052546620369,-0.0479717738926411,0.997385144233704,-0.054052546620369,-0.0479717738926411,0.997385144233704,-0.0678203329443932,-0.0481484308838844,0.996535062789917,-0.0678203329443932,-0.0481484308838844,0.996535062789917,-0.0678203329443932,-0.0481484308838844,0.996535062789917,-0.0526703298091888,-0.047953549772501,0.997460007667542,-0.0526703298091888,-0.047953549772501,0.997460007667542,-0.0526703298091888,-0.047953549772501,0.997460007667542,-0.0547440312802792,-0.0479808636009693,0.997346997261047,-0.0547440312802792,-0.0479808636009693,0.997346997261047,-0.0547440312802792,-0.0479808636009693,0.997346997261047,0,-0.0823445394635201,0.996604025363922,0,-0.0823445394635201,0.996604025363922,0,-0.0823445394635201,0.996604025363922,0,-0.10922372341156,0.99401718378067,0,-0.10922372341156,0.99401718378067,0,-0.10922372341156,0.99401718378067,0,-0.118965201079845,0.992898404598236,0,-0.118965201079845,0.992898404598236,0,-0.118965201079845,0.992898404598236,0,-0.111201643943787,0.993797957897186,0,-0.111201643943787,0.993797957897186,0,-0.111201643943787,0.993797957897186,0.00032763701165095,0.0208049491047859,0.999783515930176,0.00032763701165095,0.0208049491047859,0.999783515930176,0.00032763701165095,0.0208049491047859,0.999783515930176,0.00011280440230621,0.00716307945549488,0.999974370002747,0.00011280440230621,0.00716307945549488,0.999974370002747,0.00011280440230621,0.00716307945549488,0.999974370002747,0.000393750640796497,0.0250031668692827,0.999687254428864,0.000393750640796497,0.0250031668692827,0.999687254428864,0.000393750640796497,0.0250031668692827,0.999687254428864,0.000615790137089789,0.0391026735305786,0.999235033988953,0.000615790137089789,0.0391026735305786,0.999235033988953,0.000615790137089789,0.0391026735305786,0.999235033988953,-0.17144176363945,-0.985072135925293,0.0155129469931126,
- -0.17144176363945,-0.985072135925293,0.0155129469931126,-0.17144176363945,-0.985072135925293,0.0155129469931126,-0.034376934170723,-0.999285042285919,0.0157367736101151,-0.034376934170723,-0.999285042285919,0.0157367736101151,-0.034376934170723,-0.999285042285919,0.0157367736101151,0.0132762379944324,-0.999787986278534,0.0157446935772896,0.0132762379944324,-0.999787986278534,0.0157446935772896,0.0132762379944324,-0.999787986278534,0.0157446935772896,0.0259478092193604,-0.999539375305176,0.0157407782971859,0.0259478092193604,-0.999539375305176,0.0157407782971859,0.0259478092193604,-0.999539375305176,0.0157407782971859,-0,-0.0916437283158302,-0.995791852474213,-0,-0.0916437283158302,-0.995791852474213,-0,-0.0916437283158302,-0.995791852474213,-0,-0.107547141611576,-0.994199991226196,-0,-0.107547141611576,-0.994199991226196,-0,-0.107547141611576,-0.994199991226196,-0,-0.107118338346481,-0.994246304035187,-0,-0.107118338346481,-0.994246304035187,-0,-0.107118338346481,-0.994246304035187,-0,-0.112118013203144,-0.99369490146637,-0,-0.112118013203144,-0.99369490146637,-0,-0.112118013203144,-0.99369490146637,0.00371885835193098,-0.039397805929184,0.999216675758362,0.00371885835193098,-0.039397805929184,0.999216675758362,0.00371885835193098,-0.039397805929184,0.999216675758362,0.00324948341585696,-0.0393904894590378,0.999218642711639,0.00324948341585696,-0.0393904894590378,0.999218642711639,0.00324948341585696,-0.0393904894590378,0.999218642711639,-0.0199507623910904,-0.0390180721879005,0.999039351940155,-0.0199507623910904,-0.0390180721879005,0.999039351940155,-0.0199507623910904,-0.0390180721879005,0.999039351940155,-0.00139554380439222,-0.0393176227807999,0.999225854873657,-0.00139554380439222,-0.0393176227807999,0.999225854873657,-0.00139554380439222,-0.0393176227807999,0.999225854873657,0.134380728006363,0.0368697419762611,-0.99024373292923,0.134380728006363,0.0368697419762611,-0.99024373292923,0.134380728006363,0.0368697419762611,-0.99024373292923,0.0825708508491516,0.0379069186747074,-0.99586409330368,0.0825708508491516,0.0379069186747074,-0.99586409330368,
- 0.0825708508491516,0.0379069186747074,-0.99586409330368,0.0576726235449314,0.0383672825992107,-0.997598052024841,0.0576726235449314,0.0383672825992107,-0.997598052024841,0.0576726235449314,0.0383672825992107,-0.997598052024841,0.0476431772112846,0.0385457947850227,-0.998120427131653,0.0476431772112846,0.0385457947850227,-0.998120427131653,0.0476431772112846,0.0385457947850227,-0.998120427131653,-0.000549176475033164,-0.0232484713196754,0.999729573726654,-0.000549176475033164,-0.0232484713196754,0.999729573726654,-0.000549176475033164,-0.0232484713196754,0.999729573726654,-0.000340323022101074,-0.0144070070236921,0.999896168708801,-0.000340323022101074,-0.0144070070236921,0.999896168708801,-0.000340323022101074,-0.0144070070236921,0.999896168708801,-0.000475219392683357,-0.0201176200062037,0.999797523021698,-0.000475219392683357,-0.0201176200062037,0.999797523021698,-0.000475219392683357,-0.0201176200062037,0.999797523021698,-0.00103490974288434,-0.0438111796975136,0.99903929233551,-0.00103490974288434,-0.0438111796975136,0.99903929233551,-0.00103490974288434,-0.0438111796975136,0.99903929233551,-0.0899335443973541,0.995204389095306,-0.0384731367230415,-0.0899335443973541,0.995204389095306,-0.0384731367230415,-0.0899335443973541,0.995204389095306,-0.0384731367230415,-0.0909314006567001,0.995114147663116,-0.0384617261588573,-0.0909314006567001,0.995114147663116,-0.0384617261588573,-0.0909314006567001,0.995114147663116,-0.0384617261588573,-0.0825182199478149,0.995843529701233,-0.0385566875338554,-0.0825182199478149,0.995843529701233,-0.0385566875338554,-0.0825182199478149,0.995843529701233,-0.0385566875338554,-0.0885319635272026,0.99532949924469,-0.0384890995919704,-0.0885319635272026,0.99532949924469,-0.0384890995919704,-0.0885319635272026,0.99532949924469,-0.0384890995919704,2.29092870540626e-006,1,-1.77546813243199e-014,2.49402341978566e-006,1,-7.89248698405791e-015,2.29983515964705e-006,1,-1.40816364509666e-014,2.81753318631672e-006,1,-6.95889743398959e-014,1.887957296276e-006,1,1.23421704375181e-014,2.1464288693096e-006,1,5.7064660478499e-015,
- 2.49402341978566e-006,1,-7.89248698405791e-015,2.29092870540626e-006,1,-1.77546813243199e-014,-2.68073190312634e-008,1,-2.27822243128032e-016,-5.82523682624014e-008,1,-2.01329620106539e-016,-0.00347154284827411,0.999993979930878,-2.20260840816389e-011,9.43351992077623e-008,1,2.58391889834545e-015,1.72173272972032e-007,1,-1.7791221902148e-015,-4.04081703209158e-007,1,1.70498785496785e-015,-5.82523682624014e-008,1,-2.01329620106539e-016,-2.68073190312634e-008,1,-2.27822243128032e-016,-5.93692602706142e-005,1,0.000126537444884889,3.1293118809117e-005,1,0.000126479659229517,-0.000141274751513265,1,0.000126589657156728,-0.000110346263682004,1,0.000394911505281925,8.12065773061477e-005,1,0.000249989883741364,1.27605983379908e-006,1,0.000126498780446127,0.000483363139210269,0.999999940395355,0.000126191429444589,0.000418952142354101,0.999999940395355,0.000126232524053194,2.24206519305881e-006,1,0.00024472369113937,1.7589140952623e-006,1,0.000248359341640025,2.29983515964705e-006,1,-1.40816364509666e-014,1.77265633283241e-006,1,-0,2.49402341978566e-006,1,-7.89248698405791e-015,2.1464288693096e-006,1,5.7064660478499e-015,2.52338304562727e-006,1,-0,2.49794038609252e-006,1,-0,-0.0139460461214185,0.999902665615082,-0.000282674154732376,2.10256121135899e-006,1,-0,-0.00697170849889517,0.999975681304932,-3.40259834197276e-011,-0.0278911404311657,0.999610841274261,-0.000621587038040161,-2.78627831917788e-009,1,1.44690111483214e-005,-2.78627432237499e-009,0.999998569488525,0.0017217145068571,-2.78627743099946e-009,0.999999761581421,0.000717681366950274,-2.78627276806276e-009,0.999998033046722,-0.00199359725229442,-2.78627809713328e-009,0.999999940395355,0.000483276700833812,0.0262155085802078,0.600398361682892,-0.79927134513855,0.0262158364057541,0.600391626358032,-0.799276351928711,0.0523540489375591,0.601162850856781,-0.79740983247757,0.0523540452122688,0.601162850856781,-0.797409772872925,-0.0425110720098019,0.600333392620087,-0.798619329929352,-0.0212538670748472,0.600462794303894,-0.799370229244232,0.0262158364057541,0.600391626358032,-0.799276351928711,
- 0.0262155085802078,0.600398361682892,-0.79927134513855,0.0413011722266674,-0.562810063362122,0.825553774833679,0.025958240032196,-0.563067615032196,0.826003134250641,-0.0356733240187168,-0.562192916870117,0.826236426830292,-0.0359800346195698,-0.562173187732697,0.826236546039581,8.12065773061477e-005,1,0.000249989883741364,-0.000110346263682004,1,0.000394911505281925,1.7589140952623e-006,1,0.000248359341640025,2.24206519305881e-006,1,0.00024472369113937,0.0870496481657028,-0.553414285182953,0.828344762325287,0.0564421564340591,-0.556893408298492,0.828664124011993,0.025958240032196,-0.563067615032196,0.826003134250641,0.0413011722266674,-0.562810063362122,0.825553774833679,-0,0.999686002731323,0.0250570196658373,0,1,-9.93880894384347e-006,0,0.99968558549881,-0.0250759217888117,0,0.999965071678162,-0.00836656428873539,0,1,-1.11115796244121e-005,-0,0.999965190887451,0.00834558252245188,-0.999594807624817,0.0284653585404158,3.81842255592346e-008,-0.999594807624817,0.0284653585404158,3.91155516865638e-008,-0.999594807624817,0.0284653585404158,3.81842255592346e-008,-0.999594807624817,0.0284653585404158,3.91155516865638e-008,-3.8560040138691e-007,1,1.26983596502998e-014,-1.58526091809108e-007,1,1.2941836518131e-015,-4.04081703209158e-007,1,1.70498785496785e-015,1.72173272972032e-007,1,-1.7791221902148e-015,1.77265633283241e-006,1,-0,2.29983515964705e-006,1,-1.40816364509666e-014,2.49402341978566e-006,1,-7.89248698405791e-015,2.49794038609252e-006,1,-0,-0.0636423006653786,0.601559698581696,-0.796288669109344,-0.0636418834328651,0.601559579372406,-0.796288728713989,-0.0212538670748472,0.600462794303894,-0.799370229244232,-0.0425110720098019,0.600333392620087,-0.798619329929352,0,1,4.96840038977098e-006,0,1,5.98312635702314e-006,0,1,6.92993762640981e-006,0,1,8.82352651387919e-006,0,1,5.91520074522123e-006,0,1,2.93891594083107e-006,1.82240614776674e-006,1,3.83978534189942e-014,-0.00697170849889517,0.999975681304932,-3.40259834197276e-011,2.1464288693096e-006,1,5.7064660478499e-015,1.887957296276e-006,1,1.23421704375181e-014,
- -0.00697170849889517,0.999975681304932,-3.40259834197276e-011,2.10256121135899e-006,1,-0,2.52338304562727e-006,1,-0,2.1464288693096e-006,1,5.7064660478499e-015,-0.0212568957358599,0.600498616695404,0.799343228340149,-0.0636403560638428,0.601595342159271,0.79626190662384,-0.0636382475495338,0.601595342159271,0.79626202583313,-0.0425113923847675,0.600369155406952,0.798592329025269,0.0262109115719795,0.600427389144897,0.799249589443207,-0.0212568957358599,0.600498616695404,0.799343228340149,-0.0425113923847675,0.600369155406952,0.798592329025269,0.0262099150568247,0.600434184074402,0.799244523048401,0.0523469224572182,0.601198554039001,0.797383368015289,0.0262109115719795,0.600427389144897,0.799249589443207,0.0262099150568247,0.600434184074402,0.799244523048401,0.0523455813527107,0.601198554039001,0.797383368015289,0.00118654652033001,0.999999284744263,0,0.255629330873489,0.96676105260849,-0.00518137309700251,-0.89015406370163,0.455227673053741,0.0198380947113037,-0.00347154284827411,0.999993979930878,-2.20260840816389e-011,-2.24243535740243e-007,1,0,0.00118654652033001,0.999999284744263,0,-0.00347154284827411,0.999993979930878,-2.20260840816389e-011,-5.82523682624014e-008,1,-2.01329620106539e-016,5.32330318492313e-007,1,0,-5.06395451793651e-007,1,0,-4.04081703209158e-007,1,1.70498785496785e-015,-1.58526091809108e-007,1,1.2941836518131e-015,-1.42338421937893e-006,1,0.000244608556386083,5.32330318492313e-007,1,0,-1.58526091809108e-007,1,1.2941836518131e-015,-8.96151732376893e-007,1,0.000248243886744604,-5.06395451793651e-007,1,0,-2.24243535740243e-007,1,0,-5.82523682624014e-008,1,-2.01329620106539e-016,-4.04081703209158e-007,1,1.70498785496785e-015,0.00236617354676127,0.999997138977051,0.000293251971015707,-1.42338421937893e-006,1,0.000244608556386083,-8.96151732376893e-007,1,0.000248243886744604,0.00331792840734124,0.999994516372681,0.000382551806978881,1.05534138583607e-006,1,0.000178003625478596,0.00236617354676127,0.999997138977051,0.000293251971015707,0.00331792840734124,0.999994516372681,0.000382551806978881,0.00186540593858808,0.999998331069946,0.000176672940142453,
- 0.00479504745453596,0.999988496303558,0.000174580636667088,0.00127044518012553,0.999999225139618,0.000177097681444138,-0.0024656152818352,0.999997019767761,0.00017976324306801,-0.00105688872281462,0.999999463558197,0.000178758433321491,-0,-0,-1,-0,-0,-1,-0,-0,-1,-0,-0,-1,-8.96952343509838e-008,-0,-1,-0,-0,-1,-0,-0,-1,-8.96952343509838e-008,-0,-1,-0,-0,-1,-8.96952343509838e-008,-0,-1,-8.96952343509838e-008,-0,-1,-8.96952343509838e-008,-0,-1,3.58860120286408e-007,0,-1,-0,-0,-1,-8.96952343509838e-008,-0,-1,3.58860120286408e-007,0,-1,-1.66731112472007e-007,9.90342585716064e-010,-1,3.58860120286408e-007,0,-1,3.58860120286408e-007,0,-1,1.92129022025256e-007,9.90342585716064e-010,-1,2.2779304345022e-006,-1.33869548335497e-007,-1,-1.66731112472007e-007,9.90342585716064e-010,-1,1.92129022025256e-007,9.90342585716064e-010,-1,-8.0748259279062e-007,-1.33819341385788e-007,-1,2.2779304345022e-006,-1.33869548335497e-007,-1,-8.0748259279062e-007,-1.33819341385788e-007,-1,4.84159090774483e-006,-2.12500609109156e-007,-1,5.51698803974432e-006,-2.12501618079841e-007,-1,-5.7146002063746e-007,-2.12492551554533e-007,-1,-0.999594807624817,0.02846534922719,-4.37721610069275e-008,-0.999594807624817,0.02846534922719,-4.56348132615858e-008,-0.999594807624817,0.02846534922719,-4.37721610069275e-008,-0.999594807624817,0.02846534922719,-4.56348132615858e-008,-0.0253934860229492,0.563462197780609,0.825751543045044,-0.0559519045054913,0.558067619800568,0.827906966209412,-0.0866679921746254,0.554643332958221,0.82756245136261,-0.041082002222538,0.563212513923645,0.825290322303772,0.0368985161185265,0.562077879905701,0.826260924339294,-0.0253934860229492,0.563462197780609,0.825751543045044,-0.041082002222538,0.563212513923645,0.825290322303772,0.0365914776921272,0.562097787857056,0.826260924339294,-0.741649150848389,0.660839021205902,0.115101635456085,-0.738425672054291,0.666569590568542,0.102041602134705,-0.774475455284119,0.632603168487549,0.00112229597289115,-0.918439030647278,0.350989788770676,0.18241722881794,-0.274122834205627,0.959908723831177,0.0585826002061367,
- -0.293956518173218,0.955438494682312,-0.0269642528146505,-0.88869571685791,0.400987327098846,0.222327098250389,-0.0921485647559166,0.995223760604858,0.0322229154407978,0.0221704095602036,0.999464511871338,0.0240694768726826,-0.0581256821751595,0.996496319770813,0.0601387619972229,-0.0903271213173866,0.994720458984375,0.0487063638865948,-0.274122834205627,0.959908723831177,0.0585826002061367,-0.298401832580566,0.950139045715332,0.0905101448297501,-0.213075444102287,0.975660920143127,0.0518130660057068,-0.293956518173218,0.955438494682312,-0.0269642528146505,-0.774302244186401,0.620184242725372,0.125808045268059,-0.761256515979767,0.628917634487152,0.157959043979645,-0.741649150848389,0.660839021205902,0.115101635456085,-0.276517331600189,0.957548141479492,0.0814850106835365,-0.371238619089127,0.921205401420593,0.116458564996719,-0.962053418159485,0.255221784114838,0.0965148061513901,-0.974368631839752,0.21444870531559,-0.0679532513022423,-0.25788602232933,0.965711832046509,0.0299249067902565,-0.262971699237823,0.962210536003113,0.070687972009182,-0.371238619089127,0.921205401420593,0.116458564996719,-0.276517331600189,0.957548141479492,0.0814850106835365,-0.0921485647559166,0.995223760604858,0.0322229154407978,-0.500732243061066,0.865590393543243,-0.00453227758407593,-0.0812005922198296,0.993871808052063,0.0750023499131203,0.0546064935624599,0.987046897411346,0.15085281431675,0.0221704095602036,0.999464511871338,0.0240694768726826,-0.0812005922198296,0.993871808052063,0.0750023499131203,-0.741649150848389,0.660839021205902,0.115101635456085,-0.761256515979767,0.628917634487152,0.157959043979645,-0.738425672054291,0.666569590568542,0.102041602134705,-0.962053418159485,0.255221784114838,0.0965148061513901,-0.274122834205627,0.959908723831177,0.0585826002061367,-0.918439030647278,0.350989788770676,0.18241722881794,-0.371238619089127,0.921205401420593,0.116458564996719,-0.262971699237823,0.962210536003113,0.070687972009182,-0.274122834205627,0.959908723831177,0.0585826002061367,-0.262971699237823,0.962210536003113,0.070687972009182,
- -0.432826220989227,0.899052321910858,0.0660783872008324,-0.298401832580566,0.950139045715332,0.0905101448297501,-0.357375651597977,0.933955132961273,-0.00324302166700363,-0.0812005922198296,0.993871808052063,0.0750023499131203,-0.500732243061066,0.865590393543243,-0.00453227758407593,0.0546064935624599,0.987046897411346,0.15085281431675,-0.0812005922198296,0.993871808052063,0.0750023499131203,-0.357375651597977,0.933955132961273,-0.00324302166700363,-0.891786396503448,0.445547580718994,-0.0787681862711906,-0.982932090759277,0.168607234954834,0.073594868183136,-0.761256515979767,0.628917634487152,0.157959043979645,-0.774302244186401,0.620184242725372,0.125808045268059,-0.738425672054291,0.666569590568542,0.102041602134705,-0.761256515979767,0.628917634487152,0.157959043979645,-0.982932090759277,0.168607234954834,0.073594868183136,-0.916653096675873,0.305583775043488,0.257615655660629,-0.774475455284119,0.632603168487549,0.00112229597289115,-0.738425672054291,0.666569590568542,0.102041602134705,-0.916653096675873,0.305583775043488,0.257615655660629,-0.856774985790253,0.478487312793732,0.192318856716156,-0.274122834205627,0.959908723831177,0.0585826002061367,-0.262971699237823,0.962210536003113,0.070687972009182,-0.298401832580566,0.950139045715332,0.0905101448297501,-0.298401832580566,0.950139045715332,0.0905101448297501,-0.0921485647559166,0.995223760604858,0.0322229154407978,-0.213075444102287,0.975660920143127,0.0518130660057068,-0.213075444102287,0.975660920143127,0.0518130660057068,-0.0921485647559166,0.995223760604858,0.0322229154407978,-0.0903271213173866,0.994720458984375,0.0487063638865948,-0.0812005922198296,0.993871808052063,0.0750023499131203,0.0221704095602036,0.999464511871338,0.0240694768726826,-0.0921485647559166,0.995223760604858,0.0322229154407978,-0.962053418159485,0.255221784114838,0.0965148061513901,-0.371238619089127,0.921205401420593,0.116458564996719,-0.274122834205627,0.959908723831177,0.0585826002061367,-0.262971699237823,0.962210536003113,0.070687972009182,-0.500732243061066,0.865590393543243,-0.00453227758407593,
- -0.432826220989227,0.899052321910858,0.0660783872008324,-0.357375651597977,0.933955132961273,-0.00324302166700363,-0.500732243061066,0.865590393543243,-0.00453227758407593,-0.262971699237823,0.962210536003113,0.070687972009182,-0.25788602232933,0.965711832046509,0.0299249067902565,-0.432826220989227,0.899052321910858,0.0660783872008324,-0.500732243061066,0.865590393543243,-0.00453227758407593,-0.0921485647559166,0.995223760604858,0.0322229154407978,-0.298401832580566,0.950139045715332,0.0905101448297501,-0.432826220989227,0.899052321910858,0.0660783872008324,-0.0921485647559166,0.995223760604858,0.0322229154407978,-0.974368631839752,0.21444870531559,-0.0679532513022423,-0.962053418159485,0.255221784114838,0.0965148061513901,-0.982932090759277,0.168607234954834,0.073594868183136,-0.891786396503448,0.445547580718994,-0.0787681862711906,-0.916653096675873,0.305583775043488,0.257615655660629,-0.982932090759277,0.168607234954834,0.073594868183136,-0.962053418159485,0.255221784114838,0.0965148061513901,-0.918439030647278,0.350989788770676,0.18241722881794,-0.856774985790253,0.478487312793732,0.192318856716156,-0.916653096675873,0.305583775043488,0.257615655660629,-0.918439030647278,0.350989788770676,0.18241722881794,-0.88869571685791,0.400987327098846,0.222327098250389,-0.676925539970398,-0.666533231735229,-0.312258362770081,0.268272757530212,-0.208254128694534,0.94056361913681,0.676838576793671,0.667447030544281,0.310490101575851,-0.0150630623102188,0.486403703689575,-0.873604416847229,-0.678290963172913,-0.635084092617035,0.369580447673798,0.442064642906189,0.79428493976593,0.416761606931686,0.678290843963623,0.637078821659088,-0.366131395101547,-0.335654765367508,-0.74984073638916,-0.570153415203094,-0.89015406370163,0.455227673053741,0.0198380947113037,0.255629330873489,0.96676105260849,-0.00518137309700251,0.894807577133179,-0.0173412710428238,-0.446115136146545,0.571196794509888,-0.769829154014587,-0.284775733947754,-0.685219645500183,0.728336572647095,0,0.542700350284576,-0.576849341392517,-0.610509037971497,0.685219645500183,-0.728336572647095,0,
- -0.37832099199295,0.402126550674438,0.833767175674438,-0.999794721603394,0,-0.0202649626880884,0.908668339252472,-0.417027503252029,0.0202507469803095,0.894941866397858,0,0.446182787418365,-0.33846178650856,0.925726294517517,-0.16874372959137
- }
- BinormalsW: *1954 {
- 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
- }
- }
- LayerElementBinormal: 1 {
- Version: 102
- Name: "uvSet"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *5862 {
- a: -0.0145816756412387,0.462968200445175,-0.886254906654358,0.00575115019455552,0.462745755910873,-0.886472523212433,-0.00937969051301479,0.462929487228394,-0.886345505714417,-0.00878328364342451,0.470790147781372,-0.882201611995697,0.0370901226997375,0.471044540405273,-0.881329417228699,-0.014824653044343,0.470682740211487,-0.882178008556366,-0.00933124125003815,0.463569790124893,0.886011302471161,-0.0145976608619094,0.463475733995438,0.885989427566528,0.0365232340991497,0.463845074176788,0.885163247585297,-0.0137879522517323,0.43776747584343,0.898982524871826,-0.0112669002264738,0.437748342752457,0.899026989936829,0.00784084387123585,0.437512844800949,0.899177968502045,-0.0185846220701933,0.472049415111542,-0.881376266479492,-0.00519341416656971,0.472036391496658,-0.881563782691956,0.00196504965424538,0.471994757652283,-0.881599247455597,-0.00130279920995235,0.43059116601944,-0.902546167373657,0.0236916076391935,0.429833441972733,-0.902597427368164,-0.0169657021760941,0.430928826332092,-0.902226448059082,-0.00169564946554601,0.425548553466797,0.904933989048004,-0.0167658627033234,0.42585289478302,0.904637098312378,0.0234156399965286,0.4248266518116,0.904971957206726,-0.0186049491167068,0.472565740346909,0.881099045276642,0.00200627185404301,0.47251084446907,0.88132256269455,-0.0052284300327301,0.472552984952927,0.881286799907684,0.0281988959759474,0.447657465934753,0.893760502338409,-0.0105169266462326,0.44781157374382,0.894066154956818,-0.0105782197788358,0.447811275720596,0.894065499305725,-0.0107614286243916,0.444538980722427,0.89569491147995,0.0107854939997196,0.444216459989548,0.895854592323303,-0.0105008585378528,0.444536328315735,0.895699262619019,-0.0110261719673872,0.466774612665176,-0.884307563304901,-0.00908780470490456,0.466782301664352,-0.884325563907623,0.0257193110883236,0.466621786355972,-0.884082913398743,0.00293421326205134,0.45547553896904,-0.890243470668793,-0.00993358343839645,0.455587565898895,-0.890135586261749,-0.0107620218768716,0.455592215061188,-0.890123605728149,0.0420526117086411,0.996547400951386,0.0715889930725098,
- -0.0111640561372042,0.995368421077728,0.0954836383461952,0.194500282406807,0.980901479721069,0.00141032028477639,0.071331113576889,0.997406482696533,-0.00960452761501074,-0.0127665800973773,0.997967720031738,0.0624299459159374,0.00469738291576505,0.998859107494354,0.0475230738520622,-0.00391538068652153,0.998891294002533,0.0469142459332943,-0.0041916286572814,0.999871909618378,-0.0154489688575268,-0.00419501680880785,0.999859392642975,-0.0162370167672634,0.000704893958754838,0.999875009059906,-0.0157960169017315,0.000773585052229464,0.998883068561554,0.0472461469471455,0.000815316569060087,0.996216773986816,0.0869001299142838,0.0121265044435859,0.997058808803558,0.0756752714514732,-0.0961476787924767,0.995327651500702,-0.00886083580553532,0.0239960923790932,0.996103346347809,0.0848665088415146,-0.0608017072081566,0.998084723949432,-0.0114090871065855,0.0140992486849427,0.999299585819244,0.0346657782793045,-0.0317848958075047,0.999473869800568,0.00646432628855109,0.0406682528555393,0.0343930572271347,0.998580574989319,0.00313743180595338,0.0793633535504341,0.996840834617615,-0.0125806480646133,0.0981123745441437,0.995095908641815,-0.363661050796509,-0.0785146504640579,0.928216695785522,-0.461948722600937,0.0336760655045509,0.886267125606537,0.018659433349967,-0.429109930992126,0.903059542179108,-0.000138187067932449,-0.0628750994801521,0.998021364212036,-0.000929635018110275,0.0472425632178783,0.998883068561554,-0.00115672964602709,0.0790250226855278,0.996872007846832,-0.0036800829693675,0.0473935231566429,0.99886953830719,-0.00491529097780585,-0.0631366148591042,0.997992813587189,-0.00550729082897305,-0.117823213338852,0.993019342422485,-0.0143927522003651,-0.664180636405945,0.747433602809906,0.447981148958206,0.0175382476300001,0.893870949745178,0.372003316879272,-0.135884925723076,0.91823136806488,-0.0024871458299458,0.0473280921578407,0.998876333236694,-0.0472024083137512,0.000348426139680669,0.998885333538055,0.0136896660551429,0.0642723813652992,0.99783855676651,0.0392408445477486,0.999226629734039,-0.00250920676626265,
- -0.0314105153083801,0.999504148960114,-0.00222022202797234,-0.0158539582043886,0.999871730804443,-0.00228486047126353,-0.0277520399540663,0.993301033973694,-0.112173765897751,0.0346865616738796,0.993096172809601,-0.112057447433472,-0.00429096864536405,0.993678569793701,-0.11218137294054,-0.00818303041160107,0.999918282032013,0.00983164645731449,0.0397307276725769,0.999160468578339,0.0100000835955143,0.0313219986855984,0.999459624290466,0.00997216254472733,0.0316511541604996,0.999484300613403,0.00543987797573209,-0.0317236110568047,0.999483466148376,0.00516083557158709,0.0154921794310212,0.999865651130676,0.00537075288593769,-0.0261567551642656,0.993716657161713,-0.108826458454132,0.0278665404766798,0.993662118911743,-0.108899421989918,0.0122229037806392,0.993976354598999,-0.108910992741585,-0.0319443047046661,0.999441087245941,0.0098603256046772,0.0160579979419708,0.999821782112122,0.00993060134351254,-0.031323779374361,0.999460637569427,0.00986137893050909,0.0432025119662285,0.10367090255022,0.993672966957092,0.0599499642848969,0.0837012678384781,0.99468594789505,-0.0102752596139908,0.166734635829926,0.985948324203491,-0.367105722427368,-0.0786184892058373,0.926850974559784,-0.464875847101212,0.0333232432603836,0.884748637676239,0.0184836369007826,-0.432135105133057,0.901619493961334,-0.00456085847690701,-0.0631172657012939,0.997995793819427,-0.00535514811053872,0.0474852919578552,0.99885767698288,-0.00556801538914442,0.0786759257316589,0.996884703636169,-0.00363018456846476,0.0473907850682735,0.998869836330414,-0.0048654954880476,-0.0631338953971863,0.997993230819702,-0.00545787066221237,-0.117826722562313,0.993019163608551,-0.0140885598957539,-0.66831111907959,0.743748545646667,0.452032119035721,0.0172188002616167,0.891835451126099,0.376450806856155,-0.135984838008881,0.916402161121368,0.0414165742695332,0.0448731295764446,0.998133897781372,-0.0456648096442223,-0.0469236448407173,0.997854173183441,0.0152008812874556,0.0172399263828993,0.999735832214355,0.0392274148762226,0.999226272106171,-0.00284994998946786,-0.0313960574567318,0.999503433704376,-0.00267864228226244,
- -0.0158743746578693,0.999870300292969,-0.0027174714487046,-0.0277521070092916,0.993301212787628,-0.112171694636345,0.0346866548061371,0.99309641122818,-0.112055383622646,-0.00429103570058942,0.99367880821228,-0.112179301679134,-0.00818303041160107,0.999918282032013,0.00983164645731449,0.0397307276725769,0.999160468578339,0.0100000835955143,0.0313219986855984,0.999459624290466,0.00997216254472733,0.0316508039832115,0.999484360218048,0.00542863644659519,-0.0317239239811897,0.999483287334442,0.00516751175746322,0.015492495149374,0.999865591526031,0.00536408089101315,-0.0261568501591682,0.993716835975647,-0.108824536204338,0.0278663840144873,0.993661642074585,-0.108903937041759,0.0122228171676397,0.993976175785065,-0.108913652598858,-0.0319443047046661,0.999441087245941,0.0098603256046772,0.0160579979419708,0.999821782112122,0.00993060134351254,-0.031323779374361,0.999460637569427,0.00986137893050909,0.0431966558098793,0.103504471480846,0.993690550327301,0.0598130375146866,0.0836911201477051,0.994695007801056,-0.0102808810770512,0.166570037603378,0.985976040363312,-0.368989706039429,-0.0786748751997948,0.926097691059113,-0.467068910598755,0.0330582447350025,0.883602797985077,0.0185037087649107,-0.431790113449097,0.901784300804138,0.0042771645821631,-0.0626321285963058,0.998027622699738,0.0034882293548435,0.0469993315637112,0.998888850212097,0.00324644148349762,0.0793719291687012,0.996839761734009,-0.0125201800838113,0.0478762984275818,0.998774826526642,-0.0137818856164813,-0.0636181607842445,0.997879147529602,-0.0143300108611584,-0.117191426455975,0.993005990982056,-0.00450955843552947,-0.785358548164368,0.619024693965912,0.580890595912933,0.0064370334148407,0.813956201076508,0.520152270793915,-0.137502804398537,0.842932105064392,-0.151948228478432,0.054998267441988,0.986857116222382,-0.051604438573122,0.159722372889519,0.985812306404114,0.00842370558530092,0.220250844955444,0.975407004356384,0.039227195084095,0.999226331710815,-0.00285550625994802,-0.0313958898186684,0.999503493309021,-0.00268392264842987,-0.0158746279776096,0.999870359897614,-0.00272281398065388,
- -0.0277521628886461,0.993301391601563,-0.112170189619064,0.0346863940358162,0.993095755577087,-0.11206129938364,-0.00429099425673485,0.993678569793701,-0.112180568277836,-0.00818304810672998,0.999918282032013,0.00983221363276243,0.0397306196391582,0.999160408973694,0.00999733060598373,0.0313220322132111,0.999459624290466,0.0099699916318059,0.0316509716212749,0.999484300613403,0.00543409772217274,-0.0317237600684166,0.999483406543732,0.00516396621242166,0.0154923452064395,0.999865591526031,0.00536724552512169,-0.0261570382863283,0.99371725320816,-0.108820863068104,0.0278663970530033,0.99366170167923,-0.108903490006924,0.0122228618711233,0.993976294994354,-0.108912274241447,-0.0319447182118893,0.999440968036652,0.00986917596310377,0.0160578601062298,0.999821841716766,0.00992615148425102,-0.0313236378133297,0.999460577964783,0.00987005699425936,-0.0599035397171974,0.998138308525085,-0.0114735811948776,0.0141279753297567,0.999319791793823,0.0340644530951977,-0.0317566134035587,0.999478399753571,0.00586269330233335,0.00900810770690441,0.990196108818054,0.139393776655197,-0.123839512467384,0.992278635501862,-0.00685040839016438,-0.0228748731315136,0.994234621524811,0.104758314788342,0.0042615975253284,0.999862194061279,-0.016047865152359,0.00508699752390385,0.99970155954361,0.0238953828811646,0.00667968578636646,0.994762241840363,0.101998038589954,-0.000215544481761754,0.99972140789032,0.0236035864800215,-0.000390970439184457,0.999876379966736,-0.0157183781266212,-0.000391802517697215,0.999873459339142,-0.0159052107483149,-0.00248231086879969,0.994692385196686,0.102863393723965,0.00241193594411016,0.999715030193329,0.0237482544034719,-0.0387256145477295,0.736931085586548,0.67485773563385,0.00825916044414043,0.999851226806641,-0.0151496166363359,-0.151820912957191,0.969417333602905,0.19282254576683,-0.0207144860178232,0.99953293800354,0.0224692709743977,0.0399406105279922,0.999083280563354,0.0154082784429193,-0.166206926107407,0.980212450027466,0.107512600719929,0.0913555920124054,0.995787560939789,-0.00783066172152758,-0.232632026076317,0.972564220428467,0.00116975989658386,
- 0.0083546694368124,0.988256096839905,0.152578204870224,-0.0371293127536774,0.991471588611603,0.124922685325146,0.0142463427037001,0.999399542808533,0.0315855853259563,-0.0270122196525335,0.999539434909821,-0.0138265276327729,0.0724365040659904,0.992787301540375,0.0955317169427872,0.000321634812280536,0.999875605106354,-0.0157688651233912,0.00113498186692595,0.999718964099884,0.0236779637634754,0.00275449850596488,0.994742572307587,0.102369830012321,-0.0039749089628458,0.999718427658081,0.0233963057398796,-0.00414713658392429,0.999872028827667,-0.0154521251097322,-0.00415053544566035,0.999859631061554,-0.0162331350147724,-0.00654621608555317,0.994634568691254,0.103244476020336,-0.00123939581681043,0.999721944332123,0.023547163233161,-0.0436196103692055,0.750892221927643,0.658982753753662,0.0083372239023447,0.999850571155548,-0.0151427909731865,-0.151807576417923,0.969404458999634,0.192897960543633,-0.0206362530589104,0.999534428119659,0.022473618388176,0.0458219274878502,0.982310593128204,0.181566387414932,-0.139677703380585,0.955728590488434,0.258984625339508,0.383073687553406,0.92352682352066,0.0187837854027748,0.000142121702083386,0.00200549513101578,-0.999997973442078,0.015735087916255,0.00139440619386733,-0.999875247478485,-0.0312766879796982,0.00323531217873096,-0.999505519866943,0.0157495774328709,-0.000444343779236078,-0.999875962734222,-1.57040454360152e-017,4.43059132586598e-019,-1,-0.00788603443652391,0.000222489150473848,-0.999968886375427,-0.0315154194831848,0.000889146351255476,-0.999502956867218,-0.00788603443652391,0.000222489150473848,-0.999968886375427,-1.57040454360152e-017,4.43059132586598e-019,-1,0.0324562750756741,0.0155674237757921,-0.999351918697357,-0.0321865752339363,0.0180844105780125,-0.999318301677704,0.00119009986519814,0.0167936328798532,-0.999858319759369,-0.200259760022163,0.00268638483248651,0.979739129543304,-0.363098800182343,-0.00184795027598739,0.931748747825623,-0.192449271678925,0.00289799622260034,0.981302618980408,-0.115852236747742,0.0293543059378862,0.992832601070404,-0.366566359996796,0.0740899071097374,0.92743718624115,
- -0.192748323082924,0.0431389361619949,0.980299592018127,-0.364361554384232,0.0209587197750807,0.931021630764008,-0.116549037396908,0.023219496011734,0.992913484573364,-0.276766031980515,0.0219428893178701,0.960686862468719,-0.271260619163513,-0.00692329648882151,0.962481141090393,-0.41535821557045,-0.134571462869644,0.89964884519577,-0.357167392969131,-0.0818520113825798,0.930447101593018,-0.0215666797012091,0.025932464748621,0.999431014060974,-0.273751258850098,0.00598262622952461,0.961781978607178,-0.117071680724621,0.0185916125774384,0.992949485778809,-0.29152724146843,0.106492675840855,0.950616240501404,-0.0245953164994717,-0.0124745927751064,0.999619722366333,-0.207482039928436,0.068807028234005,0.975816071033478,-0.259460717439651,-0.0650323256850243,0.963561594486237,-0.215818017721176,-0.0476873181760311,0.975268423557281,-0.332738995552063,-0.0943626165390015,0.938286006450653,-0.354543387889862,-0.0114428475499153,0.934969544410706,-0.212352082133293,0.00578875700011849,0.977176129817963,-0.159877836704254,0.0119755379855633,0.987064242362976,0.0589667707681656,0.0409918092191219,0.997417986392975,-0.158956795930862,0.00880941189825535,0.98724627494812,-0.212713569402695,0.000623341707978398,0.977114498615265,0.0901008471846581,0.0943442136049271,0.991454005241394,0.0455274358391762,0.0687135607004166,0.996597170829773,-0.217876747250557,-0.0850729644298553,0.972261428833008,0.123837813735008,0.0383156277239323,0.991562485694885,-0.213709950447083,-0.0140598025172949,0.976796090602875,-0.118220582604408,0.000989442807622254,0.992986857891083,-0.118044205009937,0.150492742657661,0.981538414955139,-0.185701340436935,0.273112386465073,0.943888068199158,-0.28857958316803,0.462491393089294,0.83834570646286,0.227142840623856,0.172647044062614,0.958435773849487,0.0962748974561691,0.0841684266924858,0.991789758205414,-0.117509290575981,-0.0614034906029701,0.991171598434448,-0.117509290575981,-0.0614034906029701,0.991171598434448,0.0803975313901901,0.0734004676342011,0.994056701660156,0.227142840623856,0.172647044062614,0.958435773849487,
- -0.118220426142216,0.000967579253483564,0.992986977100372,-0.458784908056259,-0.14424267411232,0.876761376857758,-0.324486404657364,-0.0860169380903244,0.941971182823181,-0.118263721466064,0.125022038817406,0.985080361366272,-0.247154504060745,0.228288695216179,0.941700100898743,-0.22721441090107,0.212371736764908,0.95040625333786,-0.118466906249523,0.0749480128288269,0.990125417709351,-0.24804724752903,0.153064206242561,0.956579387187958,-0.361648291349411,0.221472904086113,0.905627012252808,0.0173381604254246,0.998537003993988,0.0512181036174297,-0.0649787783622742,0.989531993865967,0.128858223557472,-0.029828242957592,0.994952499866486,0.0958115607500076,0.229024946689606,0.916099846363068,-0.329103112220764,-0.140728831291199,0.98259562253952,0.121248863637447,0.0135396383702755,0.997532904148102,-0.0688829347491264,0.0251466929912567,0.982573509216309,-0.184165924787521,0.163549244403839,0.927525103092194,-0.336078673601151,0.0102525949478149,0.985836088657379,-0.167398139834404,0.00829156301915646,0.938019812107086,-0.346482485532761,0.00212316261604428,0.992048323154449,0.125839576125145,0.00199581147171557,0.990852952003479,0.134931638836861,0.201126590371132,-0.0725130364298821,-0.976877689361572,-0.0294645112007856,0.0621345303952694,-0.997632801532745,0.0474603623151779,0.0175779685378075,-0.998718440532684,0.0200640540570021,0.99199241399765,0.124693386256695,-0.0110999988391995,0.99453729391098,0.103790625929832,0.029152924194932,0.99098539352417,0.130759924650192,-0.00926166772842407,0.544592022895813,-0.838649988174438,0.377366572618485,-0.0567352101206779,-0.9243243932724,-0.137588337063789,0.684630036354065,-0.715787172317505,-0.137588337063789,0.684630036354065,-0.715787172317505,-0.383457064628601,0.860884845256805,-0.334422022104263,-0.00926166772842407,0.544592022895813,-0.838649988174438,-0.000466697616502643,-0.0790978893637657,-0.996866762638092,-0.00557777797803283,0.694989025592804,-0.718998730182648,-0.000410976412240416,-0.0869966968894005,-0.996208608150482,-0.00599778816103935,0.998232364654541,-0.0591283105313778,
- 0.136947497725487,0.983736455440521,0.116223827004433,-0.23039485514164,0.915814757347107,-0.328940153121948,3.56663986167405e-005,0.992034077644348,0.12597031891346,3.37213277816772e-005,0.93793922662735,-0.346799671649933,3.37213277816772e-005,0.937938332557678,-0.346802175045013,-0.163140058517456,0.92758321762085,-0.33611735701561,-0.0251171737909317,0.9824258685112,-0.184955582022667,-0.0027401577681303,0.987147808074951,-0.159786939620972,0.0301341637969017,0.0419072136282921,-0.998667001724243,-0.162123933434486,-0.071674756705761,-0.98416393995285,-0.0471346564590931,-0.00359533634036779,-0.998882114887238,2.4992972612381e-005,0.695157527923584,-0.71885746717453,3.37213277816772e-005,0.937938332557678,-0.346802175045013,3.37213277816772e-005,0.93793922662735,-0.346799671649933,0.00927453860640526,0.544344127178192,-0.838810741901398,0.384866714477539,0.860314428806305,-0.334270387887955,0.138290345668793,0.684542000293732,-0.715736031532288,-9.99495387077332e-006,0.695158004760742,-0.718857049942017,-9.99681651592255e-006,0.695158541202545,-0.718856513500214,-1.34874153445708e-005,0.937938690185547,-0.346801429986954,0.138290345668793,0.684542000293732,-0.715736031532288,-0.379316747188568,-0.0582360289990902,-0.923432409763336,0.00927453860640526,0.544344127178192,-0.838810741901398,-9.99495387077332e-006,0.695158004760742,-0.718857049942017,1.13784324184962e-006,-0.0791163444519043,-0.996865391731262,-9.99681651592255e-006,0.695158541202545,-0.718856513500214,0.017328767105937,0.998552799224854,0.0509119443595409,-0.0651361495256424,0.989523470401764,0.128843203186989,-0.0298324469476938,0.99497389793396,0.0955874025821686,0.229760751128197,0.915946841239929,-0.329015642404556,-0.141234010457993,0.982529759407043,0.121195457875729,0.0135400556027889,0.997533798217773,-0.0688700973987579,0.0251496080309153,0.982587993144989,-0.184087827801704,0.164091616868973,0.927447915077209,-0.336027324199677,0.0102532729506493,0.985839426517487,-0.167378306388855,0.00828066561371088,0.938019812107086,-0.346482962369919,
- 0.00212578428909183,0.992048323154449,0.125839412212372,0.00199868832714856,0.990852952003479,0.134931892156601,0.127160608768463,-0.0651328191161156,-0.989741325378418,-0.0305615104734898,0.0287901367992163,-0.999118208885193,0.0469125472009182,-0.0173003934323788,-0.998749196529388,0.0203510951250792,0.991988897323608,0.124674707651138,-0.0110938008874655,0.994558393955231,0.103588581085205,0.0291570778936148,0.991012752056122,0.130551099777222,-0.00926364492624998,0.544553935527802,-0.83867472410202,0.375616371631622,-0.0507902279496193,-0.925382435321808,-0.138067066669464,0.684570074081421,-0.715752363204956,-0.138067066669464,0.684570074081421,-0.715752363204956,-0.384621828794479,0.860413670539856,-0.33429679274559,-0.00926364492624998,0.544553935527802,-0.83867472410202,-0.00599631806835532,0.998229742050171,-0.0591743439435959,0.136984273791313,0.983731746673584,0.116220906376839,-0.230362728238106,0.915821492671967,-0.328943967819214,3.5662673326442e-005,0.992034077644348,0.12597031891346,3.37176024913788e-005,0.93793922662735,-0.346799671649933,3.37176024913788e-005,0.937938332557678,-0.346802175045013,-0.163121625781059,0.927585780620575,-0.336119055747986,-0.0251163989305496,0.98242199420929,-0.184976235032082,-0.0027394809294492,0.987144470214844,-0.159807592630386,-9.99495387077332e-006,0.695158004760742,-0.718857049942017,-9.99681651592255e-006,0.695158541202545,-0.718856513500214,-1.34874153445708e-005,0.937938690185547,-0.346801429986954,2.49911099672318e-005,0.695157527923584,-0.71885746717453,3.37176024913788e-005,0.937938332557678,-0.346802175045013,3.37176024913788e-005,0.93793922662735,-0.346799671649933,1.0163056458623e-006,-0.07068882137537,-0.997498393058777,-9.99681651592255e-006,0.695158541202545,-0.718856513500214,-9.99495387077332e-006,0.695158004760742,-0.718857049942017,0.00927354954183102,0.54436320066452,-0.838798403739929,0.384283304214478,0.860550820827484,-0.334333211183548,0.138050198554993,0.684572160243988,-0.715753614902496,0.000390429049730301,-0.0884407758712769,-0.996081352233887,
- 0.0232653338462114,0.694309234619141,-0.71930068731308,0.00093404739163816,-0.0706522390246391,-0.997500538825989,0.138050198554993,0.684572160243988,-0.715753614902496,-0.355108022689819,-0.0113276019692421,-0.934756696224213,0.00927354954183102,0.54436320066452,-0.838798403739929,0.0173301603645086,0.998550474643707,0.050957415252924,-0.0654972568154335,0.989504218101501,0.128808811306953,-0.0298360083252192,0.994992077350616,0.0953974649310112,0.228971436619759,0.916110873222351,-0.32910943031311,-0.14079013466835,0.98258763551712,0.121242381632328,0.0135371061041951,0.997527539730072,-0.0689606964588165,0.0251453444361687,0.982566714286804,-0.184201940894127,0.163517192006111,0.927529633045197,-0.336081683635712,0.0102513628080487,0.985829949378967,-0.167434215545654,0.00828410685062408,0.938019752502441,-0.346482783555985,0.00212745927274227,0.992048382759094,0.125839307904243,0.00200032279826701,0.990852892398834,0.134932026267052,0.127062648534775,-0.065137542784214,-0.989753603935242,-0.0305636674165726,0.0287234988063574,-0.999120056629181,0.0469114780426025,-0.0173656232655048,-0.998748183250427,0.0203494764864445,0.991988956928253,0.124674819409847,-0.0110938297584653,0.994558334350586,0.103589527308941,0.0291570574045181,0.991012692451477,0.130552351474762,-0.00926166772842407,0.544592022895813,-0.838649988174438,0.374470084905624,-0.0508679747581482,-0.925842642784119,-0.137588337063789,0.684630036354065,-0.715787172317505,-0.137588337063789,0.684630036354065,-0.715787172317505,-0.383457064628601,0.860884845256805,-0.334422022104263,-0.00926166772842407,0.544592022895813,-0.838649988174438,-0.00599487125873566,0.998227059841156,-0.0592196062207222,0.136776059865952,0.983758687973022,0.116237543523312,-0.229953020811081,0.915906846523285,-0.328992784023285,3.56705895683263e-005,0.992034077644348,0.12597031891346,3.37250530719757e-005,0.93793922662735,-0.346799671649933,3.37259843945503e-005,0.937938332557678,-0.346802175045013,-0.162829130887985,0.927627146244049,-0.336146652698517,-0.0251139849424362,0.982409954071045,-0.185040935873985,
- -0.00273879850283265,0.987141013145447,-0.159828409552574,-9.99867916107178e-006,0.695158004760742,-0.718857049942017,-9.99867916107178e-006,0.695158541202545,-0.718856513500214,-1.348927798972e-005,0.937938690185547,-0.346801429986954,2.49966979026794e-005,0.695157527923584,-0.71885746717453,3.37259843945503e-005,0.937938332557678,-0.346802175045013,3.37250530719757e-005,0.93793922662735,-0.346799671649933,1.01653847650596e-006,-0.07068882137537,-0.997498393058777,-9.99867916107178e-006,0.695158541202545,-0.718856513500214,-9.99867916107178e-006,0.695158004760742,-0.718857049942017,0.00927255861461163,0.544382274150848,-0.838786065578461,0.383701503276825,0.860786080360413,-0.33439576625824,0.137810885906219,0.68460214138031,-0.715770959854126,0.000400155782699585,-0.0884427204728127,-0.996081173419952,0.0232737064361572,0.694308876991272,-0.719300806522369,0.000943891704082489,-0.0706518590450287,-0.997500658035278,0.137810885906219,0.68460214138031,-0.715770959854126,-0.354604095220566,-0.0114460438489914,-0.934946477413177,0.00927255861461163,0.544382274150848,-0.838786065578461,-0.0331053771078587,-0.565003871917725,0.824423849582672,-0.0306291226297617,-0.447565227746964,0.893726646900177,0.0026906318962574,0.559954702854156,0.828518927097321,-0.0959227830171585,-0.562299013137817,0.821351766586304,-0.000923082116059959,0.560216248035431,0.828345835208893,-0.00206645205616951,0.551006078720093,0.834498763084412,0.0161171294748783,0.551413416862488,0.834076523780823,0.0164465960115194,0.558891415596008,0.82907772064209,0.0187669172883034,0.611116826534271,0.791317880153656,0.0256342776119709,0.558121800422668,0.82936292886734,0.028771985322237,0.623295962810516,0.781456649303436,0.0281785037368536,0.61098176240921,0.791143000125885,0.0915055647492409,0.620550096035004,0.778809666633606,0.0565727390348911,0.555179178714752,0.829804539680481,0.0120104439556599,0.466625839471817,0.884373247623444,-0.00298454239964485,0.465923875570297,0.884819746017456,-0.000282385357422754,0.316223531961441,0.948684692382813,-0.00521784834563732,0.583398878574371,0.812169075012207,
- -0.0507486946880817,0.582071602344513,0.811552286148071,-0.052359476685524,0.623199284076691,0.780308365821838,-0.0457253307104111,0.463345974683762,0.884997129440308,0.0237494427710772,0.56567645072937,0.824285209178925,0.0240389350801706,0.58361279964447,0.811676144599915,0.0240389350801706,0.58361279964447,0.811676144599915,0.00117805844638497,0.623724043369293,0.781643688678741,0.00210903352126479,0.583499312400818,0.812110900878906,0.00251185777597129,0.565559148788452,0.824703991413116,0.0134576298296452,0.62359219789505,0.781633973121643,0.0116476211696863,0.565640866756439,0.824569523334503,0.0277622230350971,0.949372231960297,-0.312924295663834,0.0363373421132565,0.610820829868317,0.79093462228775,0.037266131490469,0.623068451881409,0.781279027462006,0.0685056820511818,0.948883295059204,-0.308103054761887,0.0338649749755859,0.949253559112549,-0.312683343887329,0.0339136645197868,0.950907349586487,-0.307611912488937,0.0204310640692711,0.62347549200058,0.781575918197632,-0.782251596450806,-0.275604069232941,-0.55868136882782,0.798220157623291,0.36818078160286,0.476746886968613,0.533673465251923,0.799603998661041,-0.275365680456162,0.0338649749755859,0.949253559112549,-0.312683343887329,0.030429482460022,0.839244842529297,-0.542901575565338,0.0339136645197868,0.950907349586487,-0.307611912488937,0.78749006986618,0.578534424304962,-0.212502479553223,0.685299754142761,0.593934953212738,-0.421432763338089,-0.779703378677368,-0.277623772621155,-0.561237692832947,-0.315850079059601,0.800976991653442,-0.508600533008575,-0.342267602682114,0.888689577579498,-0.305096298456192,-0.33129546046257,0.850702822208405,-0.408102959394455,0.0172835271805525,0.839844822883606,-0.542551279067993,0.0181864388287067,0.949487090110779,-0.313278824090958,0.0173897035419941,0.849921703338623,-0.526622176170349,-0.0516946204006672,-0.549519777297974,-0.833880007266998,0.494953989982605,-0.0510666780173779,-0.867417275905609,0.0119577012956142,-0.506209373474121,-0.862327694892883,-0.0137360170483589,-0.553469955921173,-0.832755863666534,
- 0.0129982996731997,-0.0311710461974144,-0.9994295835495,0.0143876001238823,-0.00148443481884897,-0.999895393848419,-0.00615773815661669,-0.560059010982513,-0.828429818153381,0.0172835271805525,0.839844822883606,-0.542551279067993,0.0173897035419941,0.849921703338623,-0.526622176170349,0.0509694144129753,0.838015615940094,-0.543260633945465,-0.00968449655920267,-0.559997260570526,-0.828437805175781,-0.00930942595005035,-0.553877949714661,-0.832545816898346,0.0189691577106714,-0.0310271419584751,-0.999338626861572,-0.00930942595005035,-0.553877949714661,-0.832545816898346,-0.00968449655920267,-0.559997260570526,-0.828437805175781,-0.0539240278303623,0.847629427909851,-0.52784138917923,0.0383945964276791,-0.590486764907837,-0.806133568286896,0.0364730693399906,-0.560254037380219,-0.82751739025116,-0.0161089058965445,-0.559866845607758,-0.828426003456116,-0.0140040367841721,-0.592866957187653,-0.805178642272949,-0.0412179455161095,-0.0324263721704483,-0.998623907566071,0.0384831428527832,-0.590481340885162,-0.806133210659027,0.0384831428527832,-0.590481340885162,-0.806133210659027,0.0368258655071259,-0.560251414775848,-0.827503561973572,-0.0579565018415451,-0.17664110660553,-0.982567548751831,-0.0611842535436153,-0.0328653044998646,-0.997585296630859,-0.0402381718158722,-0.593446016311646,-0.803867399692535,0.0986308753490448,-0.585729718208313,-0.804482817649841,0.0986308753490448,-0.585729718208313,-0.804482817649841,0.0986308753490448,-0.585729718208313,-0.804482817649841,-0.0588311739265919,0.0300375614315271,0.99781596660614,-0.0608562231063843,0.169235557317734,0.983695089817047,-0.0353202112019062,-0.584691643714905,0.810486435890198,-0.0289869494736195,-0.58452695608139,0.810856342315674,-0.0585425831377506,0.0300449039787054,0.997832715511322,-0.0289869494736195,-0.58452695608139,0.810856342315674,-0.0188557785004377,-0.591925144195557,0.805772364139557,-0.0896118581295013,0.029239010065794,0.995547473430634,-0.0200102403759956,-0.584253370761871,0.811324596405029,-0.0164963528513908,-0.559103190898895,0.828933954238892,
- 0.00626572873443365,0.0316276960074902,0.999480068683624,-0.0178319290280342,-0.591955840587616,0.805773138999939,0.0112082855775952,0.0317429751157761,0.999433219432831,-0.0193794127553701,-0.558904528617859,0.829005539417267,0.00960932765156031,-0.000991438515484333,0.999953329563141,-0.0174071360379457,-0.591968417167664,0.805773258209229,0.0307768769562244,0.786410272121429,0.616937339305878,-0.0161337405443192,-0.559127986431122,0.828924477100372,0.69849169254303,0.501783013343811,0.510218739509583,0.320728689432144,-0.0330910533666611,0.946592926979065,-0.232307225465775,-0.531083166599274,0.814852118492126,0.635127305984497,-0.065529003739357,0.769622921943665,0.782136857509613,0.419592559337616,0.460656106472015,0.0167017951607704,-0.707042634487152,0.706973731517792,0.0222752876579762,0.78729909658432,0.616168797016144,-0.00423916196450591,-0.592304229736328,0.805703222751617,0.0225999243557453,0.834643363952637,0.550326824188232,0.0311827640980482,0.951545357704163,0.305923312902451,0.0274723246693611,0.786762595176697,0.616644024848938,0.0286599025130272,0.834618806838989,0.550081849098206,0.0440693683922291,0.951176583766937,0.30548495054245,0.0440406911075115,0.950433313846588,0.307793885469437,0.037227600812912,0.785697102546692,0.617490351200104,0.0289645381271839,0.619638621807098,-0.784352660179138,0.0452711544930935,0.95036906003952,0.307813823223114,0.0453060679137707,0.951132833957672,0.305440187454224,0.802963614463806,0.364306926727295,-0.47173073887825,0.0666947364807129,0.782012224197388,0.619684398174286,0.457999289035797,0.841557800769806,0.286386370658875,0.0206916015595198,0.619765996932983,-0.7845139503479,0.0203213393688202,0.611098289489746,-0.791293859481812,0.0386251471936703,0.950698971748352,0.307700484991074,-0.622469067573547,0.478371411561966,-0.619429588317871,-0.609318733215332,0.452360689640045,-0.651229977607727,-0.0974199622869492,-0.233575060963631,-0.967446148395538,0.0115987341850996,0.611183404922485,-0.791404128074646,0.00878971256315708,0.545289993286133,-0.838201522827148,
- 0.00963875278830528,0.565439641475677,-0.824733376502991,0.0163463559001684,0.545037806034088,-0.838252186775208,0.0187805704772472,0.611116647720337,-0.791317701339722,0.0191018115729094,0.619785606861115,-0.784538805484772,-0.0926430523395538,0.617232739925385,-0.781307280063629,-0.0896558612585068,0.579975068569183,-0.80968564748764,-0.0868346691131592,0.545782864093781,-0.83341521024704,-0.0597585625946522,0.546151995658875,-0.835551977157593,-0.0591938048601151,0.581692159175873,-0.811252355575562,-0.0591938048601151,0.581692159175873,-0.811252355575562,-0.0443103425204754,0.546182155609131,-0.836493790149689,-0.0448121204972267,0.582313418388367,-0.811728358268738,-0.0443657152354717,0.549935877323151,-0.834027707576752,0.958665251731873,0.150444358587265,-0.241510987281799,0.950617134571075,-0.192504048347473,-0.243452906608582,0.960121631622314,-0.134345874190331,-0.245189025998116,0.939308762550354,0.0860683843493462,0.332101345062256,0.928071916103363,-0.211272999644279,0.306669563055038,0.921751379966736,-0.243029683828354,0.302177011966705,0.997997045516968,0.0383544228971004,-0.0503090508282185,0.997194170951843,0.00237315148115158,-0.0748217925429344,0.997963428497314,0.0283284280449152,-0.0571539588272572,0.999962449073792,-0.00485945353284478,0.00718651665374637,0.999962449073792,-0.00525863748043776,0.00689769303426147,0.999934196472168,-0.0111657651141286,0.0026233836542815,0.970640659332275,0.112837605178356,0.212425023317337,0.966399550437927,-0.143983721733093,0.212933704257011,0.965574741363525,-0.149627104401588,0.21278427541256,0.927584648132324,0.209279507398605,-0.309497892856598,0.924653053283691,-0.195553436875343,-0.326765477657318,0.921178817749023,-0.21201191842556,-0.326313853263855,0.986223876476288,0.102456033229828,0.129867061972618,0.968716621398926,0.210655689239502,0.131195455789566,0.98872709274292,-0.0838705897331238,0.124033972620964,0.984075784683228,0.177043735980988,0.015824981033802,0.997488498687744,-0.0396751090884209,0.0586744658648968,0.989916741847992,0.139706164598465,0.0233876667916775,
- 0.992990970611572,0.093846283853054,0.0718472301959991,0.999993801116943,-0.00197775452397764,0.00292484858073294,0.987515449523926,0.125793293118477,0.0948117673397064,0.992967486381531,0.0884630903601646,0.0786752328276634,0.999927282333374,-0.00731140375137329,0.00959028210490942,0.999927282333374,-0.00675611011683941,0.00999143160879612,0.606041789054871,0.546898782253265,-0.577594220638275,0.574152052402496,0.775947451591492,0.261256605386734,0.580439865589142,0.493696063756943,-0.647575378417969,0.990265786647797,-0.106159456074238,0.0900224894285202,0.990849852561951,-0.0818291008472443,0.107334271073341,0.988664746284485,-0.132059663534164,0.0714303702116013,0.63853645324707,0.4297975897789,-0.638392746448517,0.654437780380249,0.458418279886246,-0.601301908493042,0.638631343841553,0.729037165641785,0.246281966567039,0.996821403503418,-0.0777318477630615,-0.0174582824110985,0.975822567939758,-0.0233637616038322,0.217312186956406,0.99601936340332,-0.0817417353391647,-0.0355474054813385,-0.995749831199646,-0.0369290746748447,0.0843711718916893,0.999968528747559,0.00323518551886082,-0.00725467642769217,0.90470826625824,-0.170523554086685,0.390416085720062,0.851797461509705,-0.494817316532135,-0.172037407755852,0.851905941963196,-0.429470062255859,-0.29968598484993,0.850784003734589,-0.501013994216919,-0.158593192696571,0.998195648193359,-0.0396986156702042,-0.0450499430298805,0.998415470123291,-0.0503602549433708,-0.0251068808138371,-0.916312873363495,0.232575327157974,-0.326005160808563,0.690656781196594,0.399101108312607,-0.603085041046143,0.663833439350128,0.708434224128723,0.239679366350174,0.639523506164551,0.70888477563858,0.297476202249527,0.933188855648041,0.338855743408203,0.119730725884438,0.932472348213196,0.309284508228302,0.186650648713112,0.932017087936401,0.305354475975037,0.195199340581894,0.983587265014648,-0.173580974340439,-0.0492533147335052,0.983615279197693,-0.130898013710976,-0.123963087797165,0.984435796737671,-0.158409118652344,-0.0761101990938187,0.539503395557404,-0.533122956752777,0.651702463626862,
- 0.756069421768188,-0.599478304386139,-0.262649446725845,0.690819025039673,-0.514031529426575,-0.508469045162201,0.888328731060028,0.424960076808929,0.174014300107956,0.888089299201965,0.383520632982254,0.253395915031433,0.830098569393158,0.544428408145905,-0.120558068156242,0.997766017913818,-0.0373527184128761,-0.0553882047533989,0.8423992395401,-0.266866087913513,-0.468130350112915,0.0611436516046524,-0.486987769603729,-0.871265947818756,0.0261750053614378,0.831056356430054,0.555571973323822,0.80385422706604,0.491753369569778,0.334659606218338,0.999450325965881,0.0236090645194054,0.0232775323092937,-0.068773090839386,-0.782099068164825,-0.619347512722015,0.0674882754683495,-0.780498504638672,-0.621504306793213,0.00979531928896904,-0.782953798770905,-0.622002780437469,0.067578136920929,-0.807535350322723,-0.585935175418854,-0.0693023726344109,-0.806807398796082,-0.586735844612122,-0.0254706386476755,-0.808692753314972,-0.587679624557495,0.067578561604023,-0.815635621547699,-0.574605703353882,-0.0257393661886454,-0.817224860191345,-0.575743913650513,0.064237467944622,-0.815815806388855,-0.574733257293701,0.999633133411407,0.0236133821308613,0.0132715553045273,0.988637089729309,0.133756741881371,0.0686004385352135,0.999873280525208,0.0136169716715813,0.00824894104152918,0.997076809406281,0.0589408352971077,-0.0486201122403145,0.99278599023819,-0.032178308814764,-0.115501150488853,0.996925175189972,0.0235494133085012,-0.0747372508049011,0.995458841323853,-0.0731751248240471,-0.0608874000608921,0.0675779581069946,-0.816366374492645,-0.57356721162796,0.0642959550023079,-0.816558599472046,-0.57367068529129,0.0675708577036858,-0.802205860614777,-0.593211591243744,0.995219707489014,-0.0653633698821068,-0.0725640431046486,0.997822105884552,-0.0390086583793163,-0.0531934499740601,0.750524520874023,-0.423807799816132,-0.507050395011902,0.943298101425171,0.102646306157112,-0.315677732229233,0.0692069008946419,-0.878927648067474,-0.471907377243042,0.993493795394897,0.026310421526432,-0.110805347561836,0.992609560489655,0.0122272223234177,-0.120734542608261,
- 0.989674985408783,-0.0183379091322422,-0.142151713371277,0.921230673789978,0.137356832623482,-0.363960534334183,0.905487060546875,-0.173898637294769,-0.387107968330383,0.914542257785797,0.19197578728199,-0.356030702590942,0.999962210655212,0.00869427248835564,-2.23913207264559e-006,0.993530452251434,-0.11356583237648,2.92547010758426e-005,0.993534922599792,-0.113527357578278,2.92398071906064e-005,0.945738315582275,-0.190781861543655,0.263023793697357,0.927506148815155,0.314524084329605,0.202007636427879,0.939198970794678,-0.218968883156776,0.264495849609375,0.99949187040329,-0.0314386077225208,0.00526435812935233,0.999622464179993,-0.00169055443257093,0.0274254381656647,0.999010026454926,-0.0442760698497295,-0.00431123562157154,0.0648022368550301,-0.832148015499115,-0.550754308700562,0.357601493597031,0.502817988395691,-0.786953151226044,0.0824018344283104,-0.804503738880157,-0.58820378780365,0.0361369922757149,-0.551887929439545,0.833134949207306,0.380033522844315,0.775138139724731,0.504713177680969,0.0364851579070091,-0.551173865795136,0.833592355251312,0.999224007129669,-0.031283188611269,0.0239311642944813,0.998594641685486,-0.0523898154497147,0.00800496898591518,0.996147394180298,0.0404487997293472,0.0778092816472054,0.999615132808685,-0.000542687193956226,-0.0277386493980885,0.99664843082428,0.0766014158725739,0.0287085324525833,0.998939692974091,-0.0196125898510218,-0.0416537709534168,0.992732048034668,0.00908950064331293,0.120002552866936,0.992037296295166,0.0156226353719831,0.124971464276314,0.995504915714264,-0.0306488703936338,0.0896133780479431,0.999830305576324,0.015745360404253,0.00957505125552416,0.996893286705017,0.0646010786294937,0.0450616329908371,0.999873638153076,-0.0119203254580498,-0.0105170393362641,0.999838829040527,0.0157454945147038,0.00862693041563034,0.999868512153625,-0.0109881469979882,-0.0119284754619002,0.0249595139175653,-0.7924644947052,-0.609407067298889,0.0675241574645042,-0.787578821182251,0.612503290176392,-0.0689352974295616,-0.78925746679306,0.610180854797363,0.00965219084173441,-0.790090620517731,0.612914085388184,
- -0.0692991018295288,-0.806639969348907,0.586966574192047,0.0675779804587364,-0.807367980480194,0.5861656665802,-0.0254653543233871,-0.808524966239929,0.587910711765289,0.0675794035196304,-0.814292728900909,0.576507151126862,0.0641321316361427,-0.814478039741516,0.57663905620575,-0.0256970152258873,-0.815880239009857,0.577649652957916,0.0642280504107475,-0.815696239471436,0.574903786182404,0.0675786659121513,-0.815499007701874,0.574799537658691,0.995451092720032,-0.0727653577923775,0.0615007132291794,0.997820436954498,-0.0389576740562916,0.0532610267400742,0.995217442512512,-0.0653136968612671,0.0726381689310074,0.0675706937909126,-0.802117824554443,0.593330562114716,0.8430495262146,-0.265407025814056,0.467789053916931,0.997751891613007,-0.0369693227112293,0.0558962263166904,0.0611057579517365,-0.485841304063797,0.87190842628479,0.989969849586487,-0.0198917575180531,0.13987147808075,0.992892563343048,0.0105573348701,0.11854512989521,0.993785321712494,0.0247867405414581,0.10851888358593,0.547604918479919,-0.530362844467163,-0.647181689739227,0.705207347869873,-0.495779514312744,0.506838500499725,0.770743429660797,-0.583481013774872,0.255938410758972,0.889293253421783,0.381647914648056,-0.251997232437134,0.889531910419464,0.422816246747971,-0.173087865114212,0.831168293952942,0.542512595653534,0.121817976236343,0.991297841072083,-0.0734621658921242,-0.1092334613204,0.990698099136353,-0.104382768273354,-0.0873011872172356,0.98910129070282,-0.130149677395821,-0.0688461512327194,0.997637152671814,-0.00170238874852657,0.0686819031834602,0.998380601406097,0.0404112413525581,0.0400409698486328,0.998401880264282,0.0242811776697636,0.0510315299034119,0.999969005584717,0.0062745944596827,-0.00475629838183522,0.999968886375427,-0.00650281086564064,0.00446723587810993,0.999969005584717,-0.00648980727419257,0.00445784907788038,0.612071454524994,0.729060232639313,-0.30633282661438,0.636399865150452,0.730796039104462,-0.246844947338104,0.656971514225006,0.419388294219971,0.626499831676483,0.690896928310394,0.442626178264618,0.571614801883698,
- 0.671833634376526,0.410647422075272,0.616448104381561,0.679193615913391,0.695177495479584,-0.235423907637596,0.983136892318726,-0.133017182350159,0.125492230057716,0.983097791671753,-0.176096692681313,0.0500890053808689,0.983964622020721,-0.160821199417114,0.0771369636058807,0.992992043495178,0.0932073146104813,-0.0726584196090698,0.999959766864777,-0.00892633758485317,0.000883018365129828,0.999959826469421,0.00366057152859867,-0.00818496197462082,0.610291481018066,0.750627517700195,-0.253185033798218,0.638734459877014,0.533559203147888,0.554376184940338,0.612710356712341,0.482975661754608,0.625556230545044,0.999963998794556,-0.00828173290938139,0.00183636764995754,0.99299156665802,0.093582957983017,-0.0721815600991249,0.994693040847778,0.0811994224786758,-0.0631868913769722,0.994711101055145,0.0836124792695045,-0.0596555881202221,0.992976546287537,0.0963026434183121,-0.0687267705798149,0.103676982223988,0.809154987335205,-0.578376591205597,0.975248157978058,-0.0253012180328369,-0.21966078877449,0.996578991413116,-0.080571822822094,0.0183991231024265,0.995747923851013,-0.084584578871727,0.036492757499218,0.999968349933624,0.00343328784219921,0.00718864053487778,-0.995655834674835,-0.0374954380095005,-0.0852261260151863,0.905213117599487,-0.169779852032661,-0.389569252729416,0.851449966430664,-0.430092722177505,0.300088584423065,0.851347982883453,-0.495511323213577,0.172264993190765,0.850334882736206,-0.501702725887299,0.158824563026428,0.998420000076294,-0.0502837486565113,0.0250814147293568,0.998200237751007,-0.0396324694156647,0.0450063496828079,-0.916640400886536,0.232165977358818,0.325375914573669,0.931653261184692,0.306106418371201,-0.195757478475571,0.932111918926239,0.310057580471039,-0.187167972326279,0.932830095291138,0.339739918708801,-0.120020054280758,0.999868631362915,-0.0110104149207473,0.011894759722054,0.999838352203369,0.0157454870641232,-0.0086908508092165,0.0249536372721195,-0.792277991771698,0.609649777412415,0.35920837521553,0.502424716949463,0.786472380161285,0.0650914236903191,-0.832129836082459,0.550747811794281,
- 0.0827819928526878,-0.804472982883453,0.588192462921143,0.379043370485306,0.775468528270721,-0.504950106143951,0.0363724417984486,-0.551890969276428,-0.833122670650482,0.0367218069732189,-0.551172196865082,-0.833583056926727,0.999871015548706,-0.0113707156851888,0.0113492319360375,0.996890902519226,0.0651721432805061,-0.0442846678197384,0.999841213226318,0.0157455317676067,-0.00835659168660641,0.996620953083038,0.0773126855492592,-0.0277375504374504,0.999586939811707,0.000119083546451293,0.0287399534136057,0.998910307884216,-0.0189518313854933,0.042652253061533,0.991837084293365,0.0156194819137454,-0.126551449298859,0.992616891860962,0.00834130495786667,-0.121004745364189,0.995366990566254,-0.0306325200945139,-0.0911382213234901,0.998594522476196,-0.0523911789059639,-0.00800703838467598,0.999223530292511,-0.0312830060720444,-0.0239522457122803,0.996144890785217,0.0404101684689522,-0.0778614804148674,0.999634623527527,-0.00134970340877771,-0.0269986018538475,0.999495208263397,-0.0314442403614521,-0.00456209573894739,0.999021649360657,-0.0439645200967789,0.00478383898735046,0.906839966773987,0.352850258350372,-0.230516999959946,0.927228689193726,-0.221961796283722,-0.301628768444061,0.921658337116241,-0.243149191141129,-0.302364677190781,0.992638766765594,-0.0321835651993752,0.116757944226265,0.997003674507141,0.0595443584024906,0.0493782758712769,0.996832430362701,0.0235472228378057,0.0759647339582443,0.984913468360901,0.152279987931252,-0.0821966975927353,0.999610602855682,0.0236128475517035,-0.014871628023684,0.999875128269196,0.0128345685079694,-0.00922946818172932,0.999449372291565,0.0236090421676636,-0.0233185328543186,0.799271583557129,0.496661603450775,-0.338367074728012,0.0261641461402178,0.830711603164673,-0.556087791919708,0.0147754615172744,0.00023268444056157,0.999890863895416,0.00303625501692295,-0.46626079082489,0.884642124176025,0.0147352172061801,-0.00163724622689188,0.999890089035034,-0.270294189453125,-0.456591218709946,0.847623467445374,-0.574825465679169,-0.00905236974358559,0.818225920200348,-0.047074519097805,-0.664273858070374,0.746005594730377,
- -0.00760249048471451,-0.465580254793167,0.884973049163818,0.00519604934379458,8.18275511846878e-005,0.999986469745636,-0.00735702179372311,-0.457087635993958,0.889391243457794,-0.00203407369554043,-0.456763565540314,0.889585793018341,0.0075785992667079,0.824604213237762,0.56565934419632,-0.00211565382778645,-0.465937852859497,0.884814918041229,0.020769665017724,0.824274063110352,0.565809905529022,-0.00537186115980148,-0.456968277692795,0.889466762542725,0.0207788627594709,0.824919819831848,0.564867675304413,0.924678862094879,-0.112979471683502,0.36359977722168,-0.0928150415420532,0.580061793327332,0.809267342090607,-0.725167989730835,0.554689526557922,0.407983899116516,0.341923743486404,0.770435750484467,0.538067936897278,0.540666162967682,0.779045045375824,0.317441284656525,-0.767852544784546,-0.249192923307419,0.590174198150635,-0.808112144470215,-0.222389027476311,0.545433580875397,-0.387289226055145,0.862285435199738,0.326298832893372,0.785183370113373,0.332971185445786,-0.522127866744995,0.0220148582011461,0.926331162452698,0.376066446304321,0.020769665017724,0.824274063110352,0.565809905529022,0.0207788627594709,0.824919819831848,0.564867675304413,0.0208325069397688,0.926340639591217,0.376110345125198,0.0209692418575287,0.931322574615479,0.363591104745865,0.0181464310735464,0.824351191520691,0.565787851810455,0.552487134933472,0.697096645832062,0.456961929798126,-0.0751895755529404,0.995062112808228,0.0647910386323929,0.353891968727112,0.870477259159088,0.342096149921417,0.00573531072586775,0.512051463127136,-0.858935654163361,0.0224208012223244,0.931280791759491,0.363611698150635,0.022391052916646,0.92632782459259,0.376052349805832,-0.071553073823452,0.997424960136414,0.00485799834132195,-0.651109576225281,0.401873022317886,-0.643858969211578,0.273231476545334,0.894245564937592,0.354498863220215,0.00397486938163638,0.51209157705307,-0.858921647071838,0.00397777836769819,0.512253046035767,-0.858825385570526,0.0159133411943913,0.931453049182892,0.3635134100914,-0.628613948822021,0.411018550395966,-0.660233497619629,
- -0.0403781794011593,0.917340159416199,-0.396051287651062,-0.664348781108856,0.345815569162369,-0.662610292434692,0.00486165517941117,0.512268960475922,-0.858811259269714,0.00485976180061698,0.51207160949707,-0.858928978443146,0.00396101921796799,0.418355137109756,-0.90827488899231,0.658377349376678,0.2816202044487,-0.698018193244934,0.0802541226148605,-0.270880699157715,-0.959261655807495,0.0103092696517706,-0.322267174720764,-0.946592628955841,-0.0187926981598139,0.511704325675964,-0.858956158161163,-0.0211739763617516,0.419526249170303,-0.907496213912964,-0.0200247168540955,0.465698599815369,-0.884716808795929,-0.0317369438707829,-0.187932133674622,-0.981669127941132,-0.570986688137054,0.408826440572739,-0.711923658847809,-0.550359606742859,0.381422340869904,-0.742712140083313,-0.0005381740629673,0.418584287166595,-0.90817779302597,-0.00451991660520434,-0.306871324777603,-0.951740264892578,-0.000215028849197552,0.466068953275681,-0.884748339653015,0.00228745304048061,-0.466214656829834,-0.884668707847595,0.0140320034697652,0.000220976435230114,-0.999901592731476,0.0139934327453375,-0.00155482580885291,-0.999900877475739,-0.267088174819946,-0.459985941648483,-0.846803963184357,-0.0470709502696991,-0.664223492145538,-0.746050655841827,-0.574654281139374,-0.00904967356473207,-0.818346261978149,0.0090894540771842,0.000143141005537473,-0.999958693981171,-0.00310999341309071,-0.46587410569191,-0.884845614433289,-0.00294263288378716,-0.460038721561432,-0.887893974781036,0.0140183214098215,0.824460983276367,-0.565745115280151,0.00189830758608878,-0.459733188152313,-0.888055145740509,0.00179715640842915,-0.466184258460999,-0.884685873985291,-0.00884459912776947,-0.460396617650986,-0.887669265270233,0.0169795826077461,0.824383676052094,-0.565776765346527,0.0169898550957441,0.824911534786224,-0.565006375312805,-0.121668055653572,0.658936977386475,-0.742293059825897,0.928134024143219,-0.109637476503849,-0.355734527111053,-0.610638380050659,0.642069220542908,-0.463538378477097,0.688389301300049,0.669713079929352,-0.278575986623764,
- 0.554323852062225,0.678951323032379,-0.481404364109039,-0.763518095016479,-0.251891165971756,-0.594635188579559,-0.143518641591072,0.923291981220245,-0.356278598308563,-0.804765939712524,-0.224747404456139,-0.54940003156662,0.793287217617035,0.327795565128326,0.51307475566864,0.0154095450416207,0.824425578117371,-0.565760612487793,0.0166438687592745,0.926363825798035,-0.37626177072525,0.0154158398509026,0.824904680252075,-0.565061569213867,0.0211736485362053,0.926338016986847,-0.376097708940506,0.0185013897716999,0.824341118335724,-0.565791070461273,0.0213087815791368,0.931313037872314,-0.363595992326736,0.456735819578171,0.741700530052185,-0.491195112466812,0.224086910486221,0.905366718769073,-0.360688626766205,-0.105031602084637,0.984232604503632,-0.142318949103355,0.0227033887058496,0.926325023174286,-0.376040577888489,0.0227347332984209,0.931271493434906,-0.363616079092026,0.0059036361053586,0.511967658996582,0.858984410762787,-0.697428345680237,0.390383422374725,0.60099458694458,-0.103343971073627,0.987761795520782,-0.116819821298122,0.166438683867455,0.915331602096558,-0.366696327924728,0.0095889400690794,0.512347519397736,0.858724772930145,0.00957668572664261,0.511828780174255,0.859034061431885,0.0215847678482533,0.931305170059204,-0.363599956035614,-0.665565609931946,0.404542982578278,0.627190172672272,-0.678708136081696,0.379651129245758,0.628665447235107,-0.0607231445610523,0.933059513568878,0.354559779167175,0.00884445942938328,0.51233583688736,0.858739614486694,0.0083882249891758,0.465586543083191,0.884962677955627,0.00883984565734863,0.511857151985168,0.859025061130524,0.0755515918135643,0.0370849929749966,0.99645209312439,0.594394207000732,0.341159611940384,0.728220880031586,0.00799977034330368,-0.00228647398762405,0.999965488910675,-0.0112949926406145,0.466673672199249,0.884357511997223,-0.0111284954473376,0.511918663978577,0.858961820602417,-0.0112986294552684,0.465568363666534,0.884939849376678,-0.00681537110358477,0.0268130525946617,-0.999617338180542,-0.0325354523956776,0.0271183680742979,-0.999102652072906,
- -0.0304032545536757,0.0270937271416187,-0.999170482158661,-0.0324639603495598,0.0252616479992867,-0.999153614044189,-0.00688121374696493,0.0251491777598858,-0.999660074710846,0.00668634567409754,0.0250828582793474,-0.999663054943085,0.00490430975332856,0.0625306069850922,-0.99803102016449,-0.00539326528087258,0.0626157149672508,-0.998023152351379,0.00933447014540434,0.062491949647665,-0.99800181388855,0.992714822292328,-0.120116122066975,0.00945796258747578,0.992744565010071,-0.120149508118629,-0.00473029538989067,0.992756843566895,-0.120141066610813,-2.66766756708699e-017,0.993256568908691,-0.115847259759903,-0.00456091575324535,0.993232190608978,-0.115788042545319,0.00911716930568218,0.993268728256226,-0.115832038223743,-0.000524507369846106,0.992125868797302,-0.125245034694672,-7.74366781115532e-005,0.992110133171082,-0.125272527337074,-0.00493198912590742,0.992125988006592,-0.125244125723839,7.73780047893524e-005,0.991884469985962,0.0540798753499985,0.115068405866623,0.999520242214203,0.0294092502444983,0.00972278881818056,0.999645709991455,0.0248875375837088,-0.00943894498050213,0.999652087688446,0.0246379505842924,0.0094232726842165,0.992027640342712,0.0276576392352581,0.122948497533798,0.99959260225296,0.02477085031569,0.0141812469810247,0.99180281162262,-0.127778336405754,-0.000239558081375435,0.994166612625122,-0.00169830885715783,-0.107842609286308,0.992459237575531,-0.122480690479279,-0.0048220744356513,0.999679207801819,0.0235389247536659,0.00935425609350204,0.99962317943573,0.0234543550759554,0.0142646580934525,0.999716639518738,0.0237300656735897,-0.00186850922182202,0.20411129295826,-0.0154145881533623,-0.978826344013214,0.336731433868408,-0.939900815486908,-0.0565549209713936,0.205171450972557,-0.018641259521246,-0.978548526763916,0.984796941280365,-0.0182290896773338,-0.172750249505043,0.984942674636841,-0.00136122771073133,-0.172875910997391,0.984941303730011,-0.00272232457064092,-0.172867611050606,0.999524652957916,0.0168711524456739,0.025806674733758,0.999811291694641,0.0172360204160213,0.00895826332271099,
- 0.999846696853638,0.0174573436379433,-0.00137459393590689,0.536310851573944,0.836509048938751,0.112353712320328,0.417001903057098,0.00774599704891443,0.908872723579407,0.520475208759308,0.851920962333679,0.0577625408768654,0.862837314605713,-0.503940045833588,-0.0394491106271744,0.818533957004547,-0.572685718536377,0.0450933650135994,0.795738637447357,-0.60010951757431,0.0816617757081985,0.997654318809509,0.0213528014719486,-0.0650377944111824,0.999435901641846,0.0209071040153503,0.0262850318104029,0.998340725898743,0.0207388773560524,0.0537202693521976,0.998519718647003,0.0238833464682102,-0.0488666817545891,0.999368607997894,0.0235568303614855,0.0265988744795322,0.997582674026489,0.0239363461732864,-0.0652382895350456,0.998704731464386,0.0159582421183586,-0.0483138002455235,0.999866485595703,0.0146810514852405,-0.00717937154695392,0.99958348274231,0.0136513160541654,0.02542476169765,0.00638016872107983,0.0315334685146809,-0.999482333660126,0.999866485595703,0.0146810514852405,-0.00717937154695392,0.998704731464386,0.0159582421183586,-0.0483138002455235,0.999935686588287,-0.00779509544372559,-0.00824178103357553,0.00490430975332856,0.0625306069850922,-0.99803102016449,0.00933447014540434,0.062491949647665,-0.99800181388855,0.987124919891357,0.0105183273553848,-0.159605592489243,0.969245791435242,-0.246016770601273,-0.00621043052524328,0.973833084106445,-0.226520970463753,-0.0183697547763586,0.974419355392456,0.00827163457870483,-0.22458527982235,0.559431910514832,-0.82773357629776,-0.0435104966163635,0.0243250001221895,0.993899166584015,-0.107577569782734,0.924539506435394,0.0265332646667957,0.380161434412003,0.922564089298248,-0.00845374539494514,0.385751247406006,0.606506109237671,0.787680506706238,0.108212105929852,0.999870598316193,0.0156247727572918,-0.00384874967858195,0.0248887967318296,0.953420519828796,-0.300615876913071,0.0351585373282433,0.953129470348358,-0.300513088703156,0.0394313856959343,0.999149858951569,0.0120367454364896,0.999808132648468,0.0160965714603662,-0.011162037961185,0.999819099903107,0.0153933428227901,-0.0111709488555789,
- 0.999833345413208,0.016021216288209,-0.00875697936862707,0.0393196009099483,0.999223589897156,-0.00252838176675141,0.0392599813640118,0.999225854873657,-0.002527866512537,0.999854147434235,0.0155208269134164,-0.00714083854109049,0.999846994876862,0.015970416367054,-0.00713719241321087,0.999973595142365,0.000228785458602943,-0.00726393796503544,0.999082148075104,-0.0163570400327444,-0.039589948952198,0.999092102050781,0.0144717302173376,-0.0400686785578728,0.999204158782959,0.00125568790826947,-0.0398680903017521,0.792496860027313,0.608547806739807,-0.0402286015450954,0.950030028820038,0.0247618891298771,-0.311174958944321,0.0475997440516949,0.94100022315979,0.335041612386703,0.936802625656128,0.0257420875132084,-0.34891003370285,0.738898873329163,0.67220401763916,-0.046586200594902,0.935373187065125,0.0111334482207894,-0.353486984968185,0.99873161315918,-0.016477333381772,-0.047579038888216,0.998865723609924,0.00149899930693209,-0.0475932247936726,0.998615264892578,-0.0224656164646149,-0.0475709065794945,0.0303414482623339,-0.0286309570074081,0.9991295337677,0.995356023311615,-0.0959799066185951,0.00736167561262846,0.995054841041565,-0.0963795483112335,0.0240179877728224,0.999810993671417,-0.012794834561646,0.0146368406713009,0.0304032545536757,-0.0270937271416187,0.999170482158661,0.0325354523956776,-0.0271183680742979,0.999102652072906,0.995612680912018,-0.0171275939792395,-0.091989554464817,0.995516240596771,-0.021339314058423,-0.0921520665287972,0.995619177818298,0.0242296475917101,-0.0903075486421585,0.98617959022522,0.0220025721937418,0.164212286472321,0.986424684524536,0.00129298644606024,0.164209276437759,0.986347734928131,-0.0129477381706238,0.164166361093521,0.993422746658325,-0.00360465398989618,0.114447757601738,0.996965527534485,-0.0776491835713387,0.00550269754603505,0.996267259120941,-0.0254821050912142,0.0824752226471901,0.989861369132996,0.0244842078536749,-0.139910414814949,0.987214088439941,-0.0195831935852766,-0.158192276954651,0.955805957317352,0.293262779712677,-0.0207823999226093,0.999670147895813,-0.0256194099783897,0.00181554874870926,
- 0.999532997608185,-0.000961985497269779,0.0305430386215448,0.999777138233185,-0.0127228796482086,0.0168465040624142,0.999893486499786,0.000114971961011179,0.0146014392375946,0.999617636203766,0.0234982389956713,0.0145764024928212,0.999893426895142,-0.000229948796913959,0.0146017484366894,0.999900102615356,0.000111303794255946,0.0141355823725462,0.999900102615356,-0.000222612623474561,0.0141359008848667,0.999900102615356,-3.13875317114956e-018,0.0141356876119971,0.804231822490692,0.592828989028931,-0.0420114956796169,0.955645561218262,0.00463752262294292,-0.294482678174973,0.957328379154205,0.0248812176287174,-0.287929505109787,0.999267578125,0.000602565007284284,-0.0382628738880157,0.999361574649811,0.0356379523873329,-0.00252552377060056,0.999334931373596,0.0364256724715233,-0.0017208979697898,0.94859105348587,0.315712481737137,-0.0223733242601156,0.948681116104126,0.315990000963211,-0.0124293556436896,0.94831919670105,0.316679447889328,0.0201202742755413,0.84296053647995,-0.535316288471222,-0.0534241236746311,0.844171226024628,-0.535476326942444,0.0252980925142765,0.843878149986267,-0.535192728042603,0.0379270426928997,-0.660279214382172,-0.750183463096619,0.0354417413473129,-0.65731406211853,-0.751195311546326,-0.06036376953125,-0.660111725330353,-0.751074314117432,0.0118279419839382,0.995458662509918,-0.0949024558067322,0.00745661463588476,0.995393574237823,-0.094502791762352,-0.0161501932889223,0.995175719261169,-0.09514981508255,0.0239133797585964,0.413474351167679,-0.906775593757629,-0.0824444964528084,0.409241408109665,-0.909554302692413,-0.0723355561494827,0.471902310848236,-0.00967784505337477,-0.881597697734833,0.154794305562973,0.0269851759076118,0.987578094005585,0.15458807349205,0.0233315788209438,0.987703442573547,0.0747215002775192,0.993477165699005,0.0861391127109528,0.99992573261261,-0.000287816626951098,-0.0121842361986637,0.99992573261261,-9.59595272433944e-005,-0.0121868597343564,0.99992573261261,-9.59595272433944e-005,-0.0121868597343564,0.999981939792633,-4.73062100354582e-005,-0.00600788882002234,
- 0.999981999397278,-0.000141890734084882,-0.00600670743733644,0.999704778194427,0.0234662517905235,-0.00630010804161429,0.89385187625885,-0.0070164455100894,0.448307543992996,0.915851831436157,0.398522615432739,0.0489405691623688,0.0499057844281197,-0.689734637737274,0.722340404987335,0.797040104866028,-0.00304128136485815,0.603918731212616,0.80743807554245,0.0329874195158482,0.589029371738434,0.694653570652008,0.715638637542725,0.0729238763451576,0.0472862757742405,-0.998802661895752,-0.0125412130728364,0.999858140945435,-0.0158362407237291,-0.005743189714849,0.0389434583485127,-0.999163329601288,-0.01249935105443,0.999862909317017,-0.015615320764482,-0.00552676571533084,0.999859392642975,-0.0158328749239445,-0.00552817853167653,0.0472440309822559,-0.998860061168671,-0.00683147413656116,0.042031317949295,-0.787096977233887,-0.615395605564117,0.99753612279892,-0.0552674233913422,-0.0432111024856567,0.999807417392731,-0.0154594779014587,-0.0120870666578412,0.99753612279892,-0.0552674233913422,-0.0432111024856567,0.999567210674286,-0.0231763459742069,-0.018120538443327,0.999807417392731,-0.0154594779014587,-0.0120870666578412,0.999847590923309,-0.0158606916666031,-0.00730633595958352,0.999852120876312,-0.0155731225386262,-0.00730593269690871,0.999943375587463,-0.00775869283825159,-0.00729470560327172,0.962224125862122,-0.0118600353598595,0.272000163793564,0.963804721832275,-0.0214554537087679,0.265744358301163,0.949813723564148,-0.306592673063278,0.0620877780020237,0.999962508678436,-0.00781466625630856,-0.00374997151084244,0.999715089797974,0.0235189404338598,-0.00407991884276271,0.999868452548981,-0.0158036798238754,-0.00366524327546358,0.999614298343658,-0.00744960503652692,-0.0267572347074747,0.999718070030212,-0.00468442682176828,-0.023277735337615,0.997062921524048,0.0556022301316261,0.0526681058108807,0.999813497066498,-0.00759286992251873,-0.017759520560503,0.997273802757263,0.0505701787769794,0.0537368208169937,0.999979197978973,0.00644706236198545,-0.000507642689626664,0.99393105506897,-0.109665460884571,0.0086350766941905,
- 0.991373717784882,0.0380428805947304,0.125422790646553,0.996041178703308,-0.00923515390604734,0.0884116590023041,0.999685823917389,0.0234025940299034,-0.00897608324885368,0.999933838844299,-0.00773951597511768,-0.00850767828524113,0.999180674552917,0.0394103676080704,-0.00921359751373529,0.951294422149658,0.0350408330559731,0.306286036968231,0.903989017009735,-0.42623645067215,0.0335619263350964,0.928410947322845,-0.363708347082138,0.0759575814008713,0.896470844745636,0.134129270911217,0.422314345836639,0.936356902122498,0.0341133549809456,0.349388271570206,0.951718688011169,-0.299878776073456,0.0656071305274963,0.999704420566559,0.0234643965959549,-0.0063783354125917,0.999206244945526,0.0393859036266804,-0.00597872957587242,0.984835267066956,0.173473387956619,-0.0025424740742892,0.99971729516983,0.0235354341566563,-0.00338393053971231,0.984905123710632,0.17295990884304,0.00684620998799801,0.999858558177948,-0.015698155388236,-0.00605132151395082,0.997426927089691,-0.0151557689532638,-0.0700712949037552,0.997543632984161,-0.000551542907487601,-0.0700459554791451,0.997308015823364,0.0219054389744997,-0.069977842271328,0.944111406803131,-0.0174597408622503,0.329164087772369,0.907556414604187,0.137510403990746,0.396777391433716,0.846859872341156,-0.531140983104706,0.0267895124852657,0.999961256980896,-6.93001784384251e-005,-0.0088011221960187,0.999839901924133,-0.0156775992363691,-0.00862490106374025,0.999961256980896,-6.93001784384251e-005,-0.0088011221960187,0.797593832015991,-0.602363348007202,0.0316638797521591,0.805712223052979,-0.590479552745819,0.0464944541454315,0.845491945743561,-0.0175172034651041,0.53370076417923,0.999938368797302,-8.74314937391318e-005,-0.0111037995666265,0.999817669391632,-0.0156591385602951,-0.0109250452369452,0.999938368797302,2.46576005875218e-018,-0.0111047960817814,0.998688519001007,1.13681648427204e-017,-0.0511976629495621,0.997869670391083,-0.0152149545028806,-0.0634402483701706,0.998320519924164,0.0577546954154968,-0.00454761413857341,0.445144534111023,0.0714692920446396,0.8926020860672,
- 0.481629014015198,0.0978433340787888,0.870896220207214,0.445144534111023,0.0714692920446396,0.8926020860672,0.482940554618835,0.0934725850820541,0.870649933815002,0.447245746850967,0.067691296339035,0.891845941543579,0.314610540866852,-0.0233261063694954,0.948934257030487,0.467174500226974,0.143845349550247,0.872385621070862,0.288749039173126,0.0273718312382698,0.957013487815857,0.320550233125687,0.0475260876119137,0.946038544178009,0.31798380613327,0.0589829534292221,0.946259677410126,0.543389618396759,0.0715499296784401,0.836425960063934,0.490136802196503,0.0688263177871704,0.868923962116241,0.542389154434204,0.0121532343327999,0.840039491653442,0.316721230745316,0.0645459070801735,0.946319937705994,0.542389154434204,0.0121532343327999,0.840039491653442,0.540443360805511,-0.0312790274620056,0.840798795223236,0.329623430967331,0.00526197254657745,0.944097816944122,0.417645990848541,-0.00956637784838676,0.908559441566467,0.320283591747284,0.0487257950007916,0.946067750453949,0.289042443037033,0.0268074348568916,0.956940889358521,-0.0719064325094223,-0.208588898181915,0.97535640001297,-0.0917726904153824,0.080729141831398,0.992502272129059,0.417673170566559,-0.00928716547787189,0.908549904823303,0.329105168581009,0.0077561354264617,0.944261431694031,0.0134745594114065,-0.963966608047485,0.265681862831116,0.0653814822435379,-0.997586071491241,-0.0233979765325785,-0.043528214097023,-0.834049165248871,0.549970269203186,-0.0793808996677399,-0.111769013106823,0.990558624267578,0.305640816688538,-0.00551864504814148,0.952130913734436,-0.0200117137283087,-0.096346989274025,0.995146632194519,-0.0195157416164875,-0.097540408372879,0.995040237903595,-0.250155687332153,-0.159683346748352,0.954946756362915,-0.0792076289653778,-0.114144712686539,0.990301609039307,-0.24811202287674,-0.166454449295998,0.954323589801788,-0.043110478669405,-0.0404962264001369,0.998249351978302,-0.219597488641739,-0.148986056447029,0.964147329330444,-0.25042787194252,-0.158777937293053,0.955026507377625,-0.222411289811134,-0.142460554838181,0.964488565921783,
- -0.222411289811134,-0.142460554838181,0.964488565921783,-0.248146578669548,-0.166340380907059,0.954334497451782,-0.316391438245773,-0.165427386760712,0.934093296527863,-0.0753775238990784,-0.164993152022362,0.983410239219666,-0.316418081521988,-0.165041670203209,0.934152483940125,-0.248184680938721,-0.166214525699615,0.954346418380737,-0.315182894468308,-0.165070667862892,0.934564828872681,0.53807270526886,-0.842316389083862,0.0313202440738678,0.53807270526886,-0.842316389083862,0.0313202440738678,0.53807270526886,-0.842316389083862,0.0313202440738678,0.0712821558117867,0.631173670291901,-0.772359192371368,0.0712821558117867,0.631173670291901,-0.772359192371368,0.0712821558117867,0.631173670291901,-0.772359192371368,0.961792826652527,0.273670256137848,-0.00769175495952368,0.961792826652527,0.273670256137848,-0.00769175495952368,0.961792826652527,0.273670256137848,-0.00769175495952368,0.919970810413361,-0.362058639526367,0.150224089622498,0.919970810413361,-0.362058639526367,0.150224089622498,0.919970810413361,-0.362058639526367,0.150224089622498,-0.134895339608192,-0.98212194442749,-0.131300657987595,-0.134895339608192,-0.98212194442749,-0.131300657987595,-0.134895339608192,-0.98212194442749,-0.131300657987595,0.381787151098251,-0.811380743980408,-0.442605793476105,0.381787151098251,-0.811380743980408,-0.442605793476105,0.381787151098251,-0.811380743980408,-0.442605793476105,0.0994716733694077,0.994651019573212,-0.0278349630534649,0.0994716733694077,0.994651019573212,-0.0278349630534649,0.0994716733694077,0.994651019573212,-0.0278349630534649,-0.963282942771912,-0.268485933542252,-0.00115060049574822,-0.963282942771912,-0.268485933542252,-0.00115060049574822,-0.963282942771912,-0.268485933542252,-0.00115060049574822,-0.92209130525589,0.360418349504471,0.140876978635788,-0.92209130525589,0.360418349504471,0.140876978635788,-0.92209130525589,0.360418349504471,0.140876978635788,0.132084533572197,0.982100486755371,-0.134285092353821,0.132084533572197,0.982100486755371,-0.134285092353821,0.132084533572197,0.982100486755371,-0.134285092353821,
- -0.573712110519409,0.813597023487091,-0.0944167673587799,-0.573712110519409,0.813597023487091,-0.0944167673587799,-0.573712110519409,0.813597023487091,-0.0944167673587799,-0.558552324771881,0.825797200202942,-0.0779633447527885,-0.558552324771881,0.825797200202942,-0.0779633447527885,-0.558552324771881,0.825797200202942,-0.0779633447527885,-0.019351989030838,-0.649511814117432,-0.760105192661285,-0.019351989030838,-0.649511814117432,-0.760105192661285,-0.019351989030838,-0.649511814117432,-0.760105192661285,-0.376830399036407,-0.845058977603912,0.379307597875595,-0.376830399036407,-0.845058977603912,0.379307597875595,-0.376830399036407,-0.845058977603912,0.379307597875595,-0.0954856425523758,0.995317339897156,0.0150333754718304,-0.0954856425523758,0.995317339897156,0.0150333754718304,-0.0954856425523758,0.995317339897156,0.0150333754718304,0.94517195224762,-0.322345465421677,0.052376925945282,0.94517195224762,-0.322345465421677,0.052376925945282,0.94517195224762,-0.322345465421677,0.052376925945282,0.892242312431335,0.389705330133438,-0.228108391165733,0.892242312431335,0.389705330133438,-0.228108391165733,0.892242312431335,0.389705330133438,-0.228108391165733,-0.129887208342552,0.986207127571106,0.10259111225605,-0.129887208342552,0.986207127571106,0.10259111225605,-0.129887208342552,0.986207127571106,0.10259111225605,0.541135966777802,0.840789079666138,-0.015672966837883,0.541135966777802,0.840789079666138,-0.015672966837883,0.541135966777802,0.840789079666138,-0.015672966837883,0,0.00559919187799096,0.999984323978424,0,0.00559919187799096,0.999984323978424,0,0.00559919187799096,0.999984323978424,0,-0.000605536217335612,0.999999821186066,0,-0.000605536217335612,0.999999821186066,0,-0.000605536217335612,0.999999821186066,0.0393371172249317,-0.011235405690968,0.99916285276413,0.0393371172249317,-0.011235405690968,0.99916285276413,0.0393371172249317,-0.011235405690968,0.99916285276413,0.0393360629677773,-0.0134113123640418,0.999136030673981,0.0393360629677773,-0.0134113123640418,0.999136030673981,0.0393360629677773,-0.0134113123640418,0.999136030673981,
- -0.99935907125473,-0.00759350368753076,-0.0349840857088566,-0.99935907125473,-0.00759350368753076,-0.0349840857088566,-0.99935907125473,-0.00759350368753076,-0.0349840857088566,-0.999633193016052,-0.00766657013446093,-0.0259787831455469,-0.999633193016052,-0.00766657013446093,-0.0259787831455469,-0.999633193016052,-0.00766657013446093,-0.0259787831455469,0,-0.00499431882053614,0.999987542629242,0,-0.00499431882053614,0.999987542629242,0,-0.00499431882053614,0.999987542629242,0,-0.00203527696430683,0.999997913837433,0,-0.00203527696430683,0.999997913837433,0,-0.00203527696430683,0.999997913837433,0.999927878379822,0.0079443771392107,-0.00900796987116337,0.999927878379822,0.0079443771392107,-0.00900796987116337,0.999927878379822,0.0079443771392107,-0.00900796987116337,0.999934434890747,0.00793858710676432,-0.00826615281403065,0.999934434890747,0.00793858710676432,-0.00826615281403065,0.999934434890747,0.00793858710676432,-0.00826615281403065,0.999122023582459,0.00721719115972519,-0.0412693507969379,0.999122023582459,0.00721719115972519,-0.0412693507969379,0.999122023582459,0.00721719115972519,-0.0412693507969379,0.999081134796143,0.00852823071181774,0.0420021079480648,0.999081134796143,0.00852823071181774,0.0420021079480648,0.999081134796143,0.00852823071181774,0.0420021079480648,0.999950110912323,0.00777470227330923,-0.00628146901726723,0.999950110912323,0.00777470227330923,-0.00628146901726723,0.999950110912323,0.00777470227330923,-0.00628146901726723,0.999981641769409,-0.00606212811544538,-4.77332941954955e-005,0.999981641769409,-0.00606212811544538,-4.77332941954955e-005,0.999981641769409,-0.00606212811544538,-4.77332941954955e-005,0.999625742435455,0.0273593161255121,0.000215427688090131,0.999625742435455,0.0273593161255121,0.000215427688090131,0.999625742435455,0.0273593161255121,0.000215427688090131,0.99993497133255,-0.0114058535546064,-8.98098733159713e-005,0.99993497133255,-0.0114058535546064,-8.98098733159713e-005,0.99993497133255,-0.0114058535546064,-8.98098733159713e-005,0.998328149318695,0.0577935427427292,-0.00091013457858935,
- 0.998328149318695,0.0577935427427292,-0.00091013457858935,0.998328149318695,0.0577935427427292,-0.00091013457858935,0.999023795127869,0.0441722422838211,-0.000695625843945891,0.999023795127869,0.0441722422838211,-0.000695625843945891,0.999023795127869,0.0441722422838211,-0.000695625843945891,0.999744594097137,0.0225992891937494,-0.000355894298991188,0.999744594097137,0.0225992891937494,-0.000355894298991188,0.999744594097137,0.0225992891937494,-0.000355894298991188,0.995902061462402,0.0113740582019091,-0.0897206664085388,0.995902061462402,0.0113740582019091,-0.0897206664085388,0.995902061462402,0.0113740582019091,-0.0897206664085388,0.996743738651276,0.0109933502972126,-0.0798823460936546,0.996743738651276,0.0109933502972126,-0.0798823460936546,0.996743738651276,0.0109933502972126,-0.0798823460936546,0.99266517162323,0.0125502422451973,-0.12024312466383,0.99266517162323,0.0125502422451973,-0.12024312466383,0.99266517162323,0.0125502422451973,-0.12024312466383,-0.999219536781311,-0.0151612823829055,-0.036478117108345,-0.999219536781311,-0.0151612823829055,-0.036478117108345,-0.999219536781311,-0.0151612823829055,-0.036478117108345,-0.999189376831055,-0.0163148641586304,0.0368044711649418,-0.999189376831055,-0.0163148641586304,0.0368044711649418,-0.999189376831055,-0.0163148641586304,0.0368044711649418,-0.999854564666748,-0.0156385581940413,-0.00680614728480577,-0.999854564666748,-0.0156385581940413,-0.00680614728480577,-0.999854564666748,-0.0156385581940413,-0.00680614728480577,-0.99357008934021,-0.113216012716293,0.000891464645974338,-0.99357008934021,-0.113216012716293,0.000891464645974338,-0.99357008934021,-0.113216012716293,0.000891464645974338,-0.999994277954102,-0.00338869192637503,2.66826136794407e-005,-0.999994277954102,-0.00338869192637503,2.66826136794407e-005,-0.999994277954102,-0.00338869192637503,2.66826136794407e-005,-0.999938130378723,0.0111220115795732,-8.75748955877498e-005,-0.999938130378723,0.0111220115795732,-8.75748955877498e-005,-0.999938130378723,0.0111220115795732,-8.75748955877498e-005,0.996664941310883,0.0217553153634071,-0.0786488577723503,
- 0.996664941310883,0.0217553153634071,-0.0786488577723503,0.999751567840576,0.0209747515618801,0.00754174869507551,0.999843001365662,0.0159961078315973,0.00762087199836969,0.999876081943512,0.0157477408647537,-0.000123997961054556,0.996819734573364,0.0131778828799725,-0.0785934999585152,0.999956786632538,0.0092957615852356,-7.3194969445467e-005,0.999922871589661,0.00973776914179325,0.00772005785256624,0.999956786632538,0.0092957615852356,-7.3194969445467e-005,0.998854279518127,0.0478323996067047,-0.00150653230957687,0.998854279518127,0.0478323996067047,-0.00150653230957687,0.998854279518127,0.0478323996067047,-0.00150653230957687,0.999764621257782,-0.021687027066946,0.000683055957779288,0.999764621257782,-0.021687027066946,0.000683055957779288,0.999764621257782,-0.021687027066946,0.000683055957779288,0.999963581562042,-0.00852768123149872,0.000268588395556435,0.999963581562042,-0.00852768123149872,0.000268588395556435,0.999963581562042,-0.00852768123149872,0.000268588395556435,0.999935269355774,-8.96531637408771e-005,0.0113859521225095,0.999935269355774,-8.96531637408771e-005,0.0113859521225095,0.999935269355774,-8.96531637408771e-005,0.0113859521225095,0.999731063842773,-0.000182594187208451,0.0231894608587027,0.999731063842773,-0.000182594187208451,0.0231894608587027,0.999731063842773,-0.000182594187208451,0.0231894608587027,0.999929547309875,-9.34716517804191e-005,0.0118709001690149,0.999929547309875,-9.34716517804191e-005,0.0118709001690149,0.999929547309875,-9.34716517804191e-005,0.0118709001690149,0.999996542930603,-0.00266218208707869,2.09620629902929e-005,0.999996542930603,-0.00266218208707869,2.09620629902929e-005,0.999996542930603,-0.00266218208707869,2.09620629902929e-005,0.999985933303833,0.00530607579275966,-4.17801238654647e-005,0.999985933303833,0.00530607579275966,-4.17801238654647e-005,0.999985933303833,0.00530607579275966,-4.17801238654647e-005,0.999969720840454,-0.00778412586078048,6.12923322478309e-005,0.999969720840454,-0.00778412586078048,6.12923322478309e-005,0.999969720840454,-0.00778412586078048,6.12923322478309e-005,
- 0.995667338371277,0.0909700095653534,0.019261296838522,0.995667338371277,0.0909700095653534,0.019261296838522,0.995667338371277,0.0909700095653534,0.019261296838522,0.994910955429077,0.0988415852189064,0.0195592902600765,0.994910955429077,0.0988415852189064,0.0195592902600765,0.994910955429077,0.0988415852189064,0.0195592902600765,0.994618594646454,0.101720280945301,0.0196680203080177,0.994618594646454,0.101720280945301,0.0196680203080177,0.994618594646454,0.101720280945301,0.0196680203080177,0.999969065189362,0.00786201935261488,0.000298540748190135,0.999969065189362,0.00786201935261488,0.000298540748190135,0.999969065189362,0.00786201935261488,0.000298540748190135,0.999962508678436,0.00771916983649135,0.00392559263855219,0.999962508678436,0.00771916983649135,0.00392559263855219,0.999962508678436,0.00771916983649135,0.00392559263855219,0.999917149543762,0.00826232973486185,-0.00987973064184189,0.999917149543762,0.00826232973486185,-0.00987973064184189,0.999917149543762,0.00826232973486185,-0.00987973064184189,0.999906420707703,0.00830175448209047,-0.0108832903206348,0.999906420707703,0.00830175448209047,-0.0108832903206348,0.999906420707703,0.00830175448209047,-0.0108832903206348,-0.999240338802338,0.0227360557764769,0.0316511616110802,-0.999235928058624,0.0234239809215069,-0.0312875583767891,-0.999240338802338,0.0227360557764769,0.0316511616110802,-0.999049544334412,0.0304117240011692,-0.0312266666442156,-0.999022960662842,0.0307876113802195,0.0317077115178108,-0.999049544334412,0.0304117240011692,-0.0312266666442156,-0.999156355857849,0.0266371220350266,-0.0312597528100014,-0.999156355857849,0.0266371220350266,-0.0312597528100014,-0.999156355857849,0.0266371220350266,-0.0312597528100014,0.0393395908176899,0.000771714199800044,-0.999225616455078,0.0393395908176899,0.000771714199800044,-0.999225616455078,0.0393395908176899,0.000771714199800044,-0.999225616455078,0.0393389724195004,0.0056717973202467,-0.999209940433502,0.0393389724195004,0.0056717973202467,-0.999209940433502,0.0393389724195004,0.0056717973202467,-0.999209940433502,
- 0.0393387265503407,-0.0066697602160275,-0.999203681945801,0.0393387265503407,-0.0066697602160275,-0.999203681945801,0.0393387265503407,-0.0066697602160275,-0.999203681945801,-0.0155185190960765,0.999776601791382,-0.0143506173044443,-0.0155185190960765,0.999776601791382,-0.0143506173044443,-0.0155185190960765,0.999776601791382,-0.0143506173044443,-0.015486104413867,0.999745965003967,-0.0163782648742199,-0.015486104413867,0.999745965003967,-0.0163782648742199,-0.015486104413867,0.999745965003967,-0.0163782648742199,-0.0156254507601261,0.99984884262085,-0.00763269700109959,-0.0156254507601261,0.99984884262085,-0.00763269700109959,-0.0156254507601261,0.99984884262085,-0.00763269700109959,-0.999487638473511,0.00686735659837723,-0.0312636271119118,-0.999487638473511,0.00686735659837723,-0.0312636271119118,-0.999487638473511,0.00686735659837723,-0.0312636271119118,-0.998263359069824,0.0507919043302536,-0.0298416167497635,-0.998263359069824,0.0507919043302536,-0.0298416167497635,-0.998263359069824,0.0507919043302536,-0.0298416167497635,-0.999428927898407,-0.0113396365195513,-0.0318352282047272,-0.999428927898407,-0.0113396365195513,-0.0318352282047272,-0.999428927898407,-0.0113396365195513,-0.0318352282047272,-0.999175429344177,-0.0405986905097961,-0.000639349455013871,-0.999175429344177,-0.0405986905097961,-0.000639349455013871,-0.999175429344177,-0.0405986905097961,-0.000639349455013871,-0.998207807540894,-0.0598356351256371,-0.000942293496336788,-0.998207807540894,-0.0598356351256371,-0.000942293496336788,-0.998207807540894,-0.0598356351256371,-0.000942293496336788,-0.998952090740204,-0.0457634218037128,-0.000720683834515512,-0.998952090740204,-0.0457634218037128,-0.000720683834515512,-0.998952090740204,-0.0457634218037128,-0.000720683834515512,-0.99972540140152,-0.0234309565275908,-0.000368991430150345,-0.99972540140152,-0.0234309565275908,-0.000368991430150345,-0.99972540140152,-0.0234309565275908,-0.000368991430150345,-0.999969065189362,-0.00786192156374455,0.000301020336337388,-0.999969065189362,-0.00786192156374455,0.000301020336337388,
- -0.999969065189362,-0.00786192156374455,0.000301020336337388,-0.999961912631989,-0.00771252624690533,0.00409421231597662,-0.999961912631989,-0.00771252624690533,0.00409421231597662,-0.999961912631989,-0.00771252624690533,0.00409421231597662,-0.999911427497864,-0.00828387215733528,-0.0104280607774854,-0.999911427497864,-0.00828387215733528,-0.0104280607774854,-0.999911427497864,-0.00828387215733528,-0.0104280607774854,-0.999900877475739,-0.00832065567374229,-0.0113644544035196,-0.999900877475739,-0.00832065567374229,-0.0113644544035196,-0.999900877475739,-0.00832065567374229,-0.0113644544035196,-0.0393342524766922,0.0164935551583767,0.999090015888214,-0.0393342524766922,0.0164935551583767,0.999090015888214,-0.0393342524766922,0.0164935551583767,0.999090015888214,-0.0393371991813183,0.0110527975484729,0.999164879322052,-0.0393371991813183,0.0110527975484729,0.999164879322052,-0.0393371991813183,0.0110527975484729,0.999164879322052,-0.0393359363079071,-0.0136501230299473,0.999132812023163,-0.0393359363079071,-0.0136501230299473,0.999132812023163,-0.0393359363079071,-0.0136501230299473,0.999132812023163,-0.039312444627285,0.0371511392295361,0.998536109924316,-0.039312444627285,0.0371511392295361,0.998536109924316,-0.039312444627285,0.0371511392295361,0.998536109924316,-0.998721063137054,-0.00981659907847643,-0.0495974086225033,-0.998721063137054,-0.00981659907847643,-0.0495974086225033,-0.998721063137054,-0.00981659907847643,-0.0495974086225033,-0.99504142999649,-0.0117234922945499,-0.098768413066864,-0.99504142999649,-0.0117234922945499,-0.098768413066864,-0.99504142999649,-0.0117234922945499,-0.098768413066864,-0.996585965156555,-0.0110682435333729,-0.0818161740899086,-0.996585965156555,-0.0110682435333729,-0.0818161740899086,-0.996585965156555,-0.0110682435333729,-0.0818161740899086,-0.991980314254761,-0.0127615258097649,-0.125746712088585,-0.991980314254761,-0.0127615258097649,-0.125746712088585,-0.991980314254761,-0.0127615258097649,-0.125746712088585,-0.999943256378174,8.39443600852974e-005,0.0106609333306551,-0.999943256378174,8.39443600852974e-005,0.0106609333306551,
- -0.999943256378174,8.39443600852974e-005,0.0106609333306551,-0.999033629894257,0.00034607999259606,0.0439521595835686,-0.999033629894257,0.00034607999259606,0.0439521595835686,-0.999033629894257,0.00034607999259606,0.0439521595835686,-0.999918937683105,0.000100311284768395,0.0127395335584879,-0.999918937683105,0.000100311284768395,0.0127395335584879,-0.999918937683105,0.000100311284768395,0.0127395335584879,-0.999997496604919,0.00222858902998269,1.75479453901062e-005,-0.999997496604919,0.00222858902998269,1.75479453901062e-005,-0.999997496604919,0.00222858902998269,1.75479453901062e-005,-0.999991714954376,-0.00407021678984165,-3.2048952562036e-005,-0.999991714954376,-0.00407021678984165,-3.2048952562036e-005,-0.999991714954376,-0.00407021678984165,-3.2048952562036e-005,-0.99998140335083,0.00611260067671537,4.81307142763399e-005,-0.99998140335083,0.00611260067671537,4.81307142763399e-005,-0.99998140335083,0.00611260067671537,4.81307142763399e-005,0.999938488006592,0.000610928167589009,0.0110839819535613,0.999938488006592,0.000610928167589009,0.0110839819535613,0.999938488006592,0.000610928167589009,0.0110839819535613,0.99978494644165,0.00114134012255818,0.0207071714103222,0.99978494644165,0.00114134012255818,0.0207071714103222,0.99978494644165,0.00114134012255818,0.0207071714103222,0.999616265296936,0.00152458483353257,0.0276603251695633,0.999616265296936,0.00152458483353257,0.0276603251695633,0.999616265296936,0.00152458483353257,0.0276603251695633,0.999485611915588,0.00176499364897609,0.0320220291614532,0.999485611915588,0.00176499364897609,0.0320220291614532,0.999485611915588,0.00176499364897609,0.0320220291614532,-0.000800799462012947,-0.0254253819584847,0.999676406383514,-0.000800799462012947,-0.0254253819584847,0.999676406383514,-0.000800799462012947,-0.0254253819584847,0.999676406383514,0.000179273090907373,0.00569192040711641,0.999983787536621,0.000179273090907373,0.00569192040711641,0.999983787536621,0.000179273090907373,0.00569192040711641,0.999983787536621,2.46061372308759e-005,0.000781244831159711,0.999999761581421,
- 2.46061372308759e-005,0.000781244831159711,0.999999761581421,2.46061372308759e-005,0.000781244831159711,0.999999761581421,0.00800929218530655,0.999930799007416,0.00862458255141974,0.00800929218530655,0.999930799007416,0.00862458255141974,0.00800929218530655,0.999930799007416,0.00862458255141974,0.00895650032907724,0.997507929801941,0.0699837729334831,0.00895650032907724,0.997507929801941,0.0699837729334831,0.00895650032907724,0.997507929801941,0.0699837729334831,0.00800181739032269,0.999934852123261,0.00814796891063452,0.00800181739032269,0.999934852123261,0.00814796891063452,0.00800181739032269,0.999934852123261,0.00814796891063452,0.99717515707016,-0.0727807655930519,-0.018568929284811,0.99717515707016,-0.0727807655930519,-0.018568929284811,0.99717515707016,-0.0727807655930519,-0.018568929284811,0.996722340583801,-0.0786855667829514,-0.0187942702323198,0.996722340583801,-0.0786855667829514,-0.0187942702323198,0.996722340583801,-0.0786855667829514,-0.0187942702323198,0.996753513813019,-0.0782934799790382,-0.0187793243676424,0.996753513813019,-0.0782934799790382,-0.0187793243676424,0.996753513813019,-0.0782934799790382,-0.0187793243676424,0.0314792022109032,0.00892079435288906,-0.999464571475983,0.0314792022109032,0.00892079435288906,-0.999464571475983,0.0314792022109032,0.00892079435288906,-0.999464571475983,0.0314783751964569,0.0114896697923541,-0.999438464641571,0.0314783751964569,0.0114896697923541,-0.999438464641571,0.0314783751964569,0.0114896697923541,-0.999438464641571,0.031478974968195,0.00969796162098646,-0.999457359313965,0.031478974968195,0.00969796162098646,-0.999457359313965,0.031478974968195,0.00969796162098646,-0.999457359313965,0,0.0930515751242638,0.995661318302155,0,0.0930515751242638,0.995661318302155,0,0.0930515751242638,0.995661318302155,0,0.110622085630894,0.993862569332123,0,0.110622085630894,0.993862569332123,0,0.110622085630894,0.993862569332123,0,0.113588750362396,0.993527829647064,0,0.113588750362396,0.993527829647064,0,0.113588750362396,0.993527829647064,0,0.112130090594292,0.99369353055954,
- 0,0.112130090594292,0.99369353055954,0,0.112130090594292,0.99369353055954,-0.997807264328003,-0.0126441670581698,-0.0649675652384758,-0.997807264328003,-0.0126441670581698,-0.0649675652384758,-0.997807264328003,-0.0126441670581698,-0.0649675652384758,-0.998157918453217,-0.0129184853285551,-0.0592780634760857,-0.998157918453217,-0.0129184853285551,-0.0592780634760857,-0.998157918453217,-0.0129184853285551,-0.0592780634760857,-0.997384786605835,-0.0123424623161554,-0.0712128356099129,-0.997384786605835,-0.0123424623161554,-0.0712128356099129,-0.997384786605835,-0.0123424623161554,-0.0712128356099129,-0.998656272888184,-0.0133612221106887,-0.0500729270279408,-0.998656272888184,-0.0133612221106887,-0.0500729270279408,-0.998656272888184,-0.0133612221106887,-0.0500729270279408,0,-0.0823457986116409,0.996603846549988,0,-0.0823457986116409,0.996603846549988,0,-0.0823457986116409,0.996603846549988,0,-0.109221577644348,0.994017422199249,0,-0.109221577644348,0.994017422199249,0,-0.109221577644348,0.994017422199249,0,-0.118967518210411,0.992898166179657,0,-0.118967518210411,0.992898166179657,0,-0.118967518210411,0.992898166179657,0,-0.11119831353426,0.99379825592041,0,-0.11119831353426,0.99379825592041,0,-0.11119831353426,0.99379825592041,0.000327423447743058,0.0207913890480995,0.9997838139534,0.000327423447743058,0.0207913890480995,0.9997838139534,0.000327423447743058,0.0207913890480995,0.9997838139534,0.000112641966552474,0.00715276459231973,0.999974429607391,0.000112641966552474,0.00715276459231973,0.999974429607391,0.000112641966552474,0.00715276459231973,0.999974429607391,0.000393735710531473,0.0250022169202566,0.999687314033508,0.000393735710531473,0.0250022169202566,0.999687314033508,0.000393735710531473,0.0250022169202566,0.999687314033508,0.000616180361248553,0.039127454161644,0.999234080314636,0.000616180361248553,0.039127454161644,0.999234080314636,0.000616180361248553,0.039127454161644,0.999234080314636,0.999836564064026,-0.0180761907249689,0.00028466442017816,0.999836564064026,-0.0180761907249689,0.00028466442017816,
- 0.999836564064026,-0.0180761907249689,0.00028466442017816,0.999374032020569,-0.0353740751743317,0.000557072053197771,0.999374032020569,-0.0353740751743317,0.000557072053197771,0.999374032020569,-0.0353740751743317,0.000557072053197771,0.999647676944733,-0.0265398062765598,0.00041794971912168,0.999647676944733,-0.0265398062765598,0.00041794971912168,0.999647676944733,-0.0265398062765598,0.00041794971912168,0.99142974615097,-0.130625486373901,0.00205709435977042,0.99142974615097,-0.130625486373901,0.00205709435977042,0.99142974615097,-0.130625486373901,0.00205709435977042,-0,-0.0916380807757378,-0.995792388916016,-0,-0.0916380807757378,-0.995792388916016,-0,-0.0916380807757378,-0.995792388916016,-0,-0.107542470097542,-0.994200587272644,-0,-0.107542470097542,-0.994200587272644,-0,-0.107542470097542,-0.994200587272644,-0,-0.107117399573326,-0.994246363639832,-0,-0.107117399573326,-0.994246363639832,-0,-0.107117399573326,-0.994246363639832,-0,-0.112110741436481,-0.993695735931396,-0,-0.112110741436481,-0.993695735931396,-0,-0.112110741436481,-0.993695735931396,0.999873518943787,-0.0158137641847134,0.00172026641666889,0.999873518943787,-0.0158137641847134,0.00172026641666889,0.999873518943787,-0.0158137641847134,0.00172026641666889,0.999833881855011,-0.0160831045359373,0.0085773142054677,0.999833881855011,-0.0160831045359373,0.0085773142054677,0.999833881855011,-0.0160831045359373,0.0085773142054677,0.999872326850891,-0.0156113915145397,-0.00341952499002218,0.999872326850891,-0.0156113915145397,-0.00341952499002218,0.999872326850891,-0.0156113915145397,-0.00341952499002218,0.999876260757446,-0.0157225746661425,-0.000597037142142653,0.999876260757446,-0.0157225746661425,-0.000597037142142653,0.999876260757446,-0.0157225746661425,-0.000597037142142653,0.995184242725372,-0.0194545648992062,0.0960722714662552,0.995184242725372,-0.0194545648992062,0.0960722714662552,0.995184242725372,-0.0194545648992062,0.0960722714662552,0.997847199440002,-0.0181947778910398,0.0630085021257401,0.997847199440002,-0.0181947778910398,0.0630085021257401,
- 0.997847199440002,-0.0181947778910398,0.0630085021257401,0.999182045459747,-0.0171765200793743,0.0366108193993568,0.999182045459747,-0.0171765200793743,0.0366108193993568,0.999182045459747,-0.0171765200793743,0.0366108193993568,0.950444519519806,-0.0271607674658298,0.309705704450607,0.950444519519806,-0.0271607674658298,0.309705704450607,0.950444519519806,-0.0271607674658298,0.309705704450607,-0.000549230957403779,-0.023250775411725,0.999729514122009,-0.000549230957403779,-0.023250775411725,0.999729514122009,-0.000549230957403779,-0.023250775411725,0.999729514122009,-0.000340327911544591,-0.0144072137773037,0.999896168708801,-0.000340327911544591,-0.0144072137773037,0.999896168708801,-0.000340327911544591,-0.0144072137773037,0.999896168708801,-0.000475219392683357,-0.0201176200062037,0.999797523021698,-0.000475219392683357,-0.0201176200062037,0.999797523021698,-0.000475219392683357,-0.0201176200062037,0.999797523021698,-0.00103534257505089,-0.0438295006752014,0.999038457870483,-0.00103534257505089,-0.0438295006752014,0.999038457870483,-0.00103534257505089,-0.0438295006752014,0.999038457870483,-0.992292463779449,-0.123269200325012,0.0126664442941546,-0.992292463779449,-0.123269200325012,0.0126664442941546,-0.992292463779449,-0.123269200325012,0.0126664442941546,-0.994624316692352,-0.102865420281887,0.0118815079331398,-0.994624316692352,-0.102865420281887,0.0118815079331398,-0.994624316692352,-0.102865420281887,0.0118815079331398,-0.995440423488617,-0.0946815237402916,0.0115657327696681,-0.995440423488617,-0.0946815237402916,0.0115657327696681,-0.995440423488617,-0.0946815237402916,0.0115657327696681,-0.994158744812012,-0.107253760099411,0.0120506109669805,-0.994158744812012,-0.107253760099411,0.0120506109669805,-0.994158744812012,-0.107253760099411,0.0120506109669805,-1,1.96214023162611e-006,7.7499926476321e-009,-1,1.90579794434598e-006,3.16456016946631e-009,-1,2.13449152397516e-006,6.12288930668115e-009,-1,1.58844989073259e-006,2.46985454310789e-008,-1,2.94320852844976e-006,-6.53731424549164e-009,-1,2.20887091018085e-006,-2.65858624004522e-009,
- -1,1.90579794434598e-006,3.16456016946631e-009,-1,1.96214023162611e-006,7.7499926476321e-009,1,0,8.49850856354806e-009,1,3.63156999583225e-007,3.45616202324095e-009,1,3.01169507110899e-008,6.34475361138698e-009,1,1.70201485616417e-006,2.73908273840107e-008,1,0,-1.03333235301761e-008,1,5.43574742550845e-007,-4.21941370731815e-009,1,3.63156999583225e-007,3.45616202324095e-009,1,0,8.49850856354806e-009,-0.999999821186066,2.11996102734702e-005,0.000637496472336352,-0.999999821186066,-1.15959473987459e-005,0.000637492339592427,-0.999999821186066,-4.42007803940214e-005,0.000637488206848502,-0.999999701976776,-1.98159323190339e-005,-0.000732930086087435,-1,-3.64016268576961e-005,7.17411467121565e-006,-0.999999523162842,0.000818025378976017,0.000637597113382071,-0.999999821186066,-0.000105533552414272,0.000637480465229601,-0.999999761581421,-0.000493800616823137,0.000637431396171451,-0.999999821186066,2.37541507885908e-006,-0.000665412924718112,-0.999999761581421,2.22849371311895e-006,-0.00067529920488596,-1,2.13449152397516e-006,6.12288930668115e-009,-1,2.21235495700967e-006,0,-1,1.90579794434598e-006,3.16456016946631e-009,-1,2.20887091018085e-006,-2.65858624004522e-009,-1,1.70816883837688e-006,0,-1,2.19621665564773e-006,0,-0.999794721603394,3.00723354484944e-006,-0.0202649626880884,-1,2.02807132154703e-006,0,-1,2.61801505985204e-006,-4.88057994019186e-009,-0.999751806259155,3.83491487809806e-006,-0.0222806502133608,1.6679406455582e-015,-5.98626684222836e-007,-1,3.69119611178664e-014,-1.3247765309643e-005,-1,3.72754195674015e-014,-1.33782123157289e-005,-1,2.39485987396887e-015,-8.5951927530914e-007,-1,2.54062619737833e-014,-9.1183501353953e-006,-1,-0.999918699264526,-0.010203467682004,-0.0076599046587944,-0.999922752380371,-0.0099458359181881,-0.00746593112125993,-0.999224245548248,-0.0314964354038239,-0.0236430875957012,-0.999224305152893,-0.0314964428544044,-0.0236430894583464,-0.999874353408813,0.0126795992255211,0.00951599236577749,-0.9998819231987,0.0122937196865678,0.00922684464603662,-0.999922752380371,-0.0099458359181881,-0.00746593112125993,
- -0.999918699264526,-0.010203467682004,-0.0076599046587944,0.0412991121411324,-0.562810122966766,0.825553894042969,0.025957515463233,-0.563067615032196,0.826003134250641,-0.0356684327125549,-0.562193214893341,0.826236426830292,-0.0359775945544243,-0.562173366546631,0.826236605644226,-1,-3.64016268576961e-005,7.17411467121565e-006,-0.999999701976776,-1.98159323190339e-005,-0.000732930086087435,-0.999999761581421,2.22849371311895e-006,-0.00067529920488596,-0.999999821186066,2.37541507885908e-006,-0.000665412924718112,0.087045781314373,-0.553414762020111,0.828344881534576,0.0564384870231152,-0.556893765926361,0.828664124011993,0.025957515463233,-0.563067615032196,0.826003134250641,0.0412991121411324,-0.562810122966766,0.825553894042969,0,-0.999686062335968,-0.0250555388629436,0,-1,1.1424567674112e-005,0,-0.999685525894165,0.0250781010836363,0,-0.999965071678162,0.00836782716214657,0,-1,1.19223768706433e-005,0,-0.999965190887451,-0.00834455247968435,0.0143114319071174,0.502615928649902,0.864391326904297,0.01430993527174,0.502615928649902,0.864391446113586,0.0143084395676851,0.502615988254547,0.864391386508942,0.01430993527174,0.502615928649902,0.864391446113586,1,1.90251159892796e-006,-3.29313962765809e-008,1,3.38709270408799e-007,-8.16385270496767e-009,1,5.43574742550845e-007,-4.21941370731815e-009,1,0,-1.03333235301761e-008,-1,2.21235495700967e-006,0,-1,2.13449152397516e-006,6.12288930668115e-009,-1,1.90579794434598e-006,3.16456016946631e-009,-1,2.19621665564773e-006,0,-0.99885082244873,0.0383320637047291,0.0287727620452642,-0.99885082244873,0.0383322462439537,0.0287725124508142,-0.9998819231987,0.0122937196865678,0.00922684464603662,-0.999874353408813,0.0126795992255211,0.00951599236577749,-0,-1,-2.08457845474186e-006,-0,-1,-3.16974569614104e-006,-0,-1,-5.39057418791344e-006,-0,-1,-9.83220070338575e-006,-0,-1,-4.30539694207255e-006,0,-1,8.57853024172073e-008,-1,2.60167666965572e-006,-2.10698676283982e-008,-1,2.61801505985204e-006,-4.88057994019186e-009,-1,2.20887091018085e-006,-2.65858624004522e-009,-1,2.94320852844976e-006,-6.53731424549164e-009,
- -1,2.61801505985204e-006,-4.88057994019186e-009,-1,2.02807132154703e-006,0,-1,1.70816883837688e-006,0,-1,2.20887091018085e-006,-2.65858624004522e-009,0.999881863594055,-0.0122925704345107,0.00922748446464539,0.998850882053375,-0.0383296757936478,0.0287732593715191,0.99885082244873,-0.0383306108415127,0.0287720132619143,0.999874413013458,-0.0126783885061741,0.00951673928648233,0.999922752380371,0.00994385965168476,-0.00746786082163453,0.999881863594055,-0.0122925704345107,0.00922748446464539,0.999874413013458,-0.0126783885061741,0.00951673928648233,0.999918699264526,0.010201814584434,-0.00766141898930073,0.999224245548248,0.0314924716949463,-0.0236461963504553,0.999922752380371,0.00994385965168476,-0.00746786082163453,0.999918699264526,0.010201814584434,-0.00766141898930073,0.999224305152893,0.0314919129014015,-0.0236469432711601,1,-8.13680571809527e-007,0,0.969308078289032,0.245063230395317,-0.0196469891816378,-0.999259650707245,0.0313738100230694,0.0222696382552385,1,3.01169507110899e-008,6.34475361138698e-009,1,0,0,1,-8.13680571809527e-007,0,1,3.01169507110899e-008,6.34475361138698e-009,1,3.63156999583225e-007,3.45616202324095e-009,1,-8.16728686459101e-007,0,1,-4.08365110615705e-007,0,1,5.43574742550845e-007,-4.21941370731815e-009,1,3.38709270408799e-007,-8.16385270496767e-009,0.99999988079071,-9.66660309131839e-007,0.000665542727801949,1,-8.16728686459101e-007,0,1,3.38709270408799e-007,-8.16385270496767e-009,0.999999821186066,-4.08363575843396e-007,0.0006754330242984,1,-4.08365110615705e-007,0,1,0,0,1,3.63156999583225e-007,3.45616202324095e-009,1,5.43574742550845e-007,-4.21941370731815e-009,0.999997079372406,-0.00243659387342632,-1.6867512385943e-005,0.99999988079071,-9.66660309131839e-007,0.000665542727801949,0.999999821186066,-4.08363575843396e-007,0.0006754330242984,0.999998152256012,-0.00189971388317645,0.000512810598593205,0.999999821186066,1.21140019473387e-005,-0.000713577261194587,0.999997079372406,-0.00243659387342632,-1.6867512385943e-005,0.999998152256012,-0.00189971388317645,0.000512810598593205,0.999866843223572,-0.0163086988031864,-0.000716387527063489,
- 0.997340023517609,-0.0728867799043655,-0.000724655517842621,0.999324500560761,-0.0367437079548836,-0.000719638075679541,0.999999642372131,0.000565969094168395,-0.000713478599209338,0.999999463558197,-0.000787698430940509,-0.000713719287887216,1,0,7.25005975255044e-007,1,0,3.44260968176968e-007,1,0,0,1,0,4.60740011476446e-007,1,0,5.28532382304547e-007,1,0,7.25005975255044e-007,1,0,4.60740011476446e-007,1,0,7.59765043767402e-007,1,0,0,1,0,5.28532382304547e-007,1,0,7.59765043767402e-007,1,0,2.64266475369368e-007,1,0,0,1,0,0,1,0,2.64266475369368e-007,1,0,0,1,-3.11759978887822e-016,3.14800132628079e-007,1,0,0,1,0,0,1,0,0,1,-9.38865696298308e-007,-5.96026893617818e-007,1,-3.11759978887822e-016,3.14800132628079e-007,1,0,0,1,-9.38538221362251e-007,6.26420842309017e-007,1,-9.38865696298308e-007,-5.96026893617818e-007,1,-9.38538221362251e-007,6.26420842309017e-007,1,-1.48254332543729e-006,-1.66425763836742e-006,1,-1.48254332543729e-006,-2.13168596019386e-006,1,-1.4825427570031e-006,5.8075163601734e-012,-0.0143134295940399,-0.50258082151413,0.8644118309021,-0.0143134295940399,-0.50258082151413,0.864411771297455,-0.0143134295940399,-0.50258082151413,0.8644118309021,-0.0143134295940399,-0.50258082151413,0.864411771297455,-0.0253924950957298,0.563462197780609,0.825751543045044,-0.0559555739164352,0.558067262172699,0.827906966209412,-0.086668461561203,0.554643273353577,0.82756245136261,-0.0410806238651276,0.563212513923645,0.825290322303772,0.0369034148752689,0.562077581882477,0.82626086473465,-0.0253924950957298,0.563462197780609,0.825751543045044,-0.0410806238651276,0.563212513923645,0.825290322303772,0.0365939289331436,0.562097609043121,0.826260983943939,-0.741649091243744,0.660839021205902,0.115101858973503,-0.738425612449646,0.666569709777832,0.102041944861412,-0.77447497844696,0.632603585720062,0.00112330913543701,-0.918439090251923,0.350989729166031,0.182416692376137,-0.27412286400795,0.959908783435822,0.0585825480520725,-0.293956071138382,0.955438613891602,-0.0269627012312412,-0.888696014881134,0.400987148284912,0.222325950860977,
- -0.0921491011977196,0.995223760604858,0.0322217047214508,0.0221702046692371,0.999464511871338,0.02406882122159,-0.0581260323524475,0.996496319770813,0.0601382255554199,-0.0903277173638344,0.994720458984375,0.0487055480480194,-0.27412286400795,0.959908783435822,0.0585825480520725,-0.298402190208435,0.950139045715332,0.0905092507600784,-0.213075071573257,0.975661039352417,0.0518137402832508,-0.293956071138382,0.955438613891602,-0.0269627012312412,-0.77430248260498,0.620183885097504,0.125808700919151,-0.761256575584412,0.628917813301086,0.157958686351776,-0.741649091243744,0.660839021205902,0.115101858973503,-0.276517599821091,0.957547962665558,0.0814864635467529,-0.371238619089127,0.921205282211304,0.116458803415298,-0.962053537368774,0.255221873521805,0.0965141579508781,-0.974368631839752,0.214448630809784,-0.06795284897089,-0.257886469364166,0.965711712837219,0.029926959425211,-0.262971699237823,0.962210595607758,0.0706879124045372,-0.371238619089127,0.921205282211304,0.116458803415298,-0.276517599821091,0.957547962665558,0.0814864635467529,-0.0921491011977196,0.995223760604858,0.0322217047214508,-0.50073230266571,0.865590333938599,-0.00453204661607742,-0.0812005549669266,0.993871808052063,0.075002059340477,0.054606519639492,0.987047016620636,0.150852650403976,0.0221702046692371,0.999464511871338,0.02406882122159,-0.0812005549669266,0.993871808052063,0.075002059340477,-0.741649091243744,0.660839021205902,0.115101858973503,-0.761256575584412,0.628917813301086,0.157958686351776,-0.738425612449646,0.666569709777832,0.102041944861412,-0.962053537368774,0.255221873521805,0.0965141579508781,-0.27412286400795,0.959908783435822,0.0585825480520725,-0.918439090251923,0.350989729166031,0.182416692376137,-0.371238619089127,0.921205282211304,0.116458803415298,-0.262971699237823,0.962210595607758,0.0706879124045372,-0.27412286400795,0.959908783435822,0.0585825480520725,-0.262971699237823,0.962210595607758,0.0706879124045372,-0.432826191186905,0.899052500724792,0.0660763308405876,-0.298402190208435,0.950139045715332,0.0905092507600784,
- -0.357375949621201,0.933955013751984,-0.00324223190546036,-0.0812005549669266,0.993871808052063,0.075002059340477,-0.50073230266571,0.865590333938599,-0.00453204661607742,0.054606519639492,0.987047016620636,0.150852650403976,-0.0812005549669266,0.993871808052063,0.075002059340477,-0.357375949621201,0.933955013751984,-0.00324223190546036,-0.891786456108093,0.445547640323639,-0.0787682011723518,-0.982932090759277,0.168607234954834,0.0735948160290718,-0.761256575584412,0.628917813301086,0.157958686351776,-0.77430248260498,0.620183885097504,0.125808700919151,-0.738425612449646,0.666569709777832,0.102041944861412,-0.761256575584412,0.628917813301086,0.157958686351776,-0.982932090759277,0.168607234954834,0.0735948160290718,-0.916652798652649,0.305583894252777,0.257616400718689,-0.77447497844696,0.632603585720062,0.00112330913543701,-0.738425612449646,0.666569709777832,0.102041944861412,-0.916652798652649,0.305583894252777,0.257616400718689,-0.856774985790253,0.478487312793732,0.192318946123123,-0.27412286400795,0.959908783435822,0.0585825480520725,-0.262971699237823,0.962210595607758,0.0706879124045372,-0.298402190208435,0.950139045715332,0.0905092507600784,-0.298402190208435,0.950139045715332,0.0905092507600784,-0.0921491011977196,0.995223760604858,0.0322217047214508,-0.213075071573257,0.975661039352417,0.0518137402832508,-0.213075071573257,0.975661039352417,0.0518137402832508,-0.0921491011977196,0.995223760604858,0.0322217047214508,-0.0903277173638344,0.994720458984375,0.0487055480480194,-0.0812005549669266,0.993871808052063,0.075002059340477,0.0221702046692371,0.999464511871338,0.02406882122159,-0.0921491011977196,0.995223760604858,0.0322217047214508,-0.962053537368774,0.255221873521805,0.0965141579508781,-0.371238619089127,0.921205282211304,0.116458803415298,-0.27412286400795,0.959908783435822,0.0585825480520725,-0.262971699237823,0.962210595607758,0.0706879124045372,-0.50073230266571,0.865590333938599,-0.00453204661607742,-0.432826191186905,0.899052500724792,0.0660763308405876,-0.357375949621201,0.933955013751984,-0.00324223190546036,
- -0.50073230266571,0.865590333938599,-0.00453204661607742,-0.262971699237823,0.962210595607758,0.0706879124045372,-0.257886469364166,0.965711712837219,0.029926959425211,-0.432826191186905,0.899052500724792,0.0660763308405876,-0.50073230266571,0.865590333938599,-0.00453204661607742,-0.0921491011977196,0.995223760604858,0.0322217047214508,-0.298402190208435,0.950139045715332,0.0905092507600784,-0.432826191186905,0.899052500724792,0.0660763308405876,-0.0921491011977196,0.995223760604858,0.0322217047214508,-0.974368631839752,0.214448630809784,-0.06795284897089,-0.962053537368774,0.255221873521805,0.0965141579508781,-0.982932090759277,0.168607234954834,0.0735948160290718,-0.891786456108093,0.445547640323639,-0.0787682011723518,-0.916652798652649,0.305583894252777,0.257616400718689,-0.982932090759277,0.168607234954834,0.0735948160290718,-0.962053537368774,0.255221873521805,0.0965141579508781,-0.918439090251923,0.350989729166031,0.182416692376137,-0.856774985790253,0.478487312793732,0.192318946123123,-0.916652798652649,0.305583894252777,0.257616400718689,-0.918439090251923,0.350989729166031,0.182416692376137,-0.888696014881134,0.400987148284912,0.222325950860977,-0.676925539970398,-0.666533231735229,-0.312258362770081,0.268272757530212,-0.208254128694534,0.94056361913681,0.676838576793671,0.667447030544281,0.310490101575851,-0.0150630623102188,0.486403703689575,-0.873604416847229,-0.678290963172913,-0.635084092617035,0.369580447673798,0.442064642906189,0.79428493976593,0.416761606931686,0.678290843963623,0.637078821659088,-0.366131395101547,-0.335654765367508,-0.74984073638916,-0.570153415203094,-0.999259650707245,0.0313738100230694,0.0222696382552385,0.969308078289032,0.245063230395317,-0.0196469891816378,0.894807577133179,-0.0173412710428238,-0.446115136146545,0.571196794509888,-0.769829154014587,-0.284775733947754,-0.685219645500183,0.728336572647095,0,0.542700350284576,-0.576849341392517,-0.610509037971497,0.685219645500183,-0.728336572647095,0,-0.37832099199295,0.402126550674438,0.833767175674438,-0.999794721603394,0,-0.0202649626880884,
- 0.908668339252472,-0.417027503252029,0.0202507469803095,0.894941866397858,0,0.446182787418365,-0.33846178650856,0.925726294517517,-0.16874372959137
- }
- BinormalsW: *1954 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *5862 {
- a: -0.0278998762369156,0.885820984840393,0.463187903165817,-0.0738555639982224,0.884267687797546,0.461103022098541,0.0669258013367653,0.884692788124084,0.461345434188843,0.0670069828629494,0.880518972873688,0.469250857830048,0.06918103992939,0.878599166870117,0.472522497177124,-0.0277710277587175,0.881730079650879,0.470936119556427,0.06692785769701,0.884591281414032,-0.461539745330811,-0.0278988499194384,0.885788440704346,-0.463249921798706,0.0695016458630562,0.882670938968658,-0.464824467897415,-0.0282804146409035,0.897903144359589,-0.439283758401871,0.066650390625,0.896780133247375,-0.437427848577499,-0.0736743807792664,0.896379888057709,-0.437121510505676,-0.0346729680895805,0.880693376064301,0.472416132688522,-0.0596334636211395,0.879859924316406,0.471476793289185,0.0702258348464966,0.8793585896492,0.470953106880188,0.0702412575483322,0.900353014469147,0.429453819990158,0.0496738404035568,0.901225388050079,0.430494219064713,-0.0354930721223354,0.901523947715759,0.431271106004715,0.0702300220727921,0.903439283370972,-0.422924637794495,-0.0356151908636093,0.904625833034515,-0.424715965986252,0.0498425513505936,0.904286324977875,-0.424007087945938,-0.0346739441156387,0.880718171596527,-0.472369790077209,0.0702259391546249,0.879383444786072,-0.470906674861908,-0.0596337392926216,0.879884779453278,-0.471430331468582,0.0561946108937263,0.892089426517487,-0.448351055383682,0.0667543634772301,0.892532348632813,-0.446015536785126,-0.0211160629987717,0.893913090229034,-0.44774267077446,0.0667242333292961,0.893798351287842,-0.443477869033813,-0.0667203664779663,0.893958151340485,-0.443155944347382,-0.0211459454149008,0.895178020000458,-0.44520691037178,-0.0208834279328585,0.884064912796021,0.466897338628769,0.0669660866260529,0.882664799690247,0.465207904577255,0.0486553460359573,0.882746994495392,0.467322558164597,-0.0632868260145187,0.888549566268921,0.454394847154617,0.0668458864092827,0.888493001461029,0.453995406627655,-0.0210207365453243,0.889877557754517,0.45571494102478,-0.0393100306391716,-0.999226808547974,0.000752019928768277,
- 0.0156745631247759,-0.999876022338867,-0.00151376810390502,0.00128717650659382,-0.999871432781219,0.0159833468496799,0.00033394357888028,-0.999873518943787,0.0159001629799604,0.0150061976164579,-0.999765336513519,-0.0156239466741681,0.00528743024915457,-0.99888950586319,-0.0468169301748276,0.00623273337259889,-0.998887181282043,-0.0467498302459717,0.00568670593202114,-0.999866127967834,0.0153429294005036,0.00132855761330575,-0.99987131357193,0.0159869585186243,-0.000199638292542659,-0.999875783920288,0.0157602243125439,0.000553178892005235,-0.998887538909912,-0.0471523366868496,-0.0086756618693471,-0.996238708496094,-0.0862158238887787,-0.0153734562918544,-0.999850869178772,-0.00787881575524807,-0.000835594080854207,-0.999874830245972,0.0158052761107683,-0.00936298537999392,-0.996237695217133,-0.0861557275056839,-0.00482157338410616,-0.999858975410461,0.0160874966531992,-0.0159088391810656,-0.999867618083954,0.00344786699861288,0.0312120318412781,-0.999496757984161,0.00567669654265046,-0.0387602001428604,0.0146324057132006,-0.9991415143013,0.0144543768838048,-0.0779680088162422,-0.996851086616516,0.0161393247544765,0.0125279128551483,-0.999791264533997,-0.00355621124617755,0.062671884894371,-0.998027861118317,0.00614917790517211,-0.0786298364400864,-0.996884942054749,-0.0392616651952267,0.0019807405769825,-0.999226987361908,-3.06116889987607e-005,0.0628658458590508,-0.998022079467773,-0.000249340169830248,-0.0471777431666851,-0.998886466026306,0.00989887770265341,-0.0783317089080811,-0.996878206729889,-0.0044466620311141,-0.0469464436173439,-0.998887538909912,-0.00302815809845924,0.0627009943127632,-0.998027861118317,0.00620942655950785,0.117773309350014,-0.993021190166473,0.046481765806675,0.0222125928848982,-0.998672127723694,-0.0044466620311141,-0.0469464436173439,-0.998887538909912,0.00620942655950785,0.117773309350014,-0.993021190166473,-0.00525198085233569,-0.0469019711017609,-0.998885691165924,0.0467269010841846,0.0146222794428468,-0.998800694942474,-0.0161424521356821,0.0126278698444366,-0.999789953231812,
- 0.0393774323165417,0.000962800288107246,0.999223947525024,-0.0315191186964512,0.00122969527728856,0.999502420425415,0.0471436269581318,0.00303011131472886,0.998883545398712,-0.0347835645079613,0.111187659204006,0.99319052696228,0.0434426441788673,0.110518895089626,0.992924213409424,-0.0321633256971836,0.111985430121422,0.993189215660095,-0.03139952942729,-0.0100840665400028,0.99945604801178,0.038883101195097,-0.0115464022383094,0.999177157878876,-0.0160436611622572,-0.00947303045541048,0.999826431274414,-0.0312775485217571,0.00642789108678699,-0.999490082263947,0.0469815582036972,0.00664638262242079,-0.998873651027679,0.0472637191414833,0.00463059823960066,-0.998871803283691,0.0502938330173492,-0.107417121529579,-0.99294114112854,-0.0346919372677803,-0.107914201915264,-0.993554830551147,-0.0330010131001472,-0.108458243310452,-0.993553102016449,0.0468317046761513,0.0113512212410569,-0.998838305473328,-0.0313146524131298,0.0104299001395702,-0.999455153942108,-0.0160401929169893,0.0093622887507081,-0.99982762336731,-0.0387602373957634,0.0146314660087228,-0.9991415143013,0.0144542921334505,-0.0779680162668228,-0.996851086616516,0.0161392949521542,0.0125269740819931,-0.999791264533997,-0.00355669786222279,0.0626718550920486,-0.998027861118317,0.00614847848191857,-0.0786298960447311,-0.996884942054749,-0.0392620153725147,0.00197189277969301,-0.999227106571198,-3.10811701638158e-005,0.062865823507309,-0.998022079467773,-0.000248917931457981,-0.0471777655184269,-0.998886466026306,0.00989820808172226,-0.0783317610621452,-0.996878206729889,-0.00451121991500258,-0.0469428859651089,-0.998887479305267,-0.00309313158504665,0.0626974031329155,-0.998027801513672,0.00614491105079651,0.1177778840065,-0.993020951747894,0.0464818440377712,0.0222100988030434,-0.998672187328339,-0.00451121991500258,-0.0469428859651089,-0.998887479305267,0.00614491105079651,0.1177778840065,-0.993020951747894,-0.00526055973023176,-0.0469014942646027,-0.998885691165924,0.0467269122600555,0.0146219721063972,-0.998800694942474,-0.0161424428224564,0.012627555988729,-0.999789953231812,
- 0.0393906384706497,0.00129915412981063,0.999223053455353,-0.0315333865582943,0.00168372329790145,0.999501287937164,0.0471368283033371,0.00345875229686499,0.998882472515106,-0.0347835645079613,0.111187659204006,0.99319052696228,0.0434426441788673,0.110518895089626,0.992924213409424,-0.0321633256971836,0.111985430121422,0.993189215660095,-0.03139952942729,-0.0100840665400028,0.99945604801178,0.038883101195097,-0.0115464022383094,0.999177157878876,-0.0160436611622572,-0.00947303045541048,0.999826431274414,-0.0312778316438198,0.00641894200816751,-0.999490141868591,0.0469812788069248,0.00665535591542721,-0.998873710632324,0.0472636446356773,0.00462621403858066,-0.998871743679047,0.0502937510609627,-0.10741400718689,-0.992941498756409,-0.0346920266747475,-0.107917509973049,-0.993554353713989,-0.033001035451889,-0.108459711074829,-0.993553042411804,0.0468317046761513,0.0113512212410569,-0.998838305473328,-0.0313146524131298,0.0104299001395702,-0.999455153942108,-0.0160401929169893,0.0093622887507081,-0.99982762336731,-0.0387603305280209,0.0146290343254805,-0.999141454696655,0.0143855744972825,-0.0779735222458839,-0.996851742267609,0.0161392372101545,0.0125251365825534,-0.999791324138641,-0.00343116279691458,0.0626787766814232,-0.998027861118317,0.00627366313710809,-0.0786199569702148,-0.996884942054749,-0.0392619743943214,0.00197292165830731,-0.999227106571198,3.35781114699785e-005,0.0628693625330925,-0.99802178144455,-0.000184037897270173,-0.0471813343465328,-0.998886346817017,0.00996276829391718,-0.0783266201615334,-0.99687796831131,-0.00451189605519176,-0.0469428487122059,-0.998887479305267,-0.0030924619641155,0.0626974403858185,-0.998027801513672,0.00614404026418924,0.117777943611145,-0.993020951747894,0.0464814491569996,0.0222223121672869,-0.99867194890976,-0.00451189605519176,-0.0469428487122059,-0.998887479305267,0.00614404026418924,0.117777943611145,-0.993020951747894,-0.00551909394562244,-0.046887218952179,-0.998885035514832,0.0467266440391541,0.0146302962675691,-0.998800575733185,-0.0161426961421967,0.0126356575638056,-0.999789834022522,
- 0.0393909886479378,0.00130794732831419,0.999223113059998,-0.0315336510539055,0.0016922423383221,0.999501287937164,0.0471366979181767,0.00346734281629324,0.998882532119751,-0.0347834713757038,0.111184358596802,0.993190884590149,0.0434427820146084,0.110523015260696,0.992923676967621,-0.0321633219718933,0.111984923481941,0.99318927526474,-0.0313995219767094,-0.0100846337154508,0.99945604801178,0.0388832055032253,-0.0115436483174562,0.999177098274231,-0.0160435941070318,-0.0094708614051342,0.999826431274414,-0.0312776938080788,0.00642344169318676,-0.999490201473236,0.0469814166426659,0.00665084458887577,-0.998873651027679,0.04726367816329,0.00462841801345348,-0.998871743679047,0.05029371753335,-0.107412457466125,-0.992941737174988,-0.034692071378231,-0.107919164001942,-0.993554174900055,-0.0330010429024696,-0.108460426330566,-0.99355286359787,0.0468314215540886,0.0113600762560964,-0.998838186264038,-0.0313147231936455,0.0104254493489861,-0.999455213546753,-0.016040463000536,0.00937096308916807,-0.999827444553375,-0.00482157804071903,-0.999858975410461,0.0160874985158443,-0.0159088410437107,-0.999867618083954,0.0034479321911931,0.0312120281159878,-0.999496757984161,0.00567676173523068,-0.0150343785062432,-0.999774098396301,-0.0150303728878498,0.000345121981808916,-0.999876439571381,0.0157216303050518,-0.0101023335009813,-0.994766652584076,-0.101672522723675,0.000345121981808916,-0.999876439571381,0.0157216303050518,-0.00127784884534776,-0.999718725681305,-0.0236858371645212,-0.0101023335009813,-0.994766652584076,-0.101672522723675,0.00394458882510662,-0.999718546867371,-0.0233979802578688,0.00466860737651587,-0.999870300292969,0.0154151432216167,0.00102667149621993,-0.999872088432312,0.0159606151282787,-0.148326620459557,-0.985059380531311,-0.0875067710876465,-0.337741255760193,-0.940353155136108,-0.0408286675810814,-0.0194134842604399,-0.549185752868652,-0.835474789142609,-0.00228555407375097,-0.999874591827393,0.01567149348557,0.17594863474369,-0.9833944439888,-0.0444689802825451,0.000984675833024085,-0.999722003936768,-0.0235612075775862,
- -0.0391909368336201,-0.999224603176117,0.00377480685710907,0.179025873541832,-0.983564078807831,-0.0234869848936796,0.000972663867287338,-0.999872326850891,0.0159559044986963,-0.00493836076930165,-0.999858260154724,0.0160957630723715,-0.0159091223031282,-0.999867498874664,0.00345390639267862,0.0312117412686348,-0.999496638774872,0.00568276271224022,-0.0150343338027596,-0.999773979187012,-0.0150312874466181,0.000345166627084836,-0.999876439571381,0.0157216265797615,-0.0101022673770785,-0.994766652584076,-0.101672530174255,0.000345166627084836,-0.999876439571381,0.0157216265797615,-0.00127791950944811,-0.999718725681305,-0.0236858408898115,-0.0101022673770785,-0.994766652584076,-0.101672530174255,0.00394480489194393,-0.999718546867371,-0.0233979672193527,0.00466831121593714,-0.999870300292969,0.015415164642036,0.00102701678406447,-0.999872088432312,0.0159606467932463,-0.148345053195953,-0.985056698322296,-0.0875047445297241,-0.337804704904556,-0.940330147743225,-0.0408316217362881,-0.0194408800452948,-0.549087941646576,-0.835538446903229,-0.00228524138219655,-0.999874591827393,0.0156715214252472,0.175949171185493,-0.983394503593445,-0.0444653853774071,0.000984873506240547,-0.999722003936768,-0.0235611964017153,-0.0391911417245865,-0.999224722385406,0.00376975070685148,0.179023623466492,-0.983564019203186,-0.0235023908317089,0.000874299497809261,-0.999872446060181,0.0159473195672035,-0.0706887319684029,-0.997496485710144,-0.00201602489687502,0.00789386592805386,-0.9999680519104,-0.00127581169363111,-0.0629072338342667,-0.998018562793732,-0.00126749638002366,0.00786483101546764,-0.999969005584717,0.000568268296774477,-0.0706888735294342,-0.997498512268066,6.68150435199974e-019,0.0550294257700443,-0.99848461151123,-0.000656136311590672,0.0392726175487041,-0.999226272106171,-0.00212720851413906,0.0550294257700443,-0.99848461151123,-0.000656136311590672,-0.0706888735294342,-0.997498512268066,6.68150435199974e-019,-0.0623065829277039,-0.997902393341064,-0.01757069863379,0.0387243889272213,-0.999062955379486,-0.0193293560296297,
- -0.0706788450479507,-0.99735701084137,-0.016838051378727,0.200892508029938,0.000806579482741654,-0.979613065719604,0.358164846897125,0.0703456923365593,-0.931004524230957,0.192781731486321,-0.00121642486192286,-0.981240928173065,0.127917572855949,0.0832442715764046,-0.98828512430191,0.357986956834793,0.0724392235279083,-0.930912435054779,0.214069783687592,0.0770497024059296,-0.9737748503685,0.358316361904144,0.068546749651432,-0.931080520153046,0.127230137586594,0.0764211565256119,-0.98892480134964,0.260038912296295,0.0622914098203182,-0.963586926460266,0.217830181121826,0.240742817521095,-0.945829212665558,0.382374942302704,0.26576766371727,-0.884961545467377,0.329541563987732,0.295438379049301,-0.896726548671722,0.0224312525242567,-0.0150138232856989,-0.999635756015778,0.266191601753235,0.0324678011238575,-0.963373184204102,0.116316810250282,-0.025268716737628,-0.992890775203705,0.266115486621857,0.0328443869948387,-0.963381469249725,0.0245598033070564,0.0120216263458133,-0.999626100063324,0.212598577141762,-0.00227485806681216,-0.977136969566345,0.264175266027451,0.0423774942755699,-0.963543236255646,0.214863196015358,0.0319756790995598,-0.976120591163635,0.340280026197433,0.0667980089783669,-0.93794858455658,0.329319983720779,0.106518767774105,-0.938190877437592,0.219486191868782,0.119061201810837,-0.968323528766632,0.141500353813171,0.0501291081309319,-0.988668262958527,-0.0564948096871376,-0.0461024083197117,-0.997337937355042,0.151449978351593,0.0167815536260605,-0.988322556018829,0.207927241921425,-0.0634731948375702,-0.976082801818848,-0.0902622863650322,-0.0940785706043243,-0.991464555263519,-0.0527547523379326,-0.0538247525691986,-0.997155964374542,0.213245034217834,0.00712387636303902,-0.976972877979279,-0.0846138000488281,-0.103358924388886,-0.991038680076599,0.214906334877014,0.0326673500239849,-0.976088166236877,0.117838509380817,0.037318792194128,-0.992331385612488,0.110289484262466,0.302878975868225,-0.946625888347626,0.22347304224968,0.350947260856628,-0.909338116645813,0.476582229137421,0.356666177511215,-0.803528845310211,
- -0.265888899564743,-0.0714006870985031,-0.961355805397034,-0.165690034627914,0.0326822437345982,-0.985636293888092,0.118025816977024,-0.152291819453239,-0.981263041496277,0.118402794003487,-0.0319802053272724,-0.992450535297394,-0.141082108020782,0.0720340237021446,-0.987373769283295,-0.291292399168015,0.000382295867893845,-0.956633985042572,0.118047684431076,0.0185207761824131,-0.992835223674774,0.422534316778183,-0.0546388626098633,-0.904698610305786,0.300810217857361,-0.0252310931682587,-0.953350186347961,0.115546979010105,0.155912443995476,-0.980989396572113,0.342342764139175,0.186243012547493,-0.920931577682495,0.347065985202789,0.195690900087357,-0.917196989059448,0.116658188402653,0.108867608010769,-0.987187385559082,0.342854976654053,0.177330002188683,-0.922499060630798,0.48095577955246,0.131424367427826,-0.86683863401413,-0.0306257978081703,0.0516512021422386,-0.998195469379425,-0.994093358516693,-0.0530282780528069,-0.094692088663578,-0.0186721906065941,0.0952014327049255,-0.995282888412476,-0.972633719444275,0.201645165681839,-0.115424826741219,-0.98622339963913,-0.128430813550949,-0.104254268109798,-0.0324837677180767,-0.0684733763337135,-0.997123956680298,-0.0367119684815407,-0.183220073580742,-0.982386291027069,-0.985753059387207,0.140022620558739,-0.0931912437081337,-0.0336655415594578,-0.166999578475952,-0.98538213968277,-0.999189913272858,-0.00586943887174129,-0.0398125573992729,-0.998019993305206,-0.00580426957458258,0.062629297375679,-0.996217846870422,0.0136954532936215,-0.0858045890927315,-0.977535665035248,-0.0791206806898117,-0.195355921983719,-0.0333447903394699,-0.997573018074036,-0.0611247792840004,-0.0148799624294043,-0.999722242355347,-0.0182813126593828,-0.997820734977722,0.0120175825431943,0.0648797899484634,-0.0304906517267227,-0.104091793298721,0.994100213050842,-0.0197124443948269,-0.130226537585258,0.991288304328918,-0.0435234718024731,-0.838110685348511,-0.543761134147644,-0.923909962177277,-0.0911027193069458,-0.371605485677719,-0.989702999591827,-0.123821005225182,0.0718090757727623,
- -0.989702999591827,-0.123821005225182,0.0718090757727623,-0.922718822956085,-0.37254935503006,0.0989796668291092,-0.0435234718024731,-0.838110685348511,-0.543761134147644,-0.99921840429306,0.039440281689167,-0.00266164960339665,-0.999205410480499,-0.0322510339319706,-0.0234225299209356,-0.998005509376526,-0.0628503262996674,0.0059002973139286,-0.0318895690143108,0.0589666254818439,0.997750461101532,-0.988575398921967,0.128327280282974,0.07906224578619,-0.972310066223145,-0.202935978770256,0.115888506174088,-0.998022258281708,-0.00788339506834745,0.0623654238879681,-0.999224364757538,-0.0136248897761106,-0.0369464419782162,-0.999224364757538,0.0136881964281201,0.0369230359792709,-0.985820829868317,-0.139637514948845,0.0930517017841339,-0.0367321707308292,0.184009864926338,0.982237815856934,-0.0323325209319592,0.159644350409508,0.986644983291626,-0.0327409356832504,0.998626708984375,0.0408986881375313,-0.98598325252533,0.0517156906425953,0.15862700343132,-0.0158814918249846,0.999869763851166,-0.0028685734141618,-0.999220907688141,0.028388399630785,0.0274177249521017,-0.999224364757538,0.0136881964281201,0.0369230359792709,-0.999224364757538,-0.0136248897761106,-0.0369464419782162,-0.0435207299888134,0.838271677494049,0.543513119220734,-0.922131836414337,0.373864591121674,-0.0994906425476074,-0.989605069160461,0.124306596815586,-0.0723167881369591,-0.999220907688141,-0.0283779669553041,-0.0274285152554512,-0.999220907688141,0.0283640585839748,0.0274428967386484,-0.999224364757538,-0.0136692030355334,-0.0369300581514835,-0.989605069160461,0.124306596815586,-0.0723167881369591,-0.924422204494476,0.0664873868227005,0.375530332326889,-0.0435207299888134,0.838271677494049,0.543513119220734,-0.999220907688141,-0.0283779669553041,-0.0274285152554512,-0.999218583106995,0.0394032448530197,-0.00312838377431035,-0.999220907688141,0.0283640585839748,0.0274428967386484,-0.0306300073862076,0.0514086782932281,-0.998207867145538,-0.994087159633636,-0.0531225055456162,-0.0947043597698212,-0.0186673924326897,0.0950414091348648,-0.995298266410828,
- -0.972452819347382,0.202367648482323,-0.115684360265732,-0.986156046390533,-0.128900721669197,-0.104312255978584,-0.0324830003082752,-0.0684168562293053,-0.997127890586853,-0.036709439009428,-0.183121308684349,-0.982404708862305,-0.985659956932068,0.140550225973129,-0.0933824107050896,-0.0336651168763638,-0.166959047317505,-0.985388934612274,-0.999190151691437,-0.00588189205154777,-0.0398079603910446,-0.998019993305206,-0.0058042025193572,0.0626293048262596,-0.996217846870422,0.0136957839131355,-0.0858045443892479,-0.991100907325745,-0.0478227734565735,-0.124225459992886,-0.0323436856269836,-0.999089479446411,-0.027823319658637,-0.0165240820497274,-0.999727129936218,0.0165175944566727,-0.997815191745758,0.0122936079278588,0.0649144873023033,-0.0304928310215473,-0.103896446526051,0.994120597839355,-0.0197065025568008,-0.130024552345276,0.991314947605133,-0.0435230545699596,-0.838135540485382,-0.543723106384277,-0.925944089889526,-0.0628445893526077,-0.372395098209381,-0.989636242389679,-0.124152146279812,0.0721553042531013,-0.989636242389679,-0.124152146279812,0.0721553042531013,-0.922233998775482,-0.373636096715927,0.0994018614292145,-0.0435230545699596,-0.838135540485382,-0.543723106384277,-0.031889583915472,0.0589695908129215,0.997750282287598,-0.988574981689453,0.128330230712891,0.0790625959634781,-0.972310423851013,-0.202934935688972,0.115888133645058,-0.998022258281708,-0.00788339879363775,0.0623654238879681,-0.999224364757538,-0.0136248935014009,-0.0369464419782162,-0.999224364757538,0.0136881927028298,0.0369230359792709,-0.985820829868317,-0.139637514948845,0.0930517017841339,-0.0367321707308292,0.184009864926338,0.982237815856934,-0.0323325209319592,0.159644350409508,0.986644983291626,-0.999220907688141,-0.0283779669553041,-0.0274285152554512,-0.999220907688141,0.0283640585839748,0.0274428967386484,-0.999224364757538,-0.0136692030355334,-0.0369300581514835,-0.999220907688141,0.0283883977681398,0.0274177268147469,-0.999224364757538,0.0136881927028298,0.0369230359792709,-0.999224364757538,-0.0136248935014009,-0.0369464419782162,
- -0.999229788780212,-0.0391432568430901,0.0027729116845876,-0.999220907688141,0.0283640585839748,0.0274428967386484,-0.999220907688141,-0.0283779669553041,-0.0274285152554512,-0.0435209423303604,0.838259339332581,0.543532192707062,-0.922375023365021,0.37332022190094,-0.0992791429162025,-0.989638686180115,0.124140493571758,-0.0721431151032448,-0.980424880981445,0.196087494492531,-0.0177974738180637,-0.998950064182281,0.0445504076778889,0.0106893507763743,-0.999229311943054,-0.0392094515264034,0.00183871376793832,-0.989638686180115,0.124140493571758,-0.0721431151032448,-0.913855254650116,0.214811190962791,0.344564586877823,-0.0435209423303604,0.838259339332581,0.543532192707062,-0.0306282546371222,0.0515096671879292,-0.998202741146088,-0.994066953659058,-0.0534275248646736,-0.0947440564632416,-0.0186633728444576,0.094907321035862,-0.995311141014099,-0.972633421421051,0.201646238565445,-0.11542521417141,-0.986223042011261,-0.128433406352997,-0.104254588484764,-0.0324837863445282,-0.0684747919440269,-0.997123897075653,-0.0367119684815407,-0.183220073580742,-0.982386291027069,-0.985753059387207,0.140022620558739,-0.0931912437081337,-0.0336655415594578,-0.166999578475952,-0.98538213968277,-0.999189972877502,-0.00587719539180398,-0.0398096926510334,-0.998019993305206,-0.00580086326226592,0.0626297295093536,-0.996217846870422,0.0136990780010819,-0.0858040973544121,-0.991113722324371,-0.0478162206709385,-0.124125890433788,-0.0323416143655777,-0.999091386795044,-0.0277555622160435,-0.0165271945297718,-0.999725878238678,0.0165838859975338,-0.997817099094391,0.012195598334074,0.064902164041996,-0.0304920393973589,-0.103967346251011,0.994113206863403,-0.0197085980325937,-0.130095824599266,0.991305530071259,-0.0435234718024731,-0.838110685348511,-0.543761134147644,-0.926408290863037,-0.0627816841006279,-0.371249467134476,-0.989702999591827,-0.123821005225182,0.0718090757727623,-0.989702999591827,-0.123821005225182,0.0718090757727623,-0.922718822956085,-0.37254935503006,0.0989796668291092,-0.0435234718024731,-0.838110685348511,-0.543761134147644,
- -0.0318896621465683,0.058981504291296,0.99774968624115,-0.988607406616211,0.128097042441368,0.0790350437164307,-0.97240161895752,-0.202571585774422,0.115757614374161,-0.998022258281708,-0.00788339041173458,0.0623654238879681,-0.999224364757538,-0.0136248860508204,-0.0369464419782162,-0.999224364757538,0.0136882001534104,0.0369230322539806,-0.985867023468018,-0.139375239610672,0.0929566621780396,-0.0367334298789501,0.184059172868729,0.982228517532349,-0.0323325395584106,0.159649774432182,0.986644089221954,-0.999220907688141,-0.0283779688179493,-0.0274285133928061,-0.999220907688141,0.0283640567213297,0.0274428986012936,-0.999224364757538,-0.0136692058295012,-0.0369300581514835,-0.999220907688141,0.0283884033560753,0.0274177230894566,-0.999224364757538,0.0136882001534104,0.0369230322539806,-0.999224364757538,-0.0136248860508204,-0.0369464419782162,-0.999229788780212,-0.0391432568430901,0.00277291145175695,-0.999220907688141,0.0283640567213297,0.0274428986012936,-0.999220907688141,-0.0283779688179493,-0.0274285133928061,-0.0435211509466171,0.838246941566467,0.54355126619339,-0.922617197036743,0.37277740240097,-0.0990682616829872,-0.989671945571899,0.123974934220314,-0.071970023214817,-0.980424880981445,0.196086898446083,-0.0178040508180857,-0.998949825763702,0.044554591178894,0.0106850117444992,-0.999229311943054,-0.0392099134624004,0.00183216435834765,-0.989671945571899,0.123974934220314,-0.071970023214817,-0.914050877094269,0.214804917573929,0.344049125909805,-0.0435211509466171,0.838246941566467,0.54355126619339,-0.999421000480652,0.0251967366784811,-0.0228643976151943,-0.995063841342926,0.098093256354332,0.0150215942412615,-0.996251881122589,0.0731343179941177,-0.0461924970149994,-0.995357811450958,0.0606965310871601,-0.0746913701295853,-0.996255099773407,0.0711027234792709,-0.0491974726319313,-0.999502539634705,-0.0274028815329075,0.0156186344102025,-0.999374687671661,-0.0173767246305943,0.0307937972247601,-0.996119737625122,0.0808567106723785,-0.0347515866160393,-0.999823987483978,0.0114680975675583,0.0148497158661485,
- -0.995925664901733,0.0860090851783752,-0.0271018128842115,-0.999554932117462,0.0241129100322723,0.0175648499280214,-0.999603033065796,0.0172212328761816,0.022299287840724,-0.9957634806633,0.0632883161306381,0.0667060762643814,-0.994641959667206,0.103372596204281,-0.00122449884656817,-0.998401165008545,-0.0431876108050346,0.0364710465073586,-0.998470187187195,-0.0502418465912342,0.0230882037431002,-0.999875009059906,-0.0150874331593513,0.00473144697025418,-0.99986207485199,-0.0158500503748655,0.00496174162253737,-0.998586893081665,-0.0424039214849472,-0.0320328362286091,-0.998597025871277,-0.0264975521713495,-0.0458462610840797,-0.997427046298981,-0.0701422020792961,-0.0148125067353249,-0.999593377113342,0.000510355632286519,0.0285107642412186,-0.999585568904877,0.00125529011711478,0.0287630520761013,-0.999585568904877,0.00125529011711478,0.0287630520761013,-0.999968230724335,0.00690704630687833,-0.00400216085836291,-0.999873459339142,-0.0115735679864883,0.0109144495800138,-0.999873578548431,-0.0115324044600129,0.0109561765566468,-0.999878227710724,0.0145660657435656,0.00559699023142457,-0.999808788299561,-0.00636427430436015,0.0184912495315075,-0.999122083187103,0.016530629247427,-0.0384934991598129,-0.999339997768402,0.0222052689641714,0.0287529770284891,-0.999274492263794,0.0294064451009035,0.0242020692676306,-0.997155547142029,0.0748509541153908,0.00883830338716507,-0.998934030532837,0.0223283376544714,-0.0404038801789284,-0.998929977416992,0.041936356574297,0.0195057988166809,-0.999760091304779,0.0189137198030949,0.0110468110069633,-0.614478349685669,0.488880306482315,0.61920303106308,-0.602374613285065,0.487887650728226,0.631751894950867,-0.845151424407959,0.516281247138977,-0.138465777039528,-0.998934030532837,0.0223283376544714,-0.0404038801789284,-0.998427927494049,0.0511013269424438,0.0230334214866161,-0.998929977416992,0.041936356574297,0.0195057988166809,-0.615492522716522,0.755855202674866,-0.223275855183601,-0.726701080799103,0.595166206359863,-0.343049168586731,-0.617705643177032,0.487737238407135,0.61688905954361,
- -0.948302090167999,-0.284226536750793,0.1412034034729,-0.939094185829163,-0.334342509508133,0.0794820189476013,-0.943246960639954,-0.309391677379608,0.120673127472401,-0.998741984367371,0.0400490649044514,0.0301781911402941,-0.999342322349548,0.00743076065555215,-0.0354925580322742,-0.99935382604599,-0.00179620424751192,-0.0358987934887409,-0.993394672870636,0.113941930234432,-0.013574717566371,-0.86281818151474,0.0890209153294563,-0.497614324092865,-0.0203634537756443,0.862060308456421,-0.506396472454071,-0.994640827178955,0.0929168611764908,-0.0453437119722366,-0.999636948108673,-0.0239992719143629,-0.0122491326183081,-0.994615733623505,0.102619081735611,-0.0144606968387961,-0.99985659122467,0.0165188945829868,-0.0037356223911047,-0.998741984367371,0.0400490649044514,0.0301781911402941,-0.99935382604599,-0.00179620424751192,-0.0358987934887409,-0.997590303421021,0.0683610960841179,0.0118563203141093,-0.99982875585556,0.0184942912310362,-0.000813475868199021,-0.994692206382751,0.0904505923390388,-0.0490526482462883,-0.999541401863098,-0.0241851415485144,-0.01822211407125,-0.994692206382751,0.0904505923390388,-0.0490526482462883,-0.99982875585556,0.0184942912310362,-0.000813475868199021,-0.99804949760437,-0.0624034106731415,0.00174842868000269,-0.998140633106232,-0.0608821958303452,-0.0029485400300473,-0.999210059642792,-0.00737436674535275,-0.0390525199472904,-0.999745905399323,0.0220883321017027,0.00450398866087198,-0.998780846595764,-0.0298332571983337,0.0393292345106602,-0.998871684074402,-0.0222742725163698,0.0419455990195274,-0.998137176036835,-0.0609348192811012,-0.00302037945948541,-0.998137176036835,-0.0609348192811012,-0.00302037945948541,-0.999197006225586,-0.00757237058132887,-0.0393449738621712,-0.996335327625275,-0.0517840422689915,0.0680762082338333,-0.997847437858582,-0.0216212496161461,0.0619109533727169,-0.99806821346283,-0.0142447734251618,0.060472559183836,-0.99399733543396,-0.0964461043477058,-0.0516469143331051,-0.99399733543396,-0.0964461043477058,-0.0516469143331051,-0.99399733543396,-0.0964461043477058,-0.0516469143331051,
- -0.997968137264252,-0.025414327159524,-0.058428768068552,-0.996143221855164,-0.072461299598217,-0.0494780503213406,-0.99783980846405,-0.0238302797079086,-0.0612210817635059,-0.998020946979523,-0.0270385723561049,-0.0567726120352745,-0.997945249080658,-0.0254258383065462,-0.0588114038109779,-0.998020946979523,-0.0270385723561049,-0.0567726120352745,-0.999556660652161,0.0297730285674334,-0.000509043340571225,-0.995751559734344,-0.0263010337948799,-0.0882441997528076,-0.998295605182648,-0.0335253141820431,-0.0477697476744652,-0.99735301733017,0.0679000541567802,0.0260094534605742,-0.999701619148254,-0.0233930479735136,0.00704699428752065,-0.999561309814453,0.029619051143527,-0.000299455801723525,-0.999655246734619,-0.0232283771038055,0.0122405318543315,-0.997307479381561,0.0693376287817955,0.023877689614892,-0.994670271873474,0.102624706923962,0.00995911378413439,-0.999569237232208,0.0293487794697285,6.84293554513715e-005,-0.990459084510803,0.106971070170403,-0.0868791118264198,-0.99735951423645,0.0676782727241516,0.0263382587581873,-0.704382419586182,0.613823413848877,0.356463670730591,-0.947242379188538,0.0977313444018364,0.30525478720665,-0.964371621608734,0.199862837791443,-0.173327475786209,-0.769842743873596,0.0794282108545303,0.633271932601929,-0.609335124492645,0.673189699649811,0.41895866394043,-0.0168816093355417,0.714662134647369,0.699266076087952,-0.990695416927338,0.0999228656291962,-0.0924016237258911,-0.99970942735672,0.0217438004910946,0.0104168057441711,-0.999256134033203,0.00126928859390318,0.038545984774828,-0.999253392219543,0.0218978431075811,0.0318328663706779,-0.990573406219482,0.103855021297932,-0.0893223285675049,-0.999110400676727,0.0060999128036201,0.0417305193841457,-0.998750805854797,0.0347063429653645,0.0359487682580948,-0.998535573482513,0.051556408405304,-0.0163920819759369,-0.99023962020874,0.112042941153049,-0.0828966349363327,-0.999582588672638,0.0179085433483124,-0.0226690415292978,-0.998483061790466,0.0526751391589642,-0.0160297639667988,-0.998698115348816,0.0358314886689186,0.0363101102411747,
- -0.598098516464233,0.489849120378494,-0.634291768074036,-0.989790737628937,0.120346531271935,-0.0763611644506454,-0.896617412567139,0.429253429174423,0.108714133501053,-0.999789118766785,0.0127309504896402,-0.0161151252686977,-0.999796628952026,0.0123273069038987,-0.0159622821956873,-0.998765230178833,0.0462627932429314,-0.0181058812886477,-0.785456001758575,-0.378297537565231,0.489846795797348,-0.795724987983704,-0.337343961000443,0.503011763095856,-0.130782335996628,-0.961751520633698,0.240686550736427,-0.999932110309601,0.00712125468999147,-0.00922111142426729,-0.99946117401123,0.031316626816988,0.00983017776161432,-0.999922215938568,0.0119579760357738,-0.00355090922676027,-0.999367415904999,0.0353829674422741,0.00357790151610971,-0.999824583530426,0.0114484718069434,-0.0148243028670549,-0.999818503856659,0.0118100931867957,-0.0149494837969542,-0.995809972286224,-0.0566878244280815,0.0717567354440689,-0.995954871177673,-0.06437598913908,0.0626867115497589,-0.995824933052063,-0.0203479845076799,0.0889881998300552,-0.997638821601868,-0.0068380362354219,0.0683389455080032,-0.998049139976501,-0.0480339266359806,0.039883729070425,-0.998049139976501,-0.0480339266359806,0.039883729070425,-0.998495280742645,0.00200651842169464,0.054801307618618,-0.998848378658295,-0.0392345748841763,0.0276143830269575,-0.998869061470032,-0.0378505438566208,0.0287774242460728,-0.999904930591583,0.000328889669617638,0.013786319643259,-0.997152030467987,0.0750283449888229,-0.00765702361240983,-0.999639093875885,0.0187324788421392,0.0192608814686537,-0.997454404830933,0.0670885816216469,-0.0241634659469128,-0.999927818775177,0.0115693844854832,-0.00323467212729156,-0.999185085296631,0.0378212556242943,0.0140981776639819,-0.999949991703033,0.00606411648914218,-0.00795423146337271,-0.999185085296631,0.0378212556242943,0.0140981776639819,-0.999927818775177,0.0115693844854832,-0.00323467212729156,-0.999097943305969,0.0237867999821901,-0.0351776704192162,-0.998995900154114,0.0271638408303261,-0.0356304943561554,-0.999087333679199,0.029700068756938,-0.0307017285376787,
- -0.999954760074615,0.00949785113334656,0.000711252389010042,-0.998879909515381,0.0265060905367136,-0.0391991548240185,-0.998864471912384,0.0324556827545166,-0.0348776951432228,-0.994538366794586,0.0584639236330986,-0.0864607393741608,-0.998656570911407,-0.0186170022934675,-0.0483575686812401,-0.998411238193512,-0.00491912942379713,-0.0561323501169682,-0.999592363834381,-0.028474235907197,-0.00208419957198203,-0.994477212429047,-0.0970764830708504,0.0398908331990242,-0.997901797294617,-0.0362674854695797,0.0536350235342979,-0.984664738178253,-0.173056587576866,-0.0220630839467049,-0.997115135192871,-0.0425177626311779,0.0628783851861954,-0.994526565074921,-0.0738690197467804,0.0738939046859741,-0.991167902946472,-0.130155444145203,-0.0254119317978621,-0.998441219329834,-0.0312639325857162,0.0462354049086571,-0.986071884632111,-0.16137732565403,-0.0402437373995781,-0.992152035236359,-0.118203923106194,-0.0407704189419746,-0.999194264411926,-0.0243334751576185,0.0319179408252239,-0.999335825443268,-0.0204138103872538,0.0301894471049309,-0.992517948150635,-0.111909575760365,-0.0488297790288925,-0.998749613761902,-0.0444210730493069,-0.0229387786239386,-0.999544739723206,-0.0182943157851696,0.0239964444190264,-0.999057531356812,0.0429403893649578,0.00633723149076104,-0.999798953533173,0.012157310731709,-0.0159466043114662,-0.997805297374725,0.0624328628182411,0.0220621451735497,-0.997760772705078,0.0637117549777031,0.0203578844666481,-0.99975311756134,0.0134738050401211,-0.017673434689641,-0.999353170394897,0.0357836969196796,0.00357020343653858,-0.998662412166595,-0.0460671409964561,-0.0234822146594524,-0.992544770240784,-0.111363857984543,-0.0495275780558586,-0.998664081096649,-0.0509418919682503,-0.00865843053907156,-0.655568897724152,0.424700200557709,-0.62438702583313,-0.896934509277344,0.417176693677902,0.14653354883194,-0.638930201530457,0.414014935493469,-0.648351609706879,-0.998664081096649,-0.0509418919682503,-0.00865843053907156,-0.998824596405029,-0.0469257794320583,-0.0121429758146405,-0.998662412166595,-0.0460671409964561,-0.0234822146594524,
- -0.917782068252563,-0.339096367359161,-0.206614896655083,-0.920491516590118,-0.372946888208389,-0.116644844412804,-0.999563336372375,-0.000649492489174008,0.0295426435768604,-0.997861444950104,0.0605951026082039,0.0245103444904089,-0.999552607536316,0.0298667792230845,0.00161254976410419,-0.999574601650238,0.022740701213479,0.0182616263628006,-0.999927401542664,0.0111453514546156,-0.00457944953814149,-0.999837577342987,-0.00134185631759465,0.0179787315428257,-0.999685406684875,-0.00685155484825373,0.0241280626505613,-0.999552607536316,0.0298667792230845,0.00161254976410419,-0.999408960342407,0.00640652375295758,0.0337739549577236,-0.999574601650238,0.022740701213479,0.0182616263628006,-0.98997163772583,-0.0260617733001709,0.13884225487709,-0.997817754745483,0.057205006480217,0.0329749062657356,-0.930002748966217,-0.0798798799514771,0.358767479658127,-0.994353353977203,0.0942464247345924,0.0487749837338924,-0.992738485336304,0.081631563603878,0.0883551687002182,-0.926341593265533,-0.0384171046316624,0.374720454216003,-0.350834101438522,-0.545146346092224,0.761400640010834,-0.474860042333603,0.720984041690826,0.504668176174164,-0.0560606941580772,0.348900020122528,0.935481667518616,-0.0286743976175785,-0.910412132740021,-0.412707597017288,-0.0459373369812965,-0.808179318904877,-0.587142169475555,-0.147932827472687,-0.00349398422986269,-0.988991260528564,0.0698312446475029,0.83790796995163,0.541326224803925,-0.0675051808357239,0.83831661939621,0.540988266468048,-0.00853274390101433,0.840445280075073,0.541829228401184,-0.0667145401239395,0.894198775291443,0.442671179771423,0.0702530071139336,0.893550574779511,0.443431913852692,0.0282008871436119,0.895378112792969,0.444412797689438,-0.0667840763926506,0.891254723072052,0.448558956384659,0.0281072463840246,0.892405033111572,0.45035907626152,-0.0700492337346077,0.889625251293182,0.451287090778351,-0.0811875984072685,-0.0019175773486495,-0.996697008609772,-0.0358158759772778,-0.808374047279358,-0.587578654289246,-0.564627826213837,0.507795393466949,-0.65064525604248,-0.999796748161316,-0.00451998645439744,-0.0196470227092505,
- -0.999493062496185,0.0315156579017639,0.00451612332835794,-0.99971079826355,-0.0236152280122042,0.00456661498174071,-0.945454597473145,0.248483046889305,-0.210646629333496,-0.0657176449894905,0.925011575222015,0.374212205410004,-0.0733907669782639,0.93206262588501,0.354785978794098,-0.0482439436018467,0.172556340694427,0.983817458152771,-0.645265281200409,-0.371344923973084,0.66763436794281,-0.657082498073578,-0.419324159622192,0.62642627954483,-0.832161128520966,0.370293438434601,0.412783980369568,-0.832161128520966,0.370293438434601,-0.412783980369568,-0.0784972012042999,0.996914327144623,1.13520571546522e-017,-0.99921840429306,0.0306223072111607,0.0250018239021301,-0.998000741004944,0.0491561740636826,0.0397267378866673,-0.995501816272736,0.0766189247369766,0.0557290576398373,-0.995509326457977,0.0786554291844368,0.0526755899190903,-0.999326407909393,0.00811588391661644,0.0357898846268654,-0.999226152896881,0.0326106660068035,0.0219914335757494,-0.994416534900665,0.0376441702246666,0.0985832586884499,-0.993904769420624,0.0471582300961018,0.0996463298797607,-0.990076720714569,0.136206835508347,0.0345828346908093,-0.99986857175827,-0.0100286342203617,-0.0127456001937389,-0.999359428882599,0.00794693827629089,0.0348941683769226,-0.999225437641144,0.0335268974304199,0.0206039436161518,-0.999453783035278,0.0315561518073082,0.00981589034199715,-0.99986720085144,-0.00982280820608139,-0.0130034983158112,-0.999223947525024,0.0339985638856888,0.0198896024376154,-0.999784409999847,0.00262610195204616,0.0205980781465769,-0.999200820922852,0.0367489233613014,0.015723118558526,-0.999635756015778,-0.00317984307184815,0.0268001947551966,-0.997271299362183,-0.00169856019783765,0.0738057792186737,-0.996926248073578,-0.0727007240056992,-0.0291999913752079,-0.997929394245148,-0.0212588161230087,0.0607042275369167,-0.902556478977203,0.0250423923134804,-0.429842680692673,-0.902802526950836,0.265829771757126,-0.338056355714798,-0.906469404697418,0.188844814896584,-0.377691507339478,-0.99900871515274,-0.00982448738068342,0.0434202142059803,
- -0.995925486087799,-0.0894976258277893,-0.0110732950270176,-0.998356103897095,0.00979931280016899,0.0564721971750259,-0.996495068073273,-0.080193355679512,-0.0238030478358269,-0.999772429466248,-0.0157444477081299,-0.0143954828381538,-0.99939227104187,0.0313570238649845,-0.01522664912045,-0.999757528305054,-0.0157442130148411,0.015400992706418,-0.995254516601563,-0.0973062664270401,-0.0003640896466095,-0.998375177383423,-0.0170664973556995,0.0543685927987099,-0.858300268650055,-0.0135165387764573,0.512969732284546,-0.998806655406952,0.0386036150157452,-0.0299200024455786,-0.0271840915083885,0.863095939159393,0.504307925701141,-0.0671163871884346,0.874269306659698,-0.480779111385345,0.0701970234513283,0.873601794242859,-0.481551945209503,-0.0075897634960711,0.876165866851807,-0.481949955224991,0.0702530518174171,0.893455624580383,-0.443623185157776,-0.0667168498039246,0.894103646278381,-0.442862927913666,0.0281979031860828,0.895283401012421,-0.444603741168976,-0.0664490535855293,0.904177129268646,-0.421957939863205,-0.0710659325122833,0.90253734588623,-0.424706995487213,0.028513491153717,0.905303299427032,-0.423807948827744,-0.0668795108795166,0.849369645118713,-0.523544013500214,-0.0675085335969925,0.837736129760742,-0.541886270046234,-0.995232105255127,0.0918343216180801,-0.0328597612679005,-0.634859442710876,-0.431818872690201,-0.640691816806793,-0.623584806919098,-0.383052229881287,-0.6814786195755,-0.0483501814305782,0.174766182899475,-0.983422100543976,-0.487303674221039,0.711689531803131,-0.505997180938721,-0.318113327026367,-0.553814589977264,-0.769475996494293,-0.0547139160335064,0.316143602132797,-0.947132408618927,-0.99547815322876,0.083153061568737,-0.0459237992763519,-0.99795800447464,0.0561864338815212,-0.0303793959319592,-0.99919605255127,0.0371028855443001,-0.0151867736130953,-0.989657521247864,-0.0275454204529524,-0.140780881047249,-0.930731296539307,-0.0921086743474007,-0.353914171457291,-0.998585343360901,0.0452747754752636,-0.0278830789029598,-0.997638523578644,0.0383481569588184,-0.0569808445870876,
- -0.998650908470154,0.0441157706081867,-0.0273883584886789,-0.930698156356812,-0.091487318277359,-0.354162395000458,-0.999765455722809,0.00597232487052679,0.0208177957683802,-0.999055445194244,0.0430037677288055,-0.00624111108481884,-0.997802913188934,0.0625043734908104,-0.0219668634235859,-0.999221563339233,0.0345242097973824,-0.0190934520214796,-0.999960899353027,-0.00382214738056064,0.00797304045408964,-0.999964237213135,0.00827237032353878,-0.00175846985075623,-0.998499751091003,0.0266012195497751,0.047860037535429,-0.998625159263611,0.0355567671358585,0.038518812507391,-0.99864935874939,0.0348617993295193,0.0385243222117424,-0.999571919441223,0.0228278357535601,-0.0182988401502371,-0.999549925327301,0.0299544297158718,-0.00164154730737209,-0.997861564159393,0.0605942830443382,-0.0245114490389824,-0.99972128868103,0.0072342031635344,0.0224724132567644,-0.997760117053986,0.0637274459004402,-0.0203369595110416,-0.999346792697906,0.035956185311079,-0.00362727767787874,-0.999406516551971,0.00648572901263833,-0.0338315553963184,-0.999549925327301,0.0299544297158718,-0.00164154730737209,-0.999571919441223,0.0228278357535601,-0.0182988401502371,-0.992201447486877,-0.117449074983597,0.0417379960417748,-0.999348104000092,-0.0132036544382572,-0.0336018577218056,-0.999212682247162,-0.0298340320587158,-0.0261561647057533,-0.998749136924744,-0.0444300696253777,0.0229417514055967,-0.992533326148987,-0.111598901450634,0.0492270477116108,-0.99952906370163,-0.0242410637438297,-0.0188158247619867,-0.997790157794952,-0.0304354410618544,-0.0590635426342487,-0.990541279315948,-0.136055186390877,0.0178032908588648,-0.992534756660461,-0.121921829879284,0.00314198387786746,-0.780232071876526,-0.41625764966011,-0.466870129108429,-0.764730632305145,-0.466262757778168,-0.444731444120407,-0.0993684828281403,-0.954538464546204,-0.2810378074646,-0.992547571659088,-0.111305914819241,0.0496016591787338,-0.99865859746933,-0.046136274933815,0.0235050357878208,-0.998660326004028,-0.0510113313794136,0.00868160836398602,-0.896518111228943,0.417978227138519,-0.146797269582748,
- -0.654963612556458,0.424981683492661,0.624830543994904,-0.638286054134369,0.414412289857864,0.648732125759125,-0.998819828033447,-0.0470119081437588,0.0121999438852072,-0.998660326004028,-0.0510113313794136,0.00868160836398602,-0.99865859746933,-0.046136274933815,0.0235050357878208,-0.831552863121033,-0.528984010219574,0.169398352503777,-0.827674984931946,-0.47536301612854,0.298302441835403,-0.998760640621185,-0.0129000814631581,-0.0480706989765167,-0.999657034873962,-0.004572210367769,-0.0257869530469179,-0.999808430671692,0.00103079585824162,-0.0195450279861689,-0.999897181987762,0.0138673232868314,0.00367937423288822,-0.955541908740997,-0.149717777967453,-0.254016309976578,-0.748385787010193,-0.011785602197051,-0.66315895318985,-0.0210580658167601,0.668594598770142,-0.743328869342804,-0.999211132526398,0.0358506180346012,-0.0170841421931982,-0.999779522418976,0.00292197894304991,-0.0207933764904737,-0.999630093574524,-0.00283326092176139,-0.0270523950457573,-0.99653434753418,-0.0768129602074623,0.0319230146706104,-0.997261345386505,-0.00178557424806058,-0.0739368349313736,-0.997920036315918,-0.0213413592427969,-0.0608289577066898,-0.998357355594635,-0.0172444824129343,-0.0546375997364521,-0.99523651599884,-0.0974899381399155,0.000111884066427592,-0.999751508235931,-0.0157441198825836,-0.0157871507108212,-0.995929598808289,-0.0894436314702034,0.0111472755670547,-0.999012589454651,-0.00977184902876616,-0.0433406159281731,-0.998360157012939,0.00985208619385958,-0.0563925765454769,-0.999771237373352,-0.0157444290816784,0.0144834937527776,-0.996497094631195,-0.0801514834165573,0.0238602571189404,-0.999390959739685,0.0313562862575054,0.0153149645775557,-0.899676024913788,0.269328236579895,0.343577355146408,-0.898876488208771,0.0248662251979113,0.4374960064888,-0.903675258159637,0.192618682980537,0.382451415061951,-0.999851524829865,-0.00802563410252333,0.0152552565559745,-0.999474048614502,0.0315388925373554,-0.00754287512972951,-0.999213695526123,0.0355814956128597,-0.0174918584525585,-0.999445974826813,0.00517465034499764,-0.0328780338168144,
- -0.999848306179047,-0.00774499541148543,0.0156068624928594,-0.999212563037872,0.0357125140726566,-0.0172933768481016,-0.99950122833252,0.0314982533454895,-0.00227298471145332,-0.999757528305054,-0.002763407304883,0.0218473114073277,-0.999718546867371,-0.0236154124140739,-0.00230758218094707,-0.0409520715475082,-0.808285593986511,0.587364733219147,-0.119028523564339,-0.00281129661016166,0.99288684129715,-0.311558365821838,-0.596524238586426,-0.739655554294586,-0.310567378997803,-0.00733513291925192,0.95052307844162,-0.0541085712611675,-0.807961642742157,0.58674567937851,-0.0309039801359177,-0.981201350688934,0.190496370196342,-0.999772667884827,-0.0157444514334202,0.0143784293904901,-0.997478902339935,0.0615393333137035,0.0353373624384403,-0.993780314922333,0.110420033335686,0.0144253000617027,-0.960098087787628,0.0633455440402031,-0.272395372390747,-0.818011283874512,-0.0128820678219199,-0.575057923793793,-0.0527189262211323,-0.743925154209137,-0.666180193424225,-0.997456729412079,0.0660747140645981,0.0267244484275579,-0.999860346317291,-0.0157458316534758,0.00560406735166907,-0.997475266456604,-0.0597269497811794,-0.0384160578250885,-0.997497797012329,-0.0621327683329582,-0.0337323658168316,-0.999688744544983,0.0201075710356236,-0.0147744873538613,-0.997480869293213,0.0635479688644409,0.031524658203125,-0.999506831169128,0.0304534547030926,-0.00767496880143881,-0.997484564781189,-0.0604207813739777,-0.0370657257735729,-0.999290823936462,-0.000609925831668079,0.0376499965786934,-0.373603641986847,-0.446949452161789,0.81280779838562,0.0204260405153036,-0.808615267276764,0.587983071804047,-0.693004727363586,-0.606616139411926,-0.389565527439117,-0.93324488401413,0.308156967163086,0.184643536806107,-0.833104968070984,0.522181272506714,0.182381600141525,-0.637097835540771,0.398694038391113,-0.659658551216125,-0.583995461463928,0.414576262235641,-0.697908163070679,-0.910025775432587,-0.37788924574852,-0.17044897377491,-0.6199711561203,0.389208763837814,-0.681287288665771,-0.999265015125275,0.00857960153371096,0.0373634099960327,
- -0.999506831169128,0.0304534547030926,-0.00767496880143881,-0.999290823936462,-0.000609925831668079,0.0376499965786934,-0.999283730983734,0.0077727884054184,0.0370358489453793,-0.999493062496185,0.0284321065992117,-0.0143271377310157,-0.999552130699158,0.0285456087440252,-0.00898450054228306,-0.831122279167175,0.443350166082382,0.335673063993454,-0.0585078485310078,-0.0662956982851028,0.996083199977875,-0.933294236660004,0.320492833852768,0.162006795406342,-0.999702930450439,0.0233605075627565,0.00696636410430074,-0.999461710453033,0.0297601222991943,-0.0138086387887597,-0.999250292778015,0.00919022038578987,0.037611298263073,-0.0630218684673309,-0.00480296323075891,0.998000681400299,-0.760016977787018,-0.317307204008102,0.567177474498749,-0.960496068000793,0.244899809360504,0.132179275155067,-0.999714255332947,0.0221403073519468,0.00901306699961424,-0.999714255332947,-0.0184527542442083,-0.015196805819869,-0.999598979949951,0.0230712126940489,-0.0164196714758873,-0.778454601764679,-0.30555048584938,0.54831337928772,-0.0862060636281967,0.393192291259766,0.915406227111816,-0.746423959732056,-0.24052682518959,0.62048214673996,-0.999710083007813,-0.0179342404007912,-0.0160661228001118,-0.999710202217102,0.0226590540260077,0.00814298167824745,-0.998468577861786,0.0516849383711815,0.0197266414761543,-0.760919988155365,0.309210449457169,-0.570429384708405,-0.0522966049611568,0.963975667953491,-0.260798811912537,-0.0547693707048893,0.949567496776581,-0.308742433786392,-0.999553740024567,-0.029655234888196,0.00359630049206316,-0.99826180934906,0.041459683328867,0.0418862104415894,-0.999684989452362,-0.0230653695762157,0.00989748444408178,-0.0821719616651535,-0.980834484100342,0.176667705178261,-0.827852070331573,-0.303936630487442,0.471469730138779,-0.842019379138947,-0.263114780187607,0.470929116010666,-0.99847537279129,0.0499036647379398,0.0235925652086735,-0.999711573123932,-0.0210666451603174,0.0115402936935425,-0.99987530708313,-0.014076647348702,-0.00717230653390288,-0.997479617595673,0.0616748929023743,-0.0350801385939121,
- -0.999777555465698,-0.0157445296645164,-0.0140327718108892,-0.993785262107849,0.110420577228069,-0.0140785742551088,-0.961043775081635,0.0622317865490913,0.269299268722534,-0.0527379922568798,-0.744194209575653,0.665878117084503,-0.818250000476837,-0.0128858275711536,0.574718058109283,-0.999834835529327,-0.0157454311847687,-0.009090730920434,-0.997477412223816,0.0641960948705673,-0.0302937868982553,-0.997459471225739,-0.0618468187749386,0.0353498421609402,-0.999624311923981,0.0248854476958513,0.0114963874220848,-0.997461974620819,-0.064078688621521,0.0310404244810343,-0.997480630874634,0.0619035214185715,-0.0346462838351727,-0.997424602508545,-0.0591233931481838,0.0406034588813782,-0.999578297138214,0.0273273698985577,0.00982061121612787,-0.999362409114838,-0.00373802031390369,-0.0355077460408211,0.0182549506425858,-0.746218860149384,-0.66545033454895,-0.365375816822052,-0.451043844223022,-0.814284920692444,-0.791316092014313,-0.517888009548187,0.32497826218605,-0.724967300891876,0.647782742977142,-0.23409415781498,-0.83198070526123,0.468364477157593,-0.297393351793289,-0.641880095005035,0.397128194570541,0.655956625938416,-0.989357590675354,-0.125285893678665,0.0739933848381042,-0.589339852333069,0.41309642791748,0.694283723831177,-0.608390510082245,0.394063621759415,0.688893973827362,-0.999603748321533,0.0260324869304895,0.0107092587277293,-0.999368906021118,0.00360036618076265,-0.0353414788842201,-0.999387919902802,-0.00503725744783878,-0.0346178114414215,-0.999283134937286,0.00780217722058296,-0.0370477847754955,-0.999551236629486,0.0285849180072546,0.00895751919597387,-0.999492406845093,0.0284606479108334,0.0143159944564104,-0.8890700340271,0.361036837100983,-0.281437158584595,-0.974076747894287,0.196095764636993,-0.112787038087845,-0.0640647485852242,-0.149550497531891,-0.986676514148712,-0.999249577522278,0.00921962317079306,-0.0376232340931892,-0.999460995197296,0.0297886971384287,0.0137974824756384,-0.999207317829132,0.0368383824825287,-0.0150869730859995,-0.715559720993042,-0.333276778459549,-0.613922536373138,
- -0.0667530968785286,-0.124109543859959,-0.990020632743835,-0.985557913780212,0.142556264996529,-0.0913975238800049,-0.999674737453461,-0.0153840919956565,0.020340895280242,-0.999179005622864,0.0387189947068691,-0.0119311483576894,-0.999486565589905,0.0287148542702198,0.0142167489975691,-0.745299935340881,-0.315931975841522,-0.587124347686768,-0.731694400310516,-0.276047170162201,-0.623234510421753,-0.107000775635242,0.347082823514938,-0.931710422039032,-0.99968159198761,-0.0157654322683811,0.0197017341852188,-0.99797385931015,0.0597165785729885,-0.0219581965357065,-0.999185800552368,0.0383417494595051,-0.0125642810016871,-0.097101978957653,0.994831681251526,-0.029686963185668,-0.801714241504669,0.322398066520691,0.503302872180939,-0.0550131648778915,0.99848198890686,0.00269863684661686,-0.997945189476013,0.0505234859883785,-0.0394056066870689,-0.999658763408661,-0.0259968340396881,0.00254340586252511,-0.998814761638641,-0.0471561513841152,0.0120576526969671,0.0079610301181674,0.00221699220128357,0.999965846538544,0.0313592180609703,0.0030786523129791,0.999503433704376,0.0315311513841152,0.00128969340585172,0.999501943588257,0.0319212637841702,-0.0112584829330444,0.999426960945129,0.00738639710471034,-0.0123647768050432,0.999896287918091,-0.00726376287639141,-0.0128987589851022,0.999890446662903,-0.00693571055307984,-0.0198240485042334,0.999779522418976,0.0070801917463541,-0.0201176423579454,0.999772548675537,-0.00833472702652216,-0.0195789225399494,0.999773561954498,-0.997593820095062,0.0691158547997475,-0.00544219370931387,-0.997647702693939,0.0684969872236252,0.00269673205912113,-0.997622430324554,0.0689164027571678,1.48709289753864e-017,-0.99242228269577,0.122779659926891,0.00483384495601058,-0.992415845394135,0.122546680271626,-0.00964934565126896,-0.992374122142792,0.123262271285057,4.94169362355024e-005,-0.999603867530823,-0.0264789666980505,-0.00953886285424232,-0.999635994434357,-0.0269592944532633,-0.00106138945557177,-0.999615013599396,-0.0260646790266037,0.00951285380870104,-0.986775457859039,0.0631711557507515,-0.149277567863464,
- -0.970865190029144,0.23951119184494,0.00744269648566842,-0.981547713279724,0.191168874502182,-0.00431342702358961,-0.811932384967804,-0.582160890102386,-0.0430646948516369,-0.925578951835632,-0.378428041934967,-0.00980031490325928,-0.85047322511673,-0.525648653507233,0.0197184477001429,-0.999678432941437,-0.0235691573470831,-0.00935615412890911,-0.999849379062653,-0.000273377634584904,-0.0173594783991575,-0.999718129634857,-0.0237226393073797,-0.000933961651753634,-0.999957323074341,0.00534395128488541,-0.00753705250099301,-0.999855518341064,0.00549517571926117,-0.0160919092595577,-0.999977588653564,0.00667292578145862,-0.000525427458342165,-0.999898314476013,-0.000224553019506857,-0.0142591167241335,-0.999951779842377,-0.00538598140701652,-0.00821291003376246,-0.99977433681488,0.0155159765854478,-0.014509841799736,-0.999758839607239,0.0154991196468472,-0.0155647769570351,-0.999882459640503,-0.000120773416711017,-0.0153382206335664,-0.999882698059082,-0.000241191504755989,-0.0153156602755189,-0.999625265598297,0.0165101792663336,-0.0218351036310196,-0.999863386154175,0.0150148868560791,-0.00692712003365159,-0.99986857175827,0.0161687284708023,-0.00127312843687832,-0.999622702598572,0.0166994966566563,-0.021812504157424,-0.999829947948456,0.0155902309343219,-0.00985028687864542,-0.999862194061279,0.0150897465646267,-0.00692239496856928,-0.959229826927185,0.282421410083771,0.0107827968895435,-0.951715171337128,0.306035548448563,-0.0240972898900509,-0.951193690299988,0.300235092639923,-0.071340449154377,-0.997984051704407,-0.00114294746890664,0.0634547770023346,-0.999709665775299,-0.00186044012662023,-0.0240240916609764,-0.998472154140472,-0.00949013698846102,-0.0544360913336277,-0.998867452144623,0.0102352313697338,0.0464652590453625,-0.999694406986237,0.00998600199818611,-0.022613437846303,-0.997979164123535,0.011886334978044,0.0624203942716122,-0.998856604099274,0.0116587299853563,0.0463638640940189,-0.999921500682831,0.00937500223517418,0.00831631012260914,-0.999664962291718,0.0132704973220825,-0.02222172729671,-0.00830149371176958,0.00906134676188231,0.99992448091507,
- -0.995919048786163,0.0894417315721512,0.0120673449710011,-0.983551204204559,-0.170868188142776,0.0585757531225681,-0.722074389457703,-0.691289365291595,-0.0269738994538784,0.00349414744414389,-0.235920250415802,0.971766233444214,-0.013510150834918,-0.249138012528419,0.968373775482178,-0.999693632125854,-0.0151261761784554,0.0195907335728407,-0.999718129634857,0.00501898070797324,-0.0232053156942129,-0.999968707561493,0.000508958415593952,0.00789781380444765,-0.0778236836194992,0.0301606133580208,0.996510922908783,-0.194023966789246,-0.979974746704102,-0.0447704121470451,-0.0167316794395447,-0.403342247009277,0.914896190166473,-0.999869823455811,-0.01584249176085,-0.00306420074775815,-0.999869525432587,0.0156850591301918,-0.00386828510090709,-0.999715447425842,0.00602698605507612,-0.0230852495878935,-0.291732639074326,0.0255210567265749,0.956159472465515,-0.0168604478240013,-0.409743368625641,0.912045001983643,-0.0091668488457799,-0.414810448884964,0.90986180305481,-0.0122782690450549,-0.486578494310379,0.873550593852997,-0.645837604999542,-0.0341929830610752,0.762708723545074,-0.658551573753357,0.0133273117244244,0.75241756439209,-0.934980571269989,-0.00355303916148841,-0.354681104421616,-0.0282521769404411,-0.550770461559296,-0.834178447723389,-0.0474971421062946,-0.528193771839142,-0.847794413566589,-0.999867558479309,-0.0155990123748779,0.00466514192521572,-0.999864876270294,-0.0158805008977652,0.00427345233038068,-0.999988615512848,-0.000150204592500813,0.00476900720968843,-0.999868333339691,0.0156797859817743,-0.00420198170468211,-0.99986869096756,-0.0158527381718159,-0.00339006492868066,-0.999991476535797,0.000130688291392289,-0.00414935825392604,-0.99949586391449,0.0261508878320456,-0.0180051326751709,-0.997942328453064,-0.0176570191979408,0.0616391599178314,0.0233381818979979,-0.1921157091856,0.981094837188721,-0.999876201152802,-0.0157407205551863,-0.000170207960763946,-0.999809741973877,-0.012906257994473,-0.0146271698176861,-0.999999940395355,-1.02439325928572e-005,0.000325259403325617,-0.9998739361763,0.0157096963375807,-0.00230815587565303,
- -0.999995768070221,9.26701686694287e-005,-0.00294230110011995,-0.999717473983765,0.0236682500690222,-0.00223832414485514,-0.0498145446181297,-0.680298507213593,-0.731240391731262,-0.900662183761597,-0.431450843811035,-0.0515533983707428,-0.929036557674408,-0.369579434394836,0.0173803437501192,-0.974399983882904,0.224783688783646,0.00412464328110218,-0.0226604305207729,0.206903621554375,-0.97809886932373,-0.0403365790843964,0.250788629055023,-0.967201232910156,-0.997252523899078,0.0145609509199858,-0.0726322010159492,-0.997220993041992,0.0252124276012182,-0.0701043978333473,-0.997180998325348,-0.022993054240942,-0.0714253038167953,-0.999720990657806,-0.0236095786094666,-0.000746186065953225,-0.99999988079071,-4.26272072218126e-006,-0.000541364250238985,-0.999876022338867,0.0157337971031666,-0.000779873051214963,-0.999957025051117,0.000291945762000978,-0.00926929339766502,-0.999911665916443,0.0132654719054699,-0.000940071186050773,-0.999679207801819,0.0238179918378592,-0.00861569121479988,-0.994539618492126,-0.0242922119796276,0.101493217051029,-0.994779706001282,0.0211404729634523,0.099832147359848,-0.994173407554626,0.107522673904896,-0.00761973857879639,-0.99996954202652,0.00778663624078035,-0.000551808625459671,-0.999998450279236,5.56543454877101e-005,-0.00176703499164432,-0.999846458435059,0.00643853237852454,-0.0163032822310925,-0.998415291309357,0.000443102559074759,0.0562740229070187,-0.998134970664978,-0.0240199062973261,0.0561232008039951,-0.998413860797882,-0.000886519672349095,0.056293997913599,-0.999583005905151,-0.000227361058932729,-0.0288748499006033,-0.999581336975098,0.000455598084954545,-0.0289304777979851,-0.999582409858704,6.32793334039189e-018,-0.028896976262331,-0.999196469783783,-0.0399801209568977,0.00283323298208416,-0.999738931655884,-0.000359849538654089,0.0228504426777363,-0.999467194080353,-0.0237854514271021,0.0223506558686495,-0.999754369258881,-0.00034904686617665,0.022164473310113,-0.999029695987701,-0.0439309477806091,0.00311321299523115,-0.999049246311188,-0.043547760695219,0.00205737422220409,
- -0.999971091747284,0.00759665295481682,-0.000538345542736351,-0.999848127365112,0.00622464763000607,-0.0162847824394703,-0.999939858913422,0.00689659081399441,0.00853811576962471,-0.998713135719299,-0.0505943708121777,0.00350932707078755,-0.998764216899872,-0.0496459230780602,0.00234547676518559,-0.998772144317627,-0.0494157560169697,0.00350190512835979,0.976182103157043,-0.216711178421974,0.0102383233606815,0.97731614112854,-0.21017062664032,-0.0261047184467316,0.976389050483704,-0.215992733836174,0.00340146035887301,-0.999866664409637,0.00589370261877775,-0.0152354538440704,-0.999958395957947,0.00384991057217121,0.00827228277921677,-0.999864339828491,0.00366881396621466,-0.0160636659711599,-0.999967098236084,0.00113135098945349,0.00803501624614,-0.99987530708313,0.0031714562792331,-0.0154713746160269,-0.999718248844147,-0.0235438961535692,0.00302689848467708,-0.992182970046997,-0.0205297395586967,0.123091317713261,-0.992478966712952,0.00289088510908186,0.122381210327148,-0.998375236988068,0.0555318370461464,0.0127716101706028,-0.999824285507202,-0.000442717893747613,-0.0187419727444649,-0.999832034111023,-0.000144359612022527,-0.0183336976915598,-0.999832034111023,-0.000144359612022527,-0.0183336976915598,-0.998501777648926,0.000430850894190371,0.0547180473804474,-0.998514652252197,0.00128667138051242,0.0544689372181892,-0.99823659658432,-0.0222806856036186,0.0550209544599056,-0.836456000804901,0.00454236334189773,-0.548015296459198,-0.928610026836395,0.370645254850388,0.0174793843179941,-0.0484888181090355,0.582524836063385,-0.811365306377411,-0.999856412410736,0.015642924234271,-0.00653077801689506,-0.999701499938965,-0.0237507820129395,-0.00574798742309213,-0.999870419502258,-0.00225231656804681,-0.015941072255373,-0.0405043102800846,0.921656668186188,-0.385886460542679,-0.928166329860687,0.00875751860439777,-0.372062534093857,-0.0488728210330009,0.90735000371933,-0.417525619268417,-0.806199133396149,-0.00127978576347232,0.591642916202545,-0.786967098712921,0.022103376686573,0.616598904132843,-0.0446377135813236,0.860152304172516,0.508080244064331,
- -0.0446377135813236,0.860152304172516,0.508080244064331,-0.645075738430023,0.763752639293671,-0.0236481782048941,-0.806199133396149,-0.00127978576347232,0.591642916202545,-0.998851656913757,0.0122382659465075,0.0463225618004799,-0.99969482421875,0.0131327053532004,0.0209227260202169,-0.999846458435059,0.015554940328002,0.00807183235883713,-0.999865591526031,0.0156696662306786,-0.00484181381762028,-0.999864041805267,0.0158535279333591,-0.00455666519701481,-0.999957203865051,0.00794830266386271,-0.0047386372461915,-0.999964237213135,0.00792048964649439,-0.00296907545998693,-0.999870955944061,0.015812998637557,-0.00283633591607213,-0.999607384204865,0.0207863263785839,0.0187876001000404,-0.999959409236908,0.00794083531945944,-0.00426321849226952,-0.999711990356445,-0.0237044896930456,-0.00377778825350106,-0.999866604804993,0.0156735833734274,-0.00459401309490204,-0.999940931797028,0.00775363342836499,0.00761506240814924,-0.99959921836853,-0.0085893739014864,0.026974068954587,-0.997895538806915,-0.0279091615229845,-0.0585284493863583,-0.961573660373688,0.0118908695876598,-0.274289816617966,-0.881386756896973,0.447700709104538,-0.15073636174202,-0.891027987003326,0.452547907829285,-0.0356336981058121,-0.999997854232788,0.00211848691105843,-0.000166810175869614,-0.999156355857849,-0.0392415001988411,-0.0121113331988454,-0.999899387359619,0.00805709231644869,-0.0116755599156022,-0.999674201011658,-0.0238303113728762,-0.00914204493165016,-0.999920606613159,0.00802652537822723,-0.00972399581223726,-0.999177694320679,-0.0392578691244125,-0.010138725861907,-0.999140679836273,-0.0392308756709099,-0.0133820557966828,-0.999977588653564,0.00667292578145862,-0.000525427458342165,-0.999845385551453,0.00504557136446238,-0.0168451815843582,-0.944939196109772,-0.15002267062664,-0.290832102298737,-0.93679678440094,-0.0341399796307087,-0.348204404115677,-0.757879376411438,-0.6452516913414,0.096276193857193,-0.926446139812469,-0.0307466425001621,-0.375169575214386,-0.93679678440094,-0.0341399796307087,-0.348204404115677,-0.944939196109772,-0.15002267062664,-0.290832102298737,
- -0.992516756057739,-0.0206022802740335,0.120357804000378,-0.980563163757324,-0.177286356687546,0.0840573906898499,-0.994350135326386,0.0148313399404287,0.105108790099621,-0.999289989471436,0.0154663324356079,0.0343564562499523,-0.999418258666992,0.00026853263261728,0.0341036356985569,-0.999144017696381,-0.0227862559258938,0.0345259867608547,-0.991595029830933,0.0146033400669694,0.128553673624992,-0.977913200855255,-0.178227007389069,0.109182983636856,-0.914688408374786,0.403748393058777,-0.0182307045906782,-0.999953627586365,7.58457172196358e-005,0.00963240582495928,-0.999829709529877,0.015668572857976,0.00975105352699757,-0.999953627586365,7.58457172196358e-005,0.00963240582495928,-0.999953269958496,-0.00514358095824718,0.0081976531073451,-0.999983668327332,-0.00571775622665882,0.00045021713594906,-0.999858379364014,0.0156979113817215,0.00608261302113533,-0.999999523162842,-7.69047346693696e-006,-0.000976689741946757,-0.999875664710999,0.0157528351992369,-0.000858191284351051,-0.999999523162842,2.11530826768608e-019,-0.000979431439191103,-0.999999523162842,2.11530826768608e-019,-0.000979431439191103,-0.999875664710999,0.0157528351992369,-0.000858191284351051,-0.999999940395355,0.000415052898460999,-3.26813460560516e-005,-0.423544853925705,-0.109372682869434,-0.899248242378235,-0.474085539579391,-0.122323386371136,-0.871940314769745,-0.423544853925705,-0.109372682869434,-0.899248242378235,-0.488916456699371,-0.0730885565280914,-0.869263350963593,-0.450621873140335,-0.0615856200456619,-0.890588223934174,-0.312418013811111,0.0189506448805332,-0.949755668640137,-0.490777194499969,-0.0665754228830338,-0.868737876415253,-0.314349234104156,0.0228039119392633,-0.949033498764038,-0.32588917016983,-0.0230078883469105,-0.945127964019775,-0.324854135513306,-0.027836836874485,-0.945354402065277,-0.543326735496521,-0.0879179686307907,-0.834905207157135,-0.492632329463959,-0.0599984899163246,-0.86816680431366,-0.543386161327362,-0.0689656138420105,-0.836645364761353,-0.323324590921402,-0.0349049158394337,-0.94564414024353,-0.543386161327362,-0.0689656138420105,-0.836645364761353,
- -0.543387949466705,-0.0754636079072952,-0.836083114147186,-0.323560982942581,-0.033817857503891,-0.945602893829346,-0.425085037946701,-0.0873493701219559,-0.900928974151611,-0.340248197317123,0.0483830161392689,-0.939090132713318,-0.286775588989258,-0.0311616435647011,-0.957490861415863,0.0785462707281113,0.123149283230305,-0.989274859428406,0.0804560706019402,0.0968714579939842,-0.992039680480957,-0.407054334878922,0.100433096289635,-0.907865583896637,-0.339494854211807,0.0444064140319824,-0.939559102058411,-0.414718955755234,0.037906251847744,-0.909159660339355,0.0867939889431,0.00280057825148106,-0.99622243642807,-0.149454861879349,0.0132896425202489,-0.988679230213165,0.0849311426281929,0.0316739231348038,-0.995883285999298,-0.285471260547638,-0.0336605943739414,-0.957795977592468,0.0164567735046148,0.104895554482937,-0.994347095489502,0.0236305929720402,0.087631843984127,-0.995872616767883,0.247518762946129,0.168410629034042,-0.954134345054626,0.0771446973085403,0.141914904117584,-0.98686820268631,0.247409820556641,0.168769419193268,-0.954099178314209,0.0277583189308643,0.0776754766702652,-0.996592283248901,0.217821210622787,0.153088316321373,-0.963907599449158,0.17873615026474,0.371462374925613,-0.911081254482269,0.116661719977856,0.367385029792786,-0.922723293304443,0.116661719977856,0.367385029792786,-0.922723293304443,0.260660648345947,0.124063648283482,-0.957425832748413,0.316538482904434,0.163290068507195,-0.934419453144073,0.076407253742218,0.151622235774994,-0.985480904579163,0.304028272628784,0.299266189336777,-0.904437124729156,0.18509915471077,0.35439720749855,-0.916592001914978,0.301432758569717,0.302141189575195,-0.904350161552429,-0.598236322402954,0.800953567028046,0.0242270268499851,-0.598236322402954,0.800953567028046,0.0242270268499851,-0.598236322402954,0.800953567028046,0.0242270268499851,-0.82012939453125,-0.403643667697906,-0.405536204576492,-0.82012939453125,-0.403643667697906,-0.405536204576492,-0.82012939453125,-0.403643667697906,-0.405536204576492,-0.966935932636261,-0.213209629058838,0.139916956424713,
- -0.966935932636261,-0.213209629058838,0.139916956424713,-0.966935932636261,-0.213209629058838,0.139916956424713,-0.920478403568268,0.359875828027725,-0.152345389127731,-0.920478403568268,0.359875828027725,-0.152345389127731,-0.920478403568268,0.359875828027725,-0.152345389127731,0.242321372032166,0.970126211643219,0.0116407461464405,0.242321372032166,0.970126211643219,0.0116407461464405,0.242321372032166,0.970126211643219,0.0116407461464405,-0.747852027416229,0.66347324848175,-0.0228171050548553,-0.747852027416229,0.66347324848175,-0.0228171050548553,-0.747852027416229,0.66347324848175,-0.0228171050548553,-0.114426523447037,-0.993405759334564,-0.00718404725193977,-0.114426523447037,-0.993405759334564,-0.00718404725193977,-0.114426523447037,-0.993405759334564,-0.00718404725193977,0.968427240848541,0.202054664492607,0.146022617816925,0.968427240848541,0.202054664492607,0.146022617816925,0.968427240848541,0.202054664492607,0.146022617816925,0.922366738319397,-0.359282195568085,-0.141971528530121,0.922366738319397,-0.359282195568085,-0.141971528530121,0.922366738319397,-0.359282195568085,-0.141971528530121,-0.257235527038574,-0.966348648071289,0.00047319071018137,-0.257235527038574,-0.966348648071289,0.00047319071018137,-0.257235527038574,-0.966348648071289,0.00047319071018137,0.573600947856903,-0.813655376434326,0.0945882052183151,0.573600947856903,-0.813655376434326,0.0945882052183151,0.573600947856903,-0.813655376434326,0.0945882052183151,0.523733258247375,-0.850757479667664,0.0437630750238895,0.523733258247375,-0.850757479667664,0.0437630750238895,0.523733258247375,-0.850757479667664,0.0437630750238895,0.764450371265411,0.480377018451691,-0.429945975542068,0.764450371265411,0.480377018451691,-0.429945975542068,0.764450371265411,0.480377018451691,-0.429945975542068,0.678102254867554,0.734339356422424,0.030383987352252,0.678102254867554,0.734339356422424,0.030383987352252,0.678102254867554,0.734339356422424,0.030383987352252,0.0982178002595901,-0.995134234428406,-0.00782022997736931,0.0982178002595901,-0.995134234428406,-0.00782022997736931,
- 0.0982178002595901,-0.995134234428406,-0.00782022997736931,-0.948356449604034,0.270503282546997,-0.16567450761795,-0.948356449604034,0.270503282546997,-0.16567450761795,-0.948356449604034,0.270503282546997,-0.16567450761795,-0.881870031356812,-0.434589803218842,0.182857692241669,-0.881870031356812,-0.434589803218842,0.182857692241669,-0.881870031356812,-0.434589803218842,0.182857692241669,0.192363694310188,-0.981195032596588,-0.0158968009054661,0.192363694310188,-0.981195032596588,-0.0158968009054661,0.192363694310188,-0.981195032596588,-0.0158968009054661,-0.493682771921158,-0.866454422473907,-0.0743929594755173,-0.493682771921158,-0.866454422473907,-0.0743929594755173,-0.493682771921158,-0.866454422473907,-0.0743929594755173,0,-0.999984323978424,0.00559919187799096,0,-0.999984323978424,0.00559919187799096,0,-0.999984323978424,0.00559919187799096,0,-0.999999821186066,-0.000606709509156644,0,-0.999999821186066,-0.000606709509156644,0,-0.999999821186066,-0.000606709509156644,0.000441913725808263,0.999936997890472,0.0112246181815863,0.000441913725808263,0.999936997890472,0.0112246181815863,0.000441913725808263,0.999936997890472,0.0112246181815863,0.000527387601323426,0.999910116195679,0.0133956521749496,0.000527387601323426,0.999910116195679,0.0133956521749496,0.000527387601323426,0.999910116195679,0.0133956521749496,0.99964052438736,0.00766889099031687,0.0256913788616657,0.99964052438736,0.00766889099031687,0.0256913788616657,0.99964052438736,0.00766889099031687,0.0256913788616657,0.999702274799347,0.0076893288642168,0.0231574792414904,0.999702274799347,0.0076893288642168,0.0231574792414904,0.999702274799347,0.0076893288642168,0.0231574792414904,-0,0.999987542629242,0.00499431882053614,-0,0.999987542629242,0.00499431882053614,-0,0.999987542629242,0.00499431882053614,0,0.999998033046722,0.00202798494137824,0,0.999998033046722,0.00202798494137824,0,0.999998033046722,0.00202798494137824,-0.999946773052216,-0.00792572274804115,0.00661994097754359,-0.999946773052216,-0.00792572274804115,0.00661994097754359,-0.999946773052216,-0.00792572274804115,0.00661994097754359,
- -0.999917805194855,-0.00795256439596415,0.0100579187273979,-0.999917805194855,-0.00795256439596415,0.0100579187273979,-0.999917805194855,-0.00795256439596415,0.0100579187273979,-0.99970418214798,-0.0082321772351861,-0.0228910632431507,-0.99970418214798,-0.0082321772351861,-0.0228910632431507,-0.99970418214798,-0.0082321772351861,-0.0228910632431507,-0.999931156635284,-0.00773453805595636,0.00882237497717142,-0.999931156635284,-0.00773453805595636,0.00882237497717142,-0.999931156635284,-0.00773453805595636,0.00882237497717142,-0.999896705150604,-0.0080606285482645,-0.0119016021490097,-0.999896705150604,-0.0080606285482645,-0.0119016021490097,-0.999896705150604,-0.0080606285482645,-0.0119016021490097,-1,-7.69708731240826e-006,-6.06077108500358e-008,-1,-7.69708731240826e-006,-6.06077108500358e-008,-1,-7.69708731240826e-006,-6.06077108500358e-008,-0.999877631664276,0.0156442448496819,0.000123183039249852,-0.999877631664276,0.0156442448496819,0.000123183039249852,-0.999877631664276,0.0156442448496819,0.000123183039249852,-0.997277140617371,-0.0737427026033401,-0.000580651219934225,-0.997277140617371,-0.0737427026033401,-0.000580651219934225,-0.997277140617371,-0.0737427026033401,-0.000580651219934225,-0.999715507030487,0.0238530021160841,-0.000375637842807919,-0.999715507030487,0.0238530021160841,-0.000375637842807919,-0.999715507030487,0.0238530021160841,-0.000375637842807919,-0.999642848968506,-0.0267209615558386,0.00042080256389454,-0.999642848968506,-0.0267209615558386,0.00042080256389454,-0.999642848968506,-0.0267209615558386,0.00042080256389454,-0.990099728107452,-0.140349075198174,0.00221022171899676,-0.990099728107452,-0.140349075198174,0.00221022171899676,-0.990099728107452,-0.140349075198174,0.00221022171899676,-0.999209225177765,-0.0093890093266964,0.0386389866471291,-0.999209225177765,-0.0093890093266964,0.0386389866471291,-0.999209225177765,-0.0093890093266964,0.0386389866471291,-0.997743606567383,-0.0104672722518444,0.06632000207901,-0.997743606567383,-0.0104672722518444,0.06632000207901,-0.997743606567383,-0.0104672722518444,0.06632000207901,
- -0.99452668428421,-0.0119175650179386,0.103800818324089,-0.99452668428421,-0.0119175650179386,0.103800818324089,-0.99452668428421,-0.0119175650179386,0.103800818324089,0.997440695762634,0.0168021805584431,-0.0694978162646294,0.997440695762634,0.0168021805584431,-0.0694978162646294,0.997440695762634,0.0168021805584431,-0.0694978162646294,0.999827682971954,0.0155863761901855,0.0100928070023656,0.999827682971954,0.0155863761901855,0.0100928070023656,0.999827682971954,0.0155863761901855,0.0100928070023656,0.999772608280182,0.0159670375287533,-0.0141342952847481,0.999772608280182,0.0159670375287533,-0.0141342952847481,0.999772608280182,0.0159670375287533,-0.0141342952847481,0.999986827373505,-0.00513601629063487,4.04410420742352e-005,0.999986827373505,-0.00513601629063487,4.04410420742352e-005,0.999986827373505,-0.00513601629063487,4.04410420742352e-005,0.999998450279236,-0.00176205520983785,1.3874445357942e-005,0.999998450279236,-0.00176205520983785,1.3874445357942e-005,0.999998450279236,-0.00176205520983785,1.3874445357942e-005,0.999788165092468,-0.0205866042524576,0.000162099313456565,0.999788165092468,-0.0205866042524576,0.000162099313456565,0.999788165092468,-0.0205866042524576,0.000162099313456565,-0.995226204395294,-0.0575568675994873,0.0788174718618393,-0.995226204395294,-0.0575568675994873,0.0788174718618393,-0.998249471187592,-0.0587361864745617,-0.00693526538088918,-0.998432278633118,-0.0555353835225105,-0.00698710698634386,-0.998477458953857,-0.0551612190902233,0.000434340065112337,-0.995394587516785,-0.0545803494751453,0.0788072943687439,-0.998156785964966,-0.0606858767569065,0.000477841967949644,-0.99815046787262,-0.0603996366262436,-0.00690826820209622,-0.998156785964966,-0.0606858767569065,0.000477841967949644,-0.999871850013733,-0.0160026680678129,0.000504021008964628,-0.999871850013733,-0.0160026680678129,0.000504021008964628,-0.999871850013733,-0.0160026680678129,0.000504021008964628,-0.999338388442993,-0.0363549701869488,0.00114503863733262,-0.999338388442993,-0.0363549701869488,0.00114503863733262,
- -0.999338388442993,-0.0363549701869488,0.00114503863733262,-0.999842584133148,-0.0177391842007637,0.000558714498765767,-0.999842584133148,-0.0177391842007637,0.000558714498765767,-0.999842584133148,-0.0177391842007637,0.000558714498765767,-0.992829859256744,0.000941199425142258,-0.119532331824303,-0.992829859256744,0.000941199425142258,-0.119532331824303,-0.992829859256744,0.000941199425142258,-0.119532331824303,-0.999967455863953,6.35189862805419e-005,-0.00806691590696573,-0.999967455863953,6.35189862805419e-005,-0.00806691590696573,-0.999967455863953,6.35189862805419e-005,-0.00806691590696573,-0.999980092048645,4.97098189953249e-005,-0.00631314748898149,-0.999980092048645,4.97098189953249e-005,-0.00631314748898149,-0.999980092048645,4.97098189953249e-005,-0.00631314748898149,-0.997105062007904,-0.0760340467095375,0.000598693266510963,-0.997105062007904,-0.0760340467095375,0.000598693266510963,-0.997105062007904,-0.0760340467095375,0.000598693266510963,-0.999971032142639,-0.00761370873078704,5.99504492129199e-005,-0.999971032142639,-0.00761370873078704,5.99504492129199e-005,-0.999971032142639,-0.00761370873078704,5.99504492129199e-005,-0.999966084957123,0.00823530554771423,-6.48449349682778e-005,-0.999966084957123,0.00823530554771423,-6.48449349682778e-005,-0.999966084957123,0.00823530554771423,-6.48449349682778e-005,-0.996206223964691,-0.0849185362458229,-0.019031535834074,-0.996206223964691,-0.0849185362458229,-0.019031535834074,-0.996206223964691,-0.0849185362458229,-0.019031535834074,-0.995976686477661,-0.0875467360019684,-0.0191313922405243,-0.995976686477661,-0.0875467360019684,-0.0191313922405243,-0.995976686477661,-0.0875467360019684,-0.0191313922405243,-0.995926082134247,-0.0881169587373734,-0.0191530454903841,-0.995926082134247,-0.0881169587373734,-0.0191530454903841,-0.995926082134247,-0.0881169587373734,-0.0191530454903841,-0.999967515468597,-0.00793249532580376,0.00149187922943383,-0.999967515468597,-0.00793249532580376,0.00149187922943383,-0.999967515468597,-0.00793249532580376,0.00149187922943383,-0.999841034412384,-0.00849034730345011,0.015686621889472,
- -0.999841034412384,-0.00849034730345011,0.015686621889472,-0.999841034412384,-0.00849034730345011,0.015686621889472,-0.999968886375427,-0.00788596738129854,0.000309790106257424,-0.999968886375427,-0.00788596738129854,0.000309790106257424,-0.999968886375427,-0.00788596738129854,0.000309790106257424,-0.999951124191284,-0.00762591557577252,-0.0062919775955379,-0.999951124191284,-0.00762591557577252,-0.0062919775955379,-0.999951124191284,-0.00762591557577252,-0.0062919775955379,0.999219655990601,-0.0236241091042757,-0.0316575020551682,0.999219059944153,-0.0241409968584776,0.0312813781201839,0.999219655990601,-0.0236241091042757,-0.0316575020551682,0.999278664588928,-0.0214976072311401,0.0313040725886822,0.999278962612152,-0.0209939274936914,-0.0316386595368385,0.999278664588928,-0.0214976072311401,0.0313040725886822,0.999448716640472,0.0103070205077529,0.0315598621964455,0.999448716640472,0.0103070205077529,0.0315598621964455,0.999448716640472,0.0103070205077529,0.0315598621964455,-3.03373453789391e-005,0.999999701976776,0.000770568556617945,-3.03373453789391e-005,0.999999701976776,0.000770568556617945,-3.03373453789391e-005,0.999999701976776,0.000770568556617945,-0.000222772709093988,0.999983966350555,0.00565842678770423,-0.000222772709093988,0.999983966350555,0.00565842678770423,-0.000222772709093988,0.999983966350555,0.00565842678770423,0.000262154702795669,0.999977886676788,-0.00665873195976019,0.000262154702795669,0.999977886676788,-0.00665873195976019,0.000262154702795669,0.999977886676788,-0.00665873195976019,0.0153710888698697,-0.99960470199585,0.0235405489802361,0.0153710888698697,-0.99960470199585,0.0235405489802361,0.0153710888698697,-0.99960470199585,0.0235405489802361,0.0155277838930488,-0.999784708023071,0.0137704210355878,0.0155277838930488,-0.999784708023071,0.0137704210355878,0.0155277838930488,-0.999784708023071,0.0137704210355878,0.0155342407524586,-0.999790012836456,0.0133657325059175,0.0155342407524586,-0.999790012836456,0.0133657325059175,0.0155342407524586,-0.999790012836456,0.0133657325059175,0.999494910240173,-0.00544651271775365,0.0313086099922657,
- 0.999494910240173,-0.00544651271775365,0.0313086099922657,0.999494910240173,-0.00544651271775365,0.0313086099922657,0.999503672122955,-0.00259183789603412,0.0313987955451012,0.999503672122955,-0.00259183789603412,0.0313987955451012,0.999503672122955,-0.00259183789603412,0.0313987955451012,0.999501824378967,-0.00349748134613037,0.0313702151179314,0.999501824378967,-0.00349748134613037,0.0313702151179314,0.999501824378967,-0.00349748134613037,0.0313702151179314,0.998911619186401,0.046637050807476,0.000734441797249019,0.998911619186401,0.046637050807476,0.000734441797249019,0.998911619186401,0.046637050807476,0.000734441797249019,0.999843299388886,-0.0177017562091351,-0.000278767809504643,0.999843299388886,-0.0177017562091351,-0.000278767809504643,0.999843299388886,-0.0177017562091351,-0.000278767809504643,0.999558568000793,0.0297069549560547,0.000467826088424772,0.999558568000793,0.0297069549560547,0.000467826088424772,0.999558568000793,0.0297069549560547,0.000467826088424772,0.992643415927887,0.121059730648994,0.00190645246766508,0.992643415927887,0.121059730648994,0.00190645246766508,0.992643415927887,0.121059730648994,0.00190645246766508,0.999836444854736,0.00721964053809643,-0.0165884215384722,0.999836444854736,0.00721964053809643,-0.0165884215384722,0.999836444854736,0.00721964053809643,-0.0165884215384722,0.999801158905029,0.00858117919415236,0.0180017203092575,0.999801158905029,0.00858117919415236,0.0180017203092575,0.999801158905029,0.00858117919415236,0.0180017203092575,0.999965071678162,0.00775064853951335,-0.00312654417939484,0.999965071678162,0.00775064853951335,-0.00312654417939484,0.999965071678162,0.00775064853951335,-0.00312654417939484,0.999954879283905,0.00765136908739805,-0.00564621295779943,0.999954879283905,0.00765136908739805,-0.00564621295779943,0.999954879283905,0.00765136908739805,-0.00564621295779943,-0.000648648885544389,-0.999864161014557,0.0164756830781698,-0.000648648885544389,-0.999864161014557,0.0164756830781698,-0.000648648885544389,-0.999864161014557,0.0164756830781698,-0.000434596149716526,-0.99993908405304,0.0110387410968542,
- -0.000434596149716526,-0.99993908405304,0.0110387410968542,-0.000434596149716526,-0.99993908405304,0.0110387410968542,0.000536268635187298,-0.999907076358795,-0.0136212231591344,0.000536268635187298,-0.999907076358795,-0.0136212231591344,0.000536268635187298,-0.999907076358795,-0.0136212231591344,-0.00146151112858206,-0.999309659004211,0.0371223799884319,-0.00146151112858206,-0.999309659004211,0.0371223799884319,-0.00146151112858206,-0.999309659004211,0.0371223799884319,0.995488166809082,0.0115463817492127,0.0941804647445679,0.995488166809082,0.0115463817492127,0.0941804647445679,0.995488166809082,0.0115463817492127,0.0941804647445679,0.999245405197144,0.00935226306319237,0.0376983992755413,0.999245405197144,0.00935226306319237,0.0376983992755413,0.999245405197144,0.00935226306319237,0.0376983992755413,0.99800705909729,0.0103093460202217,0.0622559823095798,0.99800705909729,0.0103093460202217,0.0622559823095798,0.99800705909729,0.0103093460202217,0.0622559823095798,0.994639277458191,0.0118759889155626,0.102722257375717,0.994639277458191,0.0118759889155626,0.102722257375717,0.994639277458191,0.0118759889155626,0.102722257375717,0.999966382980347,-6.46578482701443e-005,-0.00821154844015837,0.999966382980347,-6.46578482701443e-005,-0.00821154844015837,0.999966382980347,-6.46578482701443e-005,-0.00821154844015837,0.998614609241486,-0.000414317968534306,-0.0526183843612671,0.998614609241486,-0.000414317968534306,-0.0526183843612671,0.998614609241486,-0.000414317968534306,-0.0526183843612671,0.999974370002747,-5.63616631552577e-005,-0.00715793156996369,0.999974370002747,-5.63616631552577e-005,-0.00715793156996369,0.999974370002747,-5.63616631552577e-005,-0.00715793156996369,0.998894572257996,0.0470051988959312,0.000370119669241831,0.998894572257996,0.0470051988959312,0.000370119669241831,0.998894572257996,0.0470051988959312,0.000370119669241831,0.99989777803421,0.0143038565292954,0.000112628782517277,0.99989777803421,0.0143038565292954,0.000112628782517277,0.99989777803421,0.0143038565292954,0.000112628782517277,0.99994570016861,-0.0104309571906924,-8.21335343061946e-005,
- 0.99994570016861,-0.0104309571906924,-8.21335343061946e-005,0.99994570016861,-0.0104309571906924,-8.21335343061946e-005,-0.999321281909943,-0.00202728458680213,-0.0367807373404503,-0.999321281909943,-0.00202728458680213,-0.0367807373404503,-0.999321281909943,-0.00202728458680213,-0.0367807373404503,-0.999475002288818,-0.0017831273144111,-0.0323510132730007,-0.999475002288818,-0.0017831273144111,-0.0323510132730007,-0.999475002288818,-0.0017831273144111,-0.0323510132730007,-0.999620139598846,-0.00151682121213526,-0.0275194775313139,-0.999620139598846,-0.00151682121213526,-0.0275194775313139,-0.999620139598846,-0.00151682121213526,-0.0275194775313139,-0.979611814022064,-0.0110564297065139,-0.200595274567604,-0.979611814022064,-0.0110564297065139,-0.200595274567604,-0.979611814022064,-0.0110564297065139,-0.200595274567604,0.0314702652394772,0.999180912971497,0.0254425406455994,0.0314702652394772,0.999180912971497,0.0254425406455994,0.0314702652394772,0.999180912971497,0.0254425406455994,0.0314799435436726,0.999488174915314,-0.00570887932553887,0.0314799435436726,0.999488174915314,-0.00570887932553887,0.0314799435436726,0.999488174915314,-0.00570887932553887,0.0314804427325726,0.999504089355469,-0.000783823197707534,0.0314804427325726,0.999504089355469,-0.000783823197707534,0.0314804427325726,0.999504089355469,-0.000783823197707534,-0.00823093019425869,-0.999705910682678,-0.0228109359741211,-0.00823093019425869,-0.999705910682678,-0.0228109359741211,-0.00823093019425869,-0.999705910682678,-0.0228109359741211,-0.008104482665658,-0.999859035015106,-0.014705453068018,-0.008104482665658,-0.999859035015106,-0.014705453068018,-0.008104482665658,-0.999859035015106,-0.014705453068018,-0.00777606572955847,-0.999950587749481,0.00619524903595448,-0.00777606572955847,-0.999950587749481,0.00619524903595448,-0.00777606572955847,-0.999950587749481,0.00619524903595448,-0.994161665439606,0.106062613427639,0.0198317803442478,-0.994161665439606,0.106062613427639,0.0198317803442478,-0.994161665439606,0.106062613427639,0.0198317803442478,
- -0.993630051612854,0.110899865627289,0.02001385204494,-0.993630051612854,0.110899865627289,0.02001385204494,-0.993630051612854,0.110899865627289,0.02001385204494,-0.993424952030182,0.112710222601891,0.0200818963348866,-0.993424952030182,0.112710222601891,0.0200818963348866,-0.993424952030182,0.112710222601891,0.0200818963348866,0.000280922424281016,-0.99996018409729,-0.00891928747296333,0.000280922424281016,-0.99996018409729,-0.00891928747296333,0.000280922424281016,-0.99996018409729,-0.00891928747296333,0.000361390528269112,-0.999934196472168,-0.0114741483703256,0.000361390528269112,-0.999934196472168,-0.0114741483703256,0.000361390528269112,-0.999934196472168,-0.0114741483703256,0.000305302208289504,-0.999952971935272,-0.00969335157424212,0.000305302208289504,-0.999952971935272,-0.00969335157424212,0.000305302208289504,-0.999952971935272,-0.00969335157424212,0,-0.995661199092865,0.0930525735020638,0,-0.995661199092865,0.0930525735020638,0,-0.995661199092865,0.0930525735020638,0,-0.993863165378571,0.110617399215698,0,-0.993863165378571,0.110617399215698,0,-0.993863165378571,0.110617399215698,0,-0.993529617786407,0.113574311137199,0,-0.993529617786407,0.113574311137199,0,-0.993529617786407,0.113574311137199,0,-0.993693590164185,0.112129613757133,0,-0.993693590164185,0.112129613757133,0,-0.993693590164185,0.112129613757133,0.998414218425751,0.0131369093433023,0.05474017187953,0.998414218425751,0.0131369093433023,0.05474017187953,0.998414218425751,0.0131369093433023,0.05474017187953,0.997573554515839,0.0124738980084658,0.0684936940670013,0.997573554515839,0.0124738980084658,0.0684936940670013,0.997573554515839,0.0124738980084658,0.0684936940670013,0.998488187789917,0.013203308917582,0.0533593781292439,0.998488187789917,0.013203308917582,0.0533593781292439,0.998488187789917,0.013203308917582,0.0533593781292439,0.998376548290253,0.0131036816164851,0.0554309412837029,0.998376548290253,0.0131036816164851,0.0554309412837029,0.998376548290253,0.0131036816164851,0.0554309412837029,-0,0.996604025363922,0.0823445394635201,-0,0.996604025363922,0.0823445394635201,
- -0,0.996604025363922,0.0823445394635201,0,0.99401718378067,0.10922372341156,0,0.99401718378067,0.10922372341156,0,0.99401718378067,0.10922372341156,-0,0.992898523807526,0.118965215981007,-0,0.992898523807526,0.118965215981007,-0,0.992898523807526,0.118965215981007,-0,0.993797957897186,0.111201643943787,-0,0.993797957897186,0.111201643943787,-0,0.993797957897186,0.111201643943787,-0.0157426707446575,-0.999659538269043,0.0208075288683176,-0.0157426707446575,-0.999659538269043,0.0208075288683176,-0.0157426707446575,-0.999659538269043,0.0208075288683176,-0.0157456751912832,-0.999850392341614,0.00716396747156978,-0.0157456751912832,-0.999850392341614,0.00716396747156978,-0.0157456751912832,-0.999850392341614,0.00716396747156978,-0.0157411582767963,-0.999563455581665,0.0250062700361013,-0.0157411582767963,-0.999563455581665,0.0250062700361013,-0.0157411582767963,-0.999563455581665,0.0250062700361013,-0.0157340355217457,-0.999111235141754,0.0391075238585472,-0.0157340355217457,-0.999111235141754,0.0391075238585472,-0.0157340355217457,-0.999111235141754,0.0391075238585472,-0.985194265842438,0.171420499682426,-0.00269953557290137,-0.985194265842438,0.171420499682426,-0.00269953557290137,-0.985194265842438,0.171420499682426,-0.00269953557290137,-0.999408960342407,0.0343726724386215,-0.000541301909834147,-0.999408960342407,0.0343726724386215,-0.000541301909834147,-0.999408960342407,0.0343726724386215,-0.000541301909834147,-0.999911963939667,-0.0132745923474431,0.000209048710530624,-0.999911963939667,-0.0132745923474431,0.000209048710530624,-0.999911963939667,-0.0132745923474431,0.000209048710530624,-0.999663293361664,-0.0259445924311876,0.00040857627755031,-0.999663293361664,-0.0259445924311876,0.00040857627755031,-0.999663293361664,-0.0259445924311876,0.00040857627755031,0,0.995791852474213,-0.0916437283158302,0,0.995791852474213,-0.0916437283158302,0,0.995791852474213,-0.0916437283158302,0,0.994199991226196,-0.107547141611576,0,0.994199991226196,-0.107547141611576,0,0.994199991226196,-0.107547141611576,0,0.994246304035187,-0.107118338346481,
- 0,0.994246304035187,-0.107118338346481,0,0.994246304035187,-0.107118338346481,0,0.99369490146637,-0.112118013203144,0,0.99369490146637,-0.112118013203144,0,0.99369490146637,-0.112118013203144,-0.999869406223297,0.0155752887949348,0.00433540064841509,-0.999869406223297,0.0155752887949348,0.00433540064841509,-0.999869406223297,0.0155752887949348,0.00433540064841509,-0.999870955944061,0.0155937802046537,0.00386633165180683,-0.999870955944061,0.0155937802046537,0.00386633165180683,-0.999870955944061,0.0155937802046537,0.00386633165180683,-0.999677181243896,0.0165035352110863,-0.0193189438432455,-0.999677181243896,0.0165035352110863,-0.0193189438432455,-0.999677181243896,0.0165035352110863,-0.0193189438432455,-0.999875247478485,0.0157766044139862,-0.00077567168045789,-0.999875247478485,0.0157766044139862,-0.00077567168045789,-0.999875247478485,0.0157766044139862,-0.00077567168045789,-0.990804851055145,0.0208662152290344,-0.133679956197739,-0.990804851055145,0.0208662152290344,-0.133679956197739,-0.990804851055145,0.0208662152290344,-0.133679956197739,-0.996460974216461,0.0189167186617851,-0.0819002911448479,-0.996460974216461,0.0189167186617851,-0.0819002911448479,-0.996460974216461,0.0189167186617851,-0.0819002911448479,-0.998211562633514,0.0179646369069815,-0.0570171773433685,-0.998211562633514,0.0179646369069815,-0.0570171773433685,-0.998211562633514,0.0179646369069815,-0.0570171773433685,-0.998740494251251,0.0175783503800631,-0.0469939261674881,-0.998740494251251,0.0175783503800631,-0.0469939261674881,-0.998740494251251,0.0175783503800631,-0.0469939261674881,0.0236090775579214,0.999450862407684,0.0232549589127302,0.0236090775579214,0.999450862407684,0.0232549589127302,0.0236090775579214,0.999450862407684,0.0232549589127302,0.0236130114644766,0.999617397785187,0.0144110284745693,0.0236130114644766,0.999617397785187,0.0144110284745693,0.0236130114644766,0.999617397785187,0.0144110284745693,0.0236106775701046,0.999518692493439,0.0201232321560383,0.0236106775701046,0.999518692493439,0.0201232321560383,0.0236106775701046,0.999518692493439,0.0201232321560383,
- 0.023592771962285,0.99876070022583,0.0438233986496925,0.023592771962285,0.99876070022583,0.0438233986496925,0.023592771962285,0.99876070022583,0.0438233986496925,0.995916783809662,0.0895584598183632,-0.0113677876070142,0.995916783809662,0.0895584598183632,-0.0113677876070142,0.995916783809662,0.0895584598183632,-0.0113677876070142,0.995826184749603,0.0905556008219719,-0.0114063322544098,0.995826184749603,0.0905556008219719,-0.0114063322544098,0.995826184749603,0.0905556008219719,-0.0114063322544098,0.996558487415314,0.0821484327316284,-0.011081107892096,0.996558487415314,0.0821484327316284,-0.011081107892096,0.996558487415314,0.0821484327316284,-0.011081107892096,0.996042370796204,0.0881578698754311,-0.0113136358559132,0.996042370796204,0.0881578698754311,-0.0113136358559132,0.996042370796204,0.0881578698754311,-0.0113136358559132,1,-2.29092870540626e-006,-7.7499926476321e-009,1,-2.49402341978566e-006,-3.16456016946631e-009,1,-2.29983515964705e-006,-6.12288930668115e-009,1,-2.81753318631672e-006,-2.46985454310789e-008,1,-1.887957296276e-006,6.53731424549164e-009,1,-2.1464288693096e-006,2.65858624004522e-009,1,-2.49402341978566e-006,-3.16456016946631e-009,1,-2.29092870540626e-006,-7.7499926476321e-009,-1,-2.68073190312634e-008,-8.49850856354806e-009,-1,-5.82523682624014e-008,-3.45616202324095e-009,-0.999993979930878,-0.00347154284827411,-6.34471541971493e-009,-1,9.4335192102335e-008,-2.73908220549401e-008,-1,1.72173272972032e-007,1.03333235301761e-008,-1,-4.04081703209158e-007,4.21941415140736e-009,-1,-5.82523682624014e-008,-3.45616202324095e-009,-1,-2.68073190312634e-008,-8.49850856354806e-009,0.99999988079071,5.9449921536725e-005,-0.000637486344203353,0.999999821186066,-3.12124830088578e-005,-0.000637497752904892,0.99999988079071,0.000141355441883206,-0.000637475808616728,0.999999821186066,0.000110056796984281,0.000732966000214219,1,-8.1204780144617e-005,-7.2034608820104e-006,0.999999821186066,-1.19541743970331e-006,-0.000637493911199272,0.999999701976776,-0.000483282579807565,-0.000637554854620248,0.999999761581421,-0.000418871582951397,-0.000637546821963042,
- 0.999999761581421,-2.40490680880612e-006,0.000665412750095129,0.999999761581421,-1.92663060261111e-006,0.000675299321301281,1,-2.29983515964705e-006,-6.12288930668115e-009,1,-1.77265633283241e-006,-0,1,-2.49402341978566e-006,-3.16456016946631e-009,1,-2.1464288693096e-006,2.65858624004522e-009,1,-2.52338304562727e-006,-0,1,-2.49794038609252e-006,-0,0.999697387218475,0.0139489118009806,0.0202629938721657,1,-2.10256121135899e-006,0,0.999975800514221,0.00697170943021774,4.88046181246204e-009,0.999362647533417,0.0278980638831854,0.0222719740122557,4.03146855904989e-014,-1.44690102388267e-005,1,4.79717611120978e-012,-0.0017217145068571,0.999998569488525,1.9996599862071e-012,-0.000717681366950274,0.999999761581421,-5.55471684274278e-012,0.00199359725229442,0.999998033046722,1.3465433195553e-012,-0.000483276642626151,0.999999821186066,0.999574899673462,-0.0055391862988472,0.0286243800073862,0.999578893184662,-0.00579714262858033,0.0284310188144445,0.997851729393005,-1.30146497667738e-006,0.0655131042003632,0.997851729393005,-1.3016148159295e-006,0.0655131042003632,0.998970210552216,0.0128570348024368,-0.0435110777616501,0.999655961990356,0.00047079281648621,-0.0262254718691111,0.999578893184662,-0.00579714262858033,0.0284310188144445,0.999574899673462,-0.0055391862988472,0.0286243800073862,-0.99914675951004,-0.0232610125094652,0.034127876162529,-0.999662578105927,-0.0153592694550753,0.0209456495940685,-0.997945308685303,0.064069926738739,0.000507882505189627,-0.997934341430664,0.0642427131533623,0.000253945268923417,1,-8.1204780144617e-005,-7.2034608820104e-006,0.999999821186066,0.000110056796984281,0.000732966000214219,0.999999761581421,-1.92663060261111e-006,0.000675299321301281,0.999999761581421,-2.40490680880612e-006,0.000665412750095129,-0.992325127124786,-0.121473774313927,0.0231259129941463,-0.994535684585571,-0.104369536042213,-0.00240021105855703,-0.999662578105927,-0.0153592694550753,0.0209456495940685,-0.99914675951004,-0.0232610125094652,0.034127876162529,-0,0.0250570196658373,-0.999686002731323,0,-9.93880894384347e-006,-1,
- 0,-0.0250759199261665,-0.999685525894165,0,-0.00836656335741282,-0.999964952468872,0,-1.11115796244121e-005,-1,0,0.00834558252245188,-0.999965190887451,-0.0143129732459784,-0.502615869045258,-0.864391386508942,-0.0143129723146558,-0.502615809440613,-0.864391386508942,-0.0143129732459784,-0.502615869045258,-0.864391386508942,-0.0143129723146558,-0.502615809440613,-0.864391386508942,-1,-3.8560040138691e-007,3.29313962765809e-008,-1,-1.58526091809108e-007,8.16385270496767e-009,-1,-4.04081703209158e-007,4.21941415140736e-009,-1,1.72173272972032e-007,1.03333235301761e-008,1,-1.77265633283241e-006,-0,1,-2.29983515964705e-006,-6.12288930668115e-009,1,-2.49402341978566e-006,-3.16456016946631e-009,1,-2.49794038609252e-006,-0,0.996821165084839,-2.63404649558652e-006,-0.0796715840697289,0.996821165084839,-2.89314198198554e-006,-0.079671248793602,0.999655961990356,0.00047079281648621,-0.0262254718691111,0.998970210552216,0.0128570348024368,-0.0435110777616501,0,-4.96840038977098e-006,1,0,-5.98312635702314e-006,1,0,-6.92993762640981e-006,1,0,-8.82352651387919e-006,1,0,-5.91520029047388e-006,1,0,-2.93891594083107e-006,1,1,-1.8224060340799e-006,2.10698640756846e-008,0.999975800514221,0.00697170943021774,4.88046181246204e-009,1,-2.1464288693096e-006,2.65858624004522e-009,1,-1.887957296276e-006,6.53731424549164e-009,0.999975800514221,0.00697170943021774,4.88046181246204e-009,1,-2.10256121135899e-006,0,1,-2.52338304562727e-006,-0,1,-2.1464288693096e-006,2.65858624004522e-009,-0.999655902385712,-0.000474214757559821,-0.0262275524437428,-0.996821403503418,-1.05567380614957e-006,-0.0796690583229065,-0.996821522712708,2.23796746467997e-007,-0.0796673744916916,-0.998970210552216,-0.0128595996648073,-0.0435104444622993,-0.999579071998596,0.00579579686746001,0.0284265708178282,-0.999655902385712,-0.000474214757559821,-0.0262275524437428,-0.998970210552216,-0.0128595996648073,-0.0435104444622993,-0.999575018882751,0.00553743867203593,0.0286194123327732,-0.997852146625519,9.84759140010283e-007,0.0655066221952438,-0.999579071998596,0.00579579686746001,0.0284265708178282,
- -0.999575018882751,0.00553743867203593,0.0286194123327732,-0.997852206230164,1.83574869083714e-007,0.0655055567622185,-0.999999284744263,0.00118654652033001,0,-0.966562449932098,0.255681812763214,0.0195913203060627,-0.45511469244957,-0.890375137329102,0.0101427473127842,-0.999993979930878,-0.00347154284827411,-6.34471541971493e-009,-1,-2.24243535740243e-007,0,-0.999999284744263,0.00118654652033001,0,-0.999993979930878,-0.00347154284827411,-6.34471541971493e-009,-1,-5.82523682624014e-008,-3.45616202324095e-009,-1,5.32330318492313e-007,0,-1,-5.06395451793651e-007,0,-1,-4.04081703209158e-007,4.21941415140736e-009,-1,-1.58526091809108e-007,8.16385270496767e-009,-0.999999761581421,-1.26058625937731e-006,-0.000665543251670897,-1,5.32330318492313e-007,0,-1,-1.58526091809108e-007,8.16385270496767e-009,-0.999999761581421,-7.28479278677696e-007,-0.000675433198921382,-1,-5.06395451793651e-007,0,-1,-2.24243535740243e-007,0,-1,-5.82523682624014e-008,-3.45616202324095e-009,-1,-4.04081703209158e-007,4.21941415140736e-009,-0.99999725818634,0.0023661688901484,1.68467795447214e-005,-0.999999761581421,-1.26058625937731e-006,-0.000665543251670897,-0.999999761581421,-7.28479278677696e-007,-0.000675433198921382,-0.999994337558746,0.00331812375225127,-0.000512268452439457,-0.999999761581421,9.28321355786466e-007,0.000713579589501023,-0.99999725818634,0.0023661688901484,1.68467795447214e-005,-0.999994337558746,0.00331812375225127,-0.000512268452439457,-0.999997973442078,0.00186527916230261,0.000713910150807351,-0.999988257884979,0.00479492172598839,0.000714424590114504,-0.999998927116394,0.00127031852025539,0.000713804853148758,-0.999996781349182,-0.00246574287302792,0.000713138317223638,-0.999999105930328,-0.00105701596476138,0.000713390705641359,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,8.96952343509838e-008,-1,0,0,-1,0,0,-1,0,8.96952343509838e-008,-1,0,0,-1,0,8.96952343509838e-008,-1,0,8.96952343509838e-008,-1,0,8.96952343509838e-008,-1,0,-3.58860120286408e-007,-1,0,0,-1,0,8.96952343509838e-008,-1,0,-3.58860120286408e-007,-1,-1.65120920375109e-016,1.66731112472007e-007,
- -1,0,-3.58860120286408e-007,-1,0,-3.58860120286408e-007,-1,1.90273537274045e-016,-1.92129022025256e-007,-1,9.38865355237795e-007,-2.27793066187587e-006,-1,-1.65120920375109e-016,1.66731112472007e-007,-1,1.90273537274045e-016,-1.92129022025256e-007,-1,9.38538391892507e-007,8.07482479103783e-007,-1,9.38865355237795e-007,-2.27793066187587e-006,-1,9.38538391892507e-007,8.07482479103783e-007,-1,1.48254196119524e-006,-4.84159136249218e-006,-1,1.48254162013473e-006,-5.51698849449167e-006,-1,1.48254287068994e-006,5.71459679576947e-007,0.0143119757995009,0.50258082151413,-0.864411771297455,0.0143119767308235,0.50258082151413,-0.864411771297455,0.0143119757995009,0.50258082151413,-0.864411771297455,0.0143119767308235,0.50258082151413,-0.864411771297455,-0.999677419662476,-0.0142600918188691,-0.0210114922374487,-0.994764566421509,-0.102179735898972,0.00164780660998076,-0.992560207843781,-0.119377791881561,-0.0239391177892685,-0.999155163764954,-0.0222517549991608,-0.0345512703061104,-0.997900664806366,0.0647613704204559,0.000508454628288746,-0.999677419662476,-0.0142600918188691,-0.0210114922374487,-0.999155163764954,-0.0222517549991608,-0.0345512703061104,-0.997912049293518,0.0645884349942207,0.000254226848483086,-0.0705529898405075,0.0937907323241234,-0.993088901042938,-0.299530416727066,-0.18864718079567,-0.935250699520111,-0.31738069653511,-0.387022942304611,-0.865726709365845,-0.223856806755066,-0.0809877142310143,-0.971251308917999,-0.256680697202683,-0.014322604984045,-0.966390132904053,-0.27507358789444,-0.1115807518363,-0.954926192760468,-0.293304830789566,-0.124491780996323,-0.94787871837616,-0.39917653799057,-0.00727486750110984,-0.916845202445984,-0.297197729349136,0.0295757278800011,-0.954357862472534,-0.549428522586823,0.0183646902441978,-0.83533900976181,-0.592008888721466,-0.0143021615222096,-0.805804491043091,-0.256680697202683,-0.014322604984045,-0.966390132904053,-0.37284854054451,-0.0287487804889679,-0.927446842193604,-0.514973759651184,-0.0670827403664589,-0.85457706451416,-0.27507358789444,-0.1115807518363,-0.954926192760468,
- 0.257249236106873,0.49012091755867,-0.832829177379608,0.127046197652817,0.383528143167496,-0.914748847484589,-0.0705529898405075,0.0937907323241234,-0.993088901042938,0.170009046792984,0.132195383310318,-0.976535379886627,0.0926550999283791,0.161547437310219,-0.982505738735199,-0.0776421651244164,0.0830383747816086,-0.993517100811005,0.100175857543945,0.143159180879593,-0.984616816043854,0.216443777084351,0.0879295691847801,-0.972327291965485,0.119681306183338,0.105234079062939,-0.987219452857971,0.0926550999283791,0.161547437310219,-0.982505738735199,0.170009046792984,0.132195383310318,-0.976535379886627,-0.39917653799057,-0.00727486750110984,-0.916845202445984,0.207614660263062,0.11501581966877,-0.971425533294678,0.119698569178581,0.0844303518533707,-0.989213705062866,0.106571435928345,0.144453972578049,-0.983755886554718,-0.297197729349136,0.0295757278800011,-0.954357862472534,0.119698569178581,0.0844303518533707,-0.989213705062866,-0.0705529898405075,0.0937907323241234,-0.993088901042938,0.127046197652817,0.383528143167496,-0.914748847484589,-0.299530416727066,-0.18864718079567,-0.935250699520111,-0.0776421651244164,0.0830383747816086,-0.993517100811005,-0.256680697202683,-0.014322604984045,-0.966390132904053,-0.223856806755066,-0.0809877142310143,-0.971251308917999,0.0926550999283791,0.161547437310219,-0.982505738735199,0.119681306183338,0.105234079062939,-0.987219452857971,-0.256680697202683,-0.014322604984045,-0.966390132904053,0.119681306183338,0.105234079062939,-0.987219452857971,0.0131802354007959,0.0796034783124924,-0.996739506721497,-0.37284854054451,-0.0287487804889679,-0.927446842193604,0.358845740556717,0.134103983640671,-0.923713088035584,0.119698569178581,0.0844303518533707,-0.989213705062866,0.207614660263062,0.11501581966877,-0.971425533294678,0.106571435928345,0.144453972578049,-0.983755886554718,0.119698569178581,0.0844303518533707,-0.989213705062866,0.358845740556717,0.134103983640671,-0.923713088035584,0.246296837925911,0.33199867606163,-0.910557329654694,-0.0539247021079063,0.118410937488079,-0.991499304771423,
- 0.127046197652817,0.383528143167496,-0.914748847484589,0.257249236106873,0.49012091755867,-0.832829177379608,-0.299530416727066,-0.18864718079567,-0.935250699520111,0.127046197652817,0.383528143167496,-0.914748847484589,-0.0539247021079063,0.118410937488079,-0.991499304771423,-0.308430343866348,-0.130892261862755,-0.942198514938354,-0.31738069653511,-0.387022942304611,-0.865726709365845,-0.299530416727066,-0.18864718079567,-0.935250699520111,-0.308430343866348,-0.130892261862755,-0.942198514938354,-0.347514271736145,-0.26017352938652,-0.900857150554657,-0.256680697202683,-0.014322604984045,-0.966390132904053,0.119681306183338,0.105234079062939,-0.987219452857971,-0.37284854054451,-0.0287487804889679,-0.927446842193604,-0.37284854054451,-0.0287487804889679,-0.927446842193604,-0.39917653799057,-0.00727486750110984,-0.916845202445984,-0.514973759651184,-0.0670827403664589,-0.85457706451416,-0.514973759651184,-0.0670827403664589,-0.85457706451416,-0.39917653799057,-0.00727486750110984,-0.916845202445984,-0.592008888721466,-0.0143021615222096,-0.805804491043091,0.119698569178581,0.0844303518533707,-0.989213705062866,-0.297197729349136,0.0295757278800011,-0.954357862472534,-0.39917653799057,-0.00727486750110984,-0.916845202445984,-0.0776421651244164,0.0830383747816086,-0.993517100811005,0.0926550999283791,0.161547437310219,-0.982505738735199,-0.256680697202683,-0.014322604984045,-0.966390132904053,0.119681306183338,0.105234079062939,-0.987219452857971,0.207614660263062,0.11501581966877,-0.971425533294678,0.0131802354007959,0.0796034783124924,-0.996739506721497,0.358845740556717,0.134103983640671,-0.923713088035584,0.207614660263062,0.11501581966877,-0.971425533294678,0.119681306183338,0.105234079062939,-0.987219452857971,0.216443777084351,0.0879295691847801,-0.972327291965485,0.0131802354007959,0.0796034783124924,-0.996739506721497,0.207614660263062,0.11501581966877,-0.971425533294678,-0.39917653799057,-0.00727486750110984,-0.916845202445984,-0.37284854054451,-0.0287487804889679,-0.927446842193604,0.0131802354007959,0.0796034783124924,-0.996739506721497,
- -0.39917653799057,-0.00727486750110984,-0.916845202445984,0.100175857543945,0.143159180879593,-0.984616816043854,-0.0776421651244164,0.0830383747816086,-0.993517100811005,-0.0539247021079063,0.118410937488079,-0.991499304771423,0.246296837925911,0.33199867606163,-0.910557329654694,-0.308430343866348,-0.130892261862755,-0.942198514938354,-0.0539247021079063,0.118410937488079,-0.991499304771423,-0.0776421651244164,0.0830383747816086,-0.993517100811005,-0.223856806755066,-0.0809877142310143,-0.971251308917999,-0.347514271736145,-0.26017352938652,-0.900857150554657,-0.308430343866348,-0.130892261862755,-0.942198514938354,-0.223856806755066,-0.0809877142310143,-0.971251308917999,-0.293304830789566,-0.124491780996323,-0.94787871837616,-0.0430007241666317,0.459321290254593,-0.887228786945343,-0.622982382774353,-0.782222986221313,0.0044952048920095,0.0443493165075779,-0.457992434501648,0.887849092483521,0.678122758865356,0.647034764289856,0.348562240600586,-0.00131594110280275,-0.501921117305756,-0.864912390708923,-0.514450311660767,-0.156102418899536,0.843192100524902,-0.00138658296782523,0.499386757612228,0.86637806892395,0.589420258998871,0.304951637983322,-0.748056352138519,-0.45511469244957,-0.890375137329102,0.0101427473127842,-0.966562449932098,0.255681812763214,0.0195913203060627,0.0155194345861673,0.999849617481232,-0.00773736648261547,0.688952684402466,0.63824999332428,-0.343484044075012,0,0,1,-0.418332785367966,0.444655984640121,-0.792009294033051,0,0,-1,0.571313560009003,-0.607262969017029,0.552116334438324,0,1,0,-0.416923940181732,-0.908893883228302,-0.00929165631532669,0,-1,0,0.828471183776855,0.378194183111191,0.413043200969696
- }
- TangentsW: *1954 {
- 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
- }
- }
- LayerElementTangent: 1 {
- Version: 102
- Name: "uvSet"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *5862 {
- a: -0.0278997123241425,0.885815799236298,0.463197827339172,-0.0738556310534477,0.884262502193451,0.461112976074219,0.0669259056448936,0.884687602519989,0.461355358362198,0.0670067891478539,0.880529701709747,0.469230800867081,0.0691818818449974,0.878609836101532,0.472502470016479,-0.0277713630348444,0.881740748882294,0.470916122198105,-0.0669326782226563,-0.884352266788483,0.461996853351593,0.0278913471847773,-0.885550260543823,0.463705539703369,-0.0694828256964684,-0.882431864738464,0.465280711650848,0.0283003821969032,-0.898537039756775,0.437984615564346,-0.0666341707110405,-0.897414207458496,0.436127990484238,0.073663093149662,-0.89701521396637,0.435818165540695,-0.0346729904413223,0.880693912506104,0.472415059804916,-0.0596334710717201,0.879860520362854,0.471475690603256,0.0702258348464966,0.879359185695648,0.47095200419426,0.070241242647171,0.900357067584991,0.429445385932922,0.0496740601956844,0.901229441165924,0.430485814809799,-0.0354932323098183,0.901528120040894,0.431262731552124,-0.0702328681945801,-0.902751445770264,0.424390614032745,0.0355880632996559,-0.903936803340912,0.426182806491852,-0.0498047396540642,-0.903600335121155,0.425471425056458,0.0346620865166187,-0.880416989326477,0.472931832075119,-0.0702246725559235,-0.879081964492798,0.471469432115555,0.0596304126083851,-0.879583179950714,0.471993267536163,-0.0561885014176369,-0.891992449760437,0.448544681072235,-0.0667566433548927,-0.892435252666473,0.446209460496902,0.0211137738078833,-0.89381617307663,0.447936207056046,-0.0667176693677902,-0.894069910049438,0.442930907011032,0.0667137801647186,-0.89423018693924,0.442607790231705,0.0211523585021496,-0.895449459552765,0.44466033577919,-0.020883334800601,0.884060978889465,0.466904819011688,0.0669661611318588,0.882660806179047,0.465215414762497,0.0486551262438297,0.882743060588837,0.467330068349838,-0.0632868409156799,0.888547360897064,0.454399168491364,0.0668459385633469,0.888490796089172,0.453999757766724,-0.0210206862539053,0.889875411987305,0.455719321966171,0.0363593474030495,-0.0731313452124596,0.996659338474274,
- 0.0484688840806484,-0.0948386788368225,0.994312047958374,0.977040350437164,-0.193861737847328,0.0883742570877075,0.993654906749725,-0.0702167451381683,0.0878621563315392,0.0480716452002525,-0.0617502853274345,0.996933400630951,0.997493028640747,-0.00803606677800417,0.0703088194131851,0.99749630689621,0.000588618568144739,0.0707165151834488,0.997490227222443,0.00308869197033346,-0.0707369223237038,0.996203005313873,0.0055905687622726,0.0868813693523407,0.99749881029129,-0.0018195086158812,-0.0706602334976196,0.997503638267517,-0.00410686759278178,0.0704952031373978,0.996239125728607,0.00672017829492688,-0.086386576294899,0.0482370890676975,0.0750094205141068,-0.996015548706055,0.992854535579681,0.0952690616250038,-0.071860060095787,0.99595034122467,-0.0164621192961931,-0.0883851945400238,0.995644271373749,0.0598357282578945,-0.0714997425675392,0.0476977936923504,0.033957589417696,-0.998284459114075,0.0469399206340313,0.00795316137373447,-0.998866081237793,-0.0379013828933239,-0.998635113239288,0.0359385088086128,-0.996880114078522,-0.0783731192350388,0.00937722157686949,-0.0328662768006325,-0.994677424430847,0.0976555943489075,-0.929910719394684,-0.0281553436070681,-0.366706311702728,-0.883392870426178,-0.106333434581757,-0.456410139799118,-0.0523664765059948,-0.902396619319916,-0.427712917327881,-0.998490512371063,-0.0548086948692799,-0.00359118659980595,-0.998487412929535,0.0548682361841202,-0.00352428131736815,-0.996884226799011,-0.0787143856287003,0.00508318096399307,-0.998481035232544,0.0547378920018673,-0.00627580936998129,-0.998478353023529,-0.0545072443783283,-0.0083660064265132,-0.997478902339935,0.0709055215120316,0.00288102147169411,-0.0548312701284885,0.746910512447357,0.66265994310379,-0.892351269721985,0.0702480748295784,0.44584122300148,-0.925531208515167,0.021099366247654,0.378083080053329,-0.99848473072052,0.05479446798563,-0.00508240563794971,-0.0313937291502953,0.999505519866943,-0.00183215574361384,-0.0324200242757797,0.997435867786407,-0.0638016611337662,0.0393774323165417,0.000962800288107246,0.999223947525024,
- -0.0315191186964512,0.00122969527728856,0.999502420425415,0.0471436269581318,0.00303011131472886,0.998883545398712,-0.0347836129367352,0.111189439892769,0.993190348148346,0.0434427000582218,0.110520660877228,0.9929239153862,-0.0321633368730545,0.111987225711346,0.993189096450806,-0.03139952942729,-0.0100840665400028,0.99945604801178,0.038883101195097,-0.0115464022383094,0.999177157878876,-0.0160436611622572,-0.00947303045541048,0.999826431274414,-0.0312774702906609,0.00643038796260953,-0.999490082263947,0.0469814799726009,0.00664887949824333,-0.998873651027679,0.0472637563943863,0.00463309697806835,-0.998871803283691,0.0502938479185104,-0.107417672872543,-0.992941081523895,-0.0346919484436512,-0.107914738357067,-0.993554651737213,-0.0330010205507278,-0.108458794653416,-0.993553042411804,0.0468317046761513,0.0113512212410569,-0.998838305473328,-0.0313146524131298,0.0104299001395702,-0.999455153942108,-0.0160401929169893,0.0093622887507081,-0.99982762336731,-0.0349852070212364,-0.993834555149078,0.105208836495876,-0.995080709457397,-0.07372235506773,0.0661773756146431,-0.0336583368480206,-0.985499262809753,0.166307926177979,-0.928556144237518,-0.0278640948235989,-0.370144635438919,-0.881856143474579,-0.106444552540779,-0.459346890449524,-0.0524287782609463,-0.900951743125916,-0.430740267038345,-0.998480021953583,-0.0545296519994736,-0.00801174622029066,-0.998473465442657,0.0546583086252213,-0.00795152224600315,-0.996869385242462,-0.0790633112192154,0.000671888992656022,-0.998481214046478,0.0547402612864971,-0.00622589141130447,-0.998478591442108,-0.0545103922486305,-0.00831623561680317,-0.997479140758514,0.0708996802568436,0.00293022044934332,-0.0549102164804935,0.743216991424561,0.666793346405029,-0.890306055545807,0.0703270584344864,0.449899137020111,-0.92373114824295,0.0204455107450485,0.382495433092117,-0.997628509998322,0.0568223968148232,0.0388410352170467,-0.0335910357534885,0.998403429985046,0.0454122498631477,-0.0317395403981209,0.999355912208557,-0.0167507771402597,0.0393908098340034,0.00130354450084269,0.999223053455353,
- -0.0315335243940353,0.00168811634648591,0.999501287937164,0.047136764973402,0.00346315070055425,0.998882532119751,-0.034783560782671,0.111187383532524,0.99319064617157,0.0434426292777061,0.110518589615822,0.992924153804779,-0.0321633256971836,0.11198515444994,0.993189334869385,-0.03139952942729,-0.0100840665400028,0.99945604801178,0.038883101195097,-0.0115464022383094,0.999177157878876,-0.0160436611622572,-0.00947303045541048,0.999826431274414,-0.0312778241932392,0.00641914643347263,-0.999490141868591,0.0469812676310539,0.00665555987507105,-0.998873591423035,0.0472636446356773,0.00462641892954707,-0.998871743679047,0.0502938069403172,-0.107415765523911,-0.992941379547119,-0.0346920751035213,-0.107919245958328,-0.993554174900055,-0.0330010540783405,-0.108461439609528,-0.99355274438858,0.0468317046761513,0.0113512212410569,-0.998838305473328,-0.0313146524131298,0.0104299001395702,-0.999455153942108,-0.0160401929169893,0.0093622887507081,-0.99982762336731,-0.0349924452602863,-0.993852019309998,0.105042450129986,-0.995088934898376,-0.0737338736653328,0.0660405084490776,-0.0336566232144833,-0.985527098178864,0.166143253445625,-0.927809119224548,-0.0277044586837292,-0.372025191783905,-0.880696535110474,-0.106527142226696,-0.461547166109085,-0.0524216964840889,-0.901117146015167,-0.430395007133484,-0.998481273651123,-0.0550861842930317,0.000822125177364796,-0.998481750488281,0.0550767257809639,0.00089535879669711,-0.996879637241364,-0.0783645734190941,0.00948623660951853,-0.998409330844879,0.0543161407113075,-0.0151192443445325,-0.998395323753357,-0.0539444200694561,-0.017228152602911,-0.997391164302826,0.071944922208786,-0.00590258138254285,-0.0565091781318188,0.618241965770721,0.783953845500946,-0.81212317943573,0.0721175894141197,0.579012095928192,-0.851138114929199,-0.00169727706816047,0.524939060211182,-0.986858487129211,0.0470911115407944,-0.154572859406471,-0.0234652701765299,0.986661016941071,-0.161088213324547,-0.0341687873005867,0.974935293197632,-0.219849243760109,0.0393910333514214,0.00130910065490752,0.999223113059998,
- -0.0315336920320988,0.0016933964798227,0.999501347541809,0.0471366718411446,0.00346849765628576,0.998882412910461,-0.0347835123538971,0.111185856163502,0.993190705776215,0.0434428341686726,0.110524512827396,0.992923498153687,-0.0321633294224739,0.111986421048641,0.993189096450806,-0.0313995219767094,-0.0100846337154508,0.99945604801178,0.0388832055032253,-0.0115436483174562,0.999177098274231,-0.0160435941070318,-0.0094708614051342,0.999826431274414,-0.0312776528298855,0.00642460817471147,-0.999490082263947,0.0469813868403435,0.00665201293304563,-0.998873710632324,0.0472636967897415,0.00462958635762334,-0.998871743679047,0.0502937026321888,-0.107412077486515,-0.992941677570343,-0.0346920639276505,-0.107918798923492,-0.9935542345047,-0.0330010391771793,-0.108460076153278,-0.993552982807159,0.0468314215540886,0.0113600762560964,-0.998838186264038,-0.0313147231936455,0.0104254493489861,-0.999455213546753,-0.016040463000536,0.00937096308916807,-0.999827444553375,0.995698690414429,0.0589353553950787,-0.0714894235134125,0.0476892925798893,0.0333556532859802,-0.998305141925812,0.0469590537250042,0.00735116237774491,-0.998869776725769,0.0489154532551765,0.13879619538784,-0.989112198352814,0.989781856536865,0.123030290007591,-0.0720794945955276,0.995279788970947,0.0325327254831791,-0.0914320051670074,0.997489929199219,-0.00538467755541205,-0.0706034600734711,0.998472332954407,-0.00639258185401559,0.0548829063773155,0.995520293712616,0.00300493673421443,-0.0945014283061028,0.998485267162323,-0.00108349416404963,0.0550090298056602,0.997499048709869,-0.000721033080480993,-0.0706775560975075,0.996211707592011,0.00177338521461934,0.0869427248835564,0.995539486408234,0.0121595459058881,-0.0935587286949158,0.998482406139374,-0.00371422292664647,0.0549467243254185,0.225965768098831,-0.651411294937134,0.724294722080231,0.996177673339844,-0.00690942769870162,0.0870775356888771,0.171786606311798,-0.166235223412514,0.971007347106934,0.998270511627197,0.0194411017000675,0.055481992661953,0.0386674515902996,-0.0169544834643602,0.99910831451416,
- 0.157909750938416,-0.0811648219823837,0.984112203121185,0.992014169692993,-0.0903171077370644,0.0880379378795624,0.969993114471436,0.232104107737541,-0.0723948404192925,0.0490312948822975,0.15199513733387,-0.987164318561554,0.042837493121624,0.126473098993301,-0.991044640541077,0.0476540587842464,0.0308742672204971,-0.99838662147522,0.997133314609528,0.0259640663862228,-0.0710718631744385,0.992903828620911,-0.0627229586243629,-0.101033695042133,0.997498989105225,-0.00143533630762249,-0.0706662982702255,0.998484671115875,-0.00243569118902087,0.0549770519137383,0.995538890361786,0.00692705996334553,-0.0940985381603241,0.998477399349213,0.00268053356558084,0.055097509175539,0.997490406036377,0.00304409326054156,-0.0707362294197083,0.996203184127808,0.00554592395201325,0.0868820920586586,0.995521068572998,0.016219912096858,-0.0931380465626717,0.998484551906586,-5.83744549658149e-005,0.0550331994891167,0.225072279572487,-0.635267615318298,0.738767564296722,0.996177017688751,-0.00698777986690402,0.087078720331192,0.171798408031464,-0.166310518980026,0.97099244594574,0.998272120952606,0.0193627681583166,0.0554802305996418,0.0314765870571136,-0.183086827397347,0.982592701911926,0.181797608733177,-0.232350841164589,0.955490827560425,0.91961544752121,-0.383207887411118,0.0863664746284485,-0.0706887245178223,-0.997496426105499,-0.00201052473857999,0.00789377931505442,-0.9999680519104,-0.00127031083684415,-0.0629070699214935,-0.998018682003021,-0.00126200122758746,0.00786483101546764,-0.999969005584717,0.000568268296774477,-0.0706888735294342,-0.997498512268066,6.68150435199974e-019,0.0550294257700443,-0.99848461151123,-0.000656136311590672,0.0392726175487041,-0.999226272106171,-0.00212720851413906,0.0550294257700443,-0.99848461151123,-0.000656136311590672,-0.0706888735294342,-0.997498512268066,6.68150435199974e-019,-0.0623066648840904,-0.997902512550354,-0.0175683982670307,0.0387244634330273,-0.999063014984131,-0.019327050074935,-0.0706788524985313,-0.997357130050659,-0.0168357491493225,0.178466096520424,0.983365952968597,0.0337823405861855,
- -0.0594082474708557,0.998009324073792,-0.0211717933416367,0.193982258439064,0.980375289916992,0.0351477935910225,0.113204807043076,0.993440210819244,-0.0161625612527132,-0.0316100791096687,0.995257019996643,-0.0920015797019005,0.186553493142128,0.982423067092896,-0.00655188877135515,-0.0510953180491924,0.997790932655334,-0.0424582958221436,0.11248729377985,0.993602514266968,-0.0100317541509867,-0.182942420244217,0.980251491069794,-0.0750939771533012,-0.19101057946682,0.98047262430191,-0.0467807054519653,-0.21462981402874,0.975571870803833,0.0468359068036079,-0.0883263722062111,0.99464875459671,0.053594347089529,0.0790413096547127,0.996578812599182,-0.0241528302431107,-0.187423631548882,0.980478882789612,-0.0594451725482941,0.111943259835243,0.993699908256531,-0.00540722161531448,-0.158364236354828,0.974696755409241,-0.157756149768829,0.0781519263982773,0.996837973594666,0.0143627803772688,0.0836329311132431,0.995118737220764,-0.0523857288062572,-0.206754684448242,0.978338003158569,0.0103562464937568,0.0588713102042675,0.996354162693024,0.0617460235953331,-0.268645107746124,0.963237881660461,0.00160392466932535,-0.239132553339005,0.96778130531311,-0.0788353979587555,0.070355162024498,0.997477889060974,0.00937999412417412,-0.278628706932068,0.958720028400421,-0.0567619986832142,-0.435222029685974,0.900252640247345,-0.0112684443593025,-0.279155194759369,0.958754479885101,-0.0535020343959332,0.069254569709301,0.997494518756866,0.0144400745630264,-0.51906555891037,0.854054033756256,-0.034098207950592,-0.436832398176193,0.898561954498291,-0.0419984422624111,0.0507244653999805,0.993860304355621,0.0983298495411873,-0.512065827846527,0.8583944439888,0.030782924965024,0.0661159306764603,0.997395634651184,0.0288215912878513,-0.00770835764706135,0.999968469142914,-0.001914122258313,0.0100541682913899,0.98857980966568,-0.150363177061081,0.124732784926891,0.959377586841583,-0.253054201602936,0.380129218101501,0.858974814414978,-0.343021899461746,-0.370144069194794,0.925608158111572,-0.0790119990706444,-0.517955958843231,0.855116844177246,-0.0222906917333603,
- -0.0150693757459521,0.998081922531128,0.0600450225174427,-0.0150693757459521,0.998081922531128,0.0600450225174427,-0.392301738262177,0.919126391410828,-0.0361390076577663,-0.370144069194794,0.925608158111572,-0.0790119990706444,-0.0077108945697546,0.999968469142914,-0.00189240544568747,0.131502255797386,0.964847266674042,0.227545827627182,0.18889057636261,0.969905316829681,0.153636023402214,0.0070155686698854,0.992122650146484,-0.125073567032814,0.282640606164932,0.946572542190552,-0.155289262533188,0.337173461914063,0.932726085186005,-0.127812683582306,0.00105663563590497,0.997156322002411,-0.0753537937998772,0.322156637907028,0.944272756576538,-0.0675576850771904,0.393230885267258,0.916979372501373,-0.0672183930873871,-0.0306243933737278,0.0517321228981018,-0.998191356658936,-0.994098484516144,-0.0529490560293198,-0.0946817621588707,-0.0186746288090944,0.0952827632427216,-0.99527508020401,-0.972623705863953,0.201685100793839,-0.115439176559448,-0.98622989654541,-0.128385409712791,-0.10424866527319,-0.0324829630553722,-0.0684140846133232,-0.997128069400787,-0.0367112569510937,-0.183192268013954,-0.98239141702652,-0.985748946666718,0.140045896172524,-0.0931996777653694,-0.0336652509868145,-0.166971743106842,-0.985386788845062,-0.999189972877502,-0.00587305845692754,-0.0398112200200558,-0.998019993305206,-0.00580840604379773,0.0626287683844566,-0.996217846870422,0.0136913266032934,-0.0858051478862762,-0.977529168128967,-0.0791230276226997,-0.195387482643127,-0.0333454124629498,-0.997571706771851,-0.0611458867788315,-0.0148789463564754,-0.999721884727478,-0.018302695825696,-0.997820556163788,0.0120264096185565,0.0648809000849724,-0.0304907225072384,-0.104085385799408,0.994100868701935,-0.0197122562676668,-0.130220115184784,0.991289138793945,-0.0435234718024731,-0.838110685348511,-0.543761134147644,-0.923909962177277,-0.0911027193069458,-0.371605485677719,-0.989702999591827,-0.123821005225182,0.0718090757727623,-0.989702999591827,-0.123821005225182,0.0718090757727623,-0.922718822956085,-0.37254935503006,0.0989796668291092,
- -0.0435234718024731,-0.838110685348511,-0.543761134147644,-0.99921840429306,0.039440281689167,-0.00266164960339665,-0.999205410480499,-0.0322510339319706,-0.0234225299209356,-0.998005509376526,-0.0628503262996674,0.0059002973139286,-0.0318892188370228,0.0589083656668663,0.997753918170929,-0.988581717014313,0.128281816840172,0.0790568739175797,-0.972300112247467,-0.202975451946259,0.115902677178383,-0.998022258281708,-0.00788339506834745,0.0623654238879681,-0.999224364757538,-0.0136248897761106,-0.0369464419782162,-0.999224364757538,0.0136881964281201,0.0369230359792709,-0.985816836357117,-0.139660865068436,0.093060165643692,-0.0367314592003822,0.183982074260712,0.982243061065674,-0.0323324501514435,0.15961654484272,0.986649572849274,-0.0327415056526661,0.998625934123993,0.0409175343811512,-0.985978424549103,0.0517178252339363,0.158656343817711,-0.0158805958926678,0.9998699426651,-0.00284952786751091,-0.999220907688141,0.028388399630785,0.0274177249521017,-0.999224364757538,0.0136881964281201,0.0369230359792709,-0.999224364757538,-0.0136248897761106,-0.0369464419782162,-0.0435207299888134,0.838271677494049,0.543513119220734,-0.922131836414337,0.373864591121674,-0.0994906425476074,-0.989605069160461,0.124306596815586,-0.0723167881369591,-0.999220907688141,-0.0283779669553041,-0.0274285152554512,-0.999220907688141,0.0283640585839748,0.0274428967386484,-0.999224364757538,-0.0136692030355334,-0.0369300581514835,-0.989605069160461,0.124306596815586,-0.0723167881369591,-0.924422204494476,0.0664873868227005,0.375530332326889,-0.0435207299888134,0.838271677494049,0.543513119220734,-0.999220907688141,-0.0283779669553041,-0.0274285152554512,-0.999218583106995,0.0394032448530197,-0.00312838377431035,-0.999220907688141,0.0283640585839748,0.0274428967386484,-0.030629713088274,0.0514258667826653,-0.998207092285156,-0.994088292121887,-0.053105715662241,-0.0947021767497063,-0.0186679121106863,0.0950586944818497,-0.995296716690063,-0.972450256347656,0.202378213405609,-0.115688160061836,-0.986157774925232,-0.128888741135597,-0.104310773313046,
- -0.0324827879667282,-0.0684012472629547,-0.997128963470459,-0.0367092601954937,-0.183114171028137,-0.982406139373779,-0.985658824443817,0.140556216239929,-0.0933845862746239,-0.0336650460958481,-0.166951909661293,-0.985390245914459,-0.999190032482147,-0.00588328950107098,-0.0398074425756931,-0.998019993305206,-0.00580580066889524,0.0626291036605835,-0.996217846870422,0.0136941894888878,-0.0858047604560852,-0.991105616092682,-0.047820370644331,-0.124188937246799,-0.0323429740965366,-0.999090135097504,-0.0278000049293041,-0.0165251865983009,-0.999726712703705,0.0165411159396172,-0.997814834117889,0.0123117752373219,0.0649167746305466,-0.0304929781705141,-0.103883258998394,0.994121968746185,-0.0197061132639647,-0.130011349916458,0.991316676139832,-0.0435230545699596,-0.838135540485382,-0.543723106384277,-0.925944089889526,-0.0628445893526077,-0.372395098209381,-0.989636242389679,-0.124152146279812,0.0721553042531013,-0.989636242389679,-0.124152146279812,0.0721553042531013,-0.922233998775482,-0.373636096715927,0.0994018614292145,-0.0435230545699596,-0.838135540485382,-0.543723106384277,-0.0318894945085049,0.0589544177055359,0.997751176357269,-0.988576710224152,0.128318399190903,0.0790612027049065,-0.972307741641998,-0.202945187687874,0.115891806781292,-0.998022258281708,-0.00788339879363775,0.0623654238879681,-0.999224364757538,-0.0136248935014009,-0.0369464419782162,-0.999224364757538,0.0136881927028298,0.0369230359792709,-0.985819816589355,-0.139643520116806,0.0930538773536682,-0.0367319881916046,0.184002742171288,0.982239246368408,-0.0323325023055077,0.159637197852135,0.986646115779877,-0.999220907688141,-0.0283779669553041,-0.0274285152554512,-0.999220907688141,0.0283640585839748,0.0274428967386484,-0.999224364757538,-0.0136692030355334,-0.0369300581514835,-0.999220907688141,0.0283883977681398,0.0274177268147469,-0.999224364757538,0.0136881927028298,0.0369230359792709,-0.999224364757538,-0.0136248935014009,-0.0369464419782162,-0.999229788780212,-0.0391432568430901,0.0027729116845876,-0.999220907688141,0.0283640585839748,0.0274428967386484,
- -0.999220907688141,-0.0283779669553041,-0.0274285152554512,-0.0435209423303604,0.838259339332581,0.543532192707062,-0.922375023365021,0.37332022190094,-0.0992791429162025,-0.989638686180115,0.124140493571758,-0.0721431151032448,-0.980424880981445,0.19608773291111,-0.0177946668118238,-0.998950004577637,0.0445490181446075,0.0106907840818167,-0.999229311943054,-0.0392092540860176,0.00184149667620659,-0.989638686180115,0.124140493571758,-0.0721431151032448,-0.913855254650116,0.214811190962791,0.344564586877823,-0.0435209423303604,0.838259339332581,0.543532192707062,-0.0306289233267307,0.0514713488519192,-0.99820476770401,-0.994064450263977,-0.0534651540219784,-0.0947489589452744,-0.0186622180044651,0.0948688089847565,-0.995314836502075,-0.972636342048645,0.201634734869003,-0.115421079099178,-0.986221134662628,-0.128446489572525,-0.104256205260754,-0.0324840173125267,-0.0684918761253357,-0.997122704982758,-0.0367121808230877,-0.183228313922882,-0.982384741306305,-0.985754251480103,0.140015721321106,-0.0931887403130531,-0.0336656235158443,-0.167007818818092,-0.98538064956665,-0.999190032482147,-0.00588005781173706,-0.0398086346685886,-0.998019993305206,-0.00580413499847054,0.0626293122768402,-0.996217846870422,0.0136958137154579,-0.0858045369386673,-0.991118192672729,-0.0478139333426952,-0.124091111123562,-0.0323409363627434,-0.999092042446136,-0.0277333650738001,-0.0165282469242811,-0.999725580215454,0.0166062824428082,-0.997814774513245,0.0123101649805903,0.0649165585637093,-0.0304929669946432,-0.103884197771549,0.994121849536896,-0.0197061505168676,-0.130012586712837,0.991316497325897,-0.0435234718024731,-0.838110685348511,-0.543761134147644,-0.926408290863037,-0.0627816841006279,-0.371249467134476,-0.989702999591827,-0.123821005225182,0.0718090757727623,-0.989702999591827,-0.123821005225182,0.0718090757727623,-0.922718822956085,-0.37254935503006,0.0989796668291092,-0.0435234718024731,-0.838110685348511,-0.543761134147644,-0.0318897664546967,0.0589996986091137,0.997748494148254,-0.988605439662933,0.128111213445663,0.079036720097065,
- -0.972404718399048,-0.202559277415276,0.115753188729286,-0.998022258281708,-0.00788339041173458,0.0623654238879681,-0.999224364757538,-0.0136248860508204,-0.0369464419782162,-0.999224364757538,0.0136882001534104,0.0369230322539806,-0.985868155956268,-0.139368310570717,0.0929541513323784,-0.0367336384952068,0.184067413210869,0.982226967811584,-0.0323325619101524,0.159658029675484,0.986642777919769,-0.999220907688141,-0.0283779688179493,-0.0274285133928061,-0.999220907688141,0.0283640567213297,0.0274428986012936,-0.999224364757538,-0.0136692058295012,-0.0369300581514835,-0.999220907688141,0.0283884033560753,0.0274177230894566,-0.999224364757538,0.0136882001534104,0.0369230322539806,-0.999224364757538,-0.0136248860508204,-0.0369464419782162,-0.999229788780212,-0.0391432568430901,0.00277291145175695,-0.999220907688141,0.0283640567213297,0.0274428986012936,-0.999220907688141,-0.0283779688179493,-0.0274285133928061,-0.0435211509466171,0.838246941566467,0.54355126619339,-0.922617197036743,0.37277740240097,-0.0990682616829872,-0.989671945571899,0.123974934220314,-0.071970023214817,-0.980424880981445,0.196086853742599,-0.0178045500069857,-0.998949825763702,0.0445548370480537,0.0106847565621138,-0.999229311943054,-0.0392099507153034,0.00183166947681457,-0.989671945571899,0.123974934220314,-0.071970023214817,-0.914050877094269,0.214804917573929,0.344049125909805,-0.0435211509466171,0.838246941566467,0.54355126619339,-0.999421000480652,0.0251967366784811,-0.0228643976151943,-0.995063841342926,0.098093256354332,0.0150215942412615,-0.996251881122589,0.0731343179941177,-0.0461924970149994,-0.995357811450958,0.0606965310871601,-0.0746913701295853,-0.996255099773407,0.0711027234792709,-0.0491974726319313,-0.999502539634705,-0.0274028815329075,0.0156186344102025,-0.999374628067017,-0.0173742827028036,0.0307974889874458,-0.996119678020477,0.0808591842651367,-0.0347479209303856,-0.999823868274689,0.0114707984030247,0.0148532129824162,-0.995925664901733,0.0860110595822334,-0.0270988848060369,-0.999554812908173,0.0241151098161936,0.0175676085054874,
- -0.999602913856506,0.0172233898192644,0.0223020818084478,-0.995773255825043,0.0632219091057777,0.0666227340698242,-0.994647860527039,0.103314526379108,-0.00131129915826023,-0.998402416706085,-0.0432390868663788,0.0363734811544418,-0.998470187187195,-0.0502418465912342,0.0230882037431002,-0.999875009059906,-0.0150874331593513,0.00473144697025418,-0.99986207485199,-0.0158500503748655,0.00496174162253737,-0.998587071895599,-0.0424030758440495,-0.0320316553115845,-0.998597085475922,-0.0264966432005167,-0.0458451211452484,-0.997427105903625,-0.0701415315270424,-0.0148112224414945,-0.999594569206238,0.000482121598906815,0.0284696239978075,-0.999586760997772,0.00122615904547274,0.0287225376814604,-0.999586760997772,0.00122615904547274,0.0287225376814604,-0.999968230724335,0.00690592033788562,-0.00400357227772474,-0.999873459339142,-0.0115746231749654,0.0109129818156362,-0.999873578548431,-0.0115334261208773,0.0109546864405274,-0.999878287315369,0.0145647618919611,0.00559535576030612,-0.999808788299561,-0.0063654244877398,0.0184895731508732,-0.999122142791748,0.0165292788296938,-0.0384930558502674,-0.999339580535889,0.0222102720290422,0.0287594553083181,-0.99927419424057,0.0294116139411926,0.0242085512727499,-0.997154951095581,0.0748595967888832,0.00883549824357033,-0.998934030532837,0.0223283376544714,-0.0404038801789284,-0.998929977416992,0.041936356574297,0.0195057988166809,-0.999760091304779,0.0189137198030949,0.0110468110069633,-0.61447674036026,0.48888087272644,0.619204223155975,-0.602365911006927,0.487891644239426,0.631757140159607,-0.845105707645416,0.516349732875824,-0.138489365577698,-0.998934030532837,0.0223283376544714,-0.0404038801789284,-0.998427927494049,0.0511013269424438,0.0230334214866161,-0.998929977416992,0.041936356574297,0.0195057988166809,-0.615524470806122,0.755831599235535,-0.223267197608948,-0.726738154888153,0.595134079456329,-0.343026369810104,-0.617707014083862,0.487736821174622,0.616888165473938,-0.948287606239319,-0.284263610839844,0.141226947307587,-0.939078748226166,-0.334382623434067,0.079495795071125,
- -0.943231701850891,-0.309430807828903,0.120691902935505,-0.998741984367371,0.0400490649044514,0.0301781911402941,-0.999342322349548,0.00743076065555215,-0.0354925580322742,-0.99935382604599,-0.00179620424751192,-0.0358987934887409,-0.993391573429108,0.113974630832672,-0.0135251004248858,-0.862837016582489,0.0890228524804115,-0.497581392526627,-0.0203640889376402,0.862087249755859,-0.506350576877594,-0.9946408867836,0.0929146260023117,-0.0453470833599567,-0.999636888504028,-0.0239993762224913,-0.0122524835169315,-0.99461567401886,0.10261907428503,-0.0144639769569039,-0.99985659122467,0.0165188945829868,-0.0037356223911047,-0.998741984367371,0.0400490649044514,0.0301781911402941,-0.99935382604599,-0.00179620424751192,-0.0358987934887409,-0.997590303421021,0.0683610960841179,0.0118563203141093,-0.99982875585556,0.0184942912310362,-0.000813475868199021,-0.994692206382751,0.0904505923390388,-0.0490526482462883,-0.999541401863098,-0.0241851415485144,-0.01822211407125,-0.994692206382751,0.0904505923390388,-0.0490526482462883,-0.99982875585556,0.0184942912310362,-0.000813475868199021,-0.998049437999725,-0.0624042451381683,0.00174894754309207,-0.998140752315521,-0.0608799271285534,-0.00294544151984155,-0.999210119247437,-0.00737218232825398,-0.0390492901206017,-0.999745786190033,0.0220922883599997,0.00450984295457602,-0.998780846595764,-0.0298290774226189,0.0393349193036556,-0.998871326446533,-0.0222740806639194,0.0419514216482639,-0.998137354850769,-0.0609323121607304,-0.00301695894449949,-0.998137354850769,-0.0609323121607304,-0.00301695894449949,-0.999197244644165,-0.00756999151781201,-0.03934146463871,-0.996335208415985,-0.0517837181687355,0.0680780038237572,-0.997847378253937,-0.0216211937367916,0.0619126334786415,-0.998068153858185,-0.014243571087718,0.0604741871356964,-0.993997633457184,-0.096445195376873,-0.0516456477344036,-0.993997633457184,-0.096445195376873,-0.0516456477344036,-0.993997633457184,-0.096445195376873,-0.0516456477344036,0.997988879680634,0.0254037249833345,0.0580766312777996,0.996162295341492,0.0724083632230759,0.0491703227162361,
- 0.997855424880981,0.0240884628146887,0.0608631893992424,0.998059451580048,0.0277985241264105,0.0557184852659702,0.99800580739975,0.0253950376063585,0.0577880926430225,0.998059451580048,0.0277985241264105,0.0557184852659702,0.999541521072388,-0.0302547682076693,0.00116481469012797,0.995697021484375,0.0263188984245062,0.0888523310422897,0.998279809951782,0.0330540426075459,0.0484242103993893,0.997352242469788,-0.067927822470665,-0.0259682815521955,0.999701857566834,0.0233942996710539,-0.00700741214677691,0.999560356140137,-0.0296484343707561,0.000339457707013935,0.999658584594727,0.0232376419007778,-0.0119488630443811,0.997300386428833,-0.0695437863469124,-0.0235719084739685,0.994673192501068,-0.102625004947186,-0.00966033805161715,0.999567925930023,-0.029396865516901,-2.9807445116603e-006,0.990460336208344,-0.106938868761063,0.0869043692946434,0.99735814332962,-0.0677245408296585,-0.0262696631252766,0.702899932861328,-0.614890873432159,-0.357548475265503,0.941594541072845,-0.0971486270427704,-0.322431236505508,0.970060288906097,-0.187513381242752,0.154343098402023,0.765559017658234,-0.0789862349629402,-0.638498842716217,0.608457803726196,-0.67366099357605,-0.419475883245468,0.0166953355073929,-0.706776559352875,-0.707239866256714,0.990688025951386,-0.100185699760914,0.0921959280967712,0.999710500240326,-0.0215968154370785,-0.0106167495250702,0.999249160289764,-0.00152871350292116,-0.0387170389294624,0.999235272407532,-0.0224538091570139,-0.0320116132497787,0.990557610988617,-0.104314662516117,0.088962122797966,0.999093592166901,-0.00659075565636158,-0.0420540273189545,0.998749911785126,-0.0347259826958179,-0.0359550751745701,0.998534619808197,-0.0515760332345963,0.0163857284933329,0.990238904953003,-0.112058900296688,0.0828840956091881,0.999580442905426,-0.0179550796747208,0.0227279476821423,0.998479604721069,-0.0527472160756588,0.0160064194351435,0.998694539070129,-0.0359037816524506,-0.0363333225250244,0.596028029918671,-0.490791022777557,0.63551139831543,0.988691449165344,-0.135402753949165,0.0644619986414909,0.888396143913269,-0.444706588983536,-0.113966673612595,
- 0.999785900115967,-0.0128266960382462,0.0162363238632679,0.999793529510498,-0.0124208992347121,0.0160834714770317,0.998758792877197,-0.046421229839325,0.0180546026676893,0.782644391059875,0.380468338727951,-0.492657691240311,0.79288649559021,0.339461356401443,-0.506060242652893,0.130342289805412,0.960703134536743,-0.245072275400162,0.999932825565338,-0.007089430000633,0.00917990226298571,0.999461650848389,-0.0312882736325264,-0.00987376179546118,0.999922811985016,-0.0119285387918353,0.00350797013379633,0.999366581439972,-0.0354102961719036,-0.00353586999699473,0.99982362985611,-0.0114791449159384,0.014864020049572,0.999817550182343,-0.0118411872535944,0.0149888433516026,0.995699405670166,0.0574293062090874,-0.0726953223347664,0.995848000049591,0.0650721192359924,-0.0636585429310799,0.995721220970154,0.0210042595863342,-0.0899903774261475,0.997712254524231,0.00617288751527667,-0.0673213824629784,0.998121976852417,0.0473252274096012,-0.0388953275978565,0.998121976852417,0.0473252274096012,-0.0388953275978565,0.998517632484436,-0.00228035147301853,-0.0543819293379784,0.998871088027954,0.0389424450695515,-0.0272071566432714,0.998891413211823,0.0375750288367271,-0.0283595807850361,0.284427672624588,-0.530168414115906,0.798763155937195,0.302153468132019,0.394762605428696,0.86767852306366,0.279471814632416,0.436482459306717,0.855206727981567,-0.335661500692368,0.430682629346848,0.837761223316193,-0.372317790985107,-0.508994817733765,0.776082336902618,-0.385781586170197,-0.495663732290268,0.778132379055023,0.0632618442177773,-0.605066001415253,0.793658018112183,0.063694566488266,-0.552032887935638,0.831386029720306,0.0633017048239708,-0.550372064113617,0.832516372203827,-0.00867526978254318,-0.560129046440125,0.828359961509705,-0.00867360550910234,-0.606257617473602,0.795221030712128,-0.00834188517183065,-0.550987482070923,0.834471821784973,-0.24040487408638,0.484057754278183,0.84136426448822,-0.25704488158226,-0.541328847408295,0.800556719303131,-0.260006636381149,-0.53039962053299,0.806890845298767,0.373613238334656,-0.519586622714996,0.768402814865112,
- 0.380729019641876,0.456949710845947,0.803892016410828,0.38841986656189,0.449966430664063,0.804151892662048,-0.163729354739189,0.492767333984375,0.854618668556213,-0.225926339626312,0.529830992221832,0.817457258701324,-0.149728775024414,-0.55383563041687,0.819052755832672,0.0829590037465096,-0.536200821399689,0.840003848075867,-0.0708294212818146,-0.558743357658386,0.826310515403748,-0.0975675880908966,0.552791893482208,0.827587842941284,0.00163194630295038,-0.618718862533569,0.785610795021057,-0.00353075796738267,-0.560146629810333,0.828385949134827,-0.0100256046280265,-0.550483286380768,0.834786117076874,-0.00700198439881206,-0.619511485099792,0.784956514835358,-0.012059441767633,-0.606236338615417,0.795193076133728,-0.0120612485334277,-0.560109376907349,0.828330874443054,0.786604642868042,-0.304174065589905,0.537337243556976,0.81871110200882,-0.547170519828796,-0.174116596579552,0.81430321931839,-0.351909339427948,0.461595416069031,-0.133517563343048,-0.541734337806702,0.82987767457962,-0.134969055652618,-0.600732862949371,0.787974238395691,-0.136206746101379,-0.588750660419464,0.796756148338318,0.766995072364807,-0.423486888408661,0.482055425643921,0.756115972995758,-0.396772861480713,0.520442306995392,0.76947283744812,-0.608271956443787,-0.194722339510918,-0.0792809054255486,-0.946281015872955,-0.313475370407104,-0.183858558535576,-0.625359296798706,0.758367836475372,-0.0887853354215622,-0.945158541202545,-0.3143130838871,0.0907437279820442,-0.549978613853455,0.830234348773956,0.000775012420490384,-0.948681116104126,-0.316233456134796,-0.40931224822998,-0.60211443901062,0.685508370399475,-0.52381157875061,-0.809420824050903,-0.265441805124283,-0.523458123207092,-0.71551513671875,-0.462633401155472,-0.525457143783569,-0.806520283222198,-0.27096089720726,-0.0579451993107796,-0.833564937114716,-0.549374043941498,-0.0557136870920658,-0.947349011898041,-0.315318673849106,-0.400153517723084,-0.499748319387436,0.768198549747467,0.720418930053711,-0.452532261610031,0.525557935237885,0.747839331626892,-0.63214784860611,-0.20279398560524,
- 0.768731355667114,-0.585718393325806,-0.256877511739731,0.359300851821899,-0.886942386627197,-0.29023465514183,0.360898286104202,-0.775080442428589,-0.518654942512512,0.361649066209793,-0.748635828495026,-0.555656671524048,-0.180262789130211,-0.933466553688049,-0.310073733329773,-0.178737372159958,-0.797848761081696,-0.575751900672913,-0.175568953156471,-0.905809283256531,-0.385597378015518,-0.839610934257507,-0.282572239637375,0.463903695344925,-0.65444415807724,-0.697287201881409,-0.292392522096634,-0.625657021999359,-0.777463316917419,-0.064065046608448,0.459140837192535,-0.815470933914185,-0.352416098117828,0.459068030118942,-0.711764633655548,-0.531646192073822,0.423808842897415,-0.756488740444183,-0.498107254505157,0.0217555072158575,-0.602222502231598,0.79803192615509,-0.398799419403076,-0.893006145954132,-0.208564311265945,0.0287838317453861,-0.871675848960876,0.489236861467361,0.0174896568059921,0.55529659986496,-0.831468462944031,0.594360530376434,-0.641777753829956,-0.484620481729507,0.0232710409909487,0.000549558724742383,-0.999729037284851,-0.0143454428762197,-0.619977951049805,0.784488081932068,0.00351979257538915,-0.622734367847443,0.782425403594971,-0.0123284524306655,-0.622079908847809,0.782856702804565,0.000501759059261531,-0.587250113487244,0.809405505657196,-0.0115199452266097,-0.58746349811554,0.809168696403503,-0.0185004211962223,-0.587388336658478,0.809093773365021,-0.000439452182035893,-0.575946569442749,0.817487359046936,-0.0181246791034937,-0.575458526611328,0.817630112171173,0.0451149456202984,-0.572959780693054,0.818340837955475,0.0132678570225835,0.000313300435664132,-0.999912023544312,0.148468196392059,-0.797375202178955,-0.58493584394455,-0.00204539322294295,0.623705208301544,-0.781656980514526,-0.0747573003172874,0.62106329202652,-0.780187010765076,-0.11569356918335,-0.0041771475225687,-0.993276178836823,-0.0747164040803909,-0.00176512135658413,-0.997203290462494,0.0100258998572826,-0.555465340614319,0.831479370594025,-0.000525260460563004,-0.574910402297974,0.81821620464325,0.0450315400958061,-0.571900546550751,0.819086015224457,
- 0.00111124769318849,-0.594509601593018,0.80408775806427,0.0240115504711866,-0.556438624858856,0.830541729927063,0.0190116129815578,-0.602117478847504,0.798181116580963,0.654027283191681,0.366446822881699,0.661789238452911,0.318162441253662,-0.550781309604645,0.771629869937897,0.0370434112846851,-0.470451235771179,0.881648123264313,0.106879040598869,-0.551410675048828,0.827359139919281,0.103617362678051,-0.603255867958069,0.790788114070892,0.107619851827621,-0.559964299201965,0.82149738073349,0.377323180437088,-0.543166100978851,0.750065207481384,0.424300968647003,0.387902170419693,0.818230152130127,0.402573734521866,-0.5175821185112,0.755012035369873,-0.00369326258078218,0.425009667873383,0.905181288719177,-0.0627363249659538,-0.548633873462677,0.833705723285675,0.062666617333889,0.548641800880432,0.833705604076386,0.324545711278915,0.593966245651245,-0.73612105846405,0.37306621670723,-0.744830071926117,-0.553217768669128,0.341113597154617,0.506752967834473,-0.791734158992767,0.0050141685642302,-0.00803155638277531,-0.999955177307129,0.0224884264171124,0.623851537704468,-0.781219244003296,0.0207851678133011,0.550259530544281,-0.834734916687012,-0.997773945331573,-0.0627388656139374,-0.0226052980870008,-0.93304580450058,0.227859675884247,-0.278398543596268,-0.996321260929108,-0.0804406926035881,-0.0295541547238827,0.998572587966919,-0.0128697929903865,-0.0518380552530289,0.924838840961456,-0.309139728546143,-0.221598640084267,0.999210298061371,0.00698018027469516,-0.0391187034547329,0.0236723739653826,-0.00861707050353289,-0.999682724475861,0.0355223678052425,0.549546420574188,-0.834707677364349,0.038605410605669,0.594402730464935,-0.803240299224854,-0.0228450372815132,0.55121785402298,-0.834048688411713,-0.0221798103302717,0.590832412242889,-0.80648934841156,-0.023932320997119,0.551689505577087,-0.833706140518188,0.0910121724009514,0.595708072185516,-0.798027992248535,0.124955981969833,0.0019678114913404,-0.992160439491272,0.0893249958753586,-0.0106554422527552,-0.995945632457733,0.00957386288791895,0.000150770167238079,-0.999954164028168,
- -0.00195901119150221,0.592264652252197,-0.805741131305695,-0.00220699026249349,0.55108916759491,-0.83444344997406,0.00862586032599211,0.000135841037263162,-0.99996280670166,-0.00389826390892267,0.551108539104462,-0.834424495697021,-0.0191844142973423,0.609105110168457,-0.792857587337494,-0.00274669472128153,0.613755345344543,0.789491474628448,0.0135445399209857,0.610839009284973,0.791638970375061,0.012440831400454,0.612990140914917,0.78999274969101,0.0115397060289979,0.587693512439728,0.809001326560974,-0.000521011766977608,0.587480127811432,0.80923855304718,0.0185076948255301,0.587619304656982,0.808925867080688,0.000282137014437467,0.57784366607666,0.816147446632385,-0.045264545828104,0.574859738349915,0.816999018192291,0.0181846730411053,0.57736337184906,0.816284775733948,-0.0451283417642117,0.573129892349243,0.818221092224121,0.000423423683969304,0.576139986515045,0.817350924015045,-0.0107601983472705,0.555519163608551,0.83143424987793,-0.0190961044281721,0.602120757102966,0.798176646232605,-0.024100374430418,0.556444466114044,0.830535233020782,-0.00112125196028501,0.594628393650055,0.804000020027161,0.397422850131989,0.893440842628479,-0.209328711032867,-0.0223906915634871,0.602246105670929,0.797996401786804,-0.0288641974329948,0.872315347194672,0.488090932369232,-0.104873061180115,0.559911251068115,0.82188868522644,-0.100869372487068,0.603287398815155,0.791119277477264,-0.104133553802967,0.551481246948242,0.827662169933319,0.834349513053894,0.287719219923019,0.470189929008484,0.609393298625946,0.789227604866028,-0.075893372297287,0.637097179889679,0.710727572441101,-0.298284530639648,-0.45673143863678,0.712770521640778,-0.532310605049133,-0.456805497407913,0.816584527492523,-0.352872043848038,-0.421707183122635,0.757863819599152,-0.497800648212433,0.131402611732483,0.601845920085907,0.787727653980255,0.130270197987556,0.542079508304596,0.83016836643219,0.132999837398529,0.589175879955292,0.796983599662781,-0.0563308745622635,0.552035391330719,0.831915736198425,-0.0563414096832275,0.604964554309845,0.794256567955017,
- -0.0559626892209053,0.550565481185913,0.832914054393768,-2.17131928366143e-005,0.606280326843262,0.79525101184845,-5.80661471758503e-005,0.560150504112244,0.828390836715698,-0.000143629891681485,0.551062405109406,0.834464013576508,-0.790763437747955,0.560405969619751,-0.246248543262482,-0.771319448947906,0.606157720088959,-0.194008156657219,-0.751264691352844,0.433797895908356,0.497414022684097,-0.722910404205322,0.414363652467728,0.552904427051544,-0.73800390958786,0.442081212997437,0.509818017482758,-0.733917236328125,0.646697998046875,-0.207718998193741,0.181349888443947,0.797498226165771,-0.575420558452606,0.182913571596146,0.932995140552521,-0.309939801692963,0.178190350532532,0.905384004116058,-0.385393232107162,-0.000606561254244298,0.618815422058105,0.785536170005798,0.00426847161725163,0.560117125511169,0.828402459621429,0.00428963266313076,0.606301724910736,0.795223116874695,-0.79213809967041,0.581419229507446,-0.185658097267151,-0.760297238826752,0.327008754014969,0.561260581016541,-0.790268361568451,0.366537421941757,0.491046071052551,0.00311768613755703,0.560127079486847,0.82840096950531,-0.00120934646110982,0.618758738040924,0.785580158233643,0.00636900961399078,0.564361035823822,0.825503528118134,0.00211459770798683,0.564008593559265,0.825766205787659,-0.00557537889108062,0.618341267108917,0.78588992357254,0.0447107255458832,0.577130854129791,0.815426826477051,0.186881080269814,0.625283896923065,0.757690906524658,0.082272581756115,0.946043431758881,-0.313421547412872,0.0917811244726181,0.944908261299133,-0.314204692840576,-0.000983824487775564,0.948680400848389,-0.316234946250916,-0.0917691215872765,0.549940288066864,0.83014702796936,0.408194661140442,0.602324545383453,0.68598997592926,0.524199485778809,0.71514105796814,-0.462372362613678,0.524541974067688,0.808996260166168,-0.265294194221497,0.526183664798737,0.806092083454132,-0.270825326442719,0.0556330569088459,0.947353065013886,-0.315320700407028,0.0578659884631634,0.833568096160889,-0.549377620220184,0.399402856826782,0.499938577413559,0.768465220928192,
- -0.362585216760635,0.748328685760498,-0.555460333824158,-0.36182826757431,0.774771451950073,-0.51846843957901,-0.360231131315231,0.886604070663452,-0.290115118026733,0.00385786313563585,-0.551108062267303,-0.83442497253418,-0.00868977326899767,-0.000136847549583763,-0.999962329864502,0.0191920548677444,-0.609347701072693,-0.792670965194702,0.932428240776062,-0.228725537657738,-0.279753834009171,0.997755110263824,0.0629800409078598,-0.0227649174630642,0.996289670467377,0.0807476490736008,-0.0297785867005587,-0.925244987010956,0.308309853076935,-0.221058264374733,-0.998564004898071,0.0127396676689386,-0.0520344935357571,-0.999201536178589,-0.00711071770638227,-0.0393161252140999,0.00320417317561805,-0.551100790500641,-0.834432661533356,0.00292027718387544,-0.592202126979828,-0.805784165859222,-0.00835555419325829,-0.000131584223709069,-0.999965071678162,0.0233796965330839,-0.590739846229553,-0.806523442268372,0.0240451171994209,-0.551218032836914,-0.834014713764191,0.0251287091523409,-0.551712572574615,-0.833655655384064,-0.126535758376122,-0.0019926899112761,-0.991960048675537,-0.09225894510746,-0.595719039440155,-0.79787665605545,-0.0908491536974907,0.0107023576274514,-0.99580717086792,-0.0355248413980007,-0.549546241760254,-0.834707677364349,-0.0236934423446655,0.00861772894859314,-0.999682128429413,-0.0386701449751854,-0.594405353069305,-0.803235232830048,-0.0219422634691,-0.623852372169495,-0.78123414516449,-0.00431223213672638,0.00800947472453117,-0.999958634376526,-0.0202195513993502,-0.550284504890442,-0.834732353687286,-0.420817404985428,0.727457106113434,-0.541958332061768,-0.374162644147873,-0.583032190799713,-0.721162796020508,-0.386003911495209,-0.495605170726776,-0.778059601783752,0.116949759423733,0.00413642637431622,-0.993129312992096,0.0757262259721756,-0.621005713939667,-0.7801393866539,0.0759435519576073,0.00179410923738033,-0.997110605239868,-0.17143926024437,0.794045984745026,-0.583180546760559,-0.014867483638227,-0.00035108215524815,-0.999889433383942,0.000791121157817543,-0.623721778392792,-0.781646013259888,
- -0.0233120303601027,-0.000550526776351035,-0.999728083610535,-0.600508987903595,0.637986958026886,-0.482039213180542,-0.0175058972090483,-0.555812180042267,-0.831123530864716,0.999766826629639,0.0157443601638079,-0.0147772915661335,0.99747759103775,-0.0613243654370308,-0.0357452407479286,0.993774592876434,-0.110419400036335,-0.0148258982226253,0.96017986536026,-0.0632072910666466,0.272138714790344,0.81812459230423,0.0128838531672955,0.574896812438965,0.0527341067790985,0.74413937330246,0.665939748287201,0.997453272342682,-0.0662937685847282,-0.0263080783188343,0.999862611293793,0.0157458689063787,-0.00519669428467751,0.997471928596497,0.0595112144947052,0.0388358496129513,0.997496962547302,0.0619495399296284,0.034089207649231,0.999693751335144,-0.0195738729089499,0.015140593983233,0.997479975223541,-0.063731737434864,-0.0311756804585457,0.999506831169128,-0.0304534547030926,0.00767496880143881,0.997484564781189,0.0604207813739777,0.0370657257735729,0.999290823936462,0.000609925831668079,-0.0376499965786934,0.37413027882576,0.446885168552399,-0.81260085105896,-0.0208804197609425,0.811463177204132,-0.584030449390411,0.687855541706085,0.610583662986755,0.392482280731201,0.939432382583618,-0.294591397047043,-0.17516465485096,0.840903878211975,-0.51111900806427,-0.177870899438858,0.636689424514771,-0.398826658725739,0.659972608089447,0.584743976593018,-0.414370596408844,0.697403490543365,0.921654105186462,0.353012263774872,0.161046802997589,0.618812382221222,-0.389700889587402,0.682058990001678,0.999265015125275,-0.00857960153371096,-0.0373634099960327,0.999506831169128,-0.0304534547030926,0.00767496880143881,0.999290823936462,0.000609925831668079,-0.0376499965786934,0.999290287494659,-0.00748355500400066,-0.0369184166193008,0.9994997382164,-0.0281418804079294,0.0144404470920563,0.999557793140411,-0.0282900743186474,0.0091598853468895,0.832929790019989,-0.441077679395676,-0.334183633327484,0.0582849346101284,0.0692494511604309,-0.995895266532898,0.934759616851807,-0.316910624504089,-0.160599291324615,0.999704360961914,-0.0232353024184704,-0.00717638852074742,
- 0.999468147754669,-0.0294944159686565,0.013912383466959,0.999256670475006,-0.00892834272235632,-0.0375049859285355,0.0626957267522812,0.00935839861631393,-0.997988820075989,0.758615851402283,0.318173915147781,-0.568566262722015,0.961436212062836,-0.241842731833458,-0.13096758723259,0.999712824821472,-0.0223335660994053,-0.00868892204016447,0.999712824821472,0.0182592682540417,0.0155212013050914,0.999592900276184,-0.023430734872818,0.0162793640047312,0.777358412742615,0.306268393993378,-0.549466669559479,0.0861405953764915,-0.391702920198441,-0.916050553321838,0.745381832122803,0.241070061922073,-0.621523261070251,0.999709010124207,0.017806364223361,0.0162805132567883,0.999709010124207,-0.0227868352085352,-0.0079286452382803,0.998467624187469,-0.0517893247306347,-0.0195000227540731,0.750661432743073,-0.31367701292038,0.581475853919983,0.0510870069265366,-0.959983229637146,0.275358527898788,0.0546272918581963,-0.945047736167908,0.322336137294769,0.999544084072113,0.0299215987324715,-0.00404341705143452,0.998250961303711,-0.0412419438362122,-0.042357224971056,0.999674677848816,0.0233077351003885,-0.0103579172864556,0.0817506983876228,0.978385090827942,-0.189946413040161,0.820619165897369,0.309188574552536,-0.480610698461533,0.834778308868408,0.268207848072052,-0.480842769145966,0.99847537279129,-0.0499036647379398,-0.0235925652086735,0.999711573123932,0.0210666451603174,-0.0115402936935425,0.99987530708313,0.014076647348702,0.00717230653390288,-0.997479617595673,0.0616743676364422,-0.0350811332464218,-0.999777555465698,-0.0157445278018713,-0.0140337413176894,-0.993785202503204,0.110420577228069,-0.0140795474871993,-0.961040019989014,0.0622382126748562,0.269311100244522,-0.0527372993528843,-0.744184374809265,0.665889263153076,-0.818244814872742,-0.0128857456147671,0.57472550868988,-0.999834835529327,-0.0157454311847687,-0.00909058190882206,-0.997477412223816,0.0641961768269539,-0.0302936341613531,-0.997459471225739,-0.061846736818552,0.0353499986231327,-0.999624311923981,0.0248854476958513,0.0114963874220848,-0.997461974620819,-0.064078688621521,0.0310404244810343,
- -0.997480630874634,0.0619035214185715,-0.0346462838351727,-0.997424602508545,-0.059123583137989,0.0406030938029289,-0.999578297138214,0.027327748015523,0.00982035230845213,-0.999362409114838,-0.00373764336109161,-0.0355080030858517,0.0182582251727581,-0.746236622333527,-0.66543036699295,-0.365378469228745,-0.451043546199799,-0.814283907413483,-0.791286706924438,-0.517918884754181,0.325000554323196,-0.724954783916473,0.647794902324677,-0.234099224209785,-0.831967651844025,0.468380510807037,-0.297404736280441,-0.641880810260773,0.397127985954285,0.655956089496613,-0.989364266395569,-0.125243008136749,0.0739768296480179,-0.589340806007385,0.413096129894257,0.694283068180084,-0.608388900756836,0.394064247608185,0.688894987106323,-0.999603748321533,0.0260328724980354,0.0107089942321181,-0.999368786811829,0.00360079947859049,-0.0353416502475739,-0.999387919902802,-0.00503687141463161,-0.0346180759370327,-0.999283075332642,0.00779979396611452,-0.0370468124747276,-0.999551296234131,0.028582813218236,0.00895896460860968,-0.999492466449738,0.0284582562744617,0.0143169276416302,-0.889048039913177,0.36107274889946,-0.28146094083786,-0.974063694477081,0.19614851474762,-0.112808056175709,-0.0640690326690674,-0.149510234594345,-0.986682236194611,-0.999249517917633,0.00921788066625595,-0.0376225225627422,-0.999461054801941,0.0297869294881821,0.0137981725856662,-0.999207377433777,0.0368375480175018,-0.0150883700698614,-0.715572416782379,-0.333269655704498,-0.6139115691185,-0.0667570382356644,-0.124071903526783,-0.990025103092194,-0.985552251338959,0.142586976289749,-0.0914098247885704,-0.999674737453461,-0.0153837893158197,0.0203414019197226,-0.999179005622864,0.0387192964553833,-0.0119306407868862,-0.99948662519455,0.0287154167890549,0.0142165319994092,-0.74530041217804,-0.315931677818298,-0.587123930454254,-0.731694877147675,-0.276046901941299,-0.62323409318924,-0.107000812888145,0.347083449363709,-0.931710183620453,-0.99968159198761,-0.0157653391361237,0.0197018887847662,-0.99797385931015,0.0597166605293751,-0.0219580382108688,
- -0.999185800552368,0.0383418425917625,-0.0125641273334622,-0.0971001163125038,0.994832515716553,-0.0296625290066004,-0.801696717739105,0.322408080101013,0.503324329853058,-0.0550129674375057,0.998481929302216,0.00272318813949823,-0.997945189476013,0.0505229607224464,-0.0394065976142883,-0.99965888261795,-0.0259974133223295,0.00254244287498295,-0.998814761638641,-0.047156672924757,0.0120566599071026,0.0395342819392681,0.998866140842438,0.026523357257247,-0.0384318120777607,0.998858630657196,0.0283632632344961,0.0401397794485092,0.998859286308289,0.0258638970553875,-0.0384922251105309,0.998907387256622,0.0265060923993587,0.0395228751003742,0.998909413814545,0.0248582363128662,-0.0473713763058186,0.99857097864151,0.0247386079281569,-0.0475888960063457,0.99692690372467,0.0622275806963444,0.0397532619535923,0.997262239456177,0.0623531490564346,0.0230756308883429,0.997766077518463,0.0626930221915245,0.120487906038761,0.989651620388031,-0.0779253244400024,0.120242588222027,0.991976082324982,0.0390541739761829,0.120141066610813,0.992756843566895,2.20598785858517e-016,0.115937016904354,0.992487788200378,0.0390743240714073,0.116146430373192,0.990167438983917,-0.0779659375548363,0.115566357970238,0.991277396678925,-0.063352644443512,0.124998301267624,0.990132093429565,0.0633547678589821,0.12536957859993,0.991342127323151,0.0390292182564735,0.12499737739563,0.990132212638855,-0.0633547678589821,-0.0188697017729282,0.957622468471527,-0.287407636642456,-0.0299613922834396,0.997588574886322,0.0626043155789375,-0.0254309251904488,0.997711658477783,-0.0626477226614952,-0.0251808539032936,0.99771785736084,0.062650091946125,0.0084837544709444,0.958749413490295,-0.284125983715057,-0.0238273683935404,0.997714936733246,-0.0632234215736389,0.127536684274673,0.98980838060379,0.0633543208241463,0.107855968177319,0.0156542267650366,0.994043290615082,0.12257557362318,0.991690933704376,0.0390429124236107,-0.0240796972066164,0.997744381427765,0.0626604333519936,-0.0225083958357573,0.997746825218201,-0.0632046610116959,-0.0238035190850496,0.996631979942322,-0.0784749612212181,
- 0.978947699069977,0.00321395299397409,0.204085990786552,0.941567957401276,0.335610538721085,0.0285547357052565,0.978599429130554,-0.0121761560440063,0.205414071679115,0.172994434833527,0.0127849690616131,0.984839916229248,0.172881275415421,0.00775521388277411,0.984912157058716,0.172889053821564,0.0155089655891061,0.984819293022156,-0.0197980049997568,0.992848873138428,0.117724917829037,-0.017764562740922,0.997873187065125,0.0627182722091675,-0.0175113771110773,0.996761500835419,-0.0784851536154747,-0.843689560890198,0.535057187080383,0.0436094217002392,-0.908769249916077,0.0208747237920761,0.41677650809288,-0.85384064912796,0.519883453845978,0.0260253939777613,0.504928827285767,0.855615556240082,0.113881073892117,0.574458301067352,0.816008269786835,-0.064252607524395,0.603144407272339,0.797451078891754,-0.0169889200478792,-0.0263786371797323,0.996649324893951,-0.0774243175983429,-0.0238610710948706,0.992772102355957,0.117619037628174,-0.0172944460064173,0.997812449932098,-0.0638075619935989,-0.027247691527009,0.997218012809753,-0.0693816915154457,-0.0265285726636648,0.992712736129761,0.117548458278179,-0.0289647690951824,0.996590614318848,-0.0772554576396942,-0.0193121358752251,0.997376322746277,-0.0697678178548813,-0.0143254464492202,0.99877804517746,0.0472991615533829,-0.0165565069764853,0.992898464202881,0.117807999253273,-0.0474135801196098,0.998388051986694,0.0311962813138962,-0.0143254464492202,0.99877804517746,0.0472991615533829,-0.0193121358752251,0.997376322746277,-0.0697678178548813,0.00817509926855564,0.998855531215668,0.0471256524324417,-0.0475888960063457,0.99692690372467,0.0622275806963444,0.0230756308883429,0.997766077518463,0.0626930221915245,0.159175649285316,0.0335831940174103,0.986679017543793,0.244957432150841,0.962033927440643,0.120360106229782,0.227128461003304,0.972862482070923,0.0441735088825226,0.224185794591904,0.0342059433460236,0.973945915699005,0.828839004039764,0.559133529663086,0.0198892615735531,-0.00528312381356955,0.107735700905323,0.994165539741516,-0.380761116743088,0.0231182258576155,0.924384415149689,
- -0.38552251458168,0.020598279312253,0.922468483448029,-0.794727444648743,0.604642868041992,0.0530591160058975,0.00335455150343478,0.0315330475568771,0.999497175216675,-0.000405958940973505,0.300718665122986,0.953712821006775,0.0193206127732992,0.29999452829361,0.953745245933533,0.00738748256117105,-0.0123372888192534,0.999896705150604,0.0116617884486914,-0.0312948413193226,0.999442160129547,0.0106795011088252,0.0316466763615608,0.999442160129547,0.0092558478936553,-0.0313334874808788,0.999466121196747,0.0079610301181674,0.00221699220128357,0.999965846538544,0.0315311513841152,0.00128969340585172,0.999501943588257,0.00664787227287889,0.031584344804287,0.999478995800018,0.00763546535745263,-0.0313594117760658,0.999478995800018,0.00726753985509276,-0.0314796231687069,0.999477982521057,0.0398376621305943,0.0151063669472933,0.999091982841492,0.0395883359014988,0.0320785902440548,0.99870103597641,0.0398878641426563,-0.0314554050564766,0.99870902299881,0.609674215316772,-0.788812577724457,0.0779234394431114,0.311761647462845,-0.025006303563714,0.949831247329712,0.0164263136684895,-0.33611387014389,0.941678106784821,0.349504172801971,-0.0239960663020611,0.936627447605133,0.673633754253387,-0.735321342945099,0.0742975771427155,0.353662252426147,-0.0294459611177444,0.934909582138062,0.0478266663849354,0.0149750662967563,0.998743414878845,0.0476168245077133,-0.0314447470009327,0.998370587825775,0.0470139980316162,-0.0246992893517017,0.998588919639587,-0.0401865243911743,-0.99881649017334,-0.0274016056209803,-0.094974972307682,-0.99163681268692,-0.0873854756355286,-0.0980805307626724,-0.991598129272461,0.0843418836593628,-0.0114826681092381,-0.996188819408417,-0.0864649042487144,-0.0401397794485092,-0.998859286308289,-0.0258638970553875,0.0384318120777607,-0.998858630657196,-0.0283632632344961,0.0922364071011543,0.0142267588526011,0.995635509490967,0.0915968865156174,-0.0256786253303289,0.995465040206909,0.0904702991247177,-0.00570450583472848,0.995882928371429,-0.163988202810287,-0.0116406157612801,0.986393630504608,-0.164214372634888,0.00776688288897276,0.986394107341766,
- -0.163921803236008,0.0181138403713703,0.98630702495575,-0.114504508674145,-0.0312733426690102,0.992930352687836,-0.077843926846981,-0.994471669197083,0.0704742521047592,-0.0830308347940445,-0.0215732902288437,0.996313452720642,0.140059813857079,-0.00448784651234746,0.990132987499237,0.157641738653183,-0.0270416717976332,0.987126052379608,0.293998241424561,-0.953414976596832,0.0675644651055336,-0.0256836619228125,-0.997169375419617,0.0706653967499733,-0.0305581837892532,-0.0314657092094421,0.999037563800812,-0.0141273867338896,-0.996189653873444,0.0860616341233253,-0.0146018918603659,0.0078729335218668,0.999862492084503,-0.0143869183957577,-0.00821278337389231,0.999862790107727,-0.0146035570651293,-0.0157444011420012,0.999769389629364,-0.0141360200941563,0.0078729847446084,0.999869108200073,-0.0141376536339521,-0.0157445073127747,0.999776184558868,-0.0141356876119971,-2.22034758167019e-016,0.999900102615356,0.594315767288208,-0.802220106124878,0.0568498708307743,0.294519186019897,-0.0150476712733507,0.955527067184448,0.288036108016968,-0.000736325164325535,0.957619249820709,0.038267619907856,-0.0157345458865166,0.999143660068512,0.0357273295521736,-0.996861696243286,0.0706435665488243,0.0364663004875183,-0.998221516609192,0.0471600592136383,0.316504299640656,-0.946218192577362,0.0670548379421234,0.315845012664795,-0.944831192493439,0.0868097171187401,0.317219465970993,-0.944537281990051,-0.0849772393703461,-0.537917375564575,-0.840162515640259,-0.0690783485770226,-0.536073625087738,-0.843230843544006,0.0398376770317554,-0.5365349650383,-0.841767191886902,0.0596527978777885,0.751020312309265,-0.659543633460999,0.0311595443636179,0.753575325012207,-0.654325664043427,-0.0631044432520866,0.751167416572571,-0.660029888153076,0.0103941718116403,-0.0938934683799744,-0.991740465164185,-0.0873774290084839,-0.0955463200807571,-0.991718590259552,-0.0858203172683716,-0.0968464910984039,-0.991716802120209,0.0843715965747833,-0.910481452941895,-0.412546575069427,-0.0287898406386375,-0.912291288375854,-0.406529992818832,-0.049578033387661,
- -0.881334781646729,-0.0319545492529869,-0.471410781145096,0.987664699554443,0.0196611117571592,-0.155345097184181,0.987979114055634,-0.00365065573714674,-0.154544964432716,0.997173190116882,-0.0737550184130669,-0.0143529772758484,-0.0121876364573836,-0.0236137118190527,-0.999646961688995,-0.0121872378513217,-0.00787318684160709,-0.999894738197327,-0.0121872378513217,-0.00787318684160709,-0.999894738197327,-0.00600807508453727,-0.00787362921983004,-0.99995094537735,-0.00600838335230947,-0.0236150398850441,-0.999703168869019,-0.00574258388951421,-0.0237506479024887,-0.99970144033432,0.448085933923721,-0.0211311057209969,-0.893740713596344,0.40120992064476,-0.913091242313385,-0.0727683454751968,0.00670613767579198,-0.722993850708008,-0.690821945667267,0.603721141815186,-0.0220568627119064,-0.796890377998352,0.589479744434357,-0.00515627348795533,-0.807766735553741,0.719173431396484,-0.693121314048767,-0.0487085282802582,0.00726376287639141,0.0128987589851022,-0.999890446662903,-0.00599109334871173,-0.0156514719128609,-0.999859571456909,-0.0319212637841702,0.0112584829330444,-0.999426960945129,-0.00515582179650664,0.023696294054389,-0.999705910682678,-0.00577608309686184,-0.0156548786908388,-0.999860882759094,0.00753365689888597,0.00719522591680288,-0.999945759773254,-0.0228499993681908,0.615021526813507,-0.788179159164429,0.0520168952643871,0.995971739292145,-0.0730381608009338,-0.0117171630263329,0.0237982477992773,-0.999648213386536,0.0520168952643871,0.995971739292145,-0.0730381608009338,0.0174560695886612,0.963033497333527,-0.26881554722786,-0.0117171630263329,0.0237982477992773,-0.999648213386536,-0.00755423773080111,-0.0156266950070858,-0.999849379062653,-0.0069352681748569,0.0237240474671125,-0.999694466590881,-0.00717140920460224,0.0158021319657564,-0.999849438667297,0.272144764661789,0.0130092399194837,-0.962168395519257,0.266143977642059,0.0185745973140001,-0.963754415512085,0.311918526887894,0.913220465183258,-0.262174129486084,-0.00362634379416704,0.0157745312899351,-0.999869108200073,-0.0035223881714046,-0.0236984752118587,-0.999712944030762,
- -0.00391314970329404,-0.0156843494623899,-0.999869346618652,-0.0266357883810997,0.0159498993307352,-0.999517977237701,-0.00173614372033626,0.963300943374634,-0.268418163061142,-0.0435239002108574,0.977221846580505,-0.207709237933159,-0.0176372155547142,0.0158822070807219,-0.999718308448792,-0.0383898504078388,0.977495193481445,-0.207435324788094,-0.00646701641380787,0.996893465518951,-0.0784955620765686,0.110004916787148,0.990864217281342,-0.0780208185315132,0.125022530555725,0.0127337276935577,-0.992072284221649,0.0885433629155159,0.0149870403110981,-0.995959579944611,-0.00841857027262449,-0.0238133780658245,-0.999680995941162,-0.00838449690490961,0.0158115364611149,-0.999839842319489,-0.00951624847948551,0.0074987830594182,-0.999926626682281,0.305763781070709,0.0195332653820515,-0.95190703868866,0.427555739879608,0.901199579238892,-0.0709606185555458,0.371220141649246,0.916664481163025,-0.148060157895088,0.407904207706451,0.122458517551422,-0.904775142669678,0.348838627338409,0.021111311390996,-0.936945021152496,0.306565940380096,0.939484059810638,-0.152928292751312,-0.00582081032916904,-0.0237524937838316,-0.999700903892517,-0.00628379173576832,0.00762623781338334,-0.999951183795929,-0.0120531301945448,0.0537934973835945,-0.998479425907135,-0.00282639847137034,-0.0236821137368679,-0.999715566635132,-0.00279231765307486,0.0554222576320171,-0.998459100723267,-0.00592679483816028,0.00796694960445166,-0.999950706958771,-0.0699411109089851,0.00895585305988789,-0.99751091003418,-0.0700481235980988,-0.00785443093627691,-0.997512698173523,-0.0694216638803482,-0.0251974277198315,-0.997269153594971,0.329250514507294,0.00224980409257114,-0.944239914417267,0.382605850696564,0.118649259209633,-0.916261613368988,0.531758069992065,0.844948053359985,-0.0574120916426182,-0.00880139507353306,-0.00787346623837948,-0.999930262565613,-0.00850013736635447,0.00800734385848045,-0.999931812286377,-0.00880139507353306,-0.00787346623837948,-0.999930262565613,0.603143751621246,0.795742690563202,-0.0548746511340141,0.592307209968567,0.803226053714752,-0.0632461607456207,
- 0.533755958080292,-0.00174719921778888,-0.845636785030365,-0.0111041441559792,-0.00787328649312258,-0.999907374382019,-0.0108000710606575,0.00804338604211807,-0.999909341335297,-0.0111047960817814,2.22702140720117e-016,-0.999938368797302,-0.0511976704001427,1.96833264820048e-016,-0.998688638210297,-0.0633106380701065,0.00885475147515535,-0.997954607009888,-0.0579334534704685,0.995239973068237,-0.078365370631218,-0.479760020971298,0.860705256462097,0.170343041419983,-0.288089543581009,0.956196308135986,0.0518946386873722,-0.479760020971298,0.860705256462097,0.170343041419983,-0.285885542631149,0.956633448600769,0.0558740273118019,-0.477801829576492,0.861010670661926,0.174258694052696,-0.441032737493515,0.88164746761322,0.167892515659332,-0.310982525348663,0.950364768505096,0.00983229372650385,-0.458381563425064,0.881531119346619,0.113089434802532,-0.216670945286751,0.975940048694611,0.0243872851133347,-0.220420137047768,0.975314676761627,0.0132765853777528,0.000640285899862647,0.996325612068176,-0.0856441035866737,-0.273364245891571,0.958721876144409,0.0782583877444267,0.0329646170139313,0.998817503452301,-0.0357346460223198,-0.222230613231659,0.974962413311005,0.00787821505218744,0.0329646170139313,0.998817503452301,-0.0357346460223198,0.0565122924745083,0.998401582241058,0.000817481661215425,-0.202600970864296,0.977082371711731,0.0652905255556107,0.0967726707458496,0.994725227355957,-0.0340107642114162,-0.217064842581749,0.975880861282349,0.0232242774218321,-0.458196610212326,0.881548464298248,0.113702118396759,-0.0796746760606766,0.975964069366455,0.202844977378845,-0.0556449592113495,0.994735240936279,-0.0860560312867165,0.096655435860157,0.994727909564972,-0.0342657901346684,-0.203441768884659,0.977065861225128,0.0628803446888924,0.428499281406403,0.245638489723206,0.869511544704437,-0.0851104781031609,-0.0289377477020025,0.995951235294342,0.207257181406021,0.530977308750153,0.821649312973022,-0.0722305998206139,0.991727232933044,0.106112495064735,-0.447295606136322,0.881938695907593,0.148696884512901,-0.382461786270142,0.920377254486084,0.0814170092344284,
- -0.382487416267395,0.920251548290253,0.0827073976397514,-0.286950558423996,0.954220831394196,0.0843930318951607,-0.0724205896258354,0.991456687450409,0.108485408127308,-0.288719445466995,0.953062891960144,0.0911711752414703,-0.380550891160965,0.924519896507263,0.0210707224905491,-0.396285712718964,0.916687726974487,0.0513929016888142,-0.286713063716888,0.954371809959412,0.0834869593381882,-0.394713431596756,0.917724609375,0.0445322282612324,-0.394713431596756,0.917724609375,0.0445322282612324,-0.288689762353897,0.953082919120789,0.0910569727420807,-0.0682089179754257,0.986095905303955,0.151533618569374,-0.0763990581035614,0.984272539615631,0.15928190946579,-0.0680851712822914,0.986160635948181,0.151168271899223,-0.288656979799271,0.953104794025421,0.0909309461712837,-0.0754581466317177,0.985998153686523,0.148706912994385,-0.68121063709259,-0.412673592567444,0.604692161083221,-0.68121063709259,-0.412673592567444,0.604692161083221,-0.68121063709259,-0.412673592567444,0.604692161083221,-0.820128738880157,-0.403637260198593,-0.40554416179657,-0.820128738880157,-0.403637260198593,-0.40554416179657,-0.820128738880157,-0.403637260198593,-0.40554416179657,-0.105593457818031,0.396728157997131,0.91184264421463,-0.105593457818031,0.396728157997131,0.91184264421463,-0.105593457818031,0.396728157997131,0.91184264421463,-0.165882363915443,-0.706822097301483,-0.687666773796082,-0.165882363915443,-0.706822097301483,-0.687666773796082,-0.165882363915443,-0.706822097301483,-0.687666773796082,-0.679280519485474,-0.00481091625988483,0.733862936496735,-0.679280519485474,-0.00481091625988483,0.733862936496735,-0.679280519485474,-0.00481091625988483,0.733862936496735,-0.752171158790588,0.00552566209807992,-0.658944606781006,-0.752171158790588,0.00552566209807992,-0.658944606781006,-0.752171158790588,0.00552566209807992,-0.658944606781006,-0.394493043422699,0.0137397199869156,-0.918796181678772,-0.394493043422699,0.0137397199869156,-0.918796181678772,-0.394493043422699,0.0137397199869156,-0.918796181678772,0.10941170156002,-0.396457314491272,0.911510109901428,
- 0.10941170156002,-0.396457314491272,0.911510109901428,0.10941170156002,-0.396457314491272,0.911510109901428,0.172747880220413,0.709145188331604,-0.68357241153717,0.172747880220413,0.709145188331604,-0.68357241153717,0.172747880220413,0.709145188331604,-0.68357241153717,0.695657014846802,0.00466282153502107,0.718358933925629,0.695657014846802,0.00466282153502107,0.718358933925629,0.695657014846802,0.00466282153502107,0.718358933925629,-0.522841930389404,-0.275052666664124,0.806834757328033,-0.522841930389404,-0.275052666664124,0.806834757328033,-0.522841930389404,-0.275052666664124,0.806834757328033,0.620096564292908,0.478141754865646,0.621981263160706,0.620096564292908,0.478141754865646,0.621981263160706,0.620096564292908,0.478141754865646,0.621981263160706,0.764450371265411,0.480377018451691,-0.429945975542068,0.764450371265411,0.480377018451691,-0.429945975542068,0.764450371265411,0.480377018451691,-0.429945975542068,0.70108026266098,0.00742499763146043,0.713043749332428,0.70108026266098,0.00742499763146043,0.713043749332428,0.70108026266098,0.00742499763146043,0.713043749332428,0.354487806558609,0.019887687638402,0.934849143028259,0.354487806558609,0.019887687638402,0.934849143028259,0.354487806558609,0.019887687638402,0.934849143028259,-0.0846157670021057,-0.39663228392601,-0.914069592952728,-0.0846157670021057,-0.39663228392601,-0.914069592952728,-0.0846157670021057,-0.39663228392601,-0.914069592952728,-0.13188636302948,0.708035588264465,0.693751931190491,-0.13188636302948,0.708035588264465,0.693751931190491,-0.13188636302948,0.708035588264465,0.693751931190491,-0.59180611371994,0.00590791646391153,-0.806058824062347,-0.59180611371994,0.00590791646391153,-0.806058824062347,-0.59180611371994,0.00590791646391153,-0.806058824062347,0.42416787147522,-0.288994669914246,-0.858232915401459,0.42416787147522,-0.288994669914246,-0.858232915401459,0.42416787147522,-0.288994669914246,-0.858232915401459,0,-0.999984323978424,0.00559919187799096,0,-0.999984323978424,0.00559919187799096,0,-0.999984323978424,0.00559919187799096,
- 0,-0.999999821186066,-0.000605536217335612,0,-0.999999821186066,-0.000605536217335612,0,-0.999999821186066,-0.000605536217335612,0.000441996002336964,0.999936878681183,0.0112267080694437,0.000441996002336964,0.999936878681183,0.0112267080694437,0.000441996002336964,0.999936878681183,0.0112267080694437,0.000527595344465226,0.999910056591034,0.01340092997998,0.000527595344465226,0.999910056591034,0.01340092997998,0.000527595344465226,0.999910056591034,0.01340092997998,0.0349221304059029,0.00814392883330584,-0.999356865882874,0.0349221304059029,0.00814392883330584,-0.999356865882874,0.0349221304059029,0.00814392883330584,-0.999356865882874,0.0259168110787869,0.00807518418878317,-0.999631583690643,0.0259168110787869,0.00807518418878317,-0.999631583690643,0.0259168110787869,0.00807518418878317,-0.999631583690643,-0,0.999987542629242,0.00499431882053614,-0,0.999987542629242,0.00499431882053614,-0,0.999987542629242,0.00499431882053614,0,0.999998033046722,0.00203527719713748,0,0.999998033046722,0.00203527719713748,0,0.999998033046722,0.00203527719713748,0.00906996242702007,-0.00780203612521291,0.999928534030914,0.00906996242702007,-0.00780203612521291,0.999928534030914,0.00906996242702007,-0.00780203612521291,0.999928534030914,0.0083281435072422,-0.00780792674049735,0.999934852123261,0.0083281435072422,-0.00780792674049735,0.999934852123261,0.0083281435072422,-0.00780792674049735,0.999934852123261,0.0411493144929409,0.0160566717386246,0.999023973941803,0.0411493144929409,0.0160566717386246,0.999023973941803,0.0411493144929409,0.0160566717386246,0.999023973941803,-0.0421298779547215,0.015400449745357,0.998993456363678,-0.0421298779547215,0.015400449745357,0.998993456363678,-0.0421298779547215,0.015400449745357,0.998993456363678,0.00615807855501771,0.0157942604273558,0.999856412410736,0.00615807855501771,0.0157942604273558,0.999856412410736,0.00615807855501771,0.0157942604273558,0.999856412410736,-0.00606231624260545,-0.999950647354126,-0.00787362735718489,-0.00606231624260545,-0.999950647354126,-0.00787362735718489,-0.00606231624260545,-0.999950647354126,-0.00787362735718489,
- 0.027360163629055,-0.999594748020172,-0.00787082500755787,0.027360163629055,-0.999594748020172,-0.00787082500755787,0.027360163629055,-0.999594748020172,-0.00787082500755787,-0.0114062074571848,-0.999903976917267,-0.00787325948476791,-0.0114062074571848,-0.999903976917267,-0.00787325948476791,-0.0114062074571848,-0.999903976917267,-0.00787325948476791,-0.057800717651844,0.998204469680786,-0.0157197564840317,-0.057800717651844,0.998204469680786,-0.0157197564840317,-0.057800717651844,0.998204469680786,-0.0157197564840317,-0.0441777147352695,0.998899817466736,-0.015730706974864,-0.0441777147352695,0.998899817466736,-0.015730706974864,-0.0441777147352695,0.998899817466736,-0.015730706974864,-0.0226020906120539,0.999620616436005,-0.0157420560717583,-0.0226020906120539,0.999620616436005,-0.0157420560717583,-0.0226020906120539,0.999620616436005,-0.0157420560717583,0.0900958776473999,-0.0384712815284729,0.995189785957336,0.0900958776473999,-0.0384712815284729,0.995189785957336,0.0900958776473999,-0.0384712815284729,0.995189785957336,0.0802505016326904,-0.0385817959904671,0.996027767658234,0.0802505016326904,-0.0385817959904671,0.996027767658234,0.0802505016326904,-0.0385817959904671,0.996027767658234,0.120640031993389,-0.0381038077175617,0.991964757442474,0.120640031993389,-0.0381038077175617,0.991964757442474,0.120640031993389,-0.0381038077175617,0.991964757442474,-0.0362303741276264,-0.0163061562925577,0.99921053647995,-0.0362303741276264,-0.0163061562925577,0.99921053647995,-0.0362303741276264,-0.0163061562925577,0.99921053647995,0.0370522066950798,-0.0151519095525146,0.999198436737061,0.0370522066950798,-0.0151519095525146,0.999198436737061,0.0370522066950798,-0.0151519095525146,0.999198436737061,-0.00655824411660433,-0.0158489942550659,0.999852895736694,-0.00655824411660433,-0.0158489942550659,0.999852895736694,-0.00655824411660433,-0.0158489942550659,0.999852895736694,-0.113219507038593,0.993539214134216,-0.00782314315438271,-0.113219507038593,0.993539214134216,-0.00782314315438271,-0.113219507038593,0.993539214134216,-0.00782314315438271,
- -0.00338879693299532,0.999963283538818,-0.0078737260773778,-0.00338879693299532,0.999963283538818,-0.0078737260773778,-0.00338879693299532,0.999963283538818,-0.0078737260773778,0.0111223571002483,0.999907255172729,-0.0078732855618,0.0111223571002483,0.999907255172729,-0.0078732855618,0.0111223571002483,0.999907255172729,-0.0078732855618,-0.0223048720508814,0.999732613563538,-0.00611562142148614,-0.0223048720508814,0.999732613563538,-0.00611562142148614,-0.0208527520298958,0.999656021595001,-0.0159068144857883,-0.0158736370503902,0.999748170375824,-0.0158690512180328,-0.0157482288777828,0.999845087528229,-0.00787279568612576,-0.0137537308037281,0.999882340431213,-0.00679011782631278,-0.00929604936391115,0.999925792217255,-0.00787343084812164,-0.00961470231413841,0.999828636646271,-0.0158210303634405,-0.00929604936391115,0.999925792217255,-0.00787343084812164,0.047856118530035,-0.998359203338623,0.0314443819224834,0.047856118530035,-0.998359203338623,0.0314443819224834,0.047856118530035,-0.998359203338623,0.0314443819224834,-0.0216977801173925,-0.999269068241119,0.0314730405807495,-0.0216977801173925,-0.999269068241119,0.0314730405807495,-0.0216977801173925,-0.999269068241119,0.0314730405807495,-0.00853191036731005,-0.999468088150024,0.0314793139696121,-0.00853191036731005,-0.999468088150024,0.0314793139696121,-0.00853191036731005,-0.999468088150024,0.0314793139696121,0.0113863050937653,0.00787326227873564,-0.999904274940491,0.0113863050937653,0.00787326227873564,-0.999904274940491,0.0113863050937653,0.00787326227873564,-0.999904274940491,0.0231901798397303,0.00787165388464928,-0.99970006942749,0.0231901798397303,0.00787165388464928,-0.99970006942749,0.0231901798397303,0.00787165388464928,-0.99970006942749,0.0118712680414319,0.00787321664392948,-0.999898552894592,0.0118712680414319,0.00787321664392948,-0.999898552894592,0.0118712680414319,0.00787321664392948,-0.999898552894592,0.00266226450912654,0.99996554851532,-0.00787374470382929,0.00266226450912654,0.99996554851532,-0.00787374470382929,0.00266226450912654,0.99996554851532,-0.00787374470382929,
- -0.00530624017119408,0.99995493888855,-0.00787366088479757,-0.00530624017119408,0.99995493888855,-0.00787366088479757,-0.00530624017119408,0.99995493888855,-0.00787366088479757,0.0077843670733273,0.999938726425171,-0.00787353329360485,0.0077843670733273,0.999938726425171,-0.00787353329360485,0.0077843670733273,0.999938726425171,-0.00787353329360485,0.0916459709405899,-0.995076477527618,-0.0377329960465431,0.0916459709405899,-0.995076477527618,-0.0377329960465431,0.0916459709405899,-0.995076477527618,-0.0377329960465431,0.099522203207016,-0.994325459003448,-0.0375793911516666,0.099522203207016,-0.994325459003448,-0.0375793911516666,0.099522203207016,-0.994325459003448,-0.0375793911516666,0.102402605116367,-0.994035184383392,-0.0375226028263569,0.102402605116367,-0.994035184383392,-0.0375226028263569,0.102402605116367,-0.994035184383392,-0.0375226028263569,-1.09787060864619e-005,0.0393395163118839,-0.999225914478302,-1.09787060864619e-005,0.0393395163118839,-0.999225914478302,-1.09787060864619e-005,0.0393395163118839,-0.999225914478302,0.00361877330578864,0.0393677987158298,-0.999218344688416,0.00361877330578864,0.0393677987158298,-0.999218344688416,0.00361877330578864,0.0393677987158298,-0.999218344688416,-0.0101968040689826,0.0392573922872543,-0.999177217483521,-0.0101968040689826,0.0392573922872543,-0.999177217483521,-0.0101968040689826,0.0392573922872543,-0.999177217483521,-0.0112011050805449,0.0392490699887276,-0.999166667461395,-0.0112011050805449,0.0392490699887276,-0.999166667461395,-0.0112011050805449,0.0392490699887276,-0.999166667461395,0.0229731760919094,0.999710619449615,0.00714817317202687,0.0231654178351164,0.999694645404816,0.0086012315005064,0.0229731760919094,0.999710619449615,0.00714817317202687,0.0301499608904123,0.99950647354126,0.00881973467767239,0.0310209318995476,0.999494969844818,0.00689300149679184,0.0301499608904123,0.99950647354126,0.00881973467767239,0.026377085596323,0.999614298343658,0.0087017547339201,0.026377085596323,0.999614298343658,0.0087017547339201,0.026377085596323,0.999614298343658,0.0087017547339201,
- -3.03589313261909e-005,0.999999701976776,0.000771116814576089,-3.03589313261909e-005,0.999999701976776,0.000771116814576089,-3.03589313261909e-005,0.999999701976776,0.000771116814576089,-0.000223126218770631,0.999983906745911,0.00566740613430738,-0.000223126218770631,0.999983906745911,0.00566740613430738,-0.000223126218770631,0.999983906745911,0.00566740613430738,0.000262385641690344,0.999977767467499,-0.00666459696367383,0.000262385641690344,0.999977767467499,-0.00666459696367383,0.000262385641690344,0.999977767467499,-0.00666459696367383,0.015966547653079,-0.0141027336940169,-0.99977308511734,0.015966547653079,-0.0141027336940169,-0.99977308511734,0.015966547653079,-0.0141027336940169,-0.99977308511734,0.0159979891031981,-0.0161303896456957,-0.999741911888123,0.0159979891031981,-0.0161303896456957,-0.999741911888123,0.0159979891031981,-0.0161303896456957,-0.999741911888123,0.0158619172871113,-0.007384795229882,-0.999846935272217,0.0158619172871113,-0.007384795229882,-0.999846935272217,0.0158619172871113,-0.007384795229882,-0.999846935272217,-0.00587684847414494,-0.99948126077652,-0.0316648185253143,-0.00587684847414494,-0.99948126077652,-0.0316648185253143,-0.00587684847414494,-0.99948126077652,-0.0316648185253143,-0.0498026311397552,-0.998213469982147,-0.0330083779990673,-0.0498026311397552,-0.998213469982147,-0.0330083779990673,-0.0498026311397552,-0.998213469982147,-0.0330083779990673,0.0123300943523645,-0.999440550804138,-0.0310900919139385,0.0123300943523645,-0.999440550804138,-0.0310900919139385,0.0123300943523645,-0.999440550804138,-0.0310900919139385,0.0406037196516991,-0.999051451683044,-0.0157330948859453,0.0406037196516991,-0.999051451683044,-0.0157330948859453,0.0406037196516991,-0.999051451683044,-0.0157330948859453,0.0598430559039116,-0.99808406829834,-0.0157178584486246,0.0598430559039116,-0.99808406829834,-0.0157178584486246,0.0598430559039116,-0.99808406829834,-0.0157178584486246,0.0457690954208374,-0.998828291893005,-0.0157295800745487,0.0457690954208374,-0.998828291893005,-0.0157295800745487,0.0457690954208374,-0.998828291893005,-0.0157295800745487,
- 0.0234338641166687,-0.999601542949677,-0.0157417580485344,0.0234338641166687,-0.999601542949677,-0.0157417580485344,0.0234338641166687,-0.999601542949677,-0.0157417580485344,8.49726620799629e-006,-0.0393395349383354,-0.999225914478302,8.49726620799629e-006,-0.0393395349383354,-0.999225914478302,8.49726620799629e-006,-0.0393395349383354,-0.999225914478302,-0.00378751801326871,-0.0393690951168537,-0.999217569828033,-0.00378751801326871,-0.0393690951168537,-0.999217569828033,-0.00378751801326871,-0.0393690951168537,-0.999217569828033,0.0107455383986235,-0.0392528511583805,-0.999171555042267,0.0107455383986235,-0.0392528511583805,-0.999171555042267,0.0107455383986235,-0.0392528511583805,-0.999171555042267,0.0116826258599758,-0.039245069026947,-0.999161303043365,0.0116826258599758,-0.039245069026947,-0.999161303043365,0.0116826258599758,-0.039245069026947,-0.999161303043365,-0.000648849818389863,-0.999863982200623,0.0164807867258787,-0.000648849818389863,-0.999863982200623,0.0164807867258787,-0.000648849818389863,-0.999863982200623,0.0164807867258787,-0.000434812740422785,-0.999939024448395,0.0110442424193025,-0.000434812740422785,-0.999939024448395,0.0110442424193025,-0.000434812740422785,-0.999939024448395,0.0110442424193025,0.000536990410182625,-0.999906837940216,-0.0136395562440157,0.000536990410182625,-0.999906837940216,-0.0136395562440157,0.000536990410182625,-0.999906837940216,-0.0136395562440157,-0.00146151112858206,-0.999309659004211,0.0371223799884319,-0.00146151112858206,-0.999309659004211,0.0371223799884319,-0.00146151112858206,-0.999309659004211,0.0371223799884319,-0.0499436520040035,0.0388978533446789,0.997994303703308,-0.0499436520040035,0.0388978533446789,0.997994303703308,-0.0499436520040035,0.0388978533446789,0.997994303703308,-0.0991500839591026,0.0383662432432175,0.994332611560822,-0.0991500839591026,0.0383662432432175,0.994332611560822,-0.0991500839591026,0.0383662432432175,0.994332611560822,-0.0821857154369354,0.0385603792965412,0.995870769023895,-0.0821857154369354,0.0385603792965412,0.995870769023895,
- -0.0821857154369354,0.0385603792965412,0.995870769023895,-0.126147508621216,0.0380335710942745,0.991282224655151,-0.126147508621216,0.0380335710942745,0.991282224655151,-0.126147508621216,0.0380335710942745,0.991282224655151,-0.0106612639501691,-0.00787332467734814,-0.999912261962891,-0.0106612639501691,-0.00787332467734814,-0.999912261962891,-0.0106612639501691,-0.00787332467734814,-0.999912261962891,-0.0439535230398178,-0.00786616187542677,-0.999002635478973,-0.0439535230398178,-0.00786616187542677,-0.999002635478973,-0.0439535230398178,-0.00786616187542677,-0.999002635478973,-0.0127399284392595,-0.00787313375622034,-0.999887943267822,-0.0127399284392595,-0.00787313375622034,-0.999887943267822,-0.0127399284392595,-0.00787313375622034,-0.999887943267822,-0.00222865841351449,-0.999966621398926,-0.00787375308573246,-0.00222865841351449,-0.999966621398926,-0.00787375308573246,-0.00222865841351449,-0.999966621398926,-0.00787375308573246,0.00407034298405051,-0.999960720539093,-0.00787370651960373,0.00407034298405051,-0.999960720539093,-0.00787370651960373,0.00407034298405051,-0.999960720539093,-0.00787370651960373,-0.00611279020085931,-0.999950408935547,-0.00787362549453974,-0.00611279020085931,-0.999950408935547,-0.00787362549453974,-0.00611279020085931,-0.999950408935547,-0.00787362549453974,0.0111008053645492,-0.0550311841070652,-0.998422920703888,0.0111008053645492,-0.0550311841070652,-0.998422920703888,0.0111008053645492,-0.0550311841070652,-0.998422920703888,0.0207386016845703,-0.0550227388739586,-0.998269736766815,0.0207386016845703,-0.0550227388739586,-0.998269736766815,0.0207386016845703,-0.0550227388739586,-0.998269736766815,0.027702309191227,-0.0550134629011154,-0.998101353645325,0.027702309191227,-0.0550134629011154,-0.998101353645325,0.027702309191227,-0.0550134629011154,-0.998101353645325,0.0320706367492676,-0.0550062730908394,-0.997970938682556,0.0320706367492676,-0.0550062730908394,-0.997970938682556,0.0320706367492676,-0.0550062730908394,-0.997970938682556,0.0314702689647675,0.999181032180786,0.0254379939287901,
- 0.0314702689647675,0.999181032180786,0.0254379939287901,0.0314702689647675,0.999181032180786,0.0254379939287901,0.0314799435436726,0.999488174915314,-0.00569474278017879,0.0314799435436726,0.999488174915314,-0.00569474278017879,0.0314799435436726,0.999488174915314,-0.00569474278017879,0.0314804427325726,0.999504089355469,-0.00078163220314309,0.0314804427325726,0.999504089355469,-0.00078163220314309,0.0314804427325726,0.999504089355469,-0.00078163220314309,0.0156766064465046,-0.00874935742467642,0.999838948249817,0.0156766064465046,-0.00874935742467642,0.999838948249817,0.0156766064465046,-0.00874935742467642,0.999838948249817,0.0151553833857179,-0.0701139569282532,0.997423946857452,0.0151553833857179,-0.0701139569282532,0.997423946857452,0.0151553833857179,-0.0701139569282532,0.997423946857452,0.0156804174184799,-0.00827270001173019,0.999842941761017,0.0156804174184799,-0.00827270001173019,0.999842941761017,0.0156804174184799,-0.00827270001173019,0.999842941761017,0.0734458267688751,0.996572017669678,0.0380784906446934,0.0734458267688751,0.996572017669678,0.0380784906446934,0.0734458267688751,0.996572017669678,0.0380784906446934,0.0793541893362999,0.996123194694519,0.0379677750170231,0.0793541893362999,0.996123194694519,0.0379677750170231,0.0793541893362999,0.996123194694519,0.0379677750170231,0.0789618715643883,0.996154069900513,0.0379751697182655,0.0789618715643883,0.996154069900513,0.0379751697182655,0.0789618715643883,0.996154069900513,0.0379751697182655,0.000280830630799755,-0.99996030330658,-0.00891637336462736,0.000280830630799755,-0.99996030330658,-0.00891637336462736,0.000280830630799755,-0.99996030330658,-0.00891637336462736,0.000361700018402189,-0.999934017658234,-0.0114839747548103,0.000361700018402189,-0.999934017658234,-0.0114839747548103,0.000361700018402189,-0.999934017658234,-0.0114839747548103,0.000305295950965956,-0.999952971935272,-0.0096931541338563,0.000305295950965956,-0.999952971935272,-0.0096931541338563,0.000305295950965956,-0.999952971935272,-0.0096931541338563,0,-0.995661318302155,0.0930515751242638,
- 0,-0.995661318302155,0.0930515751242638,0,-0.995661318302155,0.0930515751242638,0,-0.993862569332123,0.110622085630894,0,-0.993862569332123,0.110622085630894,0,-0.993862569332123,0.110622085630894,0,-0.993527948856354,0.113588765263557,0,-0.993527948856354,0.113588765263557,0,-0.993527948856354,0.113588765263557,0,-0.99369353055954,0.112130090594292,0,-0.99369353055954,0.112130090594292,0,-0.99369353055954,0.112130090594292,-0.0642905309796333,-0.0481039956212044,0.996771156787872,-0.0642905309796333,-0.0481039956212044,0.996771156787872,-0.0642905309796333,-0.0481039956212044,0.996771156787872,-0.0585951283574104,-0.0480310544371605,0.997125685214996,-0.0585951283574104,-0.0480310544371605,0.997125685214996,-0.0585951283574104,-0.0480310544371605,0.997125685214996,-0.0705423057079315,-0.0481822900474072,0.996344447135925,-0.0705423057079315,-0.0481822900474072,0.996344447135925,-0.0705423057079315,-0.0481822900474072,0.996344447135925,-0.0493804849684238,-0.0479097850620747,0.997630298137665,-0.0493804849684238,-0.0479097850620747,0.997630298137665,-0.0493804849684238,-0.0479097850620747,0.997630298137665,-0,0.996603846549988,0.0823457986116409,-0,0.996603846549988,0.0823457986116409,-0,0.996603846549988,0.0823457986116409,0,0.994017541408539,0.109221592545509,0,0.994017541408539,0.109221592545509,0,0.994017541408539,0.109221592545509,-0,0.992898166179657,0.118967518210411,-0,0.992898166179657,0.118967518210411,-0,0.992898166179657,0.118967518210411,-0,0.99379825592041,0.11119831353426,-0,0.99379825592041,0.11119831353426,-0,0.99379825592041,0.11119831353426,-0.0157426744699478,-0.999659836292267,0.0207939669489861,-0.0157426744699478,-0.999659836292267,0.0207939669489861,-0.0157426744699478,-0.999659836292267,0.0207939669489861,-0.0157456770539284,-0.999850451946259,0.00715365167707205,-0.0157456770539284,-0.999850451946259,0.00715365167707205,-0.0157456770539284,-0.999850451946259,0.00715365167707205,-0.0157411564141512,-0.99956339597702,0.0250053163617849,-0.0157411564141512,-0.99956339597702,0.0250053163617849,
- -0.0157411564141512,-0.99956339597702,0.0250053163617849,-0.0157340187579393,-0.999110162258148,0.0391323044896126,-0.0157340187579393,-0.999110162258148,0.0391323044896126,-0.0157340187579393,-0.999110162258148,0.0391323044896126,-0.0180784333497286,-0.999712705612183,0.0157435070723295,-0.0180784333497286,-0.999712705612183,0.0157435070723295,-0.0180784333497286,-0.999712705612183,0.0157435070723295,-0.035378459841013,-0.999250113964081,0.0157362222671509,-0.035378459841013,-0.999250113964081,0.0157362222671509,-0.035378459841013,-0.999250113964081,0.0157362222671509,-0.0265430975705385,-0.999523758888245,0.0157405324280262,-0.0265430975705385,-0.999523758888245,0.0157405324280262,-0.0265430975705385,-0.999523758888245,0.0157405324280262,-0.130641669034958,-0.991306722164154,0.0156111298128963,-0.130641669034958,-0.991306722164154,0.0156111298128963,-0.130641669034958,-0.991306722164154,0.0156111298128963,0,0.995792388916016,-0.0916380807757378,0,0.995792388916016,-0.0916380807757378,0,0.995792388916016,-0.0916380807757378,0,0.994200587272644,-0.107542470097542,0,0.994200587272644,-0.107542470097542,0,0.994200587272644,-0.107542470097542,0,0.994246482849121,-0.107117414474487,0,0.994246482849121,-0.107117414474487,0,0.994246482849121,-0.107117414474487,0,0.993695735931396,-0.112110741436481,0,0.993695735931396,-0.112110741436481,0,0.993695735931396,-0.112110741436481,-0.00234075216576457,-0.0393026880919933,0.999224603176117,-0.00234075216576457,-0.0393026880919933,0.999224603176117,-0.00234075216576457,-0.0393026880919933,0.999224603176117,-0.00920223910361528,-0.0391932465136051,0.999189376831055,-0.00920223910361528,-0.0391932465136051,0.999189376831055,-0.00920223910361528,-0.0391932465136051,0.999189376831055,0.00280238501727581,-0.0393835119903088,0.999220252037048,0.00280238501727581,-0.0393835119903088,0.999220252037048,0.00280238501727581,-0.0393835119903088,0.999220252037048,-2.1942141756881e-005,-0.039339255541563,0.999225914478302,-2.1942141756881e-005,-0.039339255541563,0.999225914478302,-2.1942141756881e-005,-0.039339255541563,0.999225914478302,
- 0.0967512577772141,0.0376337133347988,-0.994596838951111,0.0967512577772141,0.0376337133347988,-0.994596838951111,0.0967512577772141,0.0376337133347988,-0.994596838951111,0.0636676177382469,0.0382586792111397,-0.99723756313324,0.0636676177382469,0.0382586792111397,-0.99723756313324,0.0636676177382469,0.0382586792111397,-0.99723756313324,0.0372535847127438,0.0387265235185623,-0.998555183410645,0.0372535847127438,0.0387265235185623,-0.998555183410645,0.0372535847127438,0.0387265235185623,-0.998555183410645,0.310496002435684,0.0325126014649868,-0.950018525123596,0.310496002435684,0.0325126014649868,-0.950018525123596,0.310496002435684,0.0325126014649868,-0.950018525123596,0.0236090756952763,0.99945080280304,0.023257264867425,0.0236090756952763,0.99945080280304,0.023257264867425,0.0236090756952763,0.99945080280304,0.023257264867425,0.0236130114644766,0.999617397785187,0.0144112352281809,0.0236130114644766,0.999617397785187,0.0144112352281809,0.0236130114644766,0.999617397785187,0.0144112352281809,0.0236106775701046,0.999518692493439,0.0201232321560383,0.0236106775701046,0.999518692493439,0.0201232321560383,0.0236106775701046,0.999518692493439,0.0201232321560383,0.0235927533358335,0.998759865760803,0.043841727077961,0.0235927533358335,0.998759865760803,0.043841727077961,0.0235927533358335,0.998759865760803,0.043841727077961,-0.123668238520622,0.991593241691589,-0.0380653366446495,-0.123668238520622,0.991593241691589,-0.0380653366446495,-0.123668238520622,0.991593241691589,-0.0380653366446495,-0.10325001180172,0.993917107582092,-0.0383176021277905,-0.10325001180172,0.993917107582092,-0.0383176021277905,-0.10325001180172,0.993917107582092,-0.0383176021277905,-0.0950602814555168,0.994730055332184,-0.0384140945971012,-0.0950602814555168,0.994730055332184,-0.0384140945971012,-0.0950602814555168,0.994730055332184,-0.0384140945971012,-0.107641451060772,0.993453145027161,-0.0382647551596165,-0.107641451060772,0.993453145027161,-0.0382647551596165,-0.107641451060772,0.993453145027161,-0.0382647551596165,1.96214023162611e-006,1,-1.52065724378855e-014,
- 1.90579794434598e-006,1,-6.03101222730455e-015,2.13449152397516e-006,1,-1.30692550491117e-014,1.58844989073259e-006,1,-3.92324044887378e-014,2.94320852844976e-006,1,1.92406786575332e-014,2.20887091018085e-006,1,5.87247349408343e-015,1.90579794434598e-006,1,-6.03101222730455e-015,1.96214023162611e-006,1,-1.52065724378855e-014,-0,1,0,-3.63156999583225e-007,1,-1.25512950371404e-015,-3.01169507110899e-008,1,-1.91084915428176e-016,-1.70201474247733e-006,1,-4.66195821096499e-014,0,1,0,-5.43574742550845e-007,1,2.29356680369675e-015,-3.63156999583225e-007,1,-1.25512950371404e-015,-0,1,0,2.12802478927188e-005,1,0.000126486047520302,-1.1515301594045e-005,1,0.00012650694407057,-4.41201264038682e-005,1,0.000126527709653601,-2.0105428120587e-005,0.999999940395355,0.000394977687392384,-3.63998296961654e-005,0.999999940395355,0.000249990727752447,0.000818105880171061,0.999999761581421,0.000125978025607765,-0.000105452891148161,1,0.000126566825201735,-0.000493719824589789,0.99999988079071,0.000126814324175939,2.21257300836442e-006,0.999999940395355,0.00024472369113937,2.06077697839646e-006,0.999999940395355,0.000248359516263008,2.13449152397516e-006,1,-1.30692550491117e-014,2.21235495700967e-006,1,0,1.90579794434598e-006,1,-6.03101222730455e-015,2.20887091018085e-006,1,5.87247349408343e-015,1.70816883837688e-006,1,-0,2.19621665564773e-006,1,0,3.00661577057326e-006,1,6.09414740893044e-008,2.02807132154703e-006,1,-0,2.61801505985204e-006,1,1.27774327170248e-014,3.83396309189266e-006,1,8.54443840125896e-008,-2.78627787508867e-009,1,-5.98626684222836e-007,-2.78627831917788e-009,1,-1.3247765309643e-005,-2.78627809713328e-009,1,-1.33782123157289e-005,-2.78627831917788e-009,1,-8.5951927530914e-007,-2.78627854122249e-009,1,-9.1183501353953e-006,4.6490777094732e-007,0.600337147712708,-0.799746990203857,5.7097515604454e-010,0.600337207317352,-0.799746990203857,3.35481242785818e-009,0.600337207317352,-0.799746990203857,2.88671642145744e-009,0.600337207317352,-0.799746990203857,1.64701350513496e-006,0.600337147712708,-0.799747109413147,1.23431073006941e-006,0.600337147712708,-0.799747109413147,
- 5.7097515604454e-010,0.600337207317352,-0.799746990203857,4.6490777094732e-007,0.600337147712708,-0.799746990203857,-0.99914675951004,-0.0232598520815372,0.0341261699795723,-0.999662578105927,-0.015358860604465,0.0209450516849756,-0.997945547103882,0.0640671774744987,0.000511934282258153,-0.997934341430664,0.0642413347959518,0.000255971099250019,-3.63998296961654e-005,0.999999940395355,0.000249990727752447,-2.0105428120587e-005,0.999999940395355,0.000394977687392384,2.06077697839646e-006,0.999999940395355,0.000248359516263008,2.21257300836442e-006,0.999999940395355,0.00024472369113937,-0.992325484752655,-0.121471613645554,0.0231226868927479,-0.99453592300415,-0.104367479681969,-0.0024032664950937,-0.999662578105927,-0.015358860604465,0.0209450516849756,-0.99914675951004,-0.0232598520815372,0.0341261699795723,-0,-0.0250555388629436,0.999686062335968,-0,1.1424567674112e-005,1,-0,0.0250781029462814,0.99968558549881,0,0.00836782623082399,0.999964952468872,0,1.19223768706433e-005,1,0,-0.00834455247968435,0.999965190887451,-0.999594807624817,0.0284645836800337,-1.29429736261955e-006,-0.999594807624817,0.0284638293087482,-2.5876520339807e-006,-0.999594867229462,0.0284630786627531,-3.88287935493281e-006,-0.999594807624817,0.0284638293087482,-2.5876520339807e-006,-1.90251159892796e-006,1,6.26523640368144e-014,-3.38709270408799e-007,1,2.76517251411308e-015,-5.43574742550845e-007,1,2.29356680369675e-015,0,1,0,2.21235495700967e-006,1,0,2.13449152397516e-006,1,-1.30692550491117e-014,1.90579794434598e-006,1,-6.03101222730455e-015,2.19621665564773e-006,1,0,1.23188374345773e-006,0.600337147712708,-0.799747049808502,1.53698829308269e-006,0.600337028503418,-0.799747109413147,1.23431073006941e-006,0.600337147712708,-0.799747109413147,1.64701350513496e-006,0.600337147712708,-0.799747109413147,0,2.08457845474186e-006,-1,0,3.16974569614104e-006,-1,0,5.39057418791344e-006,-1,0,9.83220070338575e-006,-1,0,4.30539694207255e-006,-1,0,-8.57853024172073e-008,-1,2.60167666965572e-006,1,5.48169772377968e-014,2.61801505985204e-006,1,1.27774327170248e-014,
- 2.20887091018085e-006,1,5.87247349408343e-015,2.94320852844976e-006,1,1.92406786575332e-014,2.61801505985204e-006,1,1.27774327170248e-014,2.02807132154703e-006,1,-0,1.70816883837688e-006,1,-0,2.20887091018085e-006,1,5.87247349408343e-015,7.22912432138401e-007,0.600373029708862,0.799720168113709,1.55367899878911e-006,0.600373089313507,0.799720168113709,3.10559494209883e-006,0.600373029708862,0.799720227718353,1.03382183169742e-006,0.600373029708862,0.799720168113709,2.17360388887755e-006,0.600373089313507,0.799720168113709,7.22912432138401e-007,0.600373029708862,0.799720168113709,1.03382183169742e-006,0.600373029708862,0.799720168113709,2.09624613489723e-006,0.600373089313507,0.799720168113709,3.10596647068451e-006,0.600373148918152,0.799720048904419,2.17360388887755e-006,0.600373089313507,0.799720168113709,2.09624613489723e-006,0.600373089313507,0.799720168113709,4.03712238039589e-006,0.600373148918152,0.799719989299774,8.13680571809527e-007,1,0,-0.245012879371643,0.969507098197937,0.00496616773307323,-0.0313660204410553,-0.9995077252388,0.000699029129464179,-3.01169507110899e-008,1,-1.91084915428176e-016,-0,1,0,8.13680571809527e-007,1,0,-3.01169507110899e-008,1,-1.91084915428176e-016,-3.63156999583225e-007,1,-1.25512950371404e-015,8.16728686459101e-007,1,0,4.08365110615705e-007,1,0,-5.43574742550845e-007,1,2.29356680369675e-015,-3.38709270408799e-007,1,2.76517251411308e-015,8.03861894382862e-007,0.999999940395355,0.000244610011577606,8.16728686459101e-007,1,0,-3.38709270408799e-007,1,2.76517251411308e-015,2.40690951613942e-007,0.999999940395355,0.000248244701651856,4.08365110615705e-007,1,0,-0,1,0,-3.63156999583225e-007,1,-1.25512950371404e-015,-5.43574742550845e-007,1,2.29356680369675e-015,0.00243659853003919,0.999997019767761,0.000293250777758658,8.03861894382862e-007,0.999999940395355,0.000244610011577606,2.40690951613942e-007,0.999999940395355,0.000248244701651856,0.00189951795618981,0.999998092651367,0.000381824764190242,-1.19869782793103e-005,1,0.000178012938704342,0.00243659853003919,0.999997019767761,0.000293250777758658,
- 0.00189951795618981,0.999998092651367,0.000381824764190242,0.0163088217377663,0.999867022037506,0.000166343044838868,0.0728868842124939,0.997340202331543,0.000125520266010426,0.0367438234388828,0.99932473897934,0.000151664586155675,-0.00056584196863696,0.99999988079071,0.000178408154170029,0.000787825265433639,0.999999701976776,0.000177442139829509,7.25005975255044e-007,0,-1,3.44260968176968e-007,0,-1,-0,0,-1,4.60740011476446e-007,0,-1,5.28532382304547e-007,0,-1,7.25005975255044e-007,0,-1,4.60740011476446e-007,0,-1,7.59765043767402e-007,0,-1,0,0,-1,5.28532382304547e-007,0,-1,7.59765043767402e-007,0,-1,2.64266475369368e-007,0,-1,0,0,-1,0,0,-1,2.64266475369368e-007,0,-1,0,0,-1,3.14800132628079e-007,9.90342696738367e-010,-1,0,0,-1,0,0,-1,-0,9.90342696738367e-010,-1,-5.96027007304656e-007,-1.33866848273101e-007,-1,3.14800132628079e-007,9.90342696738367e-010,-1,-0,9.90342696738367e-010,-1,6.26420728622179e-007,-1.33820691416986e-007,-1,-5.96027007304656e-007,-1.33866848273101e-007,-1,6.26420728622179e-007,-1.33820691416986e-007,-1,-1.66425797942793e-006,-2.12490959938805e-007,-1,-2.13168618756754e-006,-2.12490277817778e-007,-1,5.49248580644646e-012,-2.12493404205816e-007,-1,-0.999594748020172,0.0284660793840885,-1.29970851503458e-006,-0.999594748020172,0.0284660775214434,-1.30072771753476e-006,-0.999594748020172,0.0284660793840885,-1.29970851503458e-006,-0.999594748020172,0.0284660775214434,-1.30072771753476e-006,-0.99967747926712,-0.0142595320940018,-0.0210106745362282,-0.994764387607574,-0.102181792259216,0.00164475466590375,-0.992560207843781,-0.119378060102463,-0.0239395033568144,-0.999155282974243,-0.0222509782761335,-0.0345501378178597,-0.997900485992432,0.0647641345858574,0.000512514438014477,-0.99967747926712,-0.0142595320940018,-0.0210106745362282,-0.999155282974243,-0.0222509782761335,-0.0345501378178597,-0.997911930084229,0.0645898208022118,0.000256256724242121,-0.0705531537532806,0.0937908887863159,-0.993088841438293,-0.299530684947968,-0.188646927475929,-0.935250639915466,-0.317381590604782,-0.387022197246552,-0.86572676897049,
- -0.223856315016747,-0.0809879079461098,-0.971251487731934,-0.256680637598038,-0.0143226524814963,-0.966390132904053,-0.275074064731598,-0.111579209566116,-0.954926311969757,-0.293303787708282,-0.124492257833481,-0.947879016399384,-0.399176418781281,-0.00727618439123034,-0.916845262050629,-0.297197729349136,0.0295750387012959,-0.954357862472534,-0.549428403377533,0.0183640513569117,-0.835338950157166,-0.592008829116821,-0.0143031617626548,-0.80580461025238,-0.256680637598038,-0.0143226524814963,-0.966390132904053,-0.372848212718964,-0.0287496894598007,-0.927446842193604,-0.514973938465118,-0.067081980407238,-0.854576945304871,-0.275074064731598,-0.111579209566116,-0.954926311969757,0.25724858045578,0.490121364593506,-0.832828998565674,0.127046510577202,0.383527874946594,-0.914748907089233,-0.0705531537532806,0.0937908887863159,-0.993088841438293,0.170008644461632,0.132196813821793,-0.976535201072693,0.0926550179719925,0.161547675728798,-0.982505738735199,-0.077641524374485,0.0830382034182549,-0.993517220020294,0.100175455212593,0.143159255385399,-0.984616756439209,0.216443240642548,0.0879316106438637,-0.97232723236084,0.119681321084499,0.105234012007713,-0.987219452857971,0.0926550179719925,0.161547675728798,-0.982505738735199,0.170008644461632,0.132196813821793,-0.976535201072693,-0.399176418781281,-0.00727618439123034,-0.916845262050629,0.20761451125145,0.115016013383865,-0.971425533294678,0.119698584079742,0.084430068731308,-0.989213705062866,0.106571428477764,0.144453793764114,-0.983755886554718,-0.297197729349136,0.0295750387012959,-0.954357862472534,0.119698584079742,0.084430068731308,-0.989213705062866,-0.0705531537532806,0.0937908887863159,-0.993088841438293,0.127046510577202,0.383527874946594,-0.914748907089233,-0.299530684947968,-0.188646927475929,-0.935250639915466,-0.077641524374485,0.0830382034182549,-0.993517220020294,-0.256680637598038,-0.0143226524814963,-0.966390132904053,-0.223856315016747,-0.0809879079461098,-0.971251487731934,0.0926550179719925,0.161547675728798,-0.982505738735199,0.119681321084499,0.105234012007713,-0.987219452857971,
- -0.256680637598038,-0.0143226524814963,-0.966390132904053,0.119681321084499,0.105234012007713,-0.987219452857971,0.0131811322644353,0.0796016156673431,-0.996739685535431,-0.372848212718964,-0.0287496894598007,-0.927446842193604,0.358845412731171,0.134104773402214,-0.923713088035584,0.119698584079742,0.084430068731308,-0.989213705062866,0.20761451125145,0.115016013383865,-0.971425533294678,0.106571428477764,0.144453793764114,-0.983755886554718,0.119698584079742,0.084430068731308,-0.989213705062866,0.358845412731171,0.134104773402214,-0.923713088035584,0.246296837925911,0.331998646259308,-0.910557329654694,-0.0539246462285519,0.118410930037498,-0.991499304771423,0.127046510577202,0.383527874946594,-0.914748907089233,0.25724858045578,0.490121364593506,-0.832828998565674,-0.299530684947968,-0.188646927475929,-0.935250639915466,0.127046510577202,0.383527874946594,-0.914748907089233,-0.0539246462285519,0.118410930037498,-0.991499304771423,-0.308431088924408,-0.130892023444176,-0.942198276519775,-0.317381590604782,-0.387022197246552,-0.86572676897049,-0.299530684947968,-0.188646927475929,-0.935250639915466,-0.308431088924408,-0.130892023444176,-0.942198276519775,-0.347514361143112,-0.260173469781876,-0.900857150554657,-0.256680637598038,-0.0143226524814963,-0.966390132904053,0.119681321084499,0.105234012007713,-0.987219452857971,-0.372848212718964,-0.0287496894598007,-0.927446842193604,-0.372848212718964,-0.0287496894598007,-0.927446842193604,-0.399176418781281,-0.00727618439123034,-0.916845262050629,-0.514973938465118,-0.067081980407238,-0.854576945304871,-0.514973938465118,-0.067081980407238,-0.854576945304871,-0.399176418781281,-0.00727618439123034,-0.916845262050629,-0.592008829116821,-0.0143031617626548,-0.80580461025238,0.119698584079742,0.084430068731308,-0.989213705062866,-0.297197729349136,0.0295750387012959,-0.954357862472534,-0.399176418781281,-0.00727618439123034,-0.916845262050629,-0.077641524374485,0.0830382034182549,-0.993517220020294,0.0926550179719925,0.161547675728798,-0.982505738735199,-0.256680637598038,-0.0143226524814963,-0.966390132904053,
- 0.119681321084499,0.105234012007713,-0.987219452857971,0.20761451125145,0.115016013383865,-0.971425533294678,0.0131811322644353,0.0796016156673431,-0.996739685535431,0.358845412731171,0.134104773402214,-0.923713088035584,0.20761451125145,0.115016013383865,-0.971425533294678,0.119681321084499,0.105234012007713,-0.987219452857971,0.216443240642548,0.0879316106438637,-0.97232723236084,0.0131811322644353,0.0796016156673431,-0.996739685535431,0.20761451125145,0.115016013383865,-0.971425533294678,-0.399176418781281,-0.00727618439123034,-0.916845262050629,-0.372848212718964,-0.0287496894598007,-0.927446842193604,0.0131811322644353,0.0796016156673431,-0.996739685535431,-0.399176418781281,-0.00727618439123034,-0.916845262050629,0.100175455212593,0.143159255385399,-0.984616756439209,-0.077641524374485,0.0830382034182549,-0.993517220020294,-0.0539246462285519,0.118410930037498,-0.991499304771423,0.246296837925911,0.331998646259308,-0.910557329654694,-0.308431088924408,-0.130892023444176,-0.942198276519775,-0.0539246462285519,0.118410930037498,-0.991499304771423,-0.077641524374485,0.0830382034182549,-0.993517220020294,-0.223856315016747,-0.0809879079461098,-0.971251487731934,-0.347514361143112,-0.260173469781876,-0.900857150554657,-0.308431088924408,-0.130892023444176,-0.942198276519775,-0.223856315016747,-0.0809879079461098,-0.971251487731934,-0.293303787708282,-0.124492257833481,-0.947879016399384,-0.0430007241666317,0.459321290254593,-0.887228786945343,-0.622982382774353,-0.782222986221313,0.0044952048920095,0.0443493165075779,-0.457992434501648,0.887849092483521,0.678122758865356,0.647034764289856,0.348562240600586,-0.00131594110280275,-0.501921117305756,-0.864912390708923,-0.514450311660767,-0.156102418899536,0.843192100524902,-0.00138658296782523,0.499386757612228,0.86637806892395,0.589420258998871,0.304951637983322,-0.748056352138519,-0.0313660204410553,-0.9995077252388,0.000699029129464179,-0.245012879371643,0.969507098197937,0.00496616773307323,0.0155194345861673,0.999849617481232,-0.00773736648261547,0.688952684402466,0.63824999332428,-0.343484044075012,
- 0,0,1,-0.418332785367966,0.444655984640121,-0.792009294033051,0,0,-1,0.571313560009003,-0.607262969017029,0.552116334438324,0,1,0,-0.416923940181732,-0.908893883228302,-0.00929165631532669,0,-1,0,0.828471183776855,0.378194183111191,0.413043200969696
- }
- TangentsW: *1954 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *1606 {
- a: -0.67236328125,-1.859375,-0.67529296875,-1.978515625,-0.64453125,-1.9765625,-0.64453125,-1.841796875,-0.64453125,0.0224609375,-0.67236328125,0.14013671875,-0.6455078125,0.1591796875,-0.67529296875,0.021484375,-0.673828125,-0.8603515625,-0.67431640625,-0.978515625,-0.64501953125,-0.9775390625,-0.646484375,-0.83984375,-0.64501953125,2.021484375,-0.673828125,2.138671875,-0.64501953125,2.1552734375,-0.67431640625,2.0205078125,-0.64501953125,1.156982421875,-0.64453125,1.02241516113281,-0.67236328125,1.1400146484375,-0.6748046875,1.02143859863281,-0.67236328125,3.138671875,-0.64453125,3.021484375,-0.64599609375,3.158203125,-0.67333984375,3.017578125,-0.77099609375,0.654052734375,-0.6318359375,0.654052734375,-0.7734375,0.6552734375,-0.6279296875,0.655517578125,-0.7724609375,0.708984375,-0.62841796875,0.709228515625,-0.6318359375,0.710693359375,-0.77099609375,0.71044921875,-0.263671875,0.582763671875,-0.172119140625,0.581298828125,-0.1751708984375,0.5830078125,-0.2666015625,0.581787109375,-0.1728515625,0.533203125,-0.26611328125,0.533203125,-0.263671875,0.531494140625,-0.1751708984375,0.53125,-0.495361328125,0.744873046875,-0.5283203125,0.607421875,-0.4951171875,0.607421875,-0.59130859375,0.716552734375,-0.59130859375,0.744873046875,-0.52294921875,0.84912109375,-0.5576171875,0.984565734863281,-0.55859375,0.8494873046875,-0.463134765625,0.95635986328125,-0.462890625,0.984565734863281,0.73583984375,0.582763671875,0.82763671875,0.581298828125,0.82470703125,0.5830078125,0.73291015625,0.581787109375,0.8271484375,0.533203125,0.7333984375,0.533203125,0.73583984375,0.531494140625,0.82470703125,0.53125,0.50439453125,0.744873046875,0.471435546875,0.607421875,0.5048828125,0.60546875,0.408447265625,0.716552734375,0.408447265625,0.744873046875,0.4765625,0.84912109375,0.442138671875,0.984565734863281,0.44091796875,0.8494873046875,0.53662109375,0.95635986328125,0.53662109375,0.984565734863281,1.7353515625,0.582763671875,1.8271484375,0.581298828125,1.82421875,0.5830078125,1.732421875,0.581787109375,1.826171875,0.533203125,
- 1.7333984375,0.533203125,1.7353515625,0.531494140625,1.82421875,0.53125,1.50390625,0.744873046875,1.470703125,0.607421875,1.5048828125,0.60546875,1.408203125,0.716552734375,1.408203125,0.744873046875,1.4765625,0.84912109375,1.44140625,0.984565734863281,1.4404296875,0.8494873046875,1.5361328125,0.95635986328125,1.5361328125,0.984565734863281,0.22705078125,0.708984375,0.367919921875,0.710693359375,0.228515625,0.71044921875,0.37158203125,0.708984375,0.367919921875,0.65673828125,0.226318359375,0.6552734375,0.369873046875,0.654052734375,0.228515625,0.654052734375,1.2265625,0.708984375,1.3671875,0.710693359375,1.228515625,0.71044921875,1.37109375,0.708984375,1.3671875,0.65673828125,1.2255859375,0.6552734375,1.369140625,0.654052734375,1.228515625,0.654052734375,-0.277099609375,0.3076171875,-0.26025390625,0.2314453125,-0.240234375,0.24267578125,-0.297119140625,0.3076171875,-0.26025390625,0.3837890625,-0.240234375,0.3720703125,-0.93115234375,-1.9375,-0.95166015625,-1.912109375,-0.93798828125,-1.935546875,-0.89990234375,-1.916015625,-0.91162109375,-1.880859375,-0.951171875,-1.904296875,-0.861328125,-1.888671875,-0.8349609375,-1.873046875,-0.87109375,-1.8515625,-0.83837890625,-1.83203125,-0.794921875,-1.857421875,-0.7607421875,-1.884765625,-0.7255859375,-1.93359375,-0.8115234375,-1.888671875,-0.7255859375,-1.90625,-0.7177734375,-1.919921875,-0.767578125,-1.921875,-0.73779296875,-1.939453125,-0.73046875,-1.94140625,-0.07098388671875,0.623046875,-0.0692138671875,0.6533203125,-0.07098388671875,0.651611328125,-0.06817626953125,0.62255859375,-0.07098388671875,0.47509765625,-0.0149002075195313,0.65283203125,-0.0694580078125,0.43896484375,-0.07098388671875,0.44091796875,-0.0133209228515625,0.623046875,-0.0133209228515625,0.651611328125,-0.06817626953125,0.47509765625,-0.0150299072265625,0.43896484375,-0.01611328125,0.62255859375,-0.0133209228515625,0.47509765625,-0.0133209228515625,0.44091796875,-0.01611328125,0.47509765625,0.9287109375,0.623046875,0.9306640625,0.6533203125,0.9287109375,0.651611328125,0.931640625,0.62255859375,0.9287109375,
- 0.47509765625,0.98486328125,0.65283203125,0.9306640625,0.439453125,0.9287109375,0.44091796875,0.986328125,0.623046875,0.986328125,0.651611328125,0.931640625,0.47509765625,0.9833984375,0.62255859375,0.986328125,0.47509765625,0.9833984375,0.47509765625,0.98681640625,0.4404296875,1.9287109375,0.623046875,1.9306640625,0.6533203125,1.9287109375,0.651611328125,1.931640625,0.62255859375,1.9287109375,0.47509765625,1.984375,0.65283203125,1.9306640625,0.439453125,1.9287109375,0.44091796875,1.986328125,0.623046875,1.986328125,0.651611328125,1.931640625,0.47509765625,1.9833984375,0.62255859375,1.986328125,0.47509765625,1.9833984375,0.47509765625,1.986328125,0.4404296875,-0.2120361328125,3.365234375,-0.33251953125,3.36328125,-0.32568359375,3.359375,-0.2091064453125,3.36328125,-0.2105712890625,3.220703125,-0.33251953125,3.22265625,-0.335205078125,3.365234375,-0.408447265625,3.365234375,-0.403076171875,3.310546875,-0.411376953125,3.23046875,-0.4169921875,3.271484375,-0.423583984375,3.21875,-0.212646484375,3.21875,-0.2095947265625,3.185546875,-0.2122802734375,3.19140625,-0.421142578125,3.19140625,-0.426513671875,3.201171875,-0.2127685546875,3.0625,-0.2095947265625,3.060546875,-0.33837890625,3.064453125,-0.332275390625,3.185546875,-0.4140625,3.18359375,-0.408447265625,3.08984375,-0.411865234375,3.05859375,-0.421142578125,3.146484375,-0.33837890625,1.0650634765625,-0.41162109375,1.05996704101563,-0.38427734375,1.09307861328125,-0.381591796875,1.1424560546875,-0.381103515625,1.18408203125,-0.2122802734375,1.1846923828125,-0.2127685546875,1.06353759765625,-0.2099609375,1.18994140625,-0.2095947265625,1.060791015625,-0.3798828125,1.1923828125,-0.381591796875,1.220703125,-0.212646484375,1.220458984375,-0.37841796875,1.2232666015625,-0.210693359375,1.22265625,-0.2119140625,1.36181640625,-0.2091064453125,1.368408203125,-0.333740234375,1.361328125,-0.384521484375,1.269775390625,-0.3876953125,1.318603515625,-0.409423828125,1.359130859375,-0.439208984375,-1.63671875,-0.521484375,-1.634765625,-0.43994140625,-1.6328125,-0.5224609375,-1.63671875,
- -0.332763671875,-1.775390625,-0.333740234375,-1.638671875,-0.437744140625,-1.6328125,-0.335693359375,-1.63671875,-0.3330078125,-1.634765625,-0.2117919921875,-1.6328125,-0.2078857421875,-1.634765625,-0.2100830078125,-1.77734375,-0.3369140625,-1.779296875,-0.60107421875,-1.7734375,-0.212646484375,-1.779296875,-0.2093505859375,-1.8125,-0.234619140625,-1.806640625,-0.57421875,-1.779296875,-0.60107421875,-1.80859375,-0.62158203125,-1.791015625,-0.62109375,-1.751953125,-0.62353515625,-1.9375,-0.60791015625,-1.935546875,-0.64990234375,-1.78125,-0.63427734375,-1.779296875,-0.6494140625,-1.65234375,-0.623046875,-1.63671875,-0.599609375,-1.8125,-0.329833984375,-1.9375,-0.61767578125,-1.638671875,-0.62109375,-1.634765625,-0.52587890625,-1.630859375,-0.61767578125,-1.634765625,-0.3310546875,-1.814453125,-0.32861328125,-1.890625,-0.2127685546875,-1.935546875,-0.2095947265625,-1.9375,-0.62109375,-0.751953125,-0.64990234375,-0.78125,-0.63427734375,-0.7802734375,-0.6494140625,-0.65234375,-0.623046875,-0.6376953125,-0.61767578125,-0.638671875,-0.6015625,-0.7734375,-0.62158203125,-0.7919921875,-0.5234375,-0.63671875,-0.57421875,-0.779296875,-0.60107421875,-0.80859375,-0.333251953125,-0.775390625,-0.438720703125,-0.63671875,-0.33447265625,-0.6396484375,-0.337158203125,-0.779296875,-0.2100830078125,-0.77734375,-0.2119140625,-0.6376953125,-0.2088623046875,-0.630859375,-0.212646484375,-0.779296875,-0.2093505859375,-0.8125,-0.234619140625,-0.8076171875,-0.2127685546875,-0.935546875,-0.2095947265625,-0.9384765625,-0.3310546875,-0.814453125,-0.32861328125,-0.890625,-0.329833984375,-0.9375,-0.599609375,-0.8134765625,-0.60791015625,-0.9365234375,-0.62353515625,-0.9375,-0.326171875,2.064453125,-0.2100830078125,2.1875,-0.209228515625,2.0625,-0.330078125,2.185546875,-0.3330078125,2.0595703125,-0.2122802734375,2.19140625,-0.328857421875,2.19140625,-0.33203125,2.220703125,-0.212646484375,2.2197265625,-0.210693359375,2.22265625,-0.328125,2.21875,-0.32763671875,2.2236328125,-0.328125,2.365234375,-0.332275390625,2.3642578125,-0.2119140625,2.3623046875,
- -0.208984375,2.369140625,-0.2093505859375,2.365234375,-0.2100830078125,0.18798828125,-0.326171875,0.0654296875,-0.209228515625,0.0634765625,-0.330078125,0.1865234375,-0.3330078125,0.060546875,-0.2122802734375,0.1923828125,-0.328857421875,0.19189453125,-0.33203125,0.22119140625,-0.212646484375,0.220703125,-0.210693359375,0.22314453125,-0.328125,0.2197265625,-0.32763671875,0.224609375,-0.327880859375,0.3623046875,-0.332275390625,0.365234375,-0.2093505859375,0.3642578125,0.25634765625,-0.0146484375,0.380859375,-0.08203125,0.380859375,-0.0146484375,0.237548828125,-0.08203125,0.237548828125,-0.0224609375,0.279296875,-0.970703125,0.294921875,-0.9296875,0.284423828125,-0.94140625,0.368408203125,-0.9814453125,0.395751953125,-0.927734375,0.387451171875,-0.98046875,0.399169921875,-0.9814453125,0.29541015625,-0.92578125,0.68212890625,-0.9814453125,0.51611328125,-0.9248046875,0.28173828125,-0.8955078125,0.8154296875,-0.9287109375,0.6923828125,-0.9814453125,0.8232421875,-0.982421875,0.9755859375,-0.9814453125,0.9755859375,-0.9306640625,0.98095703125,-0.9814453125,0.98095703125,-0.9345703125,0.97412109375,-0.923828125,0.98095703125,-0.9111328125,0.97216796875,-0.818359375,0.98095703125,-0.8134765625,0.68994140625,-0.81640625,0.97509765625,-0.8095703125,0.4052734375,-0.814453125,0.97412109375,-0.7578125,0.98095703125,-0.7568359375,0.3828125,-0.8232421875,0.38818359375,-0.810546875,0.280517578125,-0.8095703125,0.2685546875,-0.8388671875,0.27978515625,-0.806640625,0.2435302734375,-0.7626953125,0.27099609375,-0.791015625,0.3916015625,-0.75390625,0.27099609375,-0.7607421875,0.265625,-0.7041015625,0.257568359375,-0.7314453125,0.97705078125,-0.755859375,0.98095703125,-0.6484375,0.97607421875,-0.6484375,0.97607421875,-0.642578125,0.82373046875,-0.6435546875,0.69189453125,-0.646484375,0.69287109375,-0.6435546875,0.68212890625,-0.642578125,0.398193359375,-0.6474609375,0.399169921875,-0.642578125,0.38671875,-0.6474609375,0.366455078125,-0.646484375,0.36865234375,-0.642578125,0.269287109375,-0.67578125,0.2861328125,-0.6435546875,0.285400390625,
- -0.646484375,0.57470703125,-0.4775390625,0.57373046875,-0.4990234375,0.578125,-0.48046875,0.52880859375,-0.48046875,0.525390625,-0.515625,0.5751953125,-0.5361328125,0.57177734375,-0.5390625,0.52734375,-0.5419921875,0.451416015625,-0.53515625,0.48828125,-0.5400390625,0.453857421875,-0.4794921875,0.41162109375,-0.4951171875,0.4150390625,-0.4716796875,0.412353515625,-0.4736328125,0.411376953125,-0.5283203125,0.40673828125,-0.5244140625,0.415771484375,1.90380859375,0.42333984375,1.91259765625,0.399169921875,1.9130859375,0.41552734375,1.76513671875,0.4150390625,1.73779296875,0.428466796875,1.75341796875,0.89013671875,1.224609375,0.85400390625,1.20703125,0.892578125,1.200927734375,0.89404296875,1.05535888671875,0.86572265625,1.0399169921875,0.89794921875,1.0316162109375,0.67431640625,1.29345703125,0.74365234375,1.30908203125,0.673828125,1.30517578125,0.018768310546875,1.73779296875,0.0184173583984375,1.71923828125,0.039581298828125,1.72021484375,0.328857421875,1.78857421875,0.328125,1.802734375,0.28564453125,1.80126953125,0.89013671875,2.224609375,0.85400390625,2.20703125,0.892578125,2.2001953125,0.89404296875,2.0546875,0.86572265625,2.0390625,0.89794921875,2.03125,0.67431640625,2.29296875,0.72509765625,2.306640625,0.673828125,2.3046875,0.75146484375,2.2236328125,0.73974609375,2.2119140625,0.75732421875,2.2099609375,0.415771484375,2.9033203125,0.42333984375,2.912109375,0.399169921875,2.9130859375,0.41552734375,2.7646484375,0.4150390625,2.7373046875,0.428466796875,2.7529296875,0.018768310546875,2.7373046875,0.018524169921875,2.720703125,0.039581298828125,2.7197265625,0.328857421875,2.7880859375,0.328125,2.802734375,0.28564453125,2.80078125,0.89013671875,0.22509765625,0.85400390625,0.20703125,0.892578125,0.201171875,0.89404296875,0.0556640625,0.86572265625,0.0400390625,0.89794921875,0.03173828125,0.67431640625,0.2939453125,0.74365234375,0.30908203125,0.673828125,0.3056640625,0.75146484375,0.224609375,0.73974609375,0.21240234375,0.75732421875,0.2109375,0.61181640625,1.91357421875,0.53759765625,1.826171875,0.611328125,1.826171875,
- 0.5380859375,1.9140625,0.67431640625,1.2919921875,0.75146484375,1.212890625,0.75048828125,1.307861328125,0.67578125,1.2142333984375,0.096435546875,1.80078125,0.096435546875,1.71923828125,0.25537109375,1.7998046875,0.25634765625,1.724609375,0.6123046875,2.912109375,0.53759765625,2.826171875,0.611328125,2.826171875,0.5380859375,2.9140625,0.096435546875,2.80078125,0.095703125,2.71875,0.25537109375,2.7998046875,0.25634765625,2.724609375,0.41650390625,1.90283203125,0.414794921875,1.8271484375,0.424560546875,1.912109375,0.5361328125,1.826171875,0.53662109375,1.91357421875,0.537109375,1.9150390625,0.53662109375,1.98828125,0.424560546875,1.91357421875,0.414794921875,1.98681640625,0.414306640625,1.93408203125,0.7470703125,1.2093505859375,0.751953125,1.1297607421875,0.8515625,1.2060546875,0.89404296875,1.132080078125,0.892578125,1.1998291015625,0.75244140625,1.307861328125,0.748046875,1.21240234375,0.8515625,1.207275390625,0.8974609375,1.295166015625,0.89013671875,1.2259521484375,0.41650390625,2.90234375,0.414794921875,2.8271484375,0.424560546875,2.912109375,0.5361328125,2.826171875,0.537109375,2.9140625,0.424560546875,2.9130859375,0.53662109375,2.9150390625,0.414306640625,2.93359375,0.53564453125,2.98828125,0.414794921875,2.986328125,0.25830078125,2.646484375,0.2568359375,2.7216796875,0.09503173828125,2.71484375,0.1181640625,2.6416015625,0.09747314453125,2.6630859375,0.251953125,2.87109375,0.09710693359375,2.8759765625,0.2548828125,2.8271484375,0.0966796875,2.802734375,0.255126953125,2.80078125,0.41455078125,1.66552734375,0.4296875,1.7529296875,0.415283203125,1.736328125,0.53466796875,1.66455078125,0.53564453125,1.751953125,0.4296875,1.75439453125,0.414306640625,1.82568359375,0.41552734375,1.7666015625,0.53662109375,1.8251953125,0.5361328125,1.75341796875,0.875,1.375732421875,0.8974609375,1.296630859375,0.90234375,1.354248046875,0.75244140625,1.3095703125,0.7724609375,1.38427734375,0.89404296875,1.1309814453125,0.86376953125,1.04043579101563,0.89404296875,1.0565185546875,0.751953125,1.1285400390625,0.76123046875,1.0390625,
- 0.75,1.05184936523438,0.2568359375,1.72216796875,0.11944580078125,1.640625,0.25830078125,1.64599609375,0.09637451171875,1.71728515625,0.09747314453125,1.66357421875,0.01910400390625,1.7392578125,0.0947265625,1.80078125,0.02099609375,1.802734375,0.040802001953125,1.720703125,0.0938720703125,1.71826171875,0.329345703125,1.78662109375,0.258544921875,1.72412109375,0.334716796875,1.7265625,0.283447265625,1.80029296875,0.257568359375,1.7998046875,0.0966796875,1.802734375,0.251953125,1.87158203125,0.09710693359375,1.87646484375,0.2548828125,1.82763671875,0.255126953125,1.80126953125,0.751953125,2.12890625,0.7587890625,2.208984375,0.75,2.193359375,0.8515625,2.2060546875,0.89404296875,2.1318359375,0.892578125,2.19921875,0.89404296875,2.130859375,0.86376953125,2.0400390625,0.89404296875,2.0556640625,0.751953125,2.1279296875,0.76123046875,2.0390625,0.75,2.0517578125,0.73828125,2.2119140625,0.67431640625,2.2919921875,0.67578125,2.2138671875,0.7294921875,2.306640625,0.7509765625,2.2255859375,0.75146484375,2.306640625,0.7587890625,2.2109375,0.7529296875,2.306640625,0.75244140625,2.2255859375,0.8515625,2.20703125,0.8974609375,2.294921875,0.89013671875,2.2255859375,0.53369140625,2.6650390625,0.415283203125,2.736328125,0.41455078125,2.6650390625,0.4296875,2.7529296875,0.53564453125,2.751953125,0.4296875,2.75390625,0.414306640625,2.8251953125,0.41552734375,2.7666015625,0.53662109375,2.8251953125,0.5361328125,2.7529296875,0.096923828125,2.8779296875,0.1187744140625,2.9580078125,0.09771728515625,2.9404296875,0.258544921875,2.9501953125,0.2498779296875,2.8740234375,0.256591796875,2.888671875,0.0947265625,2.80078125,0.040802001953125,2.720703125,0.095703125,2.716796875,0.01910400390625,2.7392578125,0.02099609375,2.802734375,0.329345703125,2.7861328125,0.258544921875,2.7236328125,0.336181640625,2.724609375,0.283447265625,2.7998046875,0.257568359375,2.7998046875,0.875,0.3759765625,0.8974609375,0.296875,0.90234375,0.3544921875,0.7529296875,0.31005859375,0.7724609375,0.384765625,0.73828125,0.212890625,0.67431640625,0.29248046875,0.67578125,
- 0.21435546875,0.7509765625,0.22607421875,0.75048828125,0.30859375,0.96337890625,1.1953125,0.8916015625,1.225830078125,0.89404296875,1.2008056640625,0.974609375,1.26806640625,0.95751953125,1.286376953125,0.89892578125,1.295166015625,0.12054443359375,1.9599609375,0.256591796875,1.88916015625,0.258056640625,1.94921875,0.2498779296875,1.8740234375,0.096923828125,1.8779296875,0.09771728515625,1.9404296875,0.96337890625,2.1953125,0.8916015625,2.2255859375,0.89404296875,2.2001953125,0.974609375,2.267578125,0.95751953125,2.2861328125,0.89892578125,2.294921875,0.344482421875,2.9130859375,0.343994140625,2.845703125,0.3974609375,2.912109375,0.356689453125,2.828125,0.4130859375,2.826171875,0.415283203125,2.90234375,0.8515625,0.20654296875,0.89404296875,0.13232421875,0.892578125,0.2001953125,0.751953125,0.1298828125,0.75,0.19384765625,0.7587890625,0.2099609375,0.96337890625,0.19580078125,0.8916015625,0.22607421875,0.89404296875,0.201171875,0.974609375,0.2685546875,0.95751953125,0.28662109375,0.89892578125,0.29541015625,0.86376953125,0.04052734375,0.75,0.05224609375,0.76123046875,0.03955078125,0.751953125,0.12890625,0.89404296875,0.13134765625,0.89404296875,0.056640625,0.8974609375,0.29541015625,0.8515625,0.20751953125,0.89013671875,0.22607421875,0.75244140625,0.30810546875,0.75244140625,0.22607421875,0.7587890625,0.21142578125,0.344482421875,1.91357421875,0.343994140625,1.845703125,0.3974609375,1.91259765625,0.4130859375,1.82666015625,0.356689453125,1.828125,0.415283203125,1.90283203125,0.7529296875,2.30859375,0.8974609375,2.2958984375,0.75537109375,2.330078125,0.875,2.375,0.90234375,2.353515625,0.7724609375,2.3837890625,-2.55403828620911,0.551351130008698,-2.55403780937195,0.331558495759964,-2.44717597961426,0.33155882358551,-2.44717645645142,0.544939756393433,-2.77554059028625,0.551350593566895,-2.7755401134491,0.331558078527451,-1.22433161735535,0.551353871822357,-1.22433161735535,0.331561267375946,-1.12025117874146,0.331561267375946,-1.12025189399719,0.546224534511566,-1.44583415985107,0.551353871822357,-1.44583415985107,0.331561207771301,
- -2.05675292015076,0.250349551439285,-2.08931493759155,0.279381603002548,-2.24214029312134,0.290333658456802,-2.27149057388306,0.331559121608734,-2.217209815979,0.000190528109669685,-2.00861120223999,0.000190794467926025,-2.02946996688843,0.119409263134003,-2.05966877937317,0.180888295173645,-2.33644843101501,0.000190259888768196,-2.33644914627075,0.324411541223526,-2.44717526435852,0.000190010294318199,-2.77553939819336,0.000189151614904404,-2.55403709411621,0.000189770013093948,-2.99997043609619,0.000188706442713737,-2.87961935997009,0.000188916921615601,-2.87962007522583,0.331557840108871,-2.99997138977051,0.338360905647278,-0.790691614151001,0.337513953447342,-0.895295143127441,0.398999929428101,-0.999900341033936,0.337088942527771,-0.999900579452515,-0.000232715159654617,-0.79069185256958,-0.000658253207802773,-2.77554082870483,0.629874706268311,-2.87962079048157,0.62474524974823,-2.87962055206299,0.546221137046814,-2.55403852462769,0.629875242710114,-3.43416595458984,-0.160541594028473,-3.43416571617126,-0.265146106481552,-3.3188943862915,-0.26520249247551,-3.32343912124634,-0.160541594028473,-3.48941278457642,-0.157267883419991,-3.50743341445923,-0.265127688646317,-1.76190376281738,0.331558912992477,-1.64380264282227,0.400399327278137,-1.55269527435303,0.331561088562012,-1.55269622802734,0.544942259788513,-1.65730214118958,0.623465001583099,-1.76190567016602,0.544939935207367,-3.42804360389709,-0.420993030071259,-3.42804360389709,-0.541344165802002,-3.32343912124634,-0.543089151382446,-3.32343912124634,-0.422738015651703,-2.44717669487,0.623463928699493,-0.911043167114258,0.546225786209106,-1.01564788818359,0.624749481678009,-1.01564717292786,0.392431348562241,-0.911041736602783,0.331562489271164,-1.44583415985107,0.629878103733063,-1.55269575119019,0.623466193675995,-1.22433137893677,0.629878103733063,-1.12025141716003,0.624748587608337,-1.12025165557861,0.000192496925592422,-1.22433161735535,0.000192496925592422,-1.55269575119019,0.000192407518625259,-1.44583415985107,0.000192407518625259,-1.66342258453369,
- 0.000192407518625259,-1.66342258453369,0.324413895606995,-1.78258299827576,0.000192407518625259,-1.72838032245636,0.331561058759689,-1.96862435340881,0.000192603853065521,-1.76924061775208,0.297891438007355,-1.91392040252686,0.274420857429504,-1.92867517471313,0.251961320638657,-1.924809217453,0.20007449388504,-1.94955265522003,0.0681654363870621,-1.3960257768631,0.708725214004517,-1.275674700737,0.708725214004517,-1.275674700737,0.91793429851532,-1.39602553844452,0.91793429851532,-1.50010573863983,0.708725214004517,-1.50010561943054,0.91793429851532,-1.72160804271698,0.708725214004517,-1.72160804271698,0.917934238910675,-1.82846975326538,0.708725214004517,-1.82846975326538,0.917934238910675,-1.93919658660889,0.708725214004517,-1.93919658660889,0.917934358119965,-2.05843496322632,0.708725214004517,-2.05835700035095,0.91793429851532,-2.24440312385559,0.917933940887451,-2.26703882217407,0.864463686943054,-2.26703882217407,0.708725094795227,-3.53264808654785,-0.543089151382446,-3.53264808654785,-0.422738015651703,-3.48932194709778,-0.372625797986984,-3.43416595458984,-0.369750618934631,-3.32343912124634,-0.369750618934631,-3.25704550743103,0.799276292324066,-3.21805262565613,0.691669344902039,-3.12080240249634,0.762981653213501,-3.2207498550415,0.557170391082764,-3.23954963684082,0.503857374191284,-3.17075872421265,0.522783696651459,-3.16892385482788,0.549859046936035,-3.2527539730072,0.379427790641785,-3.24271464347839,0.264818042516708,-3.18690657615662,0.26296278834343,-3.17750906944275,0.330210328102112,-3.22900938987732,0.450094163417816,-3.16831135749817,0.468931525945663,-3.39751863479614,0.781576633453369,-3.29900979995728,0.704030275344849,-3.38088297843933,0.52901965379715,-3.30131649971008,0.536562383174896,-3.2724814414978,0.555330634117126,-3.37845039367676,0.574529469013214,-3.3875298500061,0.459149599075317,-3.28548836708069,0.465355575084686,-3.31145191192627,0.41520369052887,-3.3203182220459,0.378046572208405,-3.38977575302124,0.275805324316025,-3.2691650390625,0.424245446920395,-3.38710021972656,0.391932517290115,
- -3.38732051849365,0.720589876174927,-3.28577423095703,0.637402951717377,-3.21685600280762,0.653660953044891,-3.1468985080719,0.68696653842926,-0.790691614151001,0.337513953447342,-0.895295143127441,0.398999929428101,-0.999900341033936,0.337088942527771,-0.999900579452515,-0.000232715159654617,-0.79069185256958,-0.000658253207802773
- }
- UVIndex: *1954 {
- a: 0,1,2,2,3,0,4,5,6,5,4,7,8,9,10,10,11,8,12,13,14,13,12,15,16,17,18,17,19,18,20,21,22,23,21,20,24,25,26,26,25,27,27,28,26,28,27,29,30,28,29,28,30,31,32,33,34,35,33,32,35,36,33,36,35,37,38,36,37,36,38,39,40,41,42,41,40,43,43,40,44,45,46,47,46,45,48,46,48,49,50,51,52,53,51,50,53,54,51,54,53,55,56,54,55,54,56,57,58,59,60,59,58,61,61,58,62,63,64,65,64,63,66,64,66,67,68,69,70,71,69,68,71,72,69,72,71,73,74,72,73,72,74,75,76,77,78,77,76,79,79,76,80,81,82,83,82,81,84,82,84,85,86,87,88,87,86,89,86,90,89,90,86,91,89,90,92,91,92,90,93,92,91,94,95,96,95,94,97,94,98,97,98,94,99,97,98,100,99,100,98,101,100,99,102,103,104,103,102,105,106,105,102,107,106,102,108,109,110,111,109,108,109,111,112,112,113,109,114,112,111,112,114,115,112,115,116,116,115,117,118,117,115,119,118,115,119,115,120,120,115,121,122,119,120,120,123,122,120,121,124,120,124,125,120,125,126,127,128,129,130,128,127,131,130,127,130,132,128,133,131,134,132,135,136,131,133,137,137,130,131,138,137,133,135,132,139,132,130,139,139,140,135,140,138,141,142,139,130,140,139,142,137,142,130,142,138,140,137,138,142,143,144,145,146,144,143,147,146,143,146,148,144,149,147,150,148,151,152,147,149,153,153,146,147,151,148,154,148,146,154,154,155,151,153,156,146,156,154,146,149,156,153,155,154,156,157,156,149,156,157,155,158,159,160,161,159,158,162,161,158,161,163,159,164,162,165,163,166,167,162,164,168,168,161,162,166,163,169,163,161,169,169,170,166,168,171,161,171,169,161,164,171,168,170,169,171,172,171,164,171,172,170,173,174,175,173,175,176,176,175,177,175,178,177,178,175,179,179,180,181,181,178,179,182,181,183,178,181,182,178,182,184,177,178,185,184,185,178,186,177,185,184,187,185,185,187,186,188,184,189,187,184,188,186,190,191,186,192,190,193,187,188,187,193,186,192,186,193,188,194,193,193,195,192,194,195,193,196,192,195,195,194,197,198,199,200,201,198,200,202,198,201,203,198,202,198,203,204,202,205,203,205,204,203,204,205,206,205,202,207,208,205,207,208,209,205,210,209,208,211,205,209,210,211,209,211,212,213,211,214,212,214,211,210,210,215,214,214,215,
- 216,214,216,217,218,219,220,219,218,221,222,221,218,223,222,218,224,223,218,223,224,225,226,227,223,228,223,227,229,223,228,229,222,223,229,230,222,221,222,231,231,222,230,230,229,232,233,232,229,232,234,230,234,232,233,231,230,235,230,234,236,230,236,235,231,235,237,235,236,237,231,237,238,239,236,240,241,238,242,238,241,243,238,243,244,240,236,245,245,246,240,247,238,244,238,247,231,248,247,244,221,231,247,247,249,221,249,247,250,245,236,251,246,245,251,234,251,236,251,234,233,246,251,252,233,252,251,252,253,246,253,252,233,253,233,254,255,256,257,256,255,258,255,259,258,259,255,260,261,260,255,262,261,255,260,261,263,261,262,264,265,264,262,266,263,261,263,266,267,266,268,267,264,269,261,266,261,269,265,269,264,270,268,266,269,270,266,268,270,271,271,270,272,270,269,273,273,274,270,275,273,269,273,275,274,265,275,269,274,276,277,278,275,265,275,278,274,274,279,276,279,274,278,276,279,280,278,280,279,281,280,278,265,281,278,280,281,282,265,282,281,282,265,283,284,285,286,287,284,288,285,284,287,287,289,285,289,287,290,287,291,290,289,292,285,285,292,293,294,289,290,294,292,289,290,291,294,295,292,294,291,295,294,295,293,292,295,291,296,293,295,296,296,291,297,293,296,298,299,293,298,296,300,298,301,302,303,304,305,302,302,301,304,306,304,301,304,306,307,308,304,307,309,306,301,309,301,310,306,311,307,311,306,309,307,311,308,311,309,312,312,308,311,310,312,309,312,313,308,310,313,312,308,313,314,313,310,315,316,317,318,317,316,319,319,316,320,321,322,323,322,321,324,325,322,324,326,325,324,325,326,327,325,328,322,325,327,329,328,325,330,330,331,328,332,325,329,332,330,325,332,329,333,334,332,333,335,332,334,335,336,332,337,336,335,336,337,338,339,332,336,339,336,338,339,330,332,339,338,340,340,341,339,341,340,342,339,341,343,330,339,343,344,341,342,341,344,343,330,343,345,342,346,344,346,342,347,330,345,348,348,331,330,343,349,345,348,345,349,349,343,344,331,348,350,331,350,351,349,350,348,350,349,352,349,344,353,353,352,349,352,353,354,346,353,344,353,346,355,355,356,353,356,357,358,357,356,355,359,346,347,359,355,
- 346,360,359,347,361,359,360,360,362,361,362,363,361,359,361,364,364,361,363,364,355,359,364,363,365,364,365,366,366,367,364,355,364,367,367,366,368,369,367,368,355,367,369,355,369,370,370,357,355,370,369,371,357,370,372,371,373,370,372,370,374,374,370,373,375,376,377,376,375,378,376,378,379,379,380,376,380,379,381,381,379,382,379,378,383,383,382,379,382,383,384,383,378,385,385,386,383,386,385,387,386,387,388,386,389,383,389,386,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,449,448,451,452,453,454,453,452,455,456,457,458,457,459,458,460,461,462,461,460,463,464,465,466,466,465,467,468,469,470,471,470,469,470,471,472,473,474,475,475,474,476,475,476,477,478,479,480,480,479,481,480,481,482,483,484,485,485,486,483,486,485,487,488,489,490,491,490,489,490,491,492,493,494,495,496,495,494,495,496,497,498,499,500,500,501,498,501,500,502,503,504,505,506,505,504,506,507,505,508,509,510,509,508,511,509,511,512,513,514,515,514,513,516,513,517,516,518,519,520,519,518,521,521,518,522,523,524,525,524,523,526,524,526,527,527,526,528,529,530,531,530,529,532,530,532,533,534,535,536,537,535,534,535,537,538,539,540,541,540,539,542,540,542,543,544,545,546,545,544,547,547,544,548,549,550,551,550,549,552,552,549,553,552,553,554,555,556,557,556,555,558,556,558,559,559,558,560,561,562,563,562,561,564,565,564,561,564,565,566,567,568,569,568,567,570,570,571,568,571,570,572,573,574,575,573,576,574,576,573,577,578,579,580,579,578,581,581,578,582,583,584,585,584,583,586,586,583,587,588,586,587,589,590,591,590,589,592,592,589,593,594,595,596,595,594,597,595,597,598,599,600,601,600,599,602,602,599,603,604,605,606,607,605,604,605,607,608,609,610,611,610,609,612,610,612,613,610,613,614,615,616,617,616,615,618,615,619,618,619,615,620,621,622,623,622,621,624,622,624,625,622,625,626,627,628,629,630,629,628,629,630,631,631,632,629,633,634,635,633,636,634,636,633,
- 637,637,633,638,639,640,641,640,639,642,640,642,643,640,643,644,645,646,647,646,645,648,645,649,648,649,645,650,651,652,653,652,651,654,655,652,654,652,655,656,657,658,659,658,660,659,660,658,661,660,662,659,663,664,665,664,666,665,666,664,667,665,666,668,669,670,671,672,673,674,670,669,675,676,677,678,679,680,676,675,681,682,683,684,685,686,687,688,689,690,671,691,670,674,692,693,694,695,696,697,798,799,800,801,802,673,703,704,705,669,706,703,673,707,708,709,710,685,684,690,689,711,712,708,707,713,714,715,716,717,718,719,720,721,722,716,715,680,679,691,671,670,693,672,723,706,669,724,725,678,677,726,727,705,696,674,673,696,695,692,674,728,729,716,679,730,728,679,675,731,730,675,678,732,701,700,677,733,732,677,676,734,735,680,715,736,734,715,737,735,733,676,680,738,736,737,739,740,738,739,741,742,743,744,745,746,747,748,749,750,746,749,751,752,750,751,753,754,752,753,755,756,754,755,757,758,756,757,759,758,759,760,761,762,763,720,719,764,708,712,765,766,709,708,766,767,768,769,770,771,772,773,774,775,776,777,778,772,779,780,773,781,782,768,783,784,785,786,787,788,784,783,775,789,790,791,776,790,768,782,769,785,772,771,784,788,772,788,792,779,793,790,789,791,790,793,794,795,782,781,769,782,795,796,770,769,796,797,772,788,779,779,775,780,780,775,778,790,776,775,785,784,772,788,789,792,793,789,788,787,792,789,775,779,792,775,786,785,795,794,796,795,785,771,797,796,771,774,698,699,799,798,699,700,800,799,700,701,801,800,701,702,802,801,702,698,798,802
- }
- }
- LayerElementUV: 1 {
- Version: 101
- Name: "uvSet"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *1614 {
- a: 0.31926241517067,0.868520438671112,0.31799989938736,0.817177891731262,0.331256330013275,0.81801974773407,0.331256330013275,0.876095175743103,0.184191063046455,0.825019359588623,0.196141734719276,0.875771224498749,0.184555947780609,0.883992373943329,0.197434574365616,0.824621140956879,0.102901592850685,0.790741682052612,0.102685242891312,0.738342583179474,0.115676730871201,0.738775610923767,0.115027129650116,0.799835562705994,0.0273930579423904,0.738288044929504,0.04014752805233,0.790317535400391,0.0273930579423904,0.797720372676849,0.0403705686330795,0.737842559814453,0.223441943526268,0.883846998214722,0.223218604922295,0.825038075447083,0.235388338565826,0.876428544521332,0.236431106925011,0.824621140956879,0.0656771510839462,0.790606319904327,0.0778042376041412,0.739544689655304,0.0771659314632416,0.799116730690002,0.0652515739202499,0.737842559814453,0.509420871734619,0.68934953212738,0.509420931339264,0.610429644584656,0.51011323928833,0.690734148025513,0.510251641273499,0.608214437961578,0.540573537349701,0.69018030166626,0.540711939334869,0.60849130153656,0.541542649269104,0.610429704189301,0.541404247283936,0.68934953212738,0.158993780612946,0.881953060626984,0.158072024583817,0.824343800544739,0.159147396683693,0.826263964176178,0.158379286527634,0.883796632289886,0.127807915210724,0.824804604053497,0.127807930111885,0.883489370346069,0.126732543110847,0.881953060626984,0.1265789270401,0.826263964176178,0.863979399204254,0.78197455406189,0.845932364463806,0.70671147108078,0.864113092422485,0.70671147108078,0.811442255973816,0.7664675116539,0.811442255973816,0.78197455406189,0.675891876220703,0.703689992427826,0.656797826290131,0.778288066387177,0.656260132789612,0.703891754150391,0.70883572101593,0.762753307819366,0.708970129489899,0.778288066387177,0.101318255066872,0.880322277545929,0.100398287177086,0.822672307491302,0.101471565663815,0.824512302875519,0.100704960525036,0.882162094116211,0.0701934695243835,0.822979032993317,0.0701934695243835,0.881855607032776,0.0691201239824295,
- 0.880322277545929,0.068966805934906,0.824512302875519,0.939269781112671,0.683769404888153,0.921207070350647,0.608441472053528,0.939537286758423,0.607370972633362,0.886687278747559,0.668248891830444,0.886687278747559,0.683769404888153,0.753482937812805,0.702857196331024,0.734523415565491,0.777455568313599,0.733851194381714,0.703058898448944,0.786561250686646,0.761920809745789,0.786561250686646,0.777455568313599,0.0436003431677818,0.87974601984024,0.0426779240369797,0.821953415870667,0.0437538772821426,0.823797881603241,0.0429854765534401,0.881590366363525,0.0123983472585678,0.82256817817688,0.0123983472585678,0.880975544452667,0.0113224983215332,0.87974601984024,0.0111688375473022,0.823797881603241,0.941371083259583,0.782900154590607,0.923199653625488,0.707675039768219,0.941905617713928,0.706606090068817,0.888994097709656,0.767400920391083,0.888994097709656,0.782900154590607,0.536224901676178,0.713570833206177,0.516904592514038,0.788005530834198,0.516367971897125,0.713772118091583,0.568962454795837,0.77250474691391,0.568962454795837,0.788005530834198,0.655793905258179,0.680437982082367,0.656762957572937,0.600558400154114,0.656624555587769,0.679607272148132,0.655793905258179,0.598481774330139,0.626167833805084,0.600558400154114,0.625337243080139,0.680853307247162,0.624645054340363,0.599450826644897,0.624645054340363,0.679607272148132,0.598183751106262,0.680443227291107,0.5991530418396,0.600697040557861,0.599014520645142,0.679335713386536,0.598183751106262,0.598481774330139,0.56855583190918,0.600697040557861,0.567725241184235,0.68099707365036,0.567032933235168,0.599589467048645,0.567032933235168,0.679335713386536,0.36004638671875,0.654472470283508,0.37040588259697,0.607629716396332,0.382717072963715,0.614536106586456,0.347735166549683,0.654472470283508,0.37040588259697,0.701315343379974,0.382717072963715,0.694108784198761,0.213675037026405,0.698660612106323,0.224121436476707,0.707098186016083,0.21447865664959,0.701473534107208,0.222514346241951,0.685803532600403,0.236978560686111,0.690625131130219,0.22733561694622,0.706897258758545,
- 0.23376439511776,0.669933319091797,0.240192964673042,0.659084916114807,0.249032199382782,0.673951089382172,0.257067948579788,0.660491228103638,0.246621429920197,0.642611563205719,0.235371485352516,0.628549158573151,0.215282216668129,0.614084959030151,0.23376439511776,0.649441957473755,0.226532176136971,0.614084959030151,0.220907211303711,0.61087042093277,0.220103576779366,0.631361603736877,0.212871462106705,0.619107067584991,0.212067887187004,0.616093933582306,0.490351945161819,0.568649411201477,0.491329848766327,0.585377812385559,0.490351945161819,0.584433555603027,0.491903364658356,0.568379521369934,0.490351945161819,0.486895442008972,0.521342635154724,0.58510810136795,0.491194933652878,0.466929078102112,0.490351945161819,0.468008369207382,0.522215366363525,0.568649411201477,0.522215366363525,0.584433555603027,0.491903364658356,0.486895442008972,0.521270990371704,0.466929078102112,0.52067244052887,0.568379521369934,0.522215366363525,0.486895442008972,0.522215366363525,0.468008369207382,0.52067244052887,0.486895442008972,0.376802295446396,0.568109154701233,0.377878665924072,0.584793031215668,0.376802295446396,0.583851218223572,0.378416866064072,0.567840039730072,0.376802295446396,0.486573129892349,0.407748311758041,0.584523975849152,0.377878665924072,0.466929078102112,0.376802295446396,0.467736333608627,0.408555567264557,0.568109154701233,0.408555567264557,0.583851218223572,0.378416866064072,0.486573129892349,0.406940996646881,0.567840039730072,0.408555567264557,0.486573129892349,0.406940996646881,0.486573129892349,0.40882471203804,0.467467337846756,0.433705717325211,0.568146944046021,0.434782594442368,0.584837138652802,0.433705717325211,0.583894908428192,0.435320883989334,0.567877769470215,0.433705717325211,0.486580342054367,0.464394152164459,0.584568023681641,0.434782594442368,0.466929078102112,0.433705717325211,0.467736631631851,0.465470939874649,0.568146944046021,0.465470939874649,0.583894908428192,0.435320883989334,0.486580342054367,0.463855892419815,0.567877769470215,0.465470939874649,0.486580342054367,0.463855892419815,
- 0.486580342054367,0.465470939874649,0.467467457056046,0.248864352703094,0.588033735752106,0.203475326299667,0.587298035621643,0.206050574779511,0.585826635360718,0.249967962503433,0.587298035621643,0.249416127800941,0.533585369586945,0.203475326299667,0.534321308135986,0.202463567256927,0.588033735752106,0.174871474504471,0.588033735752106,0.176894888281822,0.567431747913361,0.173767745494843,0.537264406681061,0.171652421355248,0.55271577835083,0.169169068336487,0.532849669456482,0.248634427785873,0.532849669456482,0.249783977866173,0.520341336727142,0.248772382736206,0.522548615932465,0.170088887214661,0.522548615932465,0.168065413832664,0.526227355003357,0.248588383197784,0.473986387252808,0.249783977866173,0.473250657320023,0.201267927885056,0.474722355604172,0.203567296266556,0.520341336727142,0.172756046056747,0.519605398178101,0.174871474504471,0.484287440776825,0.173583880066872,0.47251495718956,0.170088887214661,0.505625367164612,0.324062705039978,0.468857526779175,0.351921290159225,0.466929078102112,0.341502279043198,0.47953537106514,0.340479254722595,0.49830374121666,0.340314596891403,0.514155626296997,0.27606013417244,0.514391005039215,0.276248216629028,0.468293190002441,0.275178164243698,0.516366600990295,0.27503702044487,0.467234700918198,0.339844137430191,0.517330765724182,0.340479254722595,0.528102695941925,0.276201277971268,0.52800840139389,0.339291483163834,0.529066920280457,0.275460332632065,0.528831601142883,0.275918900966644,0.581797003746033,0.274848937988281,0.58431339263916,0.322275459766388,0.581608951091766,0.341608315706253,0.546753406524658,0.342819422483444,0.565357089042664,0.351086318492889,0.580785691738129,0.69688618183136,0.492374867200851,0.696089506149292,0.525229692459106,0.695316731929779,0.49269363284111,0.69688618183136,0.525643885135651,0.752302825450897,0.449864417314529,0.697659015655518,0.450247168540955,0.695316731929779,0.491801202297211,0.69688618183136,0.450947940349579,0.696089506149292,0.449960112571716,0.695316731929779,0.40142685174942,0.696089506149292,0.399929136037827,
- 0.753075420856476,0.400821506977081,0.753848373889923,0.451457798480988,0.751506090164185,0.557000935077667,0.753848314285278,0.401841014623642,0.767128646373749,0.400534451007843,0.764786660671234,0.410604506731033,0.753848373889923,0.546293616294861,0.765559315681458,0.557000935077667,0.758540689945221,0.565286457538605,0.742917835712433,0.5650634765625,0.817080020904541,0.565987467765808,0.816307246685028,0.559773564338684,0.754621088504791,0.576567471027374,0.753848373889923,0.570257604122162,0.703124105930328,0.576376080513,0.69688618183136,0.565764486789703,0.767128884792328,0.556491076946259,0.817080020904541,0.448653519153595,0.697659015655518,0.563693046569824,0.696089506149292,0.5650634765625,0.694536030292511,0.527046144008636,0.696089506149292,0.563693046569824,0.767901599407196,0.449163407087326,0.798334419727325,0.448143661022186,0.816307246685028,0.401841014623642,0.817080020904541,0.40063014626503,0.621409595012665,0.564167499542236,0.609737515449524,0.57564514875412,0.610126376152039,0.569420099258423,0.661095321178436,0.575450718402863,0.666931331157684,0.564945697784424,0.666542410850525,0.562805593013763,0.612850069999695,0.55638599395752,0.605457544326782,0.564362049102783,0.667320430278778,0.525259852409363,0.610515475273132,0.545491874217987,0.598843276500702,0.556191504001617,0.612071752548218,0.449487596750259,0.667320430278778,0.491507828235626,0.666153252124786,0.449973851442337,0.610515415668488,0.451043844223022,0.611293733119965,0.400415509939194,0.666931331157684,0.401145040988922,0.669654965400696,0.399929136037827,0.610515415668488,0.401436775922775,0.597286999225616,0.400123685598373,0.599232316017151,0.410191059112549,0.548263430595398,0.401485562324524,0.547096371650696,0.400220841169357,0.596508741378784,0.448612093925476,0.566161036491394,0.447639495134354,0.54748547077179,0.448125839233398,0.596897959709167,0.555607795715332,0.547874391078949,0.558915138244629,0.547485411167145,0.565140187740326,0.140682429075241,0.474315166473389,0.097831591963768,0.519720911979675,0.0975271463394165,
- 0.473573833703995,0.142125323414803,0.518979489803314,0.143184408545494,0.47251495718956,0.0986655652523041,0.521150648593903,0.141662076115608,0.521150648593903,0.142840206623077,0.531952679157257,0.0987980216741562,0.531608521938324,0.0980566963553429,0.532667398452759,0.141397282481194,0.531237661838531,0.141211897134781,0.533038198947906,0.141397282481194,0.585274636745453,0.142932862043381,0.584956824779511,0.098520003259182,0.584215521812439,0.0974344909191132,0.586757183074951,0.09758011251688,0.585274636745453,0.0722383707761765,0.51951664686203,0.0294235702604055,0.474315822124481,0.0725534930825233,0.473595440387726,0.0279828626662493,0.518976390361786,0.0269024707376957,0.47251495718956,0.0714280158281326,0.521137416362762,0.0284331608563662,0.520957350730896,0.0272626131772995,0.531762301921844,0.0712929591536522,0.531582236289978,0.0720132663846016,0.532482624053955,0.028703261166811,0.531221985816956,0.0288833416998386,0.533022880554199,0.0287933573126793,0.583806276321411,0.0271725729107857,0.584886848926544,0.0725084468722343,0.584526658058167,0.431796163320541,0.784928977489471,0.398905098438263,0.724152088165283,0.431796103715897,0.724152088165283,0.398905098438263,0.794105112552643,0.427982687950134,0.794105112552643,0.0181285757571459,0.428436279296875,0.0424878485500813,0.419156640768051,0.0355280302464962,0.425391376018524,0.0117487600073218,0.37551286816597,0.0436477474868298,0.359273284673691,0.0123287383466959,0.364203184843063,0.0117487600073218,0.357243329286575,0.0448077619075775,0.418866664171219,0.0117487898096442,0.189193546772003,0.0453877672553062,0.287790417671204,0.0627872198820114,0.426986306905746,0.0430677719414234,0.110025763511658,0.0117487898096442,0.183103621006012,0.0111688412725925,0.105385832488537,0.0117487898096442,0.0149086443707347,0.0419078171253204,0.0149086443707347,0.0117487898096442,0.0117187509313226,0.0395879037678242,0.0117187509313226,0.0459677465260029,0.0157785676419735,0.0535074919462204,0.0117187509313226,0.108605824410915,0.0169386398047209,0.111505798995495,
- 0.0117187509313226,0.109765782952309,0.184553608298302,0.113825656473637,0.0151986191049218,0.110925793647766,0.353618443012238,0.144564807415009,0.0157785676419735,0.145144805312157,0.0117187509313226,0.105705931782722,0.36695796251297,0.113245725631714,0.36376816034317,0.113825678825378,0.42771127820015,0.0964262112975121,0.434816062450409,0.1155656427145,0.428146302700043,0.14166484773159,0.449678212404251,0.124845370650291,0.43336609005928,0.146884709596634,0.361738204956055,0.142824828624725,0.43336609005928,0.176463812589645,0.436556160449982,0.160224303603172,0.441340893507004,0.145724758505821,0.0140386046841741,0.209522798657417,0.0117187509313226,0.209522798657417,0.0146186118945479,0.213002771139145,0.0146186118945479,0.212422773241997,0.105095975100994,0.210682839155197,0.183393552899361,0.212422758340836,0.182813584804535,0.213002726435661,0.18919338285923,0.210102841258049,0.357823371887207,0.213002726435661,0.357243329286575,0.210102841258049,0.364638179540634,0.210682809352875,0.376672774553299,0.213002726435661,0.375367850065231,0.193283319473267,0.434381037950516,0.212422758340836,0.424376308917999,0.210682839155197,0.42481142282486,0.317975044250488,0.609021365642548,0.306213110685349,0.609555959701538,0.316371142864227,0.607150137424469,0.316371142864227,0.634149134159088,0.29712438583374,0.636020123958588,0.285897046327591,0.608753979206085,0.284293115139008,0.610625147819519,0.282689213752747,0.634950995445251,0.286431670188904,0.67651891708374,0.283758461475372,0.656336307525635,0.316905796527863,0.675182282924652,0.308351635932922,0.698305070400238,0.321182817220688,0.696433901786804,0.32011353969574,0.697904169559479,0.290174067020416,0.698438584804535,0.292312681674957,0.700978338718414,0.684115648269653,0.934889853000641,0.687630295753479,0.931863367557526,0.687825560569763,0.941528737545013,0.714011490345001,0.940858721733093,0.713850975036621,0.931863367557526,0.718268275260925,0.937003493309021,0.627124190330505,0.940552890300751,0.622524976730347,0.950006425380707,0.620928168296814,0.939914047718048,
- 0.781218409538269,0.935286700725555,0.777291119098663,0.942489266395569,0.775179982185364,0.934293329715729,0.282689213752747,0.983943819999695,0.287475556135178,0.962704241275787,0.286279022693634,0.984093368053436,0.463601678609848,0.968660056591034,0.45180869102478,0.968882918357849,0.452429354190826,0.955431580543518,0.312424540519714,0.962704241275787,0.319428294897079,0.963066399097443,0.31870374083519,0.98407781124115,0.357139736413956,0.963830411434174,0.349030315876007,0.980499804019928,0.345876693725586,0.962704241275787,0.42537733912468,0.958199739456177,0.418218851089478,0.971174597740173,0.414639562368393,0.95641028881073,0.0633914396166801,0.987596213817596,0.0708239078521729,0.959989905357361,0.069762110710144,0.987861752510071,0.750265836715698,0.937118768692017,0.744540452957153,0.942844390869141,0.743586182594299,0.934256255626678,0.522430002689362,0.952789604663849,0.526350796222687,0.949413120746613,0.52678644657135,0.960195422172546,0.652700781822205,0.941287159919739,0.652521908283234,0.931268155574799,0.657442033290863,0.936993300914764,0.561157822608948,0.96006041765213,0.552664935588837,0.960185289382935,0.552165269851685,0.949413120746613,0.383045852184296,0.95641028881073,0.388597369194031,0.956687569618225,0.38785719871521,0.972787022590637,0.49706694483757,0.956257164478302,0.490958750247955,0.968473374843597,0.488977789878845,0.955431580543518,0.595425486564636,0.94224739074707,0.590234041213989,0.951657056808472,0.587476015090942,0.940949618816376,0.0567139312624931,0.934165000915527,0.0630812719464302,0.90499883890152,0.061643473803997,0.934370458126068,0.811828255653381,0.936459481716156,0.807315289974213,0.940791726112366,0.806773722171783,0.934293329715729,0.167347222566605,0.987036287784576,0.145163476467133,0.960911989212036,0.167201235890388,0.960911989212036,0.145309448242188,0.987182259559631,0.23808628320694,0.981330752372742,0.256504774093628,0.962445855140686,0.256271600723267,0.985119342803955,0.238436073064804,0.962766528129578,0.860652446746826,0.683874785900116,0.821641385555267,
- 0.683874785900116,0.860185265541077,0.607838213443756,0.824211001396179,0.607370972633362,0.166605412960052,0.937380611896515,0.140046328306198,0.906829059123993,0.166258215904236,0.906829059123993,0.140220016241074,0.938075184822083,0.386901795864105,0.875179171562195,0.357027441263199,0.87544584274292,0.38654613494873,0.817297518253326,0.359161227941513,0.816941738128662,0.883907616138458,0.909801185131073,0.859172463417053,0.910359621047974,0.886939585208893,0.907167971134186,0.858853280544281,0.87070369720459,0.887418448925018,0.870543956756592,0.704752504825592,0.869369685649872,0.728404760360718,0.869527399539948,0.70427942276001,0.905715107917786,0.727931618690491,0.908868968486786,0.710902094841003,0.909026563167572,0.472197353839874,0.932594776153564,0.452709853649139,0.93139910697937,0.471390247344971,0.907010018825531,0.453277885913849,0.896608710289001,0.46986597776413,0.896967530250549,0.579571008682251,0.917028188705444,0.556009888648987,0.918112874031067,0.55474454164505,0.892563164234161,0.576437592506409,0.881234467029572,0.559354245662689,0.883042216300964,0.864504516124725,0.847120642662048,0.838702499866486,0.847707211971283,0.867855429649353,0.844356298446655,0.838367462158203,0.806072115898132,0.868525624275208,0.805736839771271,0.734293937683105,0.840693354606628,0.734998166561127,0.800292253494263,0.741687655448914,0.844390153884888,0.761404037475586,0.800644278526306,0.760699868202209,0.844213962554932,0.414480686187744,0.816941738128662,0.440654456615448,0.817451536655426,0.438275039196014,0.873772025108337,0.412781119346619,0.865720093250275,0.420259326696396,0.872922241687775,0.490865588188171,0.81369948387146,0.492545366287231,0.866970181465149,0.475747346878052,0.812691569328308,0.467348277568817,0.867117166519165,0.466676354408264,0.812607705593109,0.651305794715881,0.90843141078949,0.679398417472839,0.903566241264343,0.674062430858612,0.908195912837982,0.650991916656494,0.869823575019836,0.679084539413452,0.869509875774384,0.753602623939514,0.906428515911102,0.776735782623291,0.911419451236725,
- 0.757563769817352,0.911023497581482,0.776577413082123,0.871728837490082,0.753285706043243,0.871887266635895,0.623999416828156,0.886790931224823,0.604452013969421,0.881240546703339,0.618690133094788,0.880033910274506,0.607649564743042,0.917077302932739,0.626110970973969,0.912130057811737,0.427828848361969,0.898282527923584,0.40564501285553,0.905699610710144,0.409585356712341,0.898282527923584,0.427230775356293,0.933095037937164,0.405308544635773,0.930822014808655,0.40844139456749,0.933573544025421,0.631379187107086,0.704507946968079,0.593843460083008,0.767751336097717,0.596315860748291,0.703833758831024,0.629131555557251,0.778371453285217,0.604407370090485,0.777865648269653,0.497078359127045,0.899056553840637,0.52986353635788,0.925729513168335,0.497898697853088,0.926576256752014,0.506485223770142,0.891012489795685,0.52949321269989,0.889953911304474,0.321334421634674,0.908804714679718,0.294286727905273,0.939444720745087,0.295343339443207,0.906480312347412,0.327251017093658,0.928668022155762,0.327039748430252,0.939867377281189,0.457355320453644,0.789771020412445,0.489226460456848,0.717891037464142,0.491486996412277,0.789573311805725,0.468883216381073,0.716534674167633,0.456677168607712,0.716421723365784,0.205692857503891,0.800924301147461,0.240962296724319,0.797913491725922,0.234080493450165,0.801784455776215,0.239671975374222,0.757052421569824,0.20698319375515,0.738342583179474,0.236661225557327,0.738987505435944,0.180811852216721,0.738342583179474,0.14098596572876,0.751617789268494,0.147837713360786,0.738342583179474,0.179527193307877,0.800650835037231,0.14055772125721,0.796582639217377,0.146124809980392,0.80150705575943,0.828443169593811,0.871728837490082,0.801616728305817,0.90531325340271,0.802231132984161,0.87254810333252,0.824757039546967,0.91145658493042,0.833767473697662,0.877462863922119,0.833972334861755,0.91145658493042,0.26757824420929,0.791521847248077,0.310082018375397,0.79412454366684,0.274083912372589,0.794341206550598,0.26584330201149,0.750319302082062,0.304877519607544,0.729934871196747,0.274083912372589,
- 0.733187854290009,0.912299394607544,0.870610594749451,0.936313331127167,0.910496771335602,0.912299394607544,0.910743415355682,0.941905617713928,0.905644595623016,0.941576302051544,0.86995267868042,0.786682486534119,0.843349039554596,0.812374413013458,0.848892152309418,0.791257798671722,0.848452270030975,0.812374413013458,0.804811239242554,0.78633064031601,0.804987370967865,0.263672798871994,0.883643627166748,0.292916744947433,0.875663757324219,0.286497354507446,0.883353650569916,0.290063619613647,0.824621140956879,0.262246251106262,0.827785789966583,0.267595827579498,0.825334012508392,0.114818587899208,0.936459422111511,0.0956679433584213,0.908020555973053,0.11516534537077,0.906633377075195,0.08796226978302,0.914610207080841,0.0886341407895088,0.937153100967407,0.0334983393549919,0.959649503231049,0.0111688375473022,0.98494428396225,0.0115177854895592,0.957207262516022,0.038382850587368,0.976047456264496,0.0383828654885292,0.985293388366699,0.543889462947845,0.819545328617096,0.518713057041168,0.812396347522736,0.537051439285278,0.810842216014862,0.522909164428711,0.858397781848907,0.546686828136444,0.852181375026703,0.265038102865219,0.906683743000031,0.243031859397888,0.934065580368042,0.243535786867142,0.907187640666962,0.269405692815781,0.911219298839569,0.269237697124481,0.939609169960022,0.210464298725128,0.962174534797668,0.19348332285881,0.969394385814667,0.194060906767845,0.963474094867706,0.213121175765991,0.979386448860168,0.209078177809715,0.983718454837799,0.195216000080109,0.985797762870789,0.796141266822815,0.665657162666321,0.762029647827148,0.600109815597534,0.790965855121613,0.599404096603394,0.754736959934235,0.603344619274139,0.756618916988373,0.677037596702576,0.786731362342834,0.676654994487762,0.923938512802124,0.805736839771271,0.894121110439301,0.818312764167786,0.895135283470154,0.807765245437622,0.928603887557983,0.835756957530975,0.921504497528076,0.843464910984039,0.89716374874115,0.847115933895111,0.191669076681137,0.93933767080307,0.191486418247223,0.914134323596954,0.211484760046005,
- 0.93897271156311,0.19623489677906,0.90755957365036,0.21732896566391,0.906829059123993,0.218150824308395,0.935319840908051,0.654417097568512,0.814616501331329,0.630990982055664,0.801208138465881,0.652413487434387,0.801670670509338,0.630220413208008,0.846056699752808,0.650409936904907,0.846673130989075,0.655495762825012,0.843899071216583,0.376599311828613,0.898931920528412,0.352132022380829,0.90925133228302,0.352964282035828,0.900762677192688,0.380427539348602,0.923732101917267,0.374602019786835,0.92989057302475,0.354628771543503,0.93288642168045,0.68070650100708,0.810668230056763,0.684400677680969,0.846533000469208,0.68039870262146,0.842992663383484,0.708567142486572,0.845917284488678,0.709336817264557,0.801124751567841,0.685786068439484,0.801124751567841,0.600702166557312,0.810842216014862,0.572608292102814,0.825513541698456,0.578539252281189,0.81318336725235,0.6047602891922,0.857197165489197,0.578539252281189,0.857197165489197,0.573856949806213,0.855168104171753,0.0969973504543304,0.988281309604645,0.0968436375260353,0.966908633708954,0.113680332899094,0.987973749637604,0.118600651621819,0.960911989212036,0.100841321051121,0.961373269557953,0.119292572140694,0.984898447990417,0.340605080127716,0.790556371212006,0.334963023662567,0.7263223528862,0.350153505802155,0.789471387863159,0.370118051767349,0.736304640769959,0.36056986451149,0.724152088165283,0.374024093151093,0.781876087188721,0.697688221931458,0.212740182876587,0.616682112216949,0.212740063667297,0.616682350635529,0.173355281352997,0.695325613021851,0.173355415463448,0.697688221931458,0.294376701116562,0.616682112216949,0.294376462697983,0.440708726644516,0.170891255140305,0.360031306743622,0.170891255140305,0.360031306743622,0.132687345147133,0.0863876938819885,0.637826442718506,0.440708726644516,0.252196222543716,0.360031306743622,0.252196222543716,0.586751937866211,0.0294617936015129,0.597451865673065,0.0414627343416214,0.601488649845123,0.0977877005934715,0.616682350635529,0.108605019748211,0.494553804397583,0.0885993912816048,0.494554072618485,0.0117187509313226,
- 0.538492798805237,0.0194064006209373,0.561151504516602,0.0305364225059748,0.494553804397583,0.132545739412308,0.61404824256897,0.132546007633209,0.494553804397583,0.173355013132095,0.49455338716507,0.294376254081726,0.494553565979004,0.212739765644073,0.49455314874649,0.377091974020004,0.49455338716507,0.3327357172966,0.616681814193726,0.332735985517502,0.619189321994781,0.377092450857162,0.362216264009476,0.0117187509313226,0.384785413742065,0.0501146651804447,0.362060338258743,0.0885111466050148,0.238242447376251,0.0885112509131432,0.23808628320694,0.0117188235744834,0.726628661155701,0.294376701116562,0.72473818063736,0.332736164331436,0.695797562599182,0.332736164331436,0.72662889957428,0.212740272283554,0.438108265399933,0.692287385463715,0.438108265399933,0.650820791721344,0.483803510665894,0.650798261165619,0.482001960277557,0.692287385463715,0.416207790374756,0.69358503818512,0.409064203500748,0.650828003883362,0.186702981591225,0.715505838394165,0.144369155168533,0.690829634666443,0.360031306743622,0.291420847177505,0.438355088233948,0.291421145200729,0.149208068847656,0.61087042093277,0.186703681945801,0.639018476009369,0.729305386543274,0.639712393283844,0.682929515838623,0.639712333679199,0.682257175445557,0.599404096603394,0.728633224964142,0.599404275417328,0.724265992641449,0.173355475068092,0.0111693739891052,0.637826204299927,0.0487786829471588,0.609593868255615,0.0487783849239349,0.693120777606964,0.0111688375473022,0.715005457401276,0.469531863927841,0.252196222543716,0.467178463935852,0.291420996189117,0.469531863927841,0.170891150832176,0.467648953199387,0.132687419652939,0.238398596644402,0.132687494158745,0.238398596644402,0.170891255140305,0.238398596644402,0.291420996189117,0.238398596644402,0.252196222543716,0.238398596644402,0.332064568996429,0.357407599687576,0.332064568996429,0.238398596644402,0.375803738832474,0.360031306743622,0.355908006429672,0.238398596644402,0.444092363119125,0.347672343254089,0.370906233787537,0.339057177305222,0.424012631177902,0.330813467502594,0.429428517818451,
- 0.311767607927322,0.428009510040283,0.263348788022995,0.437091827392578,0.752878606319427,0.054969921708107,0.752878606319427,0.0117187509313226,0.828062772750854,0.0117187509313226,0.828062772750854,0.0549698695540428,0.752878606319427,0.0923735871911049,0.82806271314621,0.0923735275864601,0.752878606319427,0.17197585105896,0.828062772750854,0.17197585105896,0.752878487110138,0.210379287600517,0.82806271314621,0.210379287600517,0.752878487110138,0.250171661376953,0.828062951564789,0.250171661376953,0.752878487110138,0.293022930622101,0.82806271314621,0.292994797229767,0.82806271314621,0.359855145215988,0.80884712934494,0.367989808320999,0.752878487110138,0.367989808320999,0.682257175445557,0.680020391941071,0.728633522987366,0.680020451545715,0.416243612766266,0.608214437961578,0.438108265399933,0.609354138374329,0.482001960277557,0.609354138374329,0.892697393894196,0.584534347057343,0.906781554222107,0.545668482780457,0.941905617713928,0.571425259113312,0.905807197093964,0.497089594602585,0.899016737937927,0.477833837270737,0.923863172531128,0.484669625759125,0.924525320529938,0.494448870420456,0.894247949123383,0.43289178609848,0.897873938083649,0.391496598720551,0.918030738830566,0.390826523303986,0.921424865722656,0.415115267038345,0.902823567390442,0.458415389060974,0.92474764585495,0.465219140052795,0.841960966587067,0.578141570091248,0.877540767192841,0.550132989883423,0.847969770431519,0.486922025680542,0.876707494258881,0.489646285772324,0.887122571468353,0.496425032615662,0.848848164081573,0.503359377384186,0.845568776130676,0.461686134338379,0.882424592971802,0.463927567005157,0.873046398162842,0.445813417434692,0.869844615459442,0.43239289522171,0.844757616519928,0.395465016365051,0.888320207595825,0.449079185724258,0.845723807811737,0.437408268451691,0.845644593238831,0.556114077568054,0.882321417331696,0.526068329811096,0.90721333026886,0.531940400600433,0.932480812072754,0.543969869613647,0.111711591482162,0.639017581939697,0.111711293458939,0.715504884719849,0.0863873958587646,0.715005874633789,0.438825905323029,
- 0.132687613368034,0.362216264009476,0.0117187509313226,0.384785413742065,0.0501146651804447,0.362060338258743,0.0885111466050148,0.238242447376251,0.0885112509131432,0.23808628320694,0.0117188235744834
- }
- UVIndex: *1954 {
- a: 0,1,2,2,3,0,4,5,6,5,4,7,8,9,10,10,11,8,12,13,14,13,12,15,16,17,18,17,19,18,20,21,22,23,21,20,24,25,26,26,25,27,27,28,26,28,27,29,30,28,29,28,30,31,32,33,34,35,33,32,35,36,33,36,35,37,38,36,37,36,38,39,40,41,42,41,40,43,43,40,44,45,46,47,46,45,48,46,48,49,50,51,52,53,51,50,53,54,51,54,53,55,56,54,55,54,56,57,58,59,60,59,58,61,61,58,62,63,64,65,64,63,66,64,66,67,68,69,70,71,69,68,71,72,69,72,71,73,74,72,73,72,74,75,76,77,78,77,76,79,79,76,80,81,82,83,82,81,84,82,84,85,86,87,88,87,86,89,86,90,89,90,86,91,89,90,92,91,92,90,93,92,91,94,95,96,95,94,97,94,98,97,98,94,99,97,98,100,99,100,98,101,100,99,102,103,104,103,102,105,106,105,102,107,106,102,108,109,110,111,109,108,109,111,112,112,113,109,114,112,111,112,114,115,112,115,116,116,115,117,118,117,115,119,118,115,119,115,120,120,115,121,122,119,120,120,123,122,120,121,124,120,124,125,120,125,126,127,128,129,130,128,127,131,130,127,130,132,128,133,131,134,132,135,136,131,133,137,137,130,131,138,137,133,135,132,139,132,130,139,139,140,135,140,138,141,142,139,130,140,139,142,137,142,130,142,138,140,137,138,142,143,144,145,146,144,143,147,146,143,146,148,144,149,147,150,148,151,152,147,149,153,153,146,147,151,148,154,148,146,154,154,155,151,153,156,146,156,154,146,149,156,153,155,154,156,157,156,149,156,157,155,158,159,160,161,159,158,162,161,158,161,163,159,164,162,165,163,166,167,162,164,168,168,161,162,166,163,169,163,161,169,169,170,166,168,171,161,171,169,161,164,171,168,170,169,171,172,171,164,171,172,170,173,174,175,173,175,176,176,175,177,175,178,177,178,175,179,179,180,181,181,178,179,182,181,183,178,181,182,178,182,184,177,178,185,184,185,178,186,177,185,184,187,185,185,187,186,188,184,189,187,184,188,186,190,191,186,192,190,193,187,188,187,193,186,192,186,193,188,194,193,193,195,192,194,195,193,196,192,195,195,194,197,198,199,200,201,198,200,202,198,201,203,198,202,198,203,204,202,205,203,205,204,203,204,205,206,205,202,207,208,205,207,208,209,205,210,209,208,211,205,209,210,211,209,211,212,213,211,214,212,214,211,210,210,215,214,214,215,
- 216,214,216,217,218,219,220,219,218,221,222,221,218,223,222,218,224,223,218,223,224,225,226,227,223,228,223,227,229,223,228,229,222,223,229,230,222,221,222,231,231,222,230,230,229,232,233,232,229,232,234,230,234,232,233,231,230,235,230,234,236,230,236,235,231,235,237,235,236,237,231,237,238,239,236,240,241,238,242,238,241,243,238,243,244,240,236,245,245,246,240,247,238,244,238,247,231,248,247,244,221,231,247,247,249,221,249,247,250,245,236,251,246,245,251,234,251,236,251,234,233,246,251,252,233,252,251,252,253,246,253,252,233,253,233,254,255,256,257,256,255,258,255,259,258,259,255,260,261,260,255,262,261,255,260,261,263,261,262,264,265,264,262,266,263,261,263,266,267,266,268,267,264,269,261,266,261,269,265,269,264,270,268,266,269,270,266,268,270,271,271,270,272,270,269,273,273,274,270,275,273,269,273,275,274,265,275,269,274,276,277,278,275,265,275,278,274,274,279,276,279,274,278,276,279,280,278,280,279,281,280,278,265,281,278,280,281,282,265,282,281,282,265,283,284,285,286,287,284,288,285,284,287,287,289,285,289,287,290,287,291,290,289,292,285,285,292,293,294,289,290,294,292,289,290,291,294,295,292,294,291,295,294,295,293,292,295,291,296,293,295,296,296,291,297,293,296,298,299,293,298,296,300,298,301,302,303,304,305,302,302,301,304,306,304,301,304,306,307,308,304,307,309,306,301,309,301,310,306,311,307,311,306,309,307,311,308,311,309,312,312,308,311,310,312,309,312,313,308,310,313,312,308,313,314,313,310,315,316,317,318,317,316,319,319,316,320,321,322,323,322,321,324,325,322,324,326,325,324,325,326,327,325,328,322,325,327,329,328,325,330,330,331,328,332,325,329,332,330,325,332,329,333,334,332,333,335,332,334,335,336,332,337,336,335,336,337,338,339,332,336,339,336,338,339,330,332,339,338,340,340,341,339,341,340,342,339,341,343,330,339,343,344,341,342,341,344,343,330,343,345,342,346,344,346,342,347,330,345,348,348,331,330,343,349,345,348,345,349,349,343,344,331,348,350,331,350,351,349,350,348,350,349,352,349,344,353,353,352,349,352,353,354,346,353,344,353,346,355,355,356,353,356,357,358,357,356,355,359,346,347,359,355,
- 346,360,359,347,361,359,360,360,362,361,362,363,361,359,361,364,364,361,363,364,355,359,364,363,365,364,365,366,366,367,364,355,364,367,367,366,368,369,367,368,355,367,369,355,369,370,370,357,355,370,369,371,357,370,372,371,373,370,372,370,374,374,370,373,375,376,377,376,375,378,376,378,379,379,380,376,380,379,381,381,379,382,379,378,383,383,382,379,382,383,384,383,378,385,385,386,383,386,385,387,386,387,388,386,389,383,389,386,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,449,448,451,452,453,454,453,452,455,456,457,458,457,459,458,460,461,462,461,460,463,464,465,466,466,465,467,468,469,470,471,470,469,470,471,472,473,474,475,475,474,476,475,476,477,478,479,480,480,479,481,480,481,482,483,484,485,485,486,483,486,485,487,488,489,490,491,490,489,490,491,492,493,494,495,496,495,494,495,496,497,498,499,500,500,501,498,501,500,502,503,504,505,506,505,504,506,507,505,508,509,510,509,508,511,509,511,512,513,514,515,514,513,516,513,517,516,518,519,520,519,518,521,521,518,522,523,524,525,524,523,526,524,526,527,527,526,528,529,530,531,530,529,532,530,532,533,534,535,536,537,535,534,535,537,538,539,540,541,540,539,542,540,542,543,544,545,546,545,544,547,547,544,548,549,550,551,550,549,552,552,549,553,552,553,554,555,556,557,556,555,558,556,558,559,559,558,560,561,562,563,562,561,564,565,564,561,564,565,566,567,568,569,568,567,570,570,571,568,571,570,572,573,574,575,573,576,574,576,573,577,578,579,580,579,578,581,581,578,582,583,584,585,584,583,586,586,583,587,588,586,587,589,590,591,590,589,592,592,589,593,594,595,596,595,594,597,595,597,598,599,600,601,600,599,602,602,599,603,604,605,606,607,605,604,605,607,608,609,610,611,610,609,612,610,612,613,610,613,614,615,616,617,616,615,618,615,619,618,619,615,620,621,622,623,622,621,624,622,624,625,622,625,626,627,628,629,630,629,628,629,630,631,631,632,629,633,634,635,633,636,634,636,633,
- 637,637,633,638,639,640,641,640,639,642,640,642,643,640,643,644,645,646,647,646,645,648,645,649,648,649,645,650,651,652,653,652,651,654,655,652,654,652,655,656,657,658,659,658,660,659,660,658,661,660,662,659,663,664,665,664,666,665,666,664,667,665,666,668,669,670,671,672,673,674,670,669,675,676,677,801,679,680,676,675,681,682,683,684,685,686,687,688,689,690,671,691,670,674,692,693,694,695,696,697,802,803,804,805,806,673,703,704,705,669,706,703,673,707,708,709,710,685,684,690,689,711,712,708,707,713,714,799,798,717,718,719,720,721,722,716,715,680,679,691,671,670,693,672,723,706,669,724,725,678,800,726,727,705,696,674,673,696,695,692,674,728,729,716,679,730,728,679,675,731,730,675,801,732,701,700,677,733,732,677,676,734,735,680,715,736,734,715,737,735,733,676,680,738,736,737,739,740,738,739,741,742,743,744,745,746,747,748,749,750,746,749,751,752,750,751,753,754,752,753,755,756,754,755,757,758,756,757,759,758,759,760,761,762,763,720,719,764,708,712,765,766,709,708,766,767,768,769,770,771,772,773,774,775,776,777,778,772,779,780,773,781,782,768,783,784,785,786,787,788,784,783,775,789,790,791,776,790,768,782,769,785,772,771,784,788,772,788,792,779,793,790,789,791,790,793,794,795,782,781,769,782,795,796,770,769,796,797,772,788,779,779,775,780,780,775,778,790,776,775,785,784,772,788,789,792,793,789,788,787,792,789,775,779,792,775,786,785,795,794,796,795,785,771,797,796,771,774,698,699,803,802,699,700,804,803,700,701,805,804,701,702,806,805,702,698,802,806
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *977 {
- 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,1,0,0,1,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "ByPolygon"
- ReferenceInformationType: "IndexToDirect"
- Materials: *627 {
- 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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3,3,3,3,3
- }
- }
- 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: 2267733694624, "Geometry::", "Mesh" {
- Vertices: *405 {
- a: 0,53.84912109375,43.2578125,0,53.84912109375,-40.46484375,377.11328125,19.987548828125,43.2578125,371.33203125,20.63232421875,-40.46484375,396.37890625,-80.124755859375,43.2578125,0,-80.124755859375,43.2578125,291.17578125,52.48779296875,-40.35546875,291.17578125,52.48779296875,43.3671875,312.8984375,-80.124755859375,43.2578125,220.8671875,52.48779296875,-40.46484375,220.8671875,52.48779296875,43.2578125,47.8046875,52.48779296875,43.2578125,47.8046875,52.48779296875,-40.46484375,47.8046875,-80.124755859375,43.2578125,220.8671875,137.882080078125,-40.46484375,220.8671875,137.882080078125,43.2578125,220.8671875,-80.124755859375,43.2578125,47.8046875,138.395263671875,43.2578125,47.8046875,138.395263671875,-40.46484375,220.8671875,169.30712890625,1.39453125,47.8046875,169.8203125,1.39453125,47.8046875,-80.124755859375,-40.46484375,220.8671875,-80.124755859375,-40.46484375,0,-80.124755859375,-40.46484375,312.8671875,-80.124755859375,-40.46484375,387.3203125,-80.124755859375,-40.46484375,0,78.208740234375,1.39453125,47.8046875,76.847412109375,1.39453125,293.5546875,81.086669921875,1.3984375,220.8671875,81.086669921875,1.3984375,364.08203125,31.606201171875,43.2578125,365.9921875,29.4263916015625,-40.46484375,382.0078125,-20.126708984375,43.2578125,379.6875,-52.921875,-40.46484375,372.828125,35.514404296875,-9.931640625,382.25,8.747802734375,-4.47293090820313,401.3046875,-32.5294189453125,2.302734375,396.37890625,-80.125,-19.06640625,319.2265625,50.178955078125,-0.2109375,302.91796875,35.9925537109375,43.3046875,334.80859375,38.6884765625,-5.701171875,308.01953125,38.8675537109375,-40.41796875,226.35546875,136.068115234375,44.5668640136719,232.9765625,167.1826171875,1.513427734375,228.0859375,150.05224609375,50.0620727539063,227.34765625,184.3251953125,0.85101318359375,41.6484375,153.054077148438,51.3597717285156,40.890625,188.504760742188,0.44354248046875,88.79296875,151.332763671875,51.0993041992188,43.359375,138.603515625,45.4756469726563,41.53125,138.12939453125,43.1805114746094,226.3046875,135.812255859375,42.1415405273438,
- 41.2265625,169.884155273438,1.36322021484375,226.35546875,136.067993164063,-41.7765502929688,228.41015625,150.019897460938,-47.3255004882813,41.59765625,153.06298828125,-48.674560546875,88.91015625,151.34033203125,-48.3172607421875,43.359375,138.6044921875,-42.689697265625,41.53125,138.131958007813,-40.3970336914063,226.30859375,135.810424804688,-39.3513793945313,265.984375,-106.501953125,22.5213623046875,305.2421875,-105.471923828125,-35.9113159179688,266.53125,-105.712524414063,-36.3898315429688,305.7265625,-106.555908203125,22.8855285644531,265.9921875,-186.826599121094,22.8278198242188,305.40234375,-186.536193847656,22.5885620117188,151.69921875,-106.505004882813,22.5209350585938,190.95703125,-105.471557617188,-35.9121704101563,152.24609375,-105.712768554688,-36.389892578125,191.44140625,-106.557250976563,22.8819274902344,152.11328125,-187.098022460938,22.9718017578125,191.15625,-186.734252929688,22.4901123046875,37.08984375,-106.5068359375,22.5195007324219,76.33984375,-105.473266601563,-35.9118041992188,37.6328125,-105.712280273438,-36.3897705078125,76.83203125,-106.5576171875,22.8844299316406,37.4921875,-187.098449707031,22.9714965820313,76.5390625,-186.733215332031,22.4907836914063,-0.75,77.2119140625,1.38818359375,-0.16015625,52.132568359375,44.1637878417969,-0.078125,67.9329833984375,52.0679931640625,-0.2890625,96.08251953125,0.78521728515625,-0.078125,67.9293212890625,-49.2789916992188,-0.16015625,52.1298828125,-41.37255859375,220.40625,99.1177978515625,1.8992919921875,220.94921875,63.606201171875,-47.9718627929688,220.25390625,80.0662841796875,1.33648681640625,220.6640625,48.69482421875,-40.8413696289063,220.89453125,63.593994140625,50.7237854003906,220.73046875,48.9844970703125,45.0098876953125,305.08984375,-186.444763183594,-6.43414306640625,266.5390625,-186.073364257813,-6.94436645507813,305.47265625,-129.513305664063,-36.7800903320313,266.390625,-129.513671875,-36.627685546875,152.32421875,-186.421813964844,-6.71246337890625,152.0234375,-129.478881835938,-36.4352416992188,190.83203125,-186.112182617188,-6.7052001953125,
- 191.20703125,-129.570678710938,-36.8112182617188,37.70703125,-186.422424316406,-6.71258544921875,37.41015625,-129.478881835938,-36.4356689453125,76.21875,-186.111938476563,-6.70608520507813,76.58984375,-129.571411132813,-36.8121337890625,49.50390625,94.9993896484375,0.8792724609375,49.11328125,66.9267578125,52.266845703125,48.2578125,51.2581787109375,43.4033813476563,49.54296875,76.3389892578125,1.37966918945313,49.22265625,66.8798828125,-49.402099609375,48.26171875,51.2542724609375,-40.6136474609375,293.8671875,96.6513671875,2.3828125,291.6171875,61.9031982421875,50.472412109375,290.20703125,46.05419921875,43.3485107421875,221.6328125,49.36865234375,42.89453125,300.015625,76.5081787109375,1.65444946289063,308.17578125,48.9261474609375,-37.4451904296875,311.4765625,53.778564453125,-46.8356323242188,306.83203125,64.205322265625,-45.0636596679688,-0.890625,-108.423217773438,43.994384765625,-2.2734375,-73.3939208984375,-46.031982421875,-2.71875,-108.11962890625,-47.161865234375,-0.14453125,-74.598388671875,46.4863891601563,399.953125,-74.4918212890625,-22.2060546875,399.78515625,-75.3023681640625,44.675048828125,409.03515625,-74.474609375,22.54296875,386.6484375,-75.1046142578125,-46.477783203125,2.05078125,-72.150146484375,42.0885925292969,403.98828125,-77.807373046875,46.75244140625,407.99609375,-105.996948242188,47.1788330078125,-0.484375,-73.601806640625,-50.8496704101563,391.9921875,-77.3802490234375,-48.1435546875,394.76171875,-109.89404296875,-47.931640625,0.328125,-105.93212890625,-50.59765625,0.3515625,-107.0126953125,45.9863891601563,407.875,-108.678833007813,43.6295471191406,416.84375,-108.393920898438,20.1093139648438,408.45703125,-108.2919921875,-23.12109375
- }
- PolygonVertexIndex: *628 {
- a: 11,10,15,-18,2,30,39,7,8,4,-33,5,13,11,-1,0,26,1,23,-6,8,7,10,-17,10,7,28,-30,10,29,9,14,19,-16,26,27,12,-2,14,9,12,-19,16,10,11,-14,17,15,19,-21,17,20,18,12,27,-12,19,14,18,-21,21,23,1,-13,21,12,9,-23,9,6,24,-23,25,24,6,41,31,3,-34,13,5,23,-22,16,13,21,-23,8,16,22,-25,8,24,25,37,-5,11,27,26,-1,28,6,9,-30,28,38,-7,34,35,3,-32,36,37,25,-34,33,3,35,-37,7,38,-29,2,35,34,-31,32,35,-3,4,37,-37,32,36,-36,4,36,-33,39,40,38,-8,6,38,40,-42,30,34,40,-40,41,40,34,-32,42,43,-45,43,45,-45,46,45,-48,45,46,-45,44,46,-49,48,42,-45,46,49,-49,48,49,-43,49,46,-51,49,50,-43,51,42,-51,43,42,-52,52,51,-51,51,52,-44,43,53,-55,54,45,-44,45,55,-48,55,45,-55,55,54,-57,53,56,-55,57,55,-57,53,57,-57,55,57,-59,58,57,-54,53,59,-59,53,43,-60,59,52,-59,52,59,-44,60,61,-63,61,60,-64,63,64,-66,64,63,-61,66,67,-69,67,66,-70,69,70,-72,70,69,-67,72,73,-75,73,72,-76,75,76,-78,76,75,-73,52,50,-47,46,47,-53,55,52,-48,52,55,-59,78,79,-81,80,81,-79,82,78,-82,78,82,-84,84,85,-87,85,87,-87,86,88,-85,89,88,-87,64,90,-66,90,64,-92,90,91,-93,91,93,-93,62,92,-94,92,62,-62,60,91,-65,91,60,-94,93,60,-63,90,63,-66,63,90,-93,63,92,-62,66,94,-71,94,66,-96,95,66,-69,96,69,-72,69,96,-98,69,97,-68,72,98,-77,98,72,-100,99,72,-75,100,75,-78,75,100,-102,75,101,-74,80,102,-82,80,103,-103,103,80,-80,103,79,-105,79,105,-105,105,79,-79,102,82,-82,82,102,-107,106,83,-83,83,106,-108,105,83,-108,83,105,-79,88,108,-85,108,88,-110,109,88,-90,109,89,-111,110,89,-112,89,86,-112,111,112,-111,112,111,-87,70,94,-72,71,94,-97,96,94,-98,94,95,-98,68,97,-96,97,68,-68,76,98,-78,77,98,-101,100,98,-102,98,99,-102,74,101,-100,101,74,-74,105,103,-105,103,105,-103,106,102,-106,107,106,-106,87,112,-87,112,87,-114,113,87,-115,114,87,-86,114,85,-116,108,115,-86,84,108,-86,114,112,-114,115,112,-115,115,108,-113,109,112,-109,112,109,-111,116,117,-119,117,116,-120,120,121,-123,121,120,-124,123,124,-122,124,125,-122,123,117,-125,125,124,-120,124,117,-120,125,119,-127,117,123,-128,127,123,-129,127,118,-118,127,128,-130,118,127,-131,130,127,-130,131,126,-120,131,119,-117,126,131,-133,116,
- 132,-132,129,132,-117,116,118,-130,130,129,-119,129,133,-133,133,129,-135,132,125,-127,125,132,-134,125,122,-122,122,125,-134,133,120,-123,128,120,-134,128,123,-121,133,134,-129,129,128,-135
- }
- Edges: *314 {
- a: 13,36,15,2,68,21,10,17,4,39,14,8,45,18,7,100,23,29,3,40,11,12,35,30,1,0,22,31,74,41,51,32,49,48,60,67,70,72,63,66,69,78,82,86,90,93,16,54,34,25,27,26,5,76,124,9,132,77,122,114,94,104,107,111,110,108,117,131,139,119,105,126,6,147,138,75,144,154,155,156,157,158,160,161,162,164,167,168,169,172,173,176,179,180,182,184,186,189,190,192,194,196,197,198,199,202,203,207,209,210,211,214,216,217,221,222,225,226,227,230,232,233,238,239,240,242,243,244,245,246,249,250,251,252,254,255,256,257,258,261,262,263,264,266,267,268,269,270,273,276,278,280,286,287,288,289,290,292,294,296,297,298,299,300,301,302,304,305,307,309,310,311,314,315,317,318,319,320,322,324,327,328,332,337,342,346,347,350,351,354,355,357,359,360,362,364,365,368,369,372,373,375,377,378,380,382,383,385,386,390,392,393,394,395,399,400,404,405,406,410,411,412,414,418,419,422,423,426,428,429,431,432,434,436,437,441,443,446,449,452,454,461,464,467,470,472,478,482,486,490,494,495,497,498,501,503,504,505,507,511,514,518,520,526,527,528,530,531,532,533,534,536,537,538,539,541,542,544,545,548,549,554,555,557,558,560,561,562,566,567,569,570,573,574,576,579,581,582,583,586,588,590,595,596,599,600,601,606,607,612,613,616,618,623
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *1884 {
- a: 0,0,1,-0.000149419764056802,-0.000103692473203409,1,0,0,1,0,0,1,0.000637639139313251,-0.000126525774248876,0.999999761581421,0.000637639197520912,-0.000126525788800791,0.999999761581421,0.000637639197520912,-0.000126525788800791,0.999999761581421,-0.000433068664278835,-0.000404973048716784,0.999999821186066,-1.83385179752804e-006,-0.000292826618533582,1,0.000637639197520912,-0.000126525788800791,0.999999821186066,0.000637639255728573,-0.000126525788800791,0.999999821186066,0,0,1,0,0,1,0,0,1,0,0,1,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1.83385179752804e-006,-0.000292826618533582,1,-0.000433068664278835,-0.000404973048716784,0.999999821186066,-0.000149419764056802,-0.000103692473203409,1,-0.000215114007005468,-0.000149282146594487,1,-0.000431086460594088,0.826039433479309,0.563612341880798,-0.000431086344178766,0.82603931427002,0.563612282276154,-0.000431086373282596,0.826039373874664,0.563612341880798,-0.000431086344178766,0.82603931427002,0.563612222671509,1,0,0,1,0,0,0.999999940395355,0,0,1,0,0,1,0,0,1,0,0,0.0246051903814077,0.864041090011597,-0.5028195977211,0.0246051885187626,0.864041090011597,-0.502819538116455,0.0246051903814077,0.864041090011597,-0.5028195977211,0.0246051885187626,0.864041090011597,-0.502819538116455,-1.67277969254087e-009,0,-1,0.000149415587657131,0.000103661688626744,-1,-5.60214985512175e-010,0,-1,-1.67277947049627e-009,0,-1,-0.000215114007005468,-0.000149282146594487,1,-0.000149419764056802,-0.000103692473203409,1,0,0,1,0,0,1,0.00237149256281555,0.799744665622711,0.600335657596588,0.00237149256281555,0.799744665622711,0.600335597991943,0.00237149256281555,0.799744665622711,0.600335657596588,0.00237149256281555,0.799744665622711,0.600335597991943,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-1,0,0,0.0023714064154774,0.799717783927917,-0.600371420383453,0.00237140664830804,0.799717724323273,-0.600371420383453,0.0023714064154774,0.799717783927917,-0.600371420383453,0.00237140664830804,0.799717724323273,-0.600371420383453,0,0,-1,0,0,-1,0,0,-1,-5.60214985512175e-010,0,-1,
- 0,0,-1,-5.60214985512175e-010,0,-1,0.000149415587657131,0.000103661688626744,-1,0.000215112726436928,0.00014924060087651,-0.999999940395355,0.000149415587657131,0.000103661688626744,-1,0.000330787792336196,0.000394540460547432,-0.99999988079071,-4.15654449170688e-006,0.000323307991493493,-1,0.000215112726436928,0.00014924060087651,-0.999999940395355,-0.000701528158970177,0.000174998116563074,-0.999999761581421,-4.15654449170688e-006,0.000323307991493493,-1,0.000330787792336196,0.000394540460547432,-0.99999988079071,-0.000701528100762516,0.000174998116563074,-0.999999761581421,-0.000701528158970177,0.000174998102011159,-0.999999701976776,-0.000701528100762516,0.000174998116563074,-0.999999701976776,-0.000701528158970177,0.000174998116563074,-0.999999761581421,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,-3.43774092526061e-010,0,-1,0,0,-1,0,0,-0.999999940395355,-3.43774092526061e-010,-7.00304326528567e-007,-1,9.98523432826914e-008,0,-0.999999940395355,-3.43774092526061e-010,0,-0.999999940395355,-3.43774092526061e-010,-6.99953091043426e-007,-0.999999940395355,9.98017739561874e-008,-7.00304326528567e-007,-1,9.98523432826914e-008,-6.99953091043426e-007,-0.999999940395355,9.98017739561874e-008,-1.48254298437678e-006,-1,2.12493432627525e-007,-1.48254287068994e-006,-1,2.12493432627525e-007,-1.4825427570031e-006,-1,2.12493404205816e-007,0.0246057603508234,0.86406147480011,0.502784550189972,0.0246057566255331,0.864061415195465,0.502784550189972,0.0246057603508234,0.86406147480011,0.502784550189972,0.0246057566255331,0.864061415195465,0.502784550189972,0.000431857275543734,0.825365841388702,-0.564598143100739,0.000431857275543734,0.825365841388702,-0.564598143100739,0.000431857304647565,0.825365900993347,-0.564598202705383,0.000431857275543734,0.825365781784058,-0.564598143100739,0.769556522369385,0.638395249843597,0.0153040671721101,0.714887917041779,0.695974886417389,0.0674850270152092,0.600662291049957,0.691970944404602,-0.400476098060608,0.387845396995544,0.921495854854584,-0.0205284152179956,0.935667634010315,0.293131619691849,-0.196468710899353,
- 0.908883631229401,0.237672537565231,-0.342698574066162,0.372207432985306,0.908859014511108,-0.188246890902519,0.973941802978516,0.188864797353745,-0.125568926334381,0.955713033676147,0.0583317987620831,-0.288461297750473,0.868401527404785,0.165015682578087,-0.467598646879196,0.887077212333679,0.18038572371006,-0.424917727708817,0.887077212333679,0.18038572371006,-0.424917727708817,0.908883631229401,0.237672537565231,-0.342698574066162,0.935667634010315,0.293131619691849,-0.196468710899353,0.973941802978516,0.188864797353745,-0.125568926334381,0.69289767742157,0.573490023612976,0.437037885189056,0.714887917041779,0.695974886417389,0.0674850270152092,0.769556522369385,0.638395249843597,0.0153040671721101,0.925838232040405,0.369090437889099,0.0812146291136742,0.935667634010315,0.293131619691849,-0.196468710899353,0.387845396995544,0.921495854854584,-0.0205284152179956,0.328398168087006,0.939192414283752,0.100361242890358,0.931139647960663,0.253016829490662,0.262604922056198,0.935667634010315,0.293131619691849,-0.196468710899353,0.925838232040405,0.369090437889099,0.0812146291136742,0.985048353672028,0.0418553985655308,0.167116016149521,0.955713033676147,0.0583317987620831,-0.288461297750473,0.973941802978516,0.188864797353745,-0.125568926334381,0.931139647960663,0.253016829490662,0.262604922056198,0.973941802978516,0.188864797353745,-0.125568926334381,0.935667634010315,0.293131619691849,-0.196468710899353,0.985048353672028,0.0418553985655308,0.167116016149521,0.973941802978516,0.188864797353745,-0.125568926334381,0.931139647960663,0.253016829490662,0.262604922056198,0.358428180217743,0.896194636821747,0.261466026306152,0.195902019739151,0.980619728565216,-0.00270318752154708,0.714887917041779,0.695974886417389,0.0674850270152092,0.69289767742157,0.573490023612976,0.437037885189056,0.600662291049957,0.691970944404602,-0.400476098060608,0.714887917041779,0.695974886417389,0.0674850270152092,0.195902019739151,0.980619728565216,-0.00270318752154708,0.358476042747498,0.891460716724396,-0.27711495757103,0.328398168087006,0.939192414283752,0.100361242890358,
- 0.387845396995544,0.921495854854584,-0.0205284152179956,0.195902019739151,0.980619728565216,-0.00270318752154708,0.358428180217743,0.896194636821747,0.261466026306152,0.358476042747498,0.891460716724396,-0.27711495757103,0.195902019739151,0.980619728565216,-0.00270318752154708,0.387845396995544,0.921495854854584,-0.0205284152179956,0.372207432985306,0.908859014511108,-0.188246890902519,0.997529208660126,-0.0628364831209183,-0.0314182415604591,0.995744228363037,-0.0790273174643517,-0.0474163927137852,0.99493670463562,0.0710669010877609,0.0710669010877609,0.995744228363037,-0.0790273174643517,-0.0474163927137852,0.110086180269718,0.857099533081055,0.503251075744629,0.0708375945687294,0.739859402179718,0.669021785259247,-0.055307038128376,0.766397535800934,0.639981389045715,0.110086180269718,0.857099533081055,0.503251075744629,-0.0941357463598251,0.855066359043121,0.509901940822601,0.110086180269718,0.857099533081055,0.503251075744629,-0.055307038128376,0.766397535800934,0.639981389045715,0.0708375945687294,0.739859402179718,0.669021785259247,0.0708375945687294,0.739859402179718,0.669021785259247,-0.055307038128376,0.766397535800934,0.639981389045715,-0.00784657709300518,-0.313863068819046,0.949435830116272,-0.00784657709300518,-0.313863068819046,0.949435830116272,0.0235390104353428,-0.588475227355957,0.808172643184662,0.0708375945687294,0.739859402179718,0.669021785259247,-0.055307038128376,0.766397535800934,0.639981389045715,0.0157426651567221,-0.550993263721466,0.83436131477356,-0.00784657709300518,-0.313863068819046,0.949435830116272,-0.00784657709300518,-0.313863068819046,0.949435830116272,0.0157426651567221,-0.550993263721466,0.83436131477356,0.0235390104353428,-0.588475227355957,0.808172643184662,0.0157426651567221,-0.550993263721466,0.83436131477356,-0.055307038128376,0.766397535800934,0.639981389045715,-0.0394730009138584,-0.852616846561432,-0.521043598651886,0.0157426651567221,-0.550993263721466,0.83436131477356,-0.0394730009138584,-0.852616846561432,-0.521043598651886,0.0235390104353428,-0.588475227355957,0.808172643184662,
- 0.0157887078821659,-0.781541049480438,-0.623654007911682,0.0235390104353428,-0.588475227355957,0.808172643184662,-0.0394730009138584,-0.852616846561432,-0.521043598651886,0.0314716808497906,-0.999225914478302,0.0236037615686655,0.0235390104353428,-0.588475227355957,0.808172643184662,0.0157887078821659,-0.781541049480438,-0.623654007911682,-0.0235687755048275,-0.997744739055634,-0.0628500655293465,0.0157887078821659,-0.781541049480438,-0.623654007911682,-0.0394730009138584,-0.852616846561432,-0.521043598651886,0.0157887078821659,-0.781541049480438,-0.623654007911682,-0.0235687755048275,-0.997744739055634,-0.0628500655293465,0.0314716808497906,-0.999225914478302,0.0236037615686655,0.99351292848587,-0.0946202725172043,0.0630801841616631,0.997529208660126,-0.0628364831209183,0.0314182415604591,0.99493670463562,0.0710669010877609,-0.0710669010877609,0.0708727315068245,0.73235160112381,-0.677228331565857,0.10224499553442,0.833689987659454,-0.542684972286224,0.99351292848587,-0.0946202725172043,0.0630801841616631,0.10224499553442,0.833689987659454,-0.542684972286224,-0.055307038128376,0.766397535800934,-0.639981389045715,-0.0864588618278503,0.825289130210876,-0.558052599430084,-0.055307038128376,0.766397535800934,-0.639981389045715,0.10224499553442,0.833689987659454,-0.542684972286224,0.0708727315068245,0.73235160112381,-0.677228331565857,-0.055307038128376,0.766397535800934,-0.639981389045715,0.0708727315068245,0.73235160112381,-0.677228331565857,-0.00784657709300518,-0.313863068819046,-0.949435830116272,0.0235390104353428,-0.588475227355957,-0.808172643184662,-0.00784657709300518,-0.313863068819046,-0.949435830116272,0.0708727315068245,0.73235160112381,-0.677228331565857,0.0157426651567221,-0.550993263721466,-0.83436131477356,-0.055307038128376,0.766397535800934,-0.639981389045715,-0.00784657709300518,-0.313863068819046,-0.949435830116272,0.0235390104353428,-0.588475227355957,-0.808172643184662,0.0157426651567221,-0.550993263721466,-0.83436131477356,-0.00784657709300518,-0.313863068819046,-0.949435830116272,-0.055307038128376,0.766397535800934,-0.639981389045715,
- 0.0157426651567221,-0.550993263721466,-0.83436131477356,-0.0394730009138584,-0.852616846561432,0.521043598651886,-0.0394730009138584,-0.852616846561432,0.521043598651886,0.0157426651567221,-0.550993263721466,-0.83436131477356,0.0235390104353428,-0.588475227355957,-0.808172643184662,0.0235390104353428,-0.588475227355957,-0.808172643184662,0.0157887078821659,-0.781541049480438,0.623654007911682,-0.0394730009138584,-0.852616846561432,0.521043598651886,0.0235390104353428,-0.588475227355957,-0.808172643184662,0.0314716808497906,-0.999225914478302,-0.0236037615686655,0.0157887078821659,-0.781541049480438,0.623654007911682,0.0157887078821659,-0.781541049480438,0.623654007911682,-0.0235687755048275,-0.997744739055634,0.0628500655293465,-0.0394730009138584,-0.852616846561432,0.521043598651886,-0.0235687755048275,-0.997744739055634,0.0628500655293465,0.0157887078821659,-0.781541049480438,0.623654007911682,0.0314716808497906,-0.999225914478302,-0.0236037615686655,-0.10242572426796,0.992741703987122,0.0630312189459801,0.110308051109314,0.99277251958847,-0.0472748801112175,-0.181802555918694,0.98015296459198,-0.0790445879101753,0.110308051109314,0.99277251958847,-0.0472748801112175,-0.10242572426796,0.992741703987122,0.0630312189459801,0.165802091360092,0.979021966457367,0.118430078029633,0.133692592382431,0.0157285407185555,0.990898013114929,-0.141264483332634,-0.0470881685614586,0.988851487636566,0.211962014436722,-0.0863548964262009,0.973455131053925,-0.141264483332634,-0.0470881685614586,0.988851487636566,0.133692592382431,0.0157285407185555,0.990898013114929,-0.205189272761345,0.0157837904989719,0.978595018386841,-0.10242572426796,0.992741703987122,0.0630312189459801,0.110308051109314,0.99277251958847,-0.0472748801112175,-0.181802555918694,0.98015296459198,-0.0790445879101753,0.110308051109314,0.99277251958847,-0.0472748801112175,-0.10242572426796,0.992741703987122,0.0630312189459801,0.165802091360092,0.979021966457367,0.118430078029633,0.133692592382431,0.0157285407185555,0.990898013114929,-0.165492907166481,-0.0472836866974831,0.98507684469223,
- 0.235716819763184,-0.102143943309784,0.966438949108124,-0.165492907166481,-0.0472836866974831,0.98507684469223,0.133692592382431,0.0157285407185555,0.990898013114929,-0.205189272761345,0.0157837904989719,0.978595018386841,-0.10242572426796,0.992741703987122,0.0630312189459801,0.110308051109314,0.99277251958847,-0.0472748801112175,-0.181802555918694,0.98015296459198,-0.0790445879101753,0.110308051109314,0.99277251958847,-0.0472748801112175,-0.10242572426796,0.992741703987122,0.0630312189459801,0.165802091360092,0.979021966457367,0.118430078029633,0.133692592382431,0.0157285407185555,0.990898013114929,-0.165492907166481,-0.0472836866974831,0.98507684469223,0.235716819763184,-0.102143943309784,0.966438949108124,-0.165492907166481,-0.0472836866974831,0.98507684469223,0.133692592382431,0.0157285407185555,0.990898013114929,-0.205189272761345,0.0157837904989719,0.978595018386841,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.99839198589325,-0.0471681281924248,-0.0314454175531864,-0.995744228363037,0.0790273174643517,0.0474163927137852,-0.995744228363037,0.0790273174643517,0.0474163927137852,-0.995495498180389,0.0948090925812721,2.10518475055093e-017,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.995744228363037,0.0790273174643517,-0.0474163927137852,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.994719624519348,0.102629795670509,2.27883924331949e-017,-0.999876022338867,-0.0157460793852806,-3.49633197622281e-018,-0.995744228363037,0.0790273174643517,-0.0474163927137852,-0.99839198589325,-0.0471681281924248,0.0314454175531864,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,-0.99799108505249,-0.0550073832273483,-0.0314327888190746,-0.997529208660126,0.0628364831209183,0.0314182415604591,-0.997529208660126,0.0628364831209183,0.0314182415604591,-0.998484432697296,0.0550345741212368,1.22201302679674e-017,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,-0.997529208660126,0.0628364831209183,-0.0314182415604591,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,
- -0.998021900653839,0.0628675222396851,1.39593941383265e-017,-0.999225914478302,-0.0393396019935608,-8.73514638256818e-018,-0.997529208660126,0.0628364831209183,-0.0314182415604591,-0.99799108505249,-0.0550073832273483,0.0314327888190746,-0.998021900653839,0.0628675222396851,1.39593941383265e-017,-0.99771386384964,0.054992102086544,-0.0392800718545914,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.99771386384964,0.054992102086544,-0.0392800718545914,-0.99771386384964,-0.054992102086544,0.0392800718545914,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.99771386384964,0.054992102086544,0.0392800718545914,-0.998021900653839,0.0628675222396851,1.39593941383265e-017,-0.99799108505249,-0.0550073832273483,-0.0314327888190746,-0.99771386384964,0.054992102086544,0.0392800718545914,-0.999504387378693,-0.0314804539084435,-6.99006495096098e-018,-0.102311469614506,-0.991634249687195,0.0787011310458183,0.165451809763908,-0.709079205989838,-0.685443162918091,0.181259766221046,-0.977226555347443,0.110332027077675,0.165451809763908,-0.709079205989838,-0.685443162918091,-0.102311469614506,-0.991634249687195,0.0787011310458183,-0.126097664237022,-0.709299385547638,-0.693537175655365,0.165451809763908,-0.709079205989838,-0.685443162918091,-0.126097664237022,-0.709299385547638,-0.693537175655365,0.118271671235561,-0.346930235624313,-0.930403769016266,-0.126097664237022,-0.709299385547638,-0.693537175655365,-0.212796419858933,-0.323135316371918,-0.922117829322815,0.118271671235561,-0.346930235624313,-0.930403769016266,-0.125824421644211,0.133688449859619,-0.983003377914429,0.118271671235561,-0.346930235624313,-0.930403769016266,-0.212796419858933,-0.323135316371918,-0.922117829322815,0.118271671235561,-0.346930235624313,-0.930403769016266,-0.125824421644211,0.133688449859619,-0.983003377914429,0.196935877203941,0.149671271443367,-0.968924522399902,-0.998114347457886,0.0392958410084248,0.0471550077199936,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,
- -0.998762309551239,-0.0157285407185555,0.0471856184303761,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.998114347457886,0.0392958410084248,0.0471550077199936,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.998114347457886,0.0392958410084248,0.0471550077199936,-0.999380588531494,0.031476553529501,-0.0157382767647505,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.99839198589325,0.0314454175531864,0.0471681281924248,0.998762309551239,-0.0157285407185555,0.0471856184303761,0.99839198589325,0.0314454175531864,0.0471681281924248,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.99839198589325,0.0314454175531864,0.0471681281924248,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.999380588531494,0.031476553529501,-0.0157382767647505,-0.998114347457886,0.0392958410084248,0.0471550077199936,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.998762309551239,-0.0157285407185555,0.0471856184303761,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.998114347457886,0.0392958410084248,0.0471550077199936,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.998114347457886,0.0392958410084248,0.0471550077199936,-0.999380588531494,0.031476553529501,-0.0157382767647505,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.99839198589325,0.0314454175531864,0.0471681281924248,0.998762309551239,-0.0157285407185555,0.0471856184303761,0.99839198589325,0.0314454175531864,0.0471681281924248,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.99839198589325,0.0314454175531864,0.0471681281924248,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.999380588531494,0.031476553529501,-0.0157382767647505,-0.998114347457886,0.0392958410084248,0.0471550077199936,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,
- -0.998762309551239,-0.0157285407185555,0.0471856184303761,-0.999009490013123,-0.0314648635685444,-0.0314648635685444,-0.998114347457886,0.0392958410084248,0.0471550077199936,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.998114347457886,0.0392958410084248,0.0471550077199936,-0.999380588531494,0.031476553529501,-0.0157382767647505,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.99839198589325,0.0314454175531864,0.0471681281924248,0.998762309551239,-0.0157285407185555,0.0471856184303761,0.99839198589325,0.0314454175531864,0.0471681281924248,0.999009490013123,-0.0314648635685444,-0.0314648635685444,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.99839198589325,0.0314454175531864,0.0471681281924248,0.999380588531494,-0.0157382767647505,-0.031476553529501,0.999380588531494,0.031476553529501,-0.0157382767647505,-0.0315244197845459,0.788110494613647,0.614726185798645,0.0943829193711281,0.896637678146362,0.432588368654251,-0.0550294816493988,0.896194398403168,0.44023585319519,-0.0315244197845459,0.788110494613647,0.614726185798645,0.149643436074257,0.504062056541443,0.850604772567749,0.0943829193711281,0.896637678146362,0.432588368654251,0.149643436074257,0.504062056541443,0.850604772567749,-0.0315244197845459,0.788110494613647,0.614726185798645,-0.0710779801011086,-0.979296684265137,-0.189541295170784,0.149643436074257,0.504062056541443,0.850604772567749,-0.0710779801011086,-0.979296684265137,-0.189541295170784,0.0710381120443344,-0.970854341983795,-0.228900596499443,-0.0710779801011086,-0.979296684265137,-0.189541295170784,0.0784947723150253,-0.996883630752563,0.00784947723150253,0.0710381120443344,-0.970854341983795,-0.228900596499443,0.0784947723150253,-0.996883630752563,0.00784947723150253,-0.0710779801011086,-0.979296684265137,-0.189541295170784,-0.110431522130966,-0.993883728981018,-2.20686519943007e-016,0.102486193180084,0.875074446201324,-0.47301322221756,-0.0313718244433403,0.784295618534088,-0.619593560695648,-0.0473440103232861,0.883754789829254,-0.465549409389496,
- -0.0313718244433403,0.784295618534088,-0.619593560695648,0.102486193180084,0.875074446201324,-0.47301322221756,0.173767864704132,0.50550651550293,-0.845143735408783,0.173767864704132,0.50550651550293,-0.845143735408783,-0.0710779801011086,-0.979296684265137,0.189541295170784,-0.0313718244433403,0.784295618534088,-0.619593560695648,-0.0710779801011086,-0.979296684265137,0.189541295170784,0.173767864704132,0.50550651550293,-0.845143735408783,0.0710381120443344,-0.970854341983795,0.228900596499443,0.0784947723150253,-0.996883630752563,-0.00784947723150253,-0.0710779801011086,-0.979296684265137,0.189541295170784,0.0710381120443344,-0.970854341983795,0.228900596499443,-0.0710779801011086,-0.979296684265137,0.189541295170784,0.0784947723150253,-0.996883630752563,-0.00784947723150253,-0.110431522130966,-0.993883728981018,-2.20686519943007e-016,0,0.722641825675964,0.691222667694092,0.0237126369029284,0.837846517562866,0.545390605926514,-0.0315420515835285,0.827978909015656,0.559871435165405,0.0237126369029284,0.837846517562866,0.545390605926514,0,0.722641825675964,0.691222667694092,0.00786986947059631,0.574500501155853,0.818466424942017,0.00786986947059631,0.574500501155853,0.818466424942017,0,0.722641825675964,0.691222667694092,-0.134317070245743,-0.60837733745575,0.782199442386627,0.00786986947059631,0.574500501155853,0.818466424942017,-0.134317070245743,-0.60837733745575,0.782199442386627,-0.0156917050480843,-0.949348151683807,-0.313834100961685,-0.0156917050480843,-0.949348151683807,-0.313834100961685,-0.134317070245743,-0.60837733745575,0.782199442386627,-0.0708266273140907,-0.826310694217682,-0.558743417263031,-0.134317070245743,-0.60837733745575,0.782199442386627,-0.157911688089371,-0.986948072910309,0.0315823368728161,-0.0708266273140907,-0.826310694217682,-0.558743417263031,-0.0708266273140907,-0.826310694217682,-0.558743417263031,0.0868730992078781,-0.995091795921326,-0.047385323792696,-0.0156917050480843,-0.949348151683807,-0.313834100961685,0.0868730992078781,-0.995091795921326,-0.047385323792696,-0.0708266273140907,-0.826310694217682,-0.558743417263031,
- -0.157911688089371,-0.986948072910309,0.0315823368728161,-0.1962611079216,-0.973455131053925,0.117756672203541,-0.126097664237022,-0.709299385547638,-0.693537175655365,0.0945703089237213,-0.992988288402557,0.070927731692791,0.0945703089237213,-0.992988288402557,0.070927731692791,-0.126097664237022,-0.709299385547638,-0.693537175655365,0.213147565722466,-0.702597558498383,-0.678914427757263,0.213147565722466,-0.702597558498383,-0.678914427757263,-0.126097664237022,-0.709299385547638,-0.693537175655365,0.126035049557686,-0.346596419811249,-0.92950850725174,-0.126097664237022,-0.709299385547638,-0.693537175655365,-0.188555985689163,-0.345685988664627,-0.919210433959961,0.126035049557686,-0.346596419811249,-0.92950850725174,-0.125824421644211,0.133688449859619,-0.983003377914429,0.126035049557686,-0.346596419811249,-0.92950850725174,-0.188555985689163,-0.345685988664627,-0.919210433959961,0.126035049557686,-0.346596419811249,-0.92950850725174,-0.125824421644211,0.133688449859619,-0.983003377914429,0.196935877203941,0.149671271443367,-0.968924522399902,-0.1962611079216,-0.973455131053925,0.117756672203541,-0.126097664237022,-0.709299385547638,-0.693537175655365,0.0945703089237213,-0.992988288402557,0.070927731692791,0.0945703089237213,-0.992988288402557,0.070927731692791,-0.126097664237022,-0.709299385547638,-0.693537175655365,0.213147565722466,-0.702597558498383,-0.678914427757263,0.213147565722466,-0.702597558498383,-0.678914427757263,-0.126097664237022,-0.709299385547638,-0.693537175655365,0.126035049557686,-0.346596419811249,-0.92950850725174,-0.126097664237022,-0.709299385547638,-0.693537175655365,-0.188555985689163,-0.345685988664627,-0.919210433959961,0.126035049557686,-0.346596419811249,-0.92950850725174,-0.125824421644211,0.133688449859619,-0.983003377914429,0.126035049557686,-0.346596419811249,-0.92950850725174,-0.188555985689163,-0.345685988664627,-0.919210433959961,0.126035049557686,-0.346596419811249,-0.92950850725174,-0.125824421644211,0.133688449859619,-0.983003377914429,0.196935877203941,0.149671271443367,-0.968924522399902,
- 0.996270060539246,-0.0862911120057106,-1.91604758738496e-017,0.999597251415253,0.0236125327646732,0.0157416891306639,0.997529208660126,-0.0628364831209183,-0.0314182415604591,0.999597251415253,0.0236125327646732,0.0157416891306639,0.996270060539246,-0.0862911120057106,-1.91604758738496e-017,0.997467637062073,0.0706866830587387,-0.00785407610237598,0.99771386384964,0.054992102086544,-0.0392800718545914,0.997467637062073,0.0706866830587387,-0.00785407610237598,0.996270060539246,-0.0862911120057106,-1.91604758738496e-017,0.997529208660126,-0.0628364831209183,0.0314182415604591,0.99771386384964,0.054992102086544,-0.0392800718545914,0.996270060539246,-0.0862911120057106,-1.91604758738496e-017,-0.110181599855423,-0.928673446178436,0.354155123233795,0.0868920683860779,-0.979510545730591,0.181683406233788,-0.157990500330925,-0.987440645694733,-2.19255868060205e-016,0.0868920683860779,-0.979510545730591,0.181683406233788,-0.110181599855423,-0.928673446178436,0.354155123233795,0.0472616851329803,-0.748309969902039,0.66166353225708,0.0472616851329803,-0.748309969902039,0.66166353225708,-0.110181599855423,-0.928673446178436,0.354155123233795,0.0314658395946026,-0.47198760509491,-0.881043493747711,0.0314658395946026,-0.47198760509491,-0.881043493747711,-0.110181599855423,-0.928673446178436,0.354155123233795,-0.00785649940371513,0.707084953784943,-0.707084953784943,0.0314658395946026,-0.47198760509491,-0.881043493747711,-0.00785649940371513,0.707084953784943,-0.707084953784943,-0.0156950876116753,0.808296978473663,-0.588565766811371,0.0868027433753014,0.844353914260864,-0.528707563877106,-0.0156950876116753,0.808296978473663,-0.588565766811371,-0.00785649940371513,0.707084953784943,-0.707084953784943,-0.0314153358340263,0.863921701908112,-0.502645373344421,0.0868027433753014,0.844353914260864,-0.528707563877106,-0.00785649940371513,0.707084953784943,-0.707084953784943,0.994998693466187,0.0315872617065907,0.0947617813944817,0.973995566368103,-0.125676840543747,0.18851526081562,0.893437802791595,-0.305649787187576,0.329161286354065,
- 0.86539089679718,0.464164197444916,-0.188812553882599,0.973995566368103,-0.125676840543747,0.18851526081562,0.994998693466187,0.0315872617065907,0.0947617813944817,0.86539089679718,0.464164197444916,-0.188812553882599,0.934779226779938,0.290645658969879,0.204237475991249,0.973995566368103,-0.125676840543747,0.18851526081562,0.926952540874481,0.125688478350639,0.353498846292496,0.973995566368103,-0.125676840543747,0.18851526081562,0.934779226779938,0.290645658969879,0.204237475991249,0.973995566368103,-0.125676840543747,0.18851526081562,0.926952540874481,0.125688478350639,0.353498846292496,0.961942911148071,-0.189234673976898,0.197119444608688,-0.998731434345245,-0.039320133626461,0.031456109136343,-0.998885869979858,0.047191459685564,1.04786090217166e-017,-0.998453617095947,-0.0550328753888607,-0.00786183960735798,-0.998885869979858,0.047191459685564,1.04786090217166e-017,-0.998731434345245,-0.039320133626461,0.031456109136343,-0.998731434345245,0.039320133626461,0.031456109136343,0,0.999969005584717,-0.00787377171218395,0,0.999876022338867,0.0157460793852806,0,1,2.22044604925031e-016,0,0.999876022338867,0.0157460793852806,0,0.999969005584717,-0.00787377171218395,0.0236125327646732,0.999597251415253,-0.0157416891306639,0.0236125327646732,0.999597251415253,-0.0157416891306639,-0.0157382767647505,0.999380588531494,0.031476553529501,0,0.999876022338867,0.0157460793852806,-0.0157382767647505,0.999380588531494,0.031476553529501,0,0.0628675222396851,0.998021900653839,0,0.999876022338867,0.0157460793852806,0.0236125327646732,0.999597251415253,-0.0157416891306639,-0.0393286496400833,0.99894767999649,-0.0235971882939339,-0.0157382767647505,0.999380588531494,0.031476553529501,0,0.0628675222396851,0.998021900653839,-0.0157382767647505,0.999380588531494,0.031476553529501,-0.0394422858953476,0.102549932897091,0.993945598602295,-0.0157382767647505,0.999380588531494,0.031476553529501,-0.0393286496400833,0.99894767999649,-0.0235971882939339,-0.0394422858953476,0.102549932897091,0.993945598602295,0,0.0628675222396851,0.998021900653839,
- -0.0394422858953476,0.102549932897091,0.993945598602295,0.00790618918836117,-0.0869680792093277,0.996179819107056,-0.0393286496400833,0.99894767999649,-0.0235971882939339,0.0236125327646732,0.999597251415253,-0.0157416891306639,0.00788772199302912,0.110428102314472,-0.993852913379669,0.00788772199302912,0.110428102314472,-0.993852913379669,0.0236125327646732,0.999597251415253,-0.0157416891306639,0,0.0393396019935608,-0.999225914478302,0.00788772199302912,0.110428102314472,-0.993852913379669,-0.991020619869232,-0.062921941280365,-0.117978647351265,-0.0393286496400833,0.99894767999649,-0.0235971882939339,0.00788772199302912,0.110428102314472,-0.993852913379669,0,0.0393396019935608,-0.999225914478302,0.015799542888999,-0.0947972610592842,-0.995371222496033,-0.991020619869232,-0.062921941280365,-0.117978647351265,0.00788772199302912,0.110428102314472,-0.993852913379669,-0.0470736660063267,-0.0706104934215546,-0.996392607688904,-0.0470736660063267,-0.0706104934215546,-0.996392607688904,0.00788772199302912,0.110428102314472,-0.993852913379669,0.015799542888999,-0.0947972610592842,-0.995371222496033,-0.0156873594969511,-0.0862804874777794,0.996147394180298,0.00790618918836117,-0.0869680792093277,0.996179819107056,-0.0394422858953476,0.102549932897091,0.993945598602295,-0.0156873594969511,-0.0862804874777794,0.996147394180298,-0.0394422858953476,0.102549932897091,0.993945598602295,-0.0236125327646732,-0.999597251415253,0.0157416891306639,0.00790618918836117,-0.0869680792093277,0.996179819107056,-0.0156873594969511,-0.0862804874777794,0.996147394180298,0.0314716808497906,-0.999225914478302,0.0236037615686655,-0.0236125327646732,-0.999597251415253,0.0157416891306639,0.0314716808497906,-0.999225914478302,0.0236037615686655,-0.0156873594969511,-0.0862804874777794,0.996147394180298,0.0235971882939339,-0.99894767999649,-0.0393286496400833,0.0314716808497906,-0.999225914478302,0.0236037615686655,-0.0236125327646732,-0.999597251415253,0.0157416891306639,-0.0236125327646732,-0.999597251415253,0.0157416891306639,-0.0314716808497906,-0.999225914478302,-0.0236037615686655,
- 0.0235971882939339,-0.99894767999649,-0.0393286496400833,-0.0470736660063267,-0.0706104934215546,-0.996392607688904,0.0235971882939339,-0.99894767999649,-0.0393286496400833,-0.0314716808497906,-0.999225914478302,-0.0236037615686655,0.0235971882939339,-0.99894767999649,-0.0393286496400833,0.00787279661744833,-0.999845147132874,0.0157455932348967,0.0314716808497906,-0.999225914478302,0.0236037615686655,0.00787279661744833,-0.999845147132874,0.0157455932348967,0.0235971882939339,-0.99894767999649,-0.0393286496400833,0,-0.999969005584717,0.00787377171218395,0.946261584758759,0.00788551289588213,0.323306024074554,0.898780882358551,0.346897900104523,0.268057435750961,0.94602632522583,0.0236506573855877,0.323225647211075,0.898780882358551,0.346897900104523,0.268057435750961,0.946261584758759,0.00788551289588213,0.323306024074554,0.994688630104065,0.0552604794502258,0.0868378952145576,0.898780882358551,0.346897900104523,0.268057435750961,0.923754572868347,0.378976255655289,0.0552673675119877,0.895640969276428,0.361398994922638,0.259264469146729,0.923754572868347,0.378976255655289,0.0552673675119877,0.898780882358551,0.346897900104523,0.268057435750961,0.994688630104065,0.0552604794502258,0.0868378952145576,0.994688630104065,0.0552604794502258,0.0868378952145576,0.84054172039032,0.471331804990768,-0.267087996006012,0.923754572868347,0.378976255655289,0.0552673675119877,0.788110375404358,0.394055187702179,-0.472866266965866,0.84054172039032,0.471331804990768,-0.267087996006012,0.994688630104065,0.0552604794502258,0.0868378952145576,0.788110375404358,0.394055187702179,-0.472866266965866,0.756562471389771,0.496494144201279,-0.425566405057907,0.84054172039032,0.471331804990768,-0.267087996006012,0.994688630104065,0.0552604794502258,0.0868378952145576,0.903441667556763,-0.102128185331821,-0.416368782520294,0.788110375404358,0.394055187702179,-0.472866266965866,0.835474908351898,-0.0788183808326721,-0.543846845626831,0.788110375404358,0.394055187702179,-0.472866266965866,0.903441667556763,-0.102128185331821,-0.416368782520294
- }
- NormalsW: *628 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *1884 {
- a: -0.00557687506079674,0.999984502792358,0,2.15296290662081e-006,1,0.000103692800621502,2.23416554945288e-006,1,-0,2.19410139834508e-006,1,-0,-0.000344833795679733,0.999999940395355,0.000126745682791807,-0.000154267734615132,1,0.000126624188851565,-2.68654257524759e-005,1,0.00012654296006076,-0.000110502005554736,0.999999940395355,0.000404925231123343,-2.8103433578508e-005,1,0.000292826560325921,1.2765818837579e-006,1,0.000126525002997369,-2.19563316932181e-005,1,0.000126539816847071,-0.0139460470527411,0.999902725219727,0,2.18820150621468e-006,1,-0,-0.00557687506079674,0.999984502792358,0,-0.027891144156456,0.999610960483551,0,0,1,1.63578224601224e-005,0,0.999998450279236,0.0017436157213524,0,0.999999761581421,0.000726090394891799,0,0.999997973442078,-0.00201869360171258,0,0.999999940395355,0.000489512283820659,-2.8103433578508e-005,1,0.000292826560325921,-0.000110502005554736,0.999999940395355,0.000404925231123343,2.15296290662081e-006,1,0.000103692800621502,2.08139499591198e-006,1,0.000149282597703859,0.0212641097605228,-0.563477337360382,0.825857758522034,0.0108749205246568,-0.563575148582459,0.825993180274963,0.000484554941067472,-0.563612163066864,0.826039433479309,0.0108749214559793,-0.563575148582459,0.825993299484253,-0,0.999686002731323,0.0250570196658373,0,1,-9.93880894384347e-006,0,0.99968558549881,-0.0250759217888117,0,0.999965071678162,-0.00836656428873539,0,1,-1.11115796244121e-005,-0,0.999965190887451,0.00834558252245188,-0.999594807624817,0.0284653585404158,3.81842255592346e-008,-0.999594807624817,0.0284653585404158,3.91155516865638e-008,-0.999594807624817,0.0284653585404158,3.81842255592346e-008,-0.999594807624817,0.0284653585404158,3.91155516865638e-008,-1.43643589467501e-007,1,2.40284083015613e-016,-3.85962408699925e-007,1,0.000103661630419083,-0.00231449026614428,0.999997317790985,1.29661212322496e-012,1.26208618667079e-007,1,-2.11119190159541e-016,2.08139499591198e-006,1,0.000149282597703859,2.15296290662081e-006,1,0.000103692800621502,-0.00557687506079674,0.999984502792358,0,
- 2.18820150621468e-006,1,-0,-0.00315541122108698,0.600340366363525,-0.79973840713501,-0.00315552414394915,0.600340306758881,-0.79973840713501,-0.00315541122108698,0.600340366363525,-0.79973840713501,-0.00315529806539416,0.600340306758881,-0.79973840713501,0,1,4.96840038977098e-006,0,1,5.98312635702314e-006,0,1,6.92993762640981e-006,0,1,8.82352651387919e-006,0,1,5.91520074522123e-006,0,1,2.93891594083107e-006,-0.00315880798734725,0.600376129150391,0.799711644649506,-0.0031585821416229,0.600376129150391,0.799711585044861,-0.00315880798734725,0.600376129150391,0.799711644649506,-0.00315903383307159,0.600376129150391,0.799711585044861,0.00177971669472754,0.999998390674591,0,-0.00694323563948274,0.999975919723511,0,-0.0174453388899565,0.999847829341888,0,-0.00231449026614428,0.999997317790985,1.29661212322496e-012,0.00177971669472754,0.999998390674591,0,-0.00231449026614428,0.999997317790985,1.29661212322496e-012,-3.85962408699925e-007,1,0.000103661630419083,-2.55510968827366e-007,1,0.000149240557220764,-3.85962408699925e-007,1,0.000103661630419083,0.00331929535605013,0.999994397163391,0.000395636277971789,0.00236620148643851,0.999997138977051,0.000323297252180055,-2.55510968827366e-007,1,0.000149240557220764,1.05534138583607e-006,1,0.000174997418071143,0.00236620148643851,0.999997138977051,0.000323297252180055,0.00331929535605013,0.999994397163391,0.000395636277971789,0.00296935602091253,0.999995648860931,0.000172914311406203,0.00479504559189081,0.999988555908203,0.000171632287674583,0.00120710441842675,0.999999344348907,0.000174151238752529,-0.000958153861574829,0.999999523162842,0.000175670240423642,-4.59428939336703e-008,-0,-1,-0,-0,-1,-0,-0,-1,-4.59428939336703e-008,-0,-1,8.64238529629802e-008,3.43774120281637e-010,-1,-4.59428939336703e-008,-0,-1,-4.59428939336703e-008,-0,-1,4.04809625820235e-008,3.43774120281637e-010,-1,2.27793088924955e-006,-9.98539420038469e-008,-1,8.64238529629802e-008,3.43774120281637e-010,-1,4.04809625820235e-008,3.43774120281637e-010,-1,-5.54327641566488e-007,-9.98013973685374e-008,-1,2.27793088924955e-006,-9.98539420038469e-008,-1,
- -5.54327641566488e-007,-9.98013973685374e-008,-1,4.84159090774483e-006,-2.12500609109156e-007,-1,5.51698803974432e-006,-2.12501618079841e-007,-1,-5.7146002063746e-007,-2.12492551554533e-007,-1,-0.999594807624817,0.02846534922719,-4.37721610069275e-008,-0.999594807624817,0.02846534922719,-4.56348132615858e-008,-0.999594807624817,0.02846534922719,-4.37721610069275e-008,-0.999594807624817,0.02846534922719,-4.56348132615858e-008,0.000484509102534503,0.564597964286804,0.825365900993347,-0.0103134419769049,0.564571857452393,0.825319588184357,-0.0211101919412613,0.564479947090149,0.825176894664764,-0.0103134419769049,0.564571857452393,0.825319528579712,-0.637402951717377,0.766465365886688,0.0790467262268066,-0.698808014392853,0.707723617553711,0.103897362947464,-0.750363707542419,0.660822510719299,0.0163676142692566,-0.916014432907104,0.387822329998016,0.102525413036346,-0.286055535078049,0.956064641475677,0.0641316324472427,-0.25505805015564,0.966908037662506,-0.00586699042469263,-0.892090797424316,0.406295448541641,0.197732210159302,-0.179830208420753,0.980450332164764,0.0798637792468071,-0.0450938120484352,0.997611105442047,0.0523318313062191,-0.136841207742691,0.986135184764862,0.0938725024461746,-0.16724294424057,0.983541011810303,0.0683881789445877,-0.16724294424057,0.983541011810303,0.0683881789445877,-0.25505805015564,0.966908037662506,-0.00586699042469263,-0.286055535078049,0.956064641475677,0.0641316324472427,-0.179830208420753,0.980450332164764,0.0798637792468071,-0.696155190467834,0.689945042133331,0.198352888226509,-0.698808014392853,0.707723617553711,0.103897362947464,-0.637402951717377,0.766465365886688,0.0790467262268066,-0.375604212284088,0.922420561313629,0.0897884070873261,-0.286055535078049,0.956064641475677,0.0641316324472427,-0.916014432907104,0.387822329998016,0.102525413036346,-0.944216012954712,0.329207718372345,0.00886214524507523,-0.275753647089005,0.959763884544373,0.053040686994791,-0.286055535078049,0.956064641475677,0.0641316324472427,-0.375604212284088,0.922420561313629,0.0897884070873261,
- -0.0596409142017365,0.992905616760254,0.102867007255554,-0.0450938120484352,0.997611105442047,0.0523318313062191,-0.179830208420753,0.980450332164764,0.0798637792468071,-0.275753647089005,0.959763884544373,0.053040686994791,-0.179830208420753,0.980450332164764,0.0798637792468071,-0.286055535078049,0.956064641475677,0.0641316324472427,-0.0596409142017365,0.992905616760254,0.102867007255554,-0.179830208420753,0.980450332164764,0.0798637792468071,-0.275753647089005,0.959763884544373,0.053040686994791,-0.92548006772995,0.377869099378586,-0.0264895558357239,-0.974084556102753,0.194912791252136,0.114754006266594,-0.698808014392853,0.707723617553711,0.103897362947464,-0.696155190467834,0.689945042133331,0.198352888226509,-0.750363707542419,0.660822510719299,0.0163676142692566,-0.698808014392853,0.707723617553711,0.103897362947464,-0.974084556102753,0.194912791252136,0.114754006266594,-0.882347345352173,0.420494705438614,0.21129909157753,-0.944216012954712,0.329207718372345,0.00886214524507523,-0.916014432907104,0.387822329998016,0.102525413036346,-0.974084556102753,0.194912791252136,0.114754006266594,-0.92548006772995,0.377869099378586,-0.0264895558357239,-0.882347345352173,0.420494705438614,0.21129909157753,-0.974084556102753,0.194912791252136,0.114754006266594,-0.916014432907104,0.387822329998016,0.102525413036346,-0.892090797424316,0.406295448541641,0.197732210159302,0.00118721649050713,0.462227374315262,-0.886760652065277,-0.00547785637900233,0.462835371494293,-0.886427283287048,0.0306043215095997,0.459295600652695,-0.887756109237671,-0.00748627912253141,0.443437337875366,-0.896274089813232,0.132995739579201,0.489072442054749,-0.862044334411621,0.498660534620285,0.554614901542664,-0.666138112545013,0.0160570070147514,0.641562223434448,-0.766902983188629,0.0132063832134008,0.505022406578064,-0.8630051612854,0.013379467651248,0.513216614723206,-0.858154773712158,0.0110343275591731,0.505243420600891,-0.862906396389008,0.0138878338038921,0.641490817070007,-0.76700496673584,0.0144805163145065,0.669873237609863,-0.742334306240082,
- 0.0105752218514681,0.670111954212189,-0.74218475818634,0.00975288543850183,0.641346514225006,-0.767189383506775,0.0238226596266031,0.949136912822723,0.313961148262024,0.0290652047842741,0.948992371559143,0.313956677913666,0.0292622745037079,0.80845582485199,0.587829113006592,0.00698824971914291,0.670322120189667,-0.742037415504456,0.0124872792512178,0.641443252563477,-0.767068922519684,0.011905082501471,0.834508836269379,0.550866067409515,0.0144195426255465,0.949330925941467,0.313947558403015,0.00914447568356991,0.949402868747711,0.313927710056305,0.00878656469285488,0.834508657455444,0.550924777984619,0.00866152625530958,0.808486223220825,0.588451325893402,0.732971847057343,0.573929786682129,0.365180522203445,0.781840682029724,0.43190261721611,-0.449650287628174,-0.70658665895462,-0.344887167215347,0.617890179157257,0.0120000028982759,0.8345085978508,0.550864160060883,-0.0053089614957571,-0.521263718605042,0.853379189968109,0.0117258988320827,0.808503448963165,0.588374614715576,0.00127179967239499,-0.623715579509735,0.781650424003601,0.0178691688925028,0.808515071868896,0.588204145431519,0.00349579937756062,-0.521564662456512,0.853204607963562,-0.969460904598236,-0.0247706118971109,0.243991926312447,-0.988454222679138,0.107335269451141,0.106946676969528,-0.419904321432114,-0.571246802806854,0.705235719680786,0.00857796519994736,-0.0630670413374901,0.99797248840332,0.00108288181945682,-0.623718023300171,0.781648695468903,0.00274511217139661,-0.521540582180023,0.853222072124481,-0.00940111093223095,-0.623820245265961,0.78151136636734,-0.00166697963140905,-0.0628282129764557,0.998022973537445,-0.000450617633759975,0.0236012730747461,0.999721348285675,-0.0145288929343224,0.444540590047836,0.895640909671783,-0.000335466116666794,0.44294810295105,0.896547257900238,0.0327906757593155,0.438878446817398,0.89794796705246,0.459588229656219,0.578602075576782,0.673794031143188,0.13446781039238,0.528953552246094,0.837929904460907,-0.0091487318277359,0.486398011445999,0.873689472675323,0.0148089397698641,0.54420793056488,0.838819622993469,
- 0.0171430129557848,0.641596794128418,0.766850531101227,0.015217486768961,0.561178863048553,0.827554762363434,0.0159438755363226,0.641558587551117,0.766908347606659,0.013864491134882,0.544296741485596,0.83877819776535,0.0167131349444389,0.677968442440033,0.734901010990143,0.0175701100379229,0.641610205173492,0.766829609870911,0.0191287379711866,0.677812933921814,0.734985589981079,0.0369141139090061,0.948727011680603,-0.313933819532394,0.0267808083444834,0.808477640151978,-0.587917327880859,0.026615371927619,0.949063181877136,-0.313959836959839,0.00673659890890121,0.678568661212921,0.734506070613861,0.034531444311142,0.834266424179077,-0.550279080867767,0.0175701100379229,0.641610205173492,0.766829609870911,0.0369141139090061,0.948727011680603,-0.313933819532394,0.0114798471331596,0.808502376079559,-0.588380992412567,0.0116292349994183,0.834509134292603,-0.55087149143219,0.0120113138109446,0.949367046356201,-0.313939601182938,0.76737904548645,0.442703872919083,0.463834881782532,0.679143905639648,0.618328809738159,-0.395516246557236,-0.700625777244568,-0.348173052072525,-0.622815489768982,-0.00429635494947433,-0.521300375461578,-0.853362500667572,0.0130034675821662,0.834506809711456,-0.550844073295593,0.0127730313688517,0.8085076212883,-0.588347196578979,0.0152575876563787,0.808513820171356,-0.58827930688858,-0.00153580447658896,-0.623749971389771,-0.781622409820557,0.000371502654161304,-0.521462440490723,-0.85327410697937,-0.983285069465637,0.132364049553871,-0.125020951032639,-0.927805542945862,-0.0204228926450014,-0.372504860162735,0.619013905525208,-0.48218834400177,-0.619932532310486,-0.00116084690671414,-0.623745679855347,-0.781626462936401,0.00673189200460911,-0.0630244910717011,-0.997989296913147,0.000518647895660251,-0.521467387676239,-0.853271007537842,-0.00356148974969983,-0.0627833232283592,-0.998020827770233,-0.0123480837792158,-0.623836636543274,-0.781457304954529,-0.00212969980202615,0.0235483683645725,-0.999720513820648,-0.994727909564972,-0.102539293467999,-0.00143891340121627,-0.993875443935394,0.110497429966927,0.00140338577330112,
- -0.98319011926651,-0.182567968964577,-0.00250579696148634,-0.99385404586792,0.110623046755791,0.00409136014059186,-0.994718551635742,-0.102640025317669,0.00016297165711876,-0.98604941368103,0.166374951601028,0.00510267913341522,0.991022646427155,-0.0015014661476016,-0.133685573935509,0.989963233470917,-0.002523775678128,0.141303136944771,0.977082848548889,-0.00117839698214084,-0.212856456637383,0.989928305149078,0.00266286497935653,0.141545116901398,0.991016030311584,0.00160978524945676,-0.133734077215195,0.978722274303436,0.00288279773667455,0.205169469118118,-0.994727969169617,-0.102538987994194,-0.00144379027187824,-0.993875443935394,0.110497675836086,0.0014086477458477,-0.983189880847931,-0.182568654417992,-0.00251449644565582,-0.99385404586792,0.110623203217983,0.00409479672089219,-0.994718670845032,-0.102639853954315,0.000159972347319126,-0.986049473285675,0.166374355554581,0.00510778464376926,0.991022109985352,-0.000857185572385788,-0.133695736527443,0.98619544506073,-0.00231980392709374,0.165569484233856,0.971512496471405,-0.000320009887218475,-0.236988112330437,0.986140847206116,0.0039818761870265,0.165862783789635,0.99101310968399,0.00232640677131712,-0.133745059370995,0.978721976280212,0.00417793029919267,0.205148503184319,-0.994727611541748,-0.10254281014204,-0.00138294219505042,-0.993874967098236,0.110500924289227,0.00147810881026089,-0.983190894126892,-0.182564228773117,-0.0024575125426054,-0.993852853775024,0.110629238188267,0.00422432366758585,-0.994717717170715,-0.102648288011551,0.000294309575110674,-0.986051321029663,0.166359320282936,0.00523459538817406,0.991022169589996,-0.000950529589317739,-0.133694246411324,0.986195981502533,-0.00241949455812573,0.16556479036808,0.971510350704193,-0.000409038737416267,-0.236996993422508,0.986142516136169,0.00384081155061722,0.165856286883354,0.991013765335083,0.00218051206320524,-0.133742824196815,0.978722035884857,0.00403853319585323,0.20515076816082,-0.00756894005462527,0.480627685785294,-0.87689208984375,0.00491677178069949,0.48056024312973,-0.876947939395905,
- -0.00361430924385786,0.480614423751831,-0.876924514770508,-0.00485604582354426,0.468791246414185,-0.883295655250549,0.044663991779089,0.468971908092499,-0.882083117961884,-0.00738190906122327,0.468751221895218,-0.883299350738525,-0.00588603597134352,0.458912998437881,0.888461709022522,-0.00722662266343832,0.458890527486801,0.88846343755722,0.0473713614046574,0.459137827157974,0.887101173400879,-0.00693103997036815,0.440121024847031,0.897911727428436,-0.00782711803913116,0.440121024847031,0.897904455661774,0.0074904253706336,0.440073132514954,0.897930681705475,-0.0192149002104998,0.488058477640152,-0.872599422931671,0.000589229166507721,0.488058626651764,-0.872810661792755,0.00325275771319866,0.488044023513794,-0.872812986373901,-0.00117463432252407,0.432233244180679,-0.901761114597321,0.023779634386301,0.431430518627167,-0.901832759380341,-0.0170316267758608,0.43260332942009,-0.901423454284668,-0.00174537859857082,0.424909263849258,0.905234336853027,-0.0167419388890266,0.425245255231857,0.904923319816589,0.0267092157155275,0.424008786678314,0.905264139175415,-0.0192192438989878,0.488168805837631,0.872537612915039,0.00326165370643139,0.488154381513596,0.872751235961914,0.000581199303269386,0.48816904425621,0.872748911380768,0.0280645824968815,0.445525228977203,0.894829392433167,-0.0106373354792595,0.446200847625732,0.89486962556839,-0.0140544380992651,0.446228414773941,0.894808769226074,-0.0107189975678921,0.445107460021973,0.895413041114807,0.0107440007850528,0.444772571325302,0.895579218864441,-0.0140201831236482,0.445140808820724,0.895350873470306,-0.0136502292007208,0.433394759893417,-0.901100814342499,-0.0115906661376357,0.433381021022797,-0.901136338710785,0.0272614900022745,0.432776153087616,-0.901089131832123,0.00234388955868781,0.463742136955261,-0.885967254638672,-0.00931049697101116,0.46384385228157,-0.885868072509766,-0.0146100576967001,0.463869333267212,-0.885783195495605,-0.00547327008098364,-0.0785539373755455,-0.996894836425781,-0.00948426965624094,0.693845927715302,-0.720061063766479,-0.00519819231703877,-0.113140925765038,-0.993565440177917,
- -0.00655864924192429,0.694215595722198,-0.71973729133606,-0.0182739086449146,-0.0772293508052826,-0.996845901012421,-0.0064164474606514,0.699686169624329,-0.714421510696411,0.000445127487182617,0.695075690746307,-0.718936443328857,0.000403966754674912,0.699080884456635,-0.715042531490326,-0.00276970118284225,0.936861336231232,-0.349690198898315,-0.00279382616281509,0.6993687748909,-0.714755594730377,-0.00129744410514832,0.94382518529892,-0.330442786216736,-0.001371830701828,0.936922252178192,-0.349535256624222,0.000515973253641278,0.990887105464935,0.134694591164589,-0.001371830701828,0.936922252178192,-0.349535256624222,-0.00129744410514832,0.94382518529892,-0.330442786216736,0.0075974240899086,0.937268912792206,-0.348524361848831,0.00199452973902225,0.990910470485687,0.134508520364761,0.00176264555193484,0.988223075866699,0.153010606765747,0.0390329249203205,0.999216914176941,-0.00648383982479572,-0.0312347989529371,0.999481856822968,-0.00777685502544045,-0.0160999447107315,0.999842286109924,-0.00750136375427246,-0.0277506951242685,0.99329674243927,-0.112212084233761,0.0338155850768089,0.993148446083069,-0.11186046153307,-0.0121148005127907,0.993616044521332,-0.112163051962852,-0.0161618329584599,0.999781668186188,0.0132473604753613,0.0399849191308022,0.9991055727005,0.0137595124542713,0.0312622413039207,0.999417543411255,0.0136827221140265,0.0316447056829929,0.999485492706299,0.00523400539532304,-0.0317591242492199,0.999478101730347,0.00591604318469763,0.0154903270304203,0.999865412712097,0.00540990801528096,-0.0261961314827204,0.993800401687622,-0.108048804104328,0.0278923064470291,0.993742048740387,-0.108161248266697,0.0122478026896715,0.994057953357697,-0.108161248266697,-0.0321012623608112,0.999397337436676,0.0132117895409465,0.0161485243588686,0.999787390232086,0.0128219658508897,-0.0312699563801289,0.999423742294312,0.0132053270936012,0.0391091778874397,0.999223053455353,-0.00487495819106698,-0.0313104949891567,0.999495267868042,-0.00538695743307471,-0.0159951448440552,0.999858260154724,-0.00527778314426541,
- -0.0276726819574833,0.993044972419739,-0.114437319338322,0.0336949564516544,0.992886781692505,-0.114195764064789,-0.0120397880673409,0.993359863758087,-0.114416681230068,-0.0161633249372244,0.99978095293045,0.0132950693368912,0.0399871468544006,0.999104917049408,0.0138072287663817,0.0312614738941193,0.999417006969452,0.0137304235249758,0.0316081196069717,0.999492049217224,0.00406575435772538,-0.0317053459584713,0.999485850334167,0.00477257743477821,0.015545355156064,0.999870240688324,0.00424675550311804,-0.0261852703988552,0.993777334690094,-0.108263343572617,0.0278853271156549,0.993720412254334,-0.108361229300499,0.0122410198673606,0.994035720825195,-0.1083654910326,-0.0320979692041874,0.999398410320282,0.0131413843482733,0.0161463301628828,0.999788343906403,0.0127518214285374,-0.0312710925936699,0.999424636363983,0.013134959153831,0.039109144359827,0.999223053455353,-0.00487567996606231,-0.0313101895153522,0.999495208263397,-0.00539666414260864,-0.0159955080598593,0.99985808134079,-0.00528554245829582,-0.0276736915111542,0.993048250675201,-0.114408515393734,0.0336963124573231,0.992889642715454,-0.114169523119926,-0.0120407249778509,0.99336314201355,-0.114388525485992,-0.0161645989865065,0.999780416488647,0.0133358351886272,0.0399888753890991,0.999104201793671,0.013844283297658,0.0312608666718006,0.999416470527649,0.0137680480256677,0.0316074043512344,0.999492287635803,0.00404285686090589,-0.0317038781940937,0.999486148357391,0.00474125239998102,0.0155465379357338,0.999870240688324,0.00422169361263514,-0.0261852480471134,0.993777275085449,-0.108263753354549,0.0278850682079792,0.993719637393951,-0.108368620276451,0.0122408419847488,0.994035184383392,-0.10837085545063,-0.0321018546819687,0.999397099018097,0.0132244750857353,0.0161487273871899,0.999787271022797,0.0128284487873316,-0.0312697514891624,0.999423563480377,0.0132179018110037,-0.00848920736461878,0.614798545837402,-0.788638532161713,-0.0124486293643713,0.435557186603546,-0.900075078010559,-0.0123567171394825,0.440258860588074,-0.897785842418671,0.0157729517668486,0.615347445011139,-0.788098156452179,
- 0.0196338389068842,0.858607053756714,-0.512258231639862,0.012508500367403,0.433425813913345,-0.901102542877197,0.0196338389068842,0.858607053756714,-0.512258231639862,0.0157729517668486,0.615347445011139,-0.788098156452179,-0.00784468930214643,-0.189467251300812,0.981855809688568,0.0022361574228853,0.860116839408875,-0.510092198848724,0.00859799329191446,-0.190616384148598,0.98162704706192,0.00817472580820322,-0.228906005620956,0.973414242267609,0.00449596159160137,-0.190334528684616,0.981709063053131,0.0090622054412961,0.00858696177601814,0.999922156333923,0.00356063665822148,-0.229232102632523,0.973365366458893,0.00687629450112581,0.00841499119997025,0.999940931797028,0.00407182658091187,-0.190305218100548,0.981716632843018,0.00675287656486034,-0.000750319624785334,0.999976992607117,-0.0109776584431529,0.476483047008514,0.879115104675293,-0.00744761060923338,0.619698107242584,0.784804999828339,-0.011220664717257,0.465572029352188,0.884938836097717,0.0151603240519762,0.62020081281662,0.784296691417694,0.0122956074774265,0.474366337060928,0.880241751670837,0.0195157304406166,0.856263697147369,0.516170263290405,0.0195157304406166,0.856263697147369,0.516170263290405,-0.00648689363151789,-0.189564064145088,-0.981846928596497,0.0151603240519762,0.62020081281662,0.784296691417694,0.0086002554744482,-0.19061653316021,-0.981626987457275,0.00221641361713409,0.857996940612793,0.513650119304657,0.00817500706762075,-0.228905975818634,-0.973414242267609,0.00898170471191406,0.00858062878251076,-0.999922931194305,0.00440598884597421,-0.190328285098076,-0.981710612773895,0.00346883479505777,-0.229238525032997,-0.973364114761353,0.00737979356199503,-0.190532982349396,-0.981653034687042,0.00985588505864143,0.00864939298480749,-0.999914050102234,0.00974397920072079,-0.00108266423922032,-0.999951958656311,0.00564859248697758,0.691211640834808,-0.722630262374878,0.00134383409749717,0.545516788959503,-0.838098764419556,0.00175551208667457,0.560195207595825,-0.828358769416809,0.0205118767917156,0.545021414756775,-0.838171184062958,0.0243282187730074,0.691018104553223,-0.72242796421051,
- 0.0274161342531443,0.818060100078583,-0.574478924274445,0.0239729546010494,0.818148076534271,-0.574507594108582,0.0183983035385609,0.691105723381042,-0.72251957654953,0.0321669764816761,0.786259412765503,0.61705869436264,0.0114524951204658,0.818386316299438,-0.57455438375473,0.0302002020180225,0.786472380161285,0.616886615753174,0.00757513102144003,-0.313976615667343,0.94940048456192,-0.00624903524294496,-0.313773512840271,0.949477314949036,0.040762834250927,0.785291969776154,0.617782354354858,-0.0183693915605545,-0.558974742889404,0.828981280326843,0.680297076702118,0.517336070537567,0.519191145896912,0.304660767316818,-0.0182725805789232,0.952285647392273,-0.240793228149414,-0.529420733451843,0.813469290733337,-0.0167642403393984,-0.559085011482239,0.828940868377686,0.00420225597918034,-0.0471986904740334,0.998876690864563,-0.00647986214607954,-0.313769608736038,0.949477016925812,0.000913823489099741,-0.0474855341017246,0.998871505260468,-0.0198161173611879,-0.558874070644379,0.829015791416168,0.00403757253661752,0.0313380099833012,0.999500691890717,0.00922978110611439,-0.121920958161354,-0.992496967315674,-0.000316035002470016,0.699146330356598,-0.714978575706482,0.00881480053067207,-0.0704090148210526,-0.997479319572449,0.0110952965915203,-0.0701913014054298,-0.997471928596497,0.00209730863571167,0.698925495147705,-0.71519148349762,0.00216434919275343,0.695220708847046,-0.718793153762817,-0.000193998217582703,0.694852352142334,-0.719152450561523,-0.000219158828258514,0.699137568473816,-0.71498715877533,-0.00198905519209802,0.936890006065369,-0.349618554115295,-0.00521718710660934,0.699582159519196,-0.714533150196075,-0.00118250027298927,0.936079263687134,-0.351787269115448,-0.00115875899791718,0.93692809343338,-0.349520206451416,0.00361018488183618,0.990933477878571,0.134304851293564,-0.00115875899791718,0.93692809343338,-0.349520206451416,-0.00118250027298927,0.936079263687134,-0.351787269115448,0.00759271252900362,0.937289834022522,-0.348468422889709,0.0020067950244993,0.990910589694977,0.134506955742836,0.0017754475120455,0.988222658634186,0.15301313996315,
- 0.0092582143843174,-0.121926568448544,-0.992495954036713,-0.000324539840221405,0.69914710521698,-0.7149778008461,0.00884139537811279,-0.070406474173069,-0.997479200363159,0.0110765714198351,-0.0701930820941925,-0.997471928596497,0.00206756964325905,0.69892817735672,-0.71518886089325,0.00213475525379181,0.695216119289398,-0.71879768371582,-0.000223666429519653,0.694847702980042,-0.719156861305237,-0.000248879194259644,0.699140250682831,-0.714984536170959,-0.00201663374900818,0.936888754367828,-0.349621832370758,-0.00521354004740715,0.699581801891327,-0.714533507823944,-0.00116952508687973,0.936078369617462,-0.351789593696594,-0.00114569813013077,0.936928689479828,-0.349518626928329,0.00363072101026773,0.990933775901794,0.134302243590355,-0.00114569813013077,0.936928689479828,-0.349518626928329,-0.00116952508687973,0.936078369617462,-0.351789593696594,0.00764824450016022,0.937291860580444,-0.348461627960205,0.00206215400248766,0.990911483764648,0.134499996900558,0.00183030031621456,0.988220810890198,0.15302400290966,-0.000944844563491642,-0.0109086595475674,-0.999940097332001,0.0160240978002548,-0.0118189509958029,-0.999801754951477,-0.0320600233972073,-0.00923127122223377,-0.999443352222443,0.0159833170473576,-0.010079494677484,-0.999821484088898,-0.000876411737408489,-0.0101185711100698,-0.999948501586914,-0.00715536810457706,-0.0101323900744319,-0.999923169612885,-0.0387842543423176,-0.0100549906492233,-0.999197006225586,-0.00716478703543544,-0.00999961048364639,-0.999924421310425,-0.000865048787090927,-0.00998738128691912,-0.999949753284454,0.0313229076564312,-0.00250190496444702,-0.999506235122681,-0.0394311361014843,0.00166428461670876,-0.999220907688141,-5.66973758395761e-005,-0.000654596951790154,-0.999999761581421,-0.0121118277311325,-0.35504361987114,-0.934771358966827,-0.00423239124938846,-0.18273451924324,-0.983153164386749,0.00395812373608351,-0.000633299758192152,-0.9999920129776,0.00493678962811828,-0.181947588920593,-0.983295917510986,0.00127507362049073,-0.356456369161606,-0.934311091899872,-0.00599036924540997,-0.662604153156281,-0.748945891857147,
- 0.0189819578081369,-0.661611318588257,-0.749606788158417,0.0155982095748186,-0.357896387577057,-0.933631002902985,-0.0104390354827046,0.881276726722717,-0.472485393285751,0.0306746549904346,0.881520748138428,-0.471147745847702,-0.0325666032731533,-0.35275998711586,-0.935146987438202,0.0441623441874981,0.706662237644196,0.70617151260376,0.0492001213133335,0.881142795085907,-0.470283657312393,0.012689420953393,0.707120358943939,0.706979334354401,0.00513424864038825,0.588695704936981,0.808338403701782,0.0158616788685322,0.52947211265564,0.848179161548615,0.0168137829750776,0.588768422603607,0.808126926422119,0.018583444878459,0.707087934017181,0.706881463527679,0.0112060504034162,0.503166437149048,0.864116847515106,0.0122049748897552,0.529769599437714,0.848053872585297,0.0190875120460987,0.707084000110626,0.706871926784515,-0.0468868911266327,0.985369503498077,0.163855820894241,0.0864193737506866,0.975222587585449,0.203648269176483,0.232551842927933,0.941684186458588,0.243208944797516,-0.469423949718475,0.882776439189911,0.0186323765665293,0.121849790215492,0.99203896522522,0.0318020023405552,-0.0345128402113914,0.998971879482269,0.0293941963464022,-0.47051602602005,0.882303416728973,0.0124641358852386,-0.301686137914658,0.953093290328979,0.0244690552353859,0.118581414222717,0.991759061813354,0.0485020354390144,-0.136806204915047,0.990576386451721,0.00653135776519775,0.114521287381649,0.99102246761322,0.0689882859587669,-0.290167719125748,0.956407845020294,-0.0329667255282402,0.122761264443398,0.992065906524658,0.0271107144653797,-0.132117807865143,0.991215944290161,-0.00599008798599243,0.185952872037888,0.981927931308746,0.0352007821202278,-0.0388915315270424,0.999143660068512,0.0141234807670116,0.047187827527523,0.998808979988098,0.0124032078310847,-0.0551421754062176,0.998374164104462,0.0144371213391423,0.0471911653876305,0.998879671096802,-0.00352449715137482,-0.0393869131803513,0.999222934246063,-0.00150591065175831,0.0392343550920486,0.999224483966827,-0.00333974231034517,0.210667952895164,0.00769706582650542,0.977527379989624,
- 0.212048381567001,-0.0153880007565022,0.977137982845306,0.211140781641006,-2.17038759320767e-016,0.977455675601959,-0.00625194469466805,-0.0157457739114761,0.99985659122467,-0.00785320159047842,0.00787352863699198,0.999938189983368,-0.00839938782155514,0.0159438867121935,0.999837696552277,0.00173561996780336,0.0157050676643848,0.99987518787384,0.00136161933187395,-0.0314590036869049,0.999504148960114,0.00148661795537919,-0.0157460626214743,0.999875009059906,-0.00315917213447392,-0.031530000269413,0.999497890472412,-0.00393690634518862,-0.998014152050018,0.0628670379519463,-0.00310106878168881,-0.0157460030168295,0.99987119436264,-0.00301917246542871,0.0158173087984324,0.999870359897614,-0.00298538897186518,0.0234978832304478,0.999719440937042,-0.00322341220453382,-0.0315310023725033,0.999497592449188,-0.00627491576597095,-0.998002290725708,0.062866285443306,0.00185653800144792,-0.031451191753149,0.999503552913666,-0.00617250427603722,-0.99472564458847,0.102385476231575,-0.635962426662445,-0.0342972837388515,0.770957589149475,-0.651792109012604,-0.00774713605642319,0.758358180522919,0.660702586174011,-0.74355673789978,0.102934524416924,-0.00500297592952847,-0.998009502887726,0.0628667399287224,-0.00501093082129955,-0.994727432727814,0.102431751787663,-0.00490205688402057,-0.996202349662781,-0.0869311392307281,-0.0028872536495328,0.0235017500817776,0.999719679355621,-0.00292019569315016,0.0158149767667055,0.999870717525482,0.00387096870690584,0.993873000144959,0.110461056232452,0.00880598276853561,0.993837535381317,0.110496282577515,-0.00674082571640611,0.0159049145877361,0.999850809574127,0.00934807304292917,0.999182283878326,0.0393378846347332,-0.813823878765106,0.578230977058411,0.0577889680862427,-0.114657208323479,0.853850245475769,0.507733762264252,0.920882940292358,0.0454013720154762,0.387186378240585,0.00880598276853561,0.993837535381317,0.110496282577515,0.00934807304292917,0.999182283878326,0.0393378846347332,0.0102360211312771,0.995458662509918,-0.0946431085467339,-0.0504212155938149,0.993076086044312,-0.106102369725704,
- 0.186088696122169,0.976360321044922,0.109961368143559,-0.0106262229382992,0.997477412223816,-0.0701853409409523,0.0120142018422484,0.99738621711731,-0.0712485089898109,0.010742312297225,0.993817090988159,0.110509380698204,0.0121498834341764,0.995440244674683,-0.0946109816431999,-0.00460926722735167,-0.996253192424774,-0.0863622352480888,-0.00460741855204105,-0.996203482151031,-0.0869335830211639,-0.00513258203864098,-0.994727313518524,0.102426908910275,0.282000213861465,-0.956207275390625,-0.0783801600337029,0.00473913457244635,-0.994689226150513,0.102814711630344,0.843777477741241,-0.0283717941492796,-0.535942733287811,-0.00248609553091228,-0.996209561824799,-0.0869509428739548,-0.00248416792601347,-0.996263563632965,-0.0863296687602997,-0.00334607786498964,-0.0237206555902958,-0.999713063240051,-0.000902257568668574,-0.015724765136838,-0.999875962734222,-0.000907070701941848,-0.0236440058797598,-0.999720096588135,-0.000700028787832707,-0.996268749237061,-0.0863020271062851,-0.00086725689470768,0.0393191315233707,-0.999226331710815,-0.000907070701941848,-0.0236440058797598,-0.999720096588135,-0.000902257568668574,-0.015724765136838,-0.999875962734222,0.00424577575176954,-0.0158462077379227,-0.999865531921387,0.00442146137356758,0.0234760455787182,-0.99971467256546,0.00449090171605349,0.0394451282918453,-0.999211668968201,0.00739521998912096,0.997446477413177,-0.0710345506668091,0.00267805228941143,0.0394026264548302,-0.999219834804535,0.00256430776789784,0.0235346611589193,-0.999719738960266,-0.20191653072834,0.0337665602564812,-0.978820502758026,-0.199707165360451,-0.0170009732246399,-0.979708194732666,-0.199088364839554,-0.0294092446565628,-0.979540228843689,0.0993811711668968,-0.0148857878521085,-0.99493807554245,0.0891126617789268,0.0412847734987736,-0.995165646076202,0.098109669983387,-0.00783578585833311,-0.995144784450531,-0.046792421489954,0.992521584033966,0.112745605409145,-0.396111845970154,0.904595971107483,0.157485947012901,-0.064176432788372,0.991255164146423,0.115302614867687,-0.371571511030197,0.927271068096161,0.0458595082163811,
- -0.0657905712723732,0.983491599559784,0.168570190668106,-0.0692432373762131,0.983470678329468,0.167304858565331,-0.372546434402466,0.926670789718628,0.0499052405357361,-0.381560415029526,0.923120856285095,0.0475374311208725,-0.385344803333282,0.921598315238953,0.0465389080345631,-0.381560415029526,0.923120856285095,0.0475374311208725,-0.372546434402466,0.926670789718628,0.0499052405357361,-0.0657205581665039,0.990274786949158,0.12262424826622,-0.0575892813503742,0.998038649559021,0.0245435833930969,-0.460471779108047,0.881308436393738,0.106118500232697,-0.382629483938217,0.919453382492065,0.0905550792813301,-0.365598976612091,0.917704463005066,0.155422061681747,-0.437909036874771,0.881374597549438,0.17724147439003,-0.0606197938323021,0.996335446834564,0.0603405050933361,-0.379230350255966,0.915948033332825,0.131239429116249,-0.468867868185043,0.865511178970337,0.176220178604126,-0.442652493715286,0.881756246089935,0.16298696398735,-0.062898114323616,0.994147777557373,0.0878298208117485,0.132381081581116,0.990205764770508,0.0443613156676292,-0.36882296204567,0.917356014251709,0.149758368730545,0.0269358791410923,0.994344711303711,-0.102728165686131,-0.380763351917267,0.915703058242798,0.128480240702629,0.057170644402504,0.991236925125122,-0.11908408254385
- }
- BinormalsW: *628 {
- 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
- }
- }
- LayerElementBinormal: 1 {
- Version: 102
- Name: "uvSet"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *1884 {
- a: -1,2.34383401220839e-006,0,-1,2.34932463172299e-006,-0.000149419516674243,-1,1.82559142558603e-006,0,-1,1.32264517560543e-006,0,-0.999999642372131,-0.000523936003446579,0.000637572782579809,-0.999999761581421,-0.000436793430708349,0.000637583958450705,-0.99999988079071,-0.000139337076689117,0.000637621618807316,-1,-1.96245364350034e-005,-0.000433076696936041,-1,6.38793571852148e-005,-1.81514610630984e-006,-0.999999761581421,0.000321590778185055,0.000637679826468229,-0.999999821186066,-0.000139214389491826,0.000637621677014977,-1,2.74876401817892e-006,0,-1,2.45696401179885e-006,0,-1,2.34383401220839e-006,0,-1,2.94624669550103e-006,0,-0,-9.7140309662791e-007,-1,-0,-1.33474641188513e-005,-1,-0,-1.32077238959027e-005,-1,-0,-6.9192128648865e-007,-1,-0,-9.12895029614447e-006,-1,-1,6.38793571852148e-005,-1.81514610630984e-006,-1,-1.96245364350034e-005,-0.000433076696936041,-1,2.34932463172299e-006,-0.000149419516674243,-1,2.25326903091627e-006,-0.000215113672311418,0.0212659575045109,-0.563477337360382,0.825857758522034,0.010875559411943,-0.563575148582459,0.825993180274963,0.000483986164908856,-0.563612163066864,0.826039433479309,0.010875559411943,-0.563575148582459,0.825993299484253,0,-0.999685943126678,-0.0250603090971708,0,-1,9.43099530559266e-006,0,-0.99968558549881,0.0250769518315792,0,-0.999965071678162,0.00836740341037512,0,-1,1.18616089821444e-005,0,-0.999965190887451,-0.00834618415683508,0.0143116163089871,0.502615928649902,0.864391446113586,0.0143122700974345,0.502615809440613,0.864391386508942,0.0143129285424948,0.502615869045258,0.864391386508942,0.0143122700974345,0.502615809440613,0.864391386508942,1,3.58125271304743e-006,-1.67277969254087e-009,1,1.88942436807338e-007,0.000149415602209046,1,3.99643852233567e-007,-5.60214985512175e-010,1,3.1542472243018e-006,-1.67277947049627e-009,-1,2.25326903091627e-006,-0.000215113672311418,-1,2.34932463172299e-006,-0.000149419516674243,-1,2.34383401220839e-006,0,-1,2.45696401179885e-006,0,-0.99999725818634,0.00189806020352989,0.00142174237407744,
- -0.999997198581696,0.00189789710566401,0.001421959255822,-0.99999725818634,0.00189806020352989,0.00142174237407744,-0.999997198581696,0.00189822295214981,0.00142152525950223,-0,-1,-7.00509372109082e-006,-0,-1,-8.34753700473811e-006,-0,-1,-9.02566080185352e-006,-0,-1,-1.03818283605506e-005,-0,-1,-7.68319114285987e-006,-0,-1,-4.32012802775716e-006,0.99999725818634,-0.00189834274351597,0.00142122281249613,0.99999725818634,-0.00189777032937855,0.00142198568210006,0.99999725818634,-0.00189834274351597,0.00142122281249613,0.99999725818634,-0.00189891539048404,0.00142046040855348,1,-1.17857689474477e-006,0,1,-9.30469184368121e-007,0,1,-6.86774797031831e-007,0,1,3.99643852233567e-007,-5.60214985512175e-010,1,-1.17857689474477e-006,0,1,3.99643852233567e-007,-5.60214985512175e-010,1,1.88942436807338e-007,0.000149415602209046,1,-1.76029107024078e-006,0.000215112493606284,1,1.88942436807338e-007,0.000149415602209046,0.999998152256012,-0.00189999735448509,0.000330037582898512,0.999997019767761,-0.00243611610494554,-4.94414825880085e-006,1,-1.76029107024078e-006,0.000215112493606284,0.999999821186066,1.28179126477335e-005,-0.000701525947079062,0.999997019767761,-0.00243611610494554,-4.94414825880085e-006,0.999998152256012,-0.00189999735448509,0.000330037582898512,0.999790787696838,-0.0204438790678978,-0.000704959151335061,0.997339367866516,-0.0728958770632744,-0.000712418521288782,0.999350965023041,-0.0360161252319813,-0.000707375758793205,0.999999225139618,-0.00104450376238674,-0.00070171058177948,1,0,1.18534080684185e-006,1,0,7.12341261532856e-007,1,0,0,1,0,9.53358153310546e-007,1,-5.36582137195798e-017,1.56085661728866e-007,1,0,1.18534080684185e-006,1,0,9.53358153310546e-007,1,-3.2398277019582e-016,9.42429267070111e-007,1,-7.00304497058823e-007,-1.62570120210148e-006,1,-5.36582137195798e-017,1.56085661728866e-007,1,-3.2398277019582e-016,9.42429267070111e-007,1,-6.99953204730264e-007,-3.86984595479589e-007,1,-7.00304497058823e-007,-1.62570120210148e-006,1,-6.99953204730264e-007,-3.86984595479589e-007,1,-1.48254355281097e-006,-2.7895875973627e-006,
- 1,-1.48254332543729e-006,-2.32295337809774e-006,1,-1.4825427570031e-006,5.8075163601734e-012,-0.0143106169998646,-0.50258082151413,0.864411771297455,-0.0143119329586625,-0.502580881118774,0.8644118309021,-0.0143132470548153,-0.502580881118774,0.8644118309021,-0.0143119329586625,-0.502580881118774,0.8644118309021,0.000483941228594631,0.564597964286804,0.825365900993347,-0.0103123066946864,0.564571857452393,0.825319588184357,-0.0211073495447636,0.564479947090149,0.82517683506012,-0.0103123057633638,0.564571857452393,0.825319528579712,-0.637402951717377,0.766465365886688,0.0790474638342857,-0.698807954788208,0.707723617553711,0.103897675871849,-0.750363528728485,0.660822689533234,0.0163681209087372,-0.916014432907104,0.387822329998016,0.102525651454926,-0.286055237054825,0.956064581871033,0.064132958650589,-0.255057960748672,0.966908097267151,-0.00586669985204935,-0.892090797424316,0.406295478343964,0.197732329368591,-0.179830104112625,0.980450391769409,0.0798644423484802,-0.04509387165308,0.997611105442047,0.0523316264152527,-0.136841952800751,0.986135184764862,0.0938711315393448,-0.167242869734764,0.983540952205658,0.0683883503079414,-0.167242869734764,0.983540952205658,0.0683883503079414,-0.255057960748672,0.966908097267151,-0.00586669985204935,-0.286055237054825,0.956064581871033,0.064132958650589,-0.179830104112625,0.980450391769409,0.0798644423484802,-0.696155190467834,0.689944982528687,0.198352918028831,-0.698807954788208,0.707723617553711,0.103897675871849,-0.637402951717377,0.766465365886688,0.0790474638342857,-0.375604271888733,0.92242044210434,0.0897896513342857,-0.286055237054825,0.956064581871033,0.064132958650589,-0.916014432907104,0.387822329998016,0.102525651454926,-0.944216012954712,0.329207748174667,0.00886203907430172,-0.275753885507584,0.959763705730438,0.0530416406691074,-0.286055237054825,0.956064581871033,0.064132958650589,-0.375604271888733,0.92242044210434,0.0897896513342857,-0.0596408918499947,0.992905616760254,0.102866858243942,-0.04509387165308,0.997611105442047,0.0523316264152527,-0.179830104112625,0.980450391769409,0.0798644423484802,
- -0.275753885507584,0.959763705730438,0.0530416406691074,-0.179830104112625,0.980450391769409,0.0798644423484802,-0.286055237054825,0.956064581871033,0.064132958650589,-0.0596408918499947,0.992905616760254,0.102866858243942,-0.179830104112625,0.980450391769409,0.0798644423484802,-0.275753885507584,0.959763705730438,0.0530416406691074,-0.925479888916016,0.377869218587875,-0.0264902226626873,-0.974084436893463,0.194912761449814,0.114754185080528,-0.698807954788208,0.707723617553711,0.103897675871849,-0.696155190467834,0.689944982528687,0.198352918028831,-0.750363528728485,0.660822689533234,0.0163681209087372,-0.698807954788208,0.707723617553711,0.103897675871849,-0.974084436893463,0.194912761449814,0.114754185080528,-0.882347106933594,0.420494973659515,0.211300194263458,-0.944216012954712,0.329207748174667,0.00886203907430172,-0.916014432907104,0.387822329998016,0.102525651454926,-0.974084436893463,0.194912761449814,0.114754185080528,-0.925479888916016,0.377869218587875,-0.0264902226626873,-0.882347106933594,0.420494973659515,0.211300194263458,-0.974084436893463,0.194912761449814,0.114754185080528,-0.916014432907104,0.387822329998016,0.102525651454926,-0.892090797424316,0.406295478343964,0.197732329368591,-0.0691165775060654,-0.797655940055847,-0.599139511585236,-0.0916416123509407,-0.794493019580841,-0.600318789482117,0.0991947650909424,-0.808116137981415,-0.580610692501068,-0.0921574607491493,-0.84937447309494,-0.519682586193085,0.993872225284576,-0.0999947711825371,-0.0471059642732143,0.997162282466888,-0.0696601197123528,-0.0285459849983454,0.998210072517395,0.0278333835303783,0.0529337376356125,0.993741035461426,-0.104576744139194,-0.0392735861241817,0.994979381561279,0.0633237734436989,0.0774994194507599,0.989705920219421,-0.141116663813591,0.0238411165773869,0.993867039680481,-0.0192141514271498,0.108899295330048,0.991419315338135,-0.12609376013279,0.0344710648059845,0.35265639424324,-0.645966827869415,0.677023231983185,0.327952772378922,-0.591457784175873,0.736630618572235,0.419689774513245,-0.862826704978943,-0.281763434410095,
- 0.974263429641724,0.211498647928238,0.0779686644673347,0.97368860244751,0.196780025959015,0.114926561713219,0.762160539627075,0.392541110515594,-0.514803647994995,0.844807803630829,0.377564400434494,-0.379136949777603,0.970688045024872,0.208573743700981,0.119422502815723,0.971160173416138,0.223871916532516,0.0820333585143089,0.932809114456177,0.339791536331177,0.120036944746971,0.932087540626526,0.310109734535217,0.187202870845795,0.931628346443176,0.306158065795898,0.195795819163322,0.966241240501404,0.222999006509781,0.129032522439957,0.904234766960144,0.31027016043663,-0.293414354324341,-0.718076229095459,-0.338404297828674,0.608152210712433,0.988266348838806,0.135368004441261,0.0707474276423454,0.984290540218353,-0.122983276844025,0.12667790055275,0.988145232200623,0.136368989944458,0.0705168768763542,0.949514389038086,-0.18373629450798,0.254290133714676,0.93121212720871,0.30701544880867,0.196432247757912,0.946040451526642,-0.199736595153809,0.255171984434128,0.995744407176971,0.0333910807967186,0.0858966335654259,0.952211737632751,0.25944721698761,0.161183550953865,0.997492790222168,-0.0307223796844482,0.0637531727552414,0.995925843715668,-0.0179591532796621,-0.0883706882596016,0.998075127601624,0.0497308224439621,-0.0370531752705574,0.997180461883545,-0.000307586044073105,-0.0750406533479691,0.997525691986084,0.0550481975078583,-0.0437306314706802,0.994882881641388,-0.0172300152480602,-0.099554605782032,0.997551143169403,0.0299256443977356,-0.0632157847285271,-0.113517865538597,-0.792177200317383,0.599640786647797,-0.0691405385732651,-0.79880279302597,0.597606718540192,0.0991641283035278,-0.809216201305389,0.579081773757935,0.997283816337585,-0.0656723827123642,0.0333490967750549,0.994723320007324,-0.0903227403759956,0.0486549697816372,-0.113661304116249,-0.843961119651794,0.524223983287811,0.994588494300842,-0.0957838967442513,0.0402399450540543,0.998278796672821,0.0299208015203476,-0.0504399240016937,0.995919585227966,0.0570540055632591,-0.0699217617511749,0.994308233261108,-0.01618174277246,-0.105306014418602,
- 0.990637838840485,-0.134943529963493,-0.0206626374274492,0.991969466209412,-0.123048678040504,-0.0292535126209259,0.272749751806259,-0.604987740516663,-0.748062491416931,0.299099445343018,-0.663297355175018,-0.685985565185547,0.394414454698563,-0.873460948467255,0.285487771034241,0.976661086082459,0.186171025037766,-0.107114985585213,0.977102398872375,0.19947960972786,-0.0740188956260681,0.782622039318085,0.380119830369949,0.492962151765823,0.973041117191315,0.200471371412277,-0.114027477800846,0.853224873542786,0.369190961122513,0.368382096290588,0.973408341407776,0.214982107281685,-0.0791131556034088,0.931650400161743,0.306112468242645,-0.195761993527412,0.932108998298645,0.310063779354095,-0.187172114849091,0.932827234268188,0.339746981859207,-0.120022356510162,0.904860973358154,0.309436619281769,0.292362093925476,0.968503654003143,0.215794086456299,-0.124231860041618,-0.707270741462708,-0.344506710767746,-0.617319405078888,0.98883843421936,-0.108305923640728,-0.1023158878088,0.992261409759521,0.111398406326771,-0.0548430681228638,0.99198305606842,0.114146515727043,-0.0542236864566803,0.914031863212585,0.340126574039459,-0.221042692661285,0.9344642162323,-0.210359781980515,-0.287272721529007,0.932382702827454,-0.21893747150898,-0.287626296281815,0.939983010292053,0.288289189338684,-0.182541161775589,0.995155870914459,0.0335265435278416,-0.0924159213900566,0.997140884399414,-0.0337908454239368,-0.067589558660984,0.998163402080536,0.0488039627671242,0.0358894318342209,0.996074259281158,-0.0180705096572638,0.0866585224866867,0.997272491455078,-0.0010695718228817,0.0738007426261902,0.994816303253174,-0.0171861927956343,0.100225336849689,0.997470676898956,0.0555443949997425,0.0443538427352905,0.997493088245392,0.0299020800739527,0.0641359835863113,-0.00178071693517268,-0.063547357916832,0.997977256774902,-0.00249006226658821,0.0478410497307777,0.998851895332336,-0.00268910359591246,0.079888328909874,0.996800184249878,0.00273870653472841,0.0472613573074341,0.998878836631775,0.00261063012294471,-0.0630959868431091,0.998004078865051,
- 0.00253098271787167,-0.120514325797558,0.992708384990692,-0.000562249275390059,0.99987518787384,-0.0157951768487692,-0.000175639972439967,0.998869299888611,0.0475401133298874,7.44424687582068e-005,0.9960897564888,0.0883466005325317,0.000919031794182956,0.998861491680145,0.0476961210370064,0.00150473997928202,0.999869763851166,-0.0160739701241255,0.00150234473403543,0.999873876571655,-0.0158119890838861,-0.00379233714193106,-0.0637537240982056,0.997958481311798,-0.00450494512915611,0.0480640791356564,0.998834133148193,-0.00469590164721012,0.0795178934931755,0.996822476387024,-0.00111920153722167,0.0476891919970512,0.99886167049408,-0.00124810310080647,-0.0634926781058311,0.997981607913971,-0.0013078860938549,-0.119873866438866,0.992788314819336,0.000962316757068038,0.999871551990509,-0.0160008147358894,0.00175698823295534,0.998834252357483,0.0482392162084579,0.00244918093085289,0.994520366191864,0.10451453179121,0.000876269419677556,0.998842656612396,0.0480916611850262,0.00146040541585535,0.999869823455811,-0.0160679891705513,0.00145816954318434,0.999873757362366,-0.0158212501555681,-0.0119228381663561,-0.0645851194858551,0.997841000556946,-0.0126348491758108,0.0489620007574558,0.998720765113831,-0.0127914231270552,0.0780201107263565,0.996869802474976,0.00659895688295364,0.0468325428664684,0.998881042003632,0.00648508500307798,-0.0626967251300812,0.998011589050293,0.00639193505048752,-0.121156640350819,0.992612838745117,0.00441010342910886,0.999854803085327,-0.016465725377202,0.0052134464494884,0.998794078826904,0.0488179735839367,0.0058733569458127,0.994592666625977,0.103687010705471,0.000834754668176174,0.99884295463562,0.0480846986174583,0.00142509990837425,0.99987006187439,-0.016063230112195,0.00142295088153332,0.999873757362366,-0.0158286355435848,-0.00756894005462527,0.480627685785294,-0.87689208984375,0.00491677178069949,0.48056024312973,-0.876947939395905,-0.00361430924385786,0.480614423751831,-0.876924514770508,-0.00485583348199725,0.468793243169785,-0.883294582366943,0.0446641780436039,0.468973904848099,-0.882082045078278,
- -0.00738193979486823,0.468753188848495,-0.883298337459564,-0.00601155217736959,0.457704812288284,0.889083862304688,-0.0072076334618032,0.457684725522995,0.889085352420807,0.0472472719848156,0.457935124635696,0.887729167938232,-0.00694522587582469,0.441021829843521,0.897469639778137,-0.00773461442440748,0.441021680831909,0.897463083267212,0.0074339434504509,0.440974235534668,0.897489070892334,-0.0192148331552744,0.488056778907776,-0.872600376605988,0.000589353963732719,0.488056898117065,-0.872811615467072,0.00325262174010277,0.488042324781418,-0.872813940048218,-0.00117417983710766,0.432239055633545,-0.901758313179016,0.023779958486557,0.431436359882355,-0.901830017566681,-0.0170318577438593,0.432609170675278,-0.901420652866364,-0.00175045430660248,0.424843996763229,0.905264914035797,-0.0167393628507853,0.425179839134216,0.904954075813293,0.0267051104456186,0.423943608999252,0.905294895172119,-0.0192132033407688,0.488015353679657,0.872623562812805,0.0032492857426405,0.488000959157944,0.872837066650391,0.000592365802731365,0.488015502691269,0.872834742069244,0.0279317311942577,0.443416208028793,0.895880520343781,-0.0107950186356902,0.444088786840439,0.895917892456055,-0.0139878578484058,0.444114476442337,0.895860910415649,-0.0107817947864532,0.444266021251678,0.895830094814301,0.0108069274574518,0.443929135799408,0.895996749401093,-0.0139936516061425,0.444298446178436,0.895769596099854,-0.0136502292007208,0.433394759893417,-0.901100814342499,-0.0115906661376357,0.433381021022797,-0.901136338710785,0.0272614900022745,0.432776153087616,-0.901089131832123,0.00234234519302845,0.463763654232025,-0.88595587015152,-0.00930886715650558,0.463865429162979,-0.885856807231903,-0.0146107394248247,0.463890969753265,-0.885771930217743,-0.00547327008098364,-0.0785539373755455,-0.996894836425781,-0.00948426965624094,0.693845927715302,-0.720061063766479,-0.00519819231703877,-0.113140925765038,-0.993565440177917,-0.00656088534742594,0.694215357303619,-0.719737529754639,-0.0182769112288952,-0.0772290378808975,-0.996845841407776,-0.00641865283250809,0.699686408042908,-0.714421272277832,
- 0.000443562865257263,0.695075511932373,-0.718936622142792,0.000402398407459259,0.699081063270569,-0.715042412281036,-0.00277133285999298,0.936861276626587,-0.349690407514572,-0.00279382616281509,0.6993687748909,-0.714755594730377,-0.00129744410514832,0.94382518529892,-0.330442786216736,-0.001371830701828,0.936922252178192,-0.349535256624222,0.000515973253641278,0.990887105464935,0.134694591164589,-0.001371830701828,0.936922252178192,-0.349535256624222,-0.00129744410514832,0.94382518529892,-0.330442786216736,0.00759653467684984,0.937268972396851,-0.348524481058121,0.00199356954544783,0.990910470485687,0.134508639574051,0.00176169164478779,0.988223016262054,0.15301039814949,0.0390328951179981,0.999216914176941,-0.00648447312414646,-0.0312347784638405,0.999481856822968,-0.00777748692780733,-0.0160999745130539,0.999842286109924,-0.00750199612230062,-0.0277506392449141,0.993296563625336,-0.112213663756847,0.0338155031204224,0.993148267269135,-0.111862048506737,-0.0121147492900491,0.993615865707397,-0.112164631485939,-0.0161618329584599,0.999781668186188,0.0132473604753613,0.0399849191308022,0.9991055727005,0.0137595124542713,0.0312622413039207,0.999417543411255,0.0136827221140265,0.0316447243094444,0.999485492706299,0.00523461028933525,-0.0317591540515423,0.999478101730347,0.00591664854437113,0.0154902981594205,0.999865412712097,0.00541051337495446,-0.0261961482465267,0.993800401687622,-0.10804845392704,0.0278923176229,0.993742108345032,-0.108160898089409,0.0122478129342198,0.994057953357697,-0.108160898089409,-0.0321012660861015,0.999397337436676,0.0132118724286556,0.0161485262215137,0.999787390232086,0.0128220496699214,-0.0312699563801289,0.999423742294312,0.0132054109126329,0.0391090288758278,0.999223053455353,-0.00487810280174017,-0.031310398131609,0.999495267868042,-0.00539010250940919,-0.015995291993022,0.999858200550079,-0.0052809314802289,-0.027672678232193,0.993044912815094,-0.114437393844128,0.0336949564516544,0.992886781692505,-0.114195838570595,-0.0120397862046957,0.993359863758087,-0.114416755735874,-0.0161633249372244,0.99978095293045,0.0132950693368912,
- 0.0399871468544006,0.999104917049408,0.0138072287663817,0.0312614738941193,0.999417006969452,0.0137304235249758,0.0316081531345844,0.999492168426514,0.00406675273552537,-0.0317053943872452,0.999485850334167,0.00477357534691691,0.0155453076586127,0.999870240688324,0.0042477548122406,-0.0261853244155645,0.993777453899384,-0.10826226323843,0.0278853643685579,0.993720531463623,-0.108360141515732,0.012241056188941,0.994035840034485,-0.108364403247833,-0.0320980623364449,0.999398291110992,0.0131434230133891,0.0161463934928179,0.999788284301758,0.0127538600936532,-0.0312710627913475,0.999424695968628,0.013136999681592,0.0391090698540211,0.999223053455353,-0.00487719802185893,-0.0313101448118687,0.999495208263397,-0.00539818126708269,-0.0159955788403749,0.99985808134079,-0.00528706144541502,-0.0276737194508314,0.993048369884491,-0.11440771073103,0.0336963534355164,0.992889761924744,-0.114168718457222,-0.0120407538488507,0.993363320827484,-0.11438774317503,-0.0161645989865065,0.999780416488647,0.0133358351886272,0.0399888753890991,0.999104201793671,0.013844283297658,0.0312608666718006,0.999416470527649,0.0137680480256677,0.0316074378788471,0.999492287635803,0.00404393626376987,-0.0317039266228676,0.999486088752747,0.00474233273416758,0.0155464876443148,0.999870240688324,0.00422277487814426,-0.0261852405965328,0.993777275085449,-0.108263902366161,0.0278850644826889,0.993719637393951,-0.108368769288063,0.0122408391907811,0.994035243988037,-0.108371026813984,-0.0321018472313881,0.999397099018097,0.0132243130356073,0.0161487236618996,0.999787330627441,0.0128282848745584,-0.0312697552144527,0.999423563480377,0.0132177397608757,-0.00866149924695492,0.614793300628662,-0.788640677928925,-0.0126225035637617,0.435570985078812,-0.900065839290619,-0.0125310970470309,0.440249294042587,-0.897788166999817,0.0157729517668486,0.615347445011139,-0.788098156452179,0.0196338389068842,0.858607053756714,-0.512258231639862,0.012508500367403,0.433425813913345,-0.901102542877197,0.0196338389068842,0.858607053756714,-0.512258231639862,0.0157729517668486,0.615347445011139,-0.788098156452179,
- -0.00784468930214643,-0.189467251300812,0.981855809688568,0.00220089382492006,0.860119581222534,-0.510087668895721,0.00857544224709272,-0.190614849328995,0.981627523899078,0.00815479923039675,-0.228907406330109,0.973414123058319,0.00443773996084929,-0.190330490469933,0.981710076332092,0.00900915637612343,0.00858278758823872,0.999922573566437,0.00350142456591129,-0.229236230254173,0.973364531993866,0.00692380545660853,0.00841872952878475,0.999940633773804,0.00412392150610685,-0.190308809280396,0.981715679168701,0.00680052395910025,-0.000755613786168396,0.999976694583893,-0.010979856364429,0.476483225822449,0.879114985466003,-0.00744978431612253,0.619697988033295,0.784804999828339,-0.0112228663638234,0.465571939945221,0.884938895702362,0.0151603240519762,0.62020081281662,0.784296691417694,0.0122956074774265,0.474366337060928,0.880241751670837,0.0195157304406166,0.856263697147369,0.516170263290405,0.0195157304406166,0.856263697147369,0.516170263290405,-0.00648689363151789,-0.189564064145088,-0.981846928596497,0.0151603240519762,0.62020081281662,0.784296691417694,0.00860028527677059,-0.19061653316021,-0.981626987457275,0.00221645832061768,0.857996940612793,0.513650178909302,0.00817503314465284,-0.228905975818634,-0.973414242267609,0.00898171216249466,0.00858062971383333,-0.999922931194305,0.0044059962965548,-0.190328285098076,-0.981710612773895,0.00346884317696095,-0.229238525032997,-0.973364114761353,0.00738291256129742,-0.190533235669136,-0.981653094291687,0.00985872838646173,0.0086496165022254,-0.999913990497589,0.00974683184176683,-0.00108298123814166,-0.999951899051666,0.00546787213534117,0.691212356090546,-0.72263103723526,0.00116180919576436,0.545520603656769,-0.838096737861633,0.00157311162911356,0.560190618038177,-0.828362226486206,0.0207003988325596,0.545015573501587,-0.838170349597931,0.0245152711868286,0.69101494550705,-0.722424626350403,0.0275945663452148,0.818055272102356,-0.574477255344391,0.02409603074193,0.818145155906677,-0.57450670003891,0.0184830632060766,0.691104590892792,-0.722518384456635,0.0323795713484287,0.78623628616333,0.617077171802521,
- 0.0115325041115284,0.818385243415833,-0.57455438375473,0.0303521156311035,0.786456048488617,0.616900026798248,0.00759130390360951,-0.3139768242836,0.949400305747986,-0.00603915471583605,-0.313777059316635,0.949477553367615,0.0408576913177967,0.78528106212616,0.617790043354034,-0.0181747358292341,-0.558988153934479,0.828976392745972,0.679676353931427,0.517854034900665,0.51948744058609,0.298768132925034,-0.0172694809734821,0.954169452190399,-0.24885430932045,-0.527800500392914,0.812094926834106,-0.0164937116205692,-0.559103429317474,0.828933954238892,0.00442865956574678,-0.0471789240837097,0.998876631259918,-0.00622208463028073,-0.313773959875107,0.949477314949036,0.000684093276504427,-0.0475055575370789,0.998870849609375,-0.0200901497155428,-0.558854877948761,0.829022109508514,0.00382273597642779,0.0313723757863045,0.999500453472137,0.00923218205571175,-0.121921427547932,-0.99249678850174,-0.00031425803899765,0.699146151542664,-0.714978694915771,0.00881721265614033,-0.070408783853054,-0.997479319572449,0.0110904658213258,-0.0701917558908463,-0.997471868991852,0.00209375470876694,0.698925793170929,-0.715191125869751,0.0021608101669699,0.695220172405243,-0.71879369020462,-0.000196494162082672,0.694851994514465,-0.719152808189392,-0.000221658498048782,0.69913774728775,-0.714986979961395,-0.00199165171943605,0.936889886856079,-0.349618852138519,-0.00521718710660934,0.699582159519196,-0.714533150196075,-0.00118250027298927,0.936079263687134,-0.351787269115448,-0.00115875899791718,0.93692809343338,-0.349520206451416,0.00361018488183618,0.990933477878571,0.134304851293564,-0.00115875899791718,0.93692809343338,-0.349520206451416,-0.00118250027298927,0.936079263687134,-0.351787269115448,0.00759380683302879,0.937289893627167,-0.348468273878098,0.00200797407887876,0.990910649299622,0.134506806731224,0.00177662260830402,0.988222599029541,0.153013378381729,0.00925269909203053,-0.121925480663776,-0.992496132850647,-0.000328615307807922,0.699147462844849,-0.714977443218231,0.00883585680276155,-0.0704070031642914,-0.997479259967804,
- 0.011078791692853,-0.0701928734779358,-0.997471988201141,0.00206920132040977,0.69892805814743,-0.715189039707184,0.00213637948036194,0.695216357707977,-0.718797385692596,-0.000222533941268921,0.694847881793976,-0.719156682491302,-0.000247735530138016,0.699140131473541,-0.714984655380249,-0.00201543793082237,0.936888813972473,-0.349621683359146,-0.00521354004740715,0.699581801891327,-0.714533507823944,-0.00116952508687973,0.936078369617462,-0.351789593696594,-0.00114569813013077,0.936928689479828,-0.349518626928329,0.00363072101026773,0.990933775901794,0.134302243590355,-0.00114569813013077,0.936928689479828,-0.349518626928329,-0.00116952508687973,0.936078369617462,-0.351789593696594,0.00765198096632957,0.937291979789734,-0.348461180925369,0.00206618825905025,0.990911483764648,0.134499475359917,0.00183431268669665,0.988220691680908,0.153024807572365,-0.000944854458793998,-0.010908774100244,-0.999940097332001,0.0160240996629,-0.0118190664798021,-0.999801754951477,-0.0320600308477879,-0.00923138577491045,-0.999443352222443,0.015983272343874,-0.0100775780156255,-0.999821484088898,-0.000876245612744242,-0.0101166535168886,-0.999948441982269,-0.00715550361201167,-0.0101304734125733,-0.999923169612885,-0.0387843586504459,-0.0100530767813325,-0.999197006225586,-0.00716492254287004,-0.00999769661575556,-0.999924421310425,-0.000864883069880307,-0.00998546835035086,-0.999949812889099,0.0313229709863663,-0.00250089238397777,-0.999506235122681,-0.0394311919808388,0.00166530371643603,-0.999220907688141,-5.66097623959649e-005,-0.000653585477266461,-0.999999761581421,-0.0121118277311325,-0.35504361987114,-0.934771358966827,-0.00423239124938846,-0.18273451924324,-0.983153164386749,0.00395812373608351,-0.000633299758192152,-0.9999920129776,0.00493929488584399,-0.181947365403175,-0.983295977115631,0.00127773347776383,-0.35645666718483,-0.934310972690582,-0.00598763488233089,-0.662604093551636,-0.748945951461792,0.0189829058945179,-0.661611258983612,-0.749606788158417,0.0155999436974525,-0.357896506786346,-0.933630883693695,-0.0104369157925248,0.881276726722717,-0.472485333681107,
- 0.0306773036718369,0.881520748138428,-0.471147656440735,-0.0325663797557354,-0.352760016918182,-0.935146927833557,0.0441632233560085,0.706662178039551,0.706171452999115,0.049202024936676,0.881142795085907,-0.470283567905426,0.0126914381980896,0.707120358943939,0.706979334354401,0.00513602374121547,0.588695704936981,0.808338403701782,0.0158646497875452,0.529471874237061,0.84817910194397,0.0168167632073164,0.588768422603607,0.808126866817474,0.0185863710939884,0.707087934017181,0.706881403923035,0.0112060504034162,0.503166437149048,0.864116847515106,0.0122049748897552,0.529769599437714,0.848053872585297,0.0190875120460987,0.707084000110626,0.706871926784515,-0.0978730320930481,0.118725679814816,0.988091647624969,-0.172436773777008,0.128516256809235,0.976600885391235,-0.298485785722733,0.143628478050232,0.943545043468475,0.15068131685257,0.118313603103161,0.981477022171021,-0.194019049406052,-0.0329830721020699,0.980443120002747,-0.095155194401741,0.0111901722848415,0.995399534702301,0.172478660941124,0.0778592824935913,0.981931269168854,-0.202849507331848,-0.0352398194372654,0.978575646877289,-0.193963721394539,-0.0325143113732338,0.980469763278961,-0.346205055713654,-0.0765185132622719,0.935033202171326,-0.19381944835186,-0.0312938801944256,0.980538010597229,-0.203209146857262,-0.0340601056814194,0.978542804718018,-0.184005185961723,0.0466837957501411,0.981816053390503,-0.363951504230499,0.0724708586931229,0.928594291210175,-0.191490083932877,0.0477707087993622,0.980331420898438,-0.0325040370225906,0.0263021048158407,-0.999125480651855,0.00122305727563798,0.0258880462497473,-0.999664127826691,0.00644800718873739,0.0258212648332119,-0.9996457695961,0.00133510481100529,0.0282597187906504,-0.999599814414978,-0.0326061397790909,0.0289569385349751,-0.999048709869385,-0.0303301680833101,0.0289112031459808,-0.999121725559235,0.999982178211212,4.69804945169017e-005,0.00596652273088694,0.999982237815857,-9.39336241572164e-005,0.00596478534862399,0.999982178211212,-1.32470555597076e-018,0.00596594344824553,0.999991774559021,-6.38037163298577e-005,0.00405153585597873,
- 0.999991774559021,3.19110695272684e-005,0.00405270559713244,0.999715447425842,-0.0235560592263937,0.00376325170509517,0.997800290584564,-0.0245398934930563,-0.061582937836647,0.997949242591858,0.0176536310464144,-0.0615281313657761,0.998102724552155,0.000969494576565921,-0.0615629032254219,0.523982226848602,-0.0185680519789457,0.85152679681778,0.604617714881897,-0.794940233230591,0.0500749759376049,0.521312773227692,-0.013437164016068,0.853259921073914,0.999681949615479,-0.0234691202640533,0.00923376344144344,0.999183595180511,0.0395345687866211,0.00832406058907509,0.999842703342438,0.0154723040759563,0.00867566466331482,0.655462384223938,0.75373387336731,-0.0474793016910553,0.818139553070068,0.0309686586260796,-0.574185192584991,0.658510804176331,0.750818431377411,-0.0513340122997761,0.999574661254883,0.0164988487958908,-0.024051072075963,0.998965442180634,0.0387677289545536,-0.023775227367878,0.873712658882141,0.486195683479309,-0.0154919009655714,0.996792495250702,0.0798710882663727,-0.00503124948590994,0.996274828910828,0.0803770124912262,0.031241849064827,0.996799767017365,0.0799335166811943,-0.000932786497287452,0.990697860717773,0.0359032601118088,-0.131258517503738,0.991340339183807,-0.0254462994635105,-0.128829538822174,0.73650997877121,-0.672906339168549,-0.0689220577478409,0.862721085548401,0.501790165901184,0.0626014545559883,0.760065972805023,-0.00772123970091343,0.649800181388855,0.850437104701996,0.525669515132904,0.020695649087429,0.999947071075439,-0.00743447616696358,0.00711003551259637,0.115157507359982,0.0467332638800144,-0.992247402667999,0.838483572006226,0.0201476756483316,-0.544554352760315,0.999503195285797,-0.0312022659927607,0.00446564704179764,0.999511420726776,-0.0312351081520319,-0.0012297285720706,0.999338567256927,-0.0311149582266808,0.0188258457928896,0.118509650230408,-0.00476166745647788,-0.992941498756409,0.999624729156494,0.0252054501324892,0.0107341362163424,0.998496770858765,0.02471206150949,-0.0489243231713772,0.998496770858765,0.02471206150949,-0.0489243231713772,0.999624729156494,0.0252054501324892,0.0107341362163424,
- 0.999591112136841,0.0252258814871311,0.0134640596807003,0.995577454566956,-0.0936391353607178,0.00756790768355131,0.99551248550415,-0.0932613834738731,-0.016042759642005,0.994340181350708,-0.0941778272390366,0.0491747036576271,0.999474763870239,-0.029607517644763,0.0131753282621503,0.998562932014465,-0.0320737846195698,0.042934712022543,0.998494565486908,-0.024360416457057,-0.0491447299718857,0.91437155008316,-0.402649194002151,-0.0424088314175606,0.905200600624084,-0.424388498067856,-0.0225029326975346,0.929589569568634,0.0205850005149841,-0.368021070957184,0.752434194087982,-0.00740197394043207,0.658625841140747,0.768078505992889,0.0392894595861435,0.639149308204651,0.679960668087006,0.729515671730042,0.0738944411277771,0.998783230781555,0.0252608694136143,-0.0423561669886112,0.998635828495026,0.0304510686546564,-0.0424191765487194,0.998835921287537,-0.0242512114346027,-0.0416981801390648,0.999683082103729,-0.0237461645156145,-0.00835694093257189,0.999475479125977,-0.031281590461731,-0.00837992131710052,0.999679803848267,0.0239373426884413,-0.00820061750710011,0.993710279464722,-0.104775369167328,-0.0395219177007675,0.998879790306091,0.0219450443983078,0.0419237278401852,0.999470233917236,-0.0316577143967152,0.00754961743950844,0.998556077480316,0.0216523855924606,0.0491630584001541,0.998750388622284,0.00863935891538858,0.0492240935564041,0.998261392116547,0.0326012708246708,0.0491052307188511,0.99951845407486,0.00739565072581172,-0.0301353894174099,0.999256253242493,0.0247680637985468,-0.0295550879091024,0.99953818321228,-0.000239271816099063,-0.0303875207901001,-0.317561954259872,-0.166474089026451,0.933510005474091,-0.225263267755508,-0.159121334552765,0.961216330528259,-0.315088987350464,-0.166294544935226,0.934379577636719,-0.225350379943848,-0.158907249569893,0.961231350898743,-0.317472517490387,-0.167909607291222,0.933283269405365,-0.0782578662037849,-0.14199535548687,0.986768960952759,-0.234788820147514,-0.135478988289833,0.962558925151825,-0.107437521219254,0.117913030087948,0.987194895744324,-0.229373604059219,-0.124116569757462,0.965392589569092,
- -0.0194722190499306,-0.0976451337337494,0.995030879974365,-0.231212973594666,-0.14440929889679,0.962126135826111,-0.0802769288420677,-0.111535377800465,0.990512728691101,-0.0803435668349266,-0.110508404672146,0.990622520446777,0.311993151903152,-0.0181043837219477,0.949911952018738,-0.0196507070213556,-0.0972156673669815,0.995069324970245,0.511595606803894,0.00783750414848328,0.859190583229065,0.309792965650558,-0.0137313660234213,0.95070493221283,-0.0841005593538284,-0.0500731654465199,0.995198369026184,0.541743457317352,-0.0793372765183449,0.836791217327118,0.535066545009613,-0.0958968549966812,0.839349627494812,0.437284827232361,-0.299248456954956,0.848075747489929,-0.081754744052887,-0.0884087756276131,0.99272358417511,0.425880193710327,0.102371543645859,0.89896959066391,0.46660840511322,0.118561148643494,0.876481533050537,0.54936546087265,0.0956779345870018,0.830086410045624,0.478890717029572,0.0901045426726341,0.873238265514374,0.424986839294434,0.0856131836771965,0.901141822338104
- }
- BinormalsW: *628 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *1884 {
- a: 0.999984502792358,0.00557687506079674,-0,1,-2.16845660361287e-006,0.000149419531226158,1,-2.23416554945288e-006,-0,1,-2.19410139834508e-006,-0,0.999999761581421,0.000344914558809251,-0.000637595425359905,0.99999988079071,0.000154348454088904,-0.000637619697954506,0.999999761581421,2.69461070274701e-005,-0.000637635937891901,0.999999940395355,0.000110326625872403,0.000433113396866247,1,2.81028933386551e-005,1.84220414212177e-006,0.999999821186066,-1.19590424674243e-006,-0.000637639372143894,0.99999988079071,2.20370147872018e-005,-0.00063763651996851,0.999902844429016,0.0139460489153862,-0,1,-2.18820150621468e-006,-0,0.999984502792358,0.00557687506079674,-0,0.999610960483551,0.027891144156456,-0,0,-1.63578224601224e-005,1,0,-0.00174361595418304,0.999998569488525,0,-0.000726090394891799,0.999999761581421,0,0.00201869360171258,0.999997973442078,0,-0.000489512283820659,0.999999940395355,1,2.81028933386551e-005,1.84220414212177e-006,0.999999940395355,0.000110326625872403,0.000433113396866247,1,-2.16845660361287e-006,0.000149419531226158,1,-2.11350766221585e-006,0.000215113672311418,-0.999773800373077,-0.0123407300561666,0.0173220839351416,-0.999940872192383,-0.00648531364277005,0.00874016340821981,-0.99999988079071,-0.000629195536021143,0.000157295929966494,-0.999940872192383,-0.00648531317710876,0.00874016433954239,-0,0.0250570196658373,-0.999686002731323,0,-9.93880894384347e-006,-1,0,-0.0250759199261665,-0.999685525894165,0,-0.00836656335741282,-0.999964952468872,0,-1.11115796244121e-005,-1,0,0.00834558252245188,-0.999965190887451,-0.0143129732459784,-0.502615869045258,-0.864391386508942,-0.0143129723146558,-0.502615809440613,-0.864391386508942,-0.0143129732459784,-0.502615869045258,-0.864391386508942,-0.0143129723146558,-0.502615809440613,-0.864391386508942,-1,-1.43643589467501e-007,1.67277969254087e-009,-1,-3.70473742350441e-007,-0.000149415616760962,-0.999997317790985,-0.00231449026614428,5.60213486711092e-010,-1,1.26208618667079e-007,1.67277947049627e-009,1,-2.11350766221585e-006,0.000215113672311418,
- 1,-2.16845660361287e-006,0.000149419531226158,0.999984502792358,0.00557687506079674,-0,1,-2.18820150621468e-006,-0,0.999992311000824,-2.26791075874644e-006,-0.00394722633063793,0.999992311000824,-2.20030779018998e-006,-0.00394731666892767,0.999992311000824,-2.26791075874644e-006,-0.00394722633063793,0.999992311000824,-2.3358895759884e-006,-0.00394713599234819,0,-4.96840038977098e-006,1,0,-5.98312635702314e-006,1,0,-6.92993762640981e-006,1,0,-8.82352651387919e-006,1,0,-5.91520029047388e-006,1,0,-2.93891594083107e-006,1,-0.999992191791534,-1.68238649678187e-008,-0.00394989037886262,-0.999992191791534,1.18942629967478e-007,-0.00394971016794443,-0.999992191791534,-1.68238649678187e-008,-0.00394989037886262,-0.999992191791534,-1.52217964455303e-007,-0.00395007105544209,-0.999998509883881,0.00177971692755818,0,-0.999975919723511,-0.00694323563948274,0,-0.999847829341888,-0.0174453388899565,0,-0.999997317790985,-0.00231449026614428,5.60213486711092e-010,-0.999998509883881,0.00177971692755818,0,-0.999997317790985,-0.00231449026614428,5.60213486711092e-010,-1,-3.70473742350441e-007,-0.000149415616760962,-1,-2.23407411681364e-007,-0.000215112770092674,-1,-3.70473742350441e-007,-0.000149415616760962,-0.999994397163391,0.00331942574121058,-0.000329476373735815,-0.99999725818634,0.00236620008945465,4.92144863528665e-006,-1,-2.23407411681364e-007,-0.000215112770092674,-0.999999761581421,9.3257546041059e-007,0.00070152833359316,-0.99999725818634,0.00236620008945465,4.92144863528665e-006,-0.999994397163391,0.00331942574121058,-0.000329476373735815,-0.999995410442352,0.00296923378482461,0.000702044635545462,-0.999988257884979,0.00479492358863354,0.0007023592479527,-0.999999046325684,0.00120698183309287,0.000701738870702684,-0.999999284744263,-0.000958276854362339,0.000701360171660781,-1,0,4.59428939336703e-008,-1,0,0,-1,0,0,-1,0,4.59428939336703e-008,-1,2.97102795037081e-017,-8.64238529629802e-008,-1,0,4.59428939336703e-008,-1,0,4.59428939336703e-008,-1,1.39163046458574e-017,-4.04809625820235e-008,-1,7.00304099154891e-007,-2.27793088924955e-006,
- -1,2.97102795037081e-017,-8.64238529629802e-008,-1,1.39163046458574e-017,-4.04809625820235e-008,-1,6.99953147886845e-007,5.54327584723069e-007,-1,7.00304099154891e-007,-2.27793088924955e-006,-1,6.99953147886845e-007,5.54327584723069e-007,-1,1.48254196119524e-006,-4.84159136249218e-006,-1,1.48254162013473e-006,-5.51698849449167e-006,-1,1.48254287068994e-006,5.71459679576947e-007,0.0143119757995009,0.50258082151413,-0.864411771297455,0.0143119767308235,0.50258082151413,-0.864411771297455,0.0143119757995009,0.50258082151413,-0.864411771297455,0.0143119767308235,0.50258082151413,-0.864411771297455,-0.99999988079071,0.000629993272013962,0.00015607153181918,-0.99994683265686,-0.00546653009951115,-0.00875617749989033,-0.99977707862854,-0.0115624144673347,-0.0176674034446478,-0.99994683265686,-0.00546653056517243,-0.00875617749989033,-0.0387330204248428,0.0705857798457146,-0.996753454208374,-0.0245492048561573,0.121434032917023,-0.992295801639557,-0.275969535112381,-0.290671288967133,-0.916161000728607,-0.102438114583492,0.0209596808999777,-0.994518578052521,-0.206635773181915,0.00380492303520441,-0.978410542011261,-0.329963535070419,-0.0927404314279556,-0.939427018165588,-0.256194561719894,-0.0943359285593033,-0.962010979652405,-0.138197556138039,0.0552015863358974,-0.988865196704865,-0.290824830532074,0.0370063968002796,-0.956060409545898,-0.476605892181396,0.0175322592258453,-0.878942251205444,-0.430260211229324,-0.0103988945484161,-0.902644991874695,-0.430260211229324,-0.0103988945484161,-0.902644991874695,-0.329963535070419,-0.0927404314279556,-0.939427018165588,-0.206635773181915,0.00380492303520441,-0.978410542011261,-0.138197556138039,0.0552015863358974,-0.988865196704865,0.18777871131897,0.441684395074844,-0.877299249172211,-0.0245492048561573,0.121434032917023,-0.992295801639557,-0.0387330204248428,0.0705857798457146,-0.996753454208374,0.0417739972472191,0.113634087145329,-0.992644011974335,-0.206635773181915,0.00380492303520441,-0.978410542011261,-0.102438114583492,0.0209596808999777,-0.994518578052521,0.024716429412365,0.0976729840040207,-0.99491161108017,
- 0.238618522882462,0.121802546083927,-0.963444471359253,-0.206635773181915,0.00380492303520441,-0.978410542011261,0.0417739972472191,0.113634087145329,-0.992644011974335,0.161624878644943,0.11129591614008,-0.98055624961853,-0.290824830532074,0.0370063968002796,-0.956060409545898,-0.138197556138039,0.0552015863358974,-0.988865196704865,0.238618522882462,0.121802546083927,-0.963444471359253,-0.138197556138039,0.0552015863358974,-0.988865196704865,-0.206635773181915,0.00380492303520441,-0.978410542011261,0.161624878644943,0.11129591614008,-0.98055624961853,-0.138197556138039,0.0552015863358974,-0.988865196704865,0.238618522882462,0.121802546083927,-0.963444471359253,0.122539721429348,0.232486993074417,-0.964849174022675,-0.113056920468807,0.0198474060744047,-0.993390262126923,-0.0245492048561573,0.121434032917023,-0.992295801639557,0.18777871131897,0.441684395074844,-0.877299249172211,-0.275969535112381,-0.290671288967133,-0.916161000728607,-0.0245492048561573,0.121434032917023,-0.992295801639557,-0.113056920468807,0.0198474060744047,-0.993390262126923,-0.304890245199203,-0.168766006827354,-0.937315404415131,0.024716429412365,0.0976729840040207,-0.99491161108017,-0.102438114583492,0.0209596808999777,-0.994518578052521,-0.113056920468807,0.0198474060744047,-0.993390262126923,0.122539721429348,0.232486993074417,-0.964849174022675,-0.304890245199203,-0.168766006827354,-0.937315404415131,-0.113056920468807,0.0198474060744047,-0.993390262126923,-0.102438114583492,0.0209596808999777,-0.994518578052521,-0.256194561719894,-0.0943359285593033,-0.962010979652405,0.0702432915568352,0.884532332420349,0.461159884929657,0.0919979438185692,0.882914543151855,0.46043273806572,-0.0957308113574982,0.885436177253723,0.454795122146606,0.0918564274907112,0.892814636230469,0.44095852971077,-0.98498398065567,0.161829054355621,-0.0601506754755974,-0.863897979259491,0.380802303552628,-0.329651147127151,-0.998340368270874,-0.0321389585733414,-0.0477889664471149,-0.993834316730499,0.101651079952717,0.0442768037319183,-0.995469570159912,-0.0739608332514763,-0.0597523711621761,
- -0.993860900402069,0.10054711997509,0.0461628064513206,-0.998372912406921,-0.0335328318178654,-0.046122569590807,-0.997382760047913,0.0622729547321796,0.0367386639118195,-0.997431814670563,0.0596496351063252,0.0396449416875839,-0.998421788215637,-0.0361893177032471,-0.0429455675184727,-0.999685406684875,0.0250816065818071,2.95772042591125e-005,-0.999546825885773,0.0300590321421623,0.00167615222744644,-0.999294579029083,0.00981204770505428,0.0362503714859486,-0.997463405132294,0.0572394318878651,0.0423136837780476,-0.998391330242157,-0.03443269059062,-0.0450465455651283,-0.999805212020874,0.00126103742513806,0.0196970142424107,-0.999865353107452,0.0161538440734148,-0.00292323646135628,-0.999927401542664,0.0111453514546156,-0.00457944953814149,-0.999837577342987,-0.00134185631759465,0.0179787315428257,-0.999685406684875,-0.00685155484825373,0.0241280626505613,-0.680076837539673,0.605814337730408,0.412897884845734,-0.621020376682281,0.475494474172592,-0.623088002204895,-0.706524789333344,0.392552375793457,-0.588833928108215,-0.999804079532623,0.0013402656186372,0.0197493135929108,-0.99920654296875,0.0364516377449036,0.0160493329167366,-0.999654173851013,-0.0043732076883316,0.0259317755699158,-0.999874651432037,-0.0131344143301249,-0.00885370094329119,-0.999563217163086,0.000595628982409835,0.0295472089201212,-0.99921452999115,0.031857080757618,0.0235682986676693,-0.243218377232552,-0.0305617265403271,-0.969489991664886,-0.149680867791176,-0.801358938217163,-0.579154133796692,-0.90743100643158,0.250740319490433,-0.337191671133041,-0.999685406684875,0.0229818634688854,0.0100450310856104,-0.999874770641327,-0.0130165666341782,-0.00900138542056084,-0.999216973781586,0.0322489179670811,0.0229273028671741,-0.999831259250641,-0.0064760148525238,-0.0171966701745987,-0.999720811843872,0.0236269477754831,-0.000182436080649495,-0.999504566192627,-0.0314735472202301,0.000292502925731242,0.112787485122681,0.890747249126434,-0.440282076597214,0.0702525153756142,0.894342541694641,-0.441832572221756,-0.0950041189789772,0.895731687545776,-0.434325903654099,
- -0.885299801826477,0.358999758958817,0.295573085546494,-0.98562890291214,0.158647775650024,0.0580216273665428,0.113350830972195,0.868598878383636,-0.482377022504807,-0.994649112224579,0.0938017144799232,-0.0432964786887169,-0.998322308063507,-0.0314410366117954,0.048623189330101,-0.996139287948608,-0.0630572885274887,0.0610777102410793,-0.998342096805573,-0.0322116538882256,0.0477020554244518,-0.994662642478943,0.0932849198579788,-0.0440929308533669,-0.997345328330994,0.0634030476212502,-0.0358095839619637,-0.998314797878265,-0.0311665460467339,0.0489512532949448,-0.997301936149597,0.065044954419136,-0.0340294875204563,-0.999287664890289,0.0375108867883682,-0.00414171721786261,-0.999364137649536,0.00780451903119683,-0.0347906053066254,-0.999614953994751,0.0277330987155437,-0.000906685891095549,-0.997462630271912,0.0566186681389809,-0.0431584566831589,-0.999279618263245,0.0201488360762596,-0.0321601703763008,-0.998314797878265,-0.0311665460467339,0.0489512532949448,-0.999287664890289,0.0375108867883682,-0.00414171721786261,-0.999657034873962,-0.004572210367769,-0.0257869530469179,-0.999808430671692,0.00103079585824162,-0.0195450279861689,-0.999897181987762,0.0138673232868314,0.00367937423288822,-0.638804078102112,0.46545484662056,0.612602055072784,-0.733836352825165,0.560424745082855,-0.383937925100327,-0.712436258792877,0.389640927314758,0.583621859550476,-0.999211430549622,0.0359233655035496,-0.0169141441583633,-0.999791502952576,0.00217783474363387,-0.0203021876513958,-0.999641299247742,-0.00352629786357284,-0.0265480820089579,-0.999606490135193,-0.00151674950029701,-0.028010331094265,-0.999874174594879,-0.0113829979673028,0.0110485004261136,-0.999220669269562,0.0334877260029316,-0.0209004413336515,-0.180544719099998,-0.797606885433197,0.575523138046265,-0.371734440326691,-0.0336230024695396,0.927730023860931,-0.785221338272095,-0.395838350057602,-0.476171642541885,-0.999874770641327,-0.0116169070824981,0.0107553880661726,-0.999699532985687,0.023098286241293,-0.00820211879909039,-0.999220609664917,0.0334109328687191,-0.0210260935127735,
- -0.999715983867645,0.023745970800519,0.00207373173907399,-0.999799072742462,-0.00463726976886392,0.0195001065731049,-0.99950248003006,-0.0315131545066834,0.00138694443739951,-0.0050347070209682,0.0628462955355644,-0.998010516166687,-0.00661699566990137,-0.0468305386602879,-0.998880922794342,0.0168870743364096,-0.0772602930665016,-0.996867954730988,-0.00929148215800524,-0.0465330258011818,-0.998873651027679,-0.00663131615146995,0.0626816377043724,-0.998011648654938,0.0147081641480327,0.117623940110207,-0.992949306964874,0.000614878954365849,-0.99987518787384,0.0157880745828152,0.00415806658565998,-0.998887538909912,-0.0469720773398876,-0.0195283126085997,-0.996263742446899,-0.0841261073946953,0.00929827801883221,-0.998887181282043,-0.0462377443909645,0.00369857437908649,-0.999875009059906,0.0153720183297992,-0.000417260365793481,-0.999871373176575,0.0160394664853811,-0.00502984644845128,0.0628467947244644,-0.998010516166687,-0.00662223109975457,-0.0468299575150013,-0.998880922794342,0.0168956536799669,-0.0772586986422539,-0.996867895126343,-0.00929490104317665,-0.0465326420962811,-0.99887353181839,-0.00662832660600543,0.0626819506287575,-0.998011648654938,0.0147030940279365,0.117624796926975,-0.992949247360229,0.00125345517881215,-0.999876022338867,0.0157019309699535,0.00554355001077056,-0.998878836631775,-0.0470148660242558,-0.0245161689817905,-0.99476957321167,-0.0991586893796921,0.0117650581523776,-0.998873591423035,-0.0459694005548954,0.00440884660929441,-0.999873697757721,0.0152761675417423,0.00085048092296347,-0.999866724014282,0.0163052082061768,-0.00509049510583282,0.0628405511379242,-0.998010694980621,-0.00669134454801679,-0.0468222759664059,-0.998880922794342,0.0168394520878792,-0.0772691369056702,-0.996868073940277,-0.00942377652972937,-0.0465182960033417,-0.998872995376587,-0.00676221959292889,0.0626681223511696,-0.998011529445648,0.0145771643146873,0.117646038532257,-0.992948591709137,0.00116093747783452,-0.999875843524933,0.0157144106924534,0.00544512551277876,-0.998878598213196,-0.0470313914120197,-0.0246031172573566,-0.99476957321167,-0.0991374775767326,
- 0.0116257909685373,-0.998874127864838,-0.0459928251802921,0.00426424387842417,-0.9998739361763,0.0152956806123257,0.000714031863026321,-0.999867260456085,0.0162766072899103,-0.0138076124712825,0.87678337097168,0.480687290430069,-0.0564754158258438,0.875692307949066,0.479555547237396,0.092090018093586,0.873363971710205,0.478283435106277,0.0920328870415688,0.879766702651978,0.466412395238876,0.0836294963955879,0.878109693527222,0.471093952655792,-0.0139085045084357,0.883189976215363,0.468809396028519,0.091972753405571,0.884959638118744,-0.456494778394699,-0.0139898154884577,0.888353288173676,-0.458947420120239,0.0910430103540421,0.882416903972626,-0.461575120687485,-0.0141385896131396,0.897800385951996,-0.440175592899323,0.091827929019928,0.894454121589661,-0.43762931227684,-0.0561919994652271,0.896722257137299,-0.439012140035629,-0.0343277119100094,0.871923923492432,0.488436579704285,-0.0633520781993866,0.871075749397278,0.487045735120773,0.0701779797673225,0.870554208755493,0.487042546272278,0.0702435001730919,0.899569928646088,0.431091457605362,0.049631979316473,0.900465965270996,0.432085365056992,-0.0354616455733776,0.900725781917572,0.432938516139984,0.0702316388487816,0.903052449226379,-0.423749685287476,-0.0355993248522282,0.904222786426544,-0.425574690103531,0.0569117143750191,0.903473436832428,-0.424849182367325,-0.0343252830207348,0.871862173080444,-0.488546997308731,0.0701775699853897,0.870492339134216,-0.487153172492981,-0.0633521527051926,0.871013879776001,-0.487156361341476,0.0562557056546211,0.893059313297272,-0.446408271789551,0.066737562417984,0.89324164390564,-0.444595813751221,-0.0281689874827862,0.894365251064301,-0.446449667215347,0.066724494099617,0.893787026405334,-0.443500429391861,-0.0667204782366753,0.893953740596771,-0.443164855241776,-0.0281860511749983,0.894907057285309,-0.445361524820328,-0.0283670630306005,0.900654196739197,0.433609664440155,0.0665786117315292,0.899531424045563,0.431752800941467,0.0566492415964603,0.899306654930115,0.433633923530579,-0.063311442732811,0.884260952472687,0.462681502103806,
- 0.0669355690479279,0.884208559989929,0.462271451950073,-0.0278848558664322,0.88534414768219,0.4640993475914,-0.994737446308136,0.102424539625645,-0.00260948739014566,-0.986172258853912,-0.125636324286461,-0.108072958886623,-0.983421504497528,-0.179519891738892,0.0255877058953047,-0.986196160316467,-0.123577423393726,-0.110208630561829,-0.994584560394287,0.103426940739155,0.0102195851504803,-0.991997063159943,0.0856368392705917,0.0927799791097641,-0.986217796802521,-0.118644222617149,-0.115317158401012,-0.99201774597168,0.0904453620314598,0.0878659337759018,-0.992977440357208,-0.0439353846013546,-0.109843254089355,-0.992013871669769,0.0881913900375366,0.0901704281568527,-0.977095723152161,0.0691206380724907,0.20126186311245,-0.992980420589447,-0.0426164753735065,-0.110335439443588,-0.992052376270294,-0.0164406653493643,0.124746769666672,-0.992980420589447,-0.0426164753735065,-0.110335439443588,-0.977095723152161,0.0691206380724907,0.20126186311245,-0.992952227592468,-0.0341518856585026,-0.113488137722015,-0.992050528526306,-0.0149638261646032,0.124947376549244,-0.980414807796478,0.0318411439657211,-0.194352731108665,0.0473728701472282,0.00463101547211409,0.998866558074951,-0.0316932573914528,0.0067863529548049,0.999474585056305,0.0470601916313171,0.00825176481157541,0.998857975006104,-0.0347846820950508,0.111227758228779,0.993185997009277,0.0512275733053684,0.110054962337017,0.992604494094849,-0.0330408588051796,0.111712239682674,0.993191182613373,-0.0312611907720566,-0.0137478737160563,0.999416708946228,0.0465721376240253,-0.0156190562993288,0.998792827129364,-0.0161597952246666,-0.0131822321563959,0.999782502651215,-0.0312839858233929,0.00622451724484563,-0.999491155147552,0.0469574891030788,0.0074045485816896,-0.99886953830719,0.0472643561661243,0.00467229168862104,-0.998871505260468,0.0502733513712883,-0.106639429926872,-0.9930260181427,-0.0346712358295918,-0.107176475226879,-0.993635296821594,-0.0329917892813683,-0.107708729803562,-0.993634939193726,0.046724259853363,0.0147047005593777,-0.998799681663513,-0.0312680676579475,0.0133223235607147,-0.999422252178192,
- -0.0161448661237955,0.0127050122246146,-0.99978893995285,0.0473099425435066,0.00302157225087285,0.998875796794891,-0.0316184833645821,0.00439644092693925,0.999490439891815,0.0470959134399891,0.00602599140256643,0.998872220516205,-0.0348467789590359,0.11345324665308,0.992932081222534,0.0513069964945316,0.112391531467438,0.992338538169861,-0.0330682657659054,0.113966837525368,0.992934048175812,-0.0312604196369648,-0.0137955993413925,0.999416053295136,0.0465702265501022,-0.0156667847186327,0.998792171478271,-0.0161612872034311,-0.0132299149408937,0.999781847000122,-0.0313209556043148,0.00505627272650599,-0.999496698379517,0.0469938069581985,0.00626038433983922,-0.998875558376312,0.0472462885081768,0.00350798177532852,-0.998877108097076,0.0502790100872517,-0.106854140758514,-0.993002653121948,-0.0346768535673618,-0.107376500964165,-0.993613600730896,-0.0329943113029003,-0.107913069427013,-0.993612766265869,0.0467265173792839,0.0146342506632209,-0.99880051612854,-0.0312692001461983,0.0132521530613303,-0.999423146247864,-0.0161426644772291,0.0126346694305539,-0.999789893627167,0.0473099648952484,0.00302229402586818,0.998875677585602,-0.0316187888383865,0.00440614717081189,0.99949038028717,0.0470957905054092,0.00603375816717744,0.99887216091156,-0.034845981746912,0.113424450159073,0.992935478687286,0.0513061136007309,0.112365297973156,0.992341637611389,-0.0330679267644882,0.113938666880131,0.992937326431274,-0.031259760260582,-0.0138363800942898,0.999415516853333,0.0465687476098537,-0.0157038550823927,0.998791754245758,-0.0161624625325203,-0.0132675273343921,0.999781370162964,-0.0313216783106327,0.00503337429836392,-0.999496698379517,0.0469948016107082,0.00622903974726796,-0.998875737190247,0.0472458973526955,0.00348289567045867,-0.998877227306366,0.0502790175378323,-0.106854550540447,-0.993002593517303,-0.0346770547330379,-0.107383877038956,-0.993612706661224,-0.0329943709075451,-0.107918426394463,-0.993612110614777,0.0467238500714302,0.0147173935547471,-0.998799443244934,-0.0312679633498192,0.0133288102224469,-0.999422252178192,
- -0.016145259141922,0.0127175822854042,-0.999788761138916,-0.999466955661774,-0.0300799161195755,-0.0126907378435135,-0.995458126068115,0.0795665755867958,0.0522710606455803,-0.998408257961273,-0.0548445694148541,-0.0131532019004226,-0.999378621578217,-0.0151482988148928,-0.0318293087184429,-0.988545179367065,0.0933567360043526,0.118588261306286,-0.995457410812378,0.0904597118496895,0.0296923965215683,-0.988545179367065,0.0933567360043526,0.118588261306286,-0.999378621578217,-0.0151482988148928,-0.0318293087184429,-0.997439920902252,0.0712752118706703,0.00578466942533851,-0.988737523555756,0.0782340466976166,0.127583682537079,-0.997433722019196,0.0681423842906952,0.0219686105847359,-0.997440099716187,-0.07102070748806,-0.00832458212971687,-0.997460722923279,0.0689257308840752,0.0179314762353897,-0.996873438358307,-0.078417532145977,0.00970799569040537,-0.997467219829559,-0.0699610635638237,-0.0128273544833064,-0.996890902519226,-0.0784361734986305,0.0075153992511332,-0.997462451457977,0.0690066516399384,0.0175140351057053,-0.99386078119278,0.110428974032402,0.00679443217813969,-0.994673848152161,0.0849045962095261,-0.058439202606678,-0.999480128288269,-0.0292352586984634,0.0135999321937561,-0.998815596103668,-0.0471203364431858,0.012125737965107,-0.999392807483673,-0.0152115784585476,0.0313470028340817,-0.994658410549164,0.0960286110639572,-0.0378564298152924,-0.984593272209167,0.106187395751476,-0.138925775885582,-0.984593272209167,0.106187395751476,-0.138925775885582,-0.997449696063995,0.0710172280669212,-0.00712123699486256,-0.999392807483673,-0.0152115784585476,0.0313470028340817,-0.99743378162384,0.0681419596076012,-0.0219708401709795,-0.984784126281738,0.0911290720105171,-0.147971883416176,-0.997440099716187,-0.0710207745432854,0.00832430738955736,-0.996874153614044,-0.0784182250499725,-0.00962724816054106,-0.997461140155792,0.0689428970217705,-0.017842922359705,-0.997467577457428,-0.0699399709701538,0.0129169384017587,-0.997443556785584,0.0683751478791237,-0.0207697115838528,-0.996865808963776,-0.0784106627106667,-0.0105041032657027,
- -0.993835985660553,0.110426217317581,-0.0098039424046874,-0.9999840259552,0.00390443531796336,-0.00408190861344337,-0.999718010425568,0.0206064488738775,0.011809716001153,-0.99950098991394,-0.0251452773809433,-0.0191232338547707,-0.999508380889893,0.0310622341930866,-0.00426191138103604,-0.999704122543335,0.0168162193149328,-0.0175805911421776,-0.999593138694763,0.0269602574408054,-0.00931255519390106,-0.999681651592255,0.0241423603147268,-0.00733375828713179,-0.999830842018127,0.012717324309051,-0.0132953831925988,-0.990416169166565,0.108042508363724,-0.0860383957624435,-0.999903559684753,0.0138951502740383,-0.0001388708333252,-0.990478217601776,0.106481000781059,-0.0872635617852211,-0.999848186969757,0.0125203784555197,0.0121182650327683,-0.999857366085052,0.0168600790202618,-0.00100886845029891,-0.990099668502808,0.114863373339176,-0.0806789323687553,-0.997319459915161,0.0689777210354805,0.0244114696979523,-0.72052401304245,0.601864159107208,0.344390243291855,-0.93927937746048,0.159998893737793,0.303569793701172,-0.967988729476929,0.192156925797462,-0.161472916603088,-0.997347772121429,0.0680779963731766,0.0257456302642822,-0.996210515499115,-0.086974635720253,8.13340811873786e-005,-0.999855995178223,0.0169325172901154,-0.00122806569561362,-0.996218979358673,-0.0868183672428131,-0.00321587710641325,-0.997291803359985,0.0697885155677795,0.0232088919728994,-0.987444996833801,0.15796035528183,-0.000963763450272381,-0.980508327484131,0.193701699376106,-0.0329131223261356,-0.992017805576324,0.0899379476904869,0.0883848816156387,-0.995479166507721,-0.094957135617733,-0.00209439150057733,-0.995456457138062,-0.0951182022690773,-0.00437948573380709,-0.992015600204468,0.0916385352611542,0.0866452530026436,-0.977017641067505,-0.151739597320557,-0.14970526099205,-0.977020025253296,-0.15341728925705,-0.147969782352448,-0.992017805576324,0.0900062248110771,0.088315062224865,-0.992023885250092,-0.04591304063797,-0.117391593754292,-0.992004096508026,0.0864826515316963,0.0919162258505821,-0.982061743736267,0.065244622528553,0.176912114024162,
- -0.992025136947632,-0.0451288670301437,-0.117684155702591,-0.992046058177948,-0.0133500061929226,0.125166282057762,-0.992025136947632,-0.0451288670301437,-0.117684155702591,-0.982061743736267,0.065244622528553,0.176912114024162,-0.991996705532074,-0.0368617400527,-0.120762966573238,-0.992050588130951,-0.0149515774101019,0.124949060380459,-0.980414748191834,0.031854048371315,-0.194350734353065,-0.980507969856262,0.193698137998581,-0.0329419001936913,-0.992017805576324,0.0899319499731064,0.08839101344347,-0.995478928089142,-0.094959020614624,-0.00212103896774352,-0.995456576347351,-0.0951168686151505,-0.00436072330921888,-0.992015659809113,0.0916175842285156,0.0866666883230209,-0.97701770067215,-0.151760652661324,-0.149683490395546,-0.977019965648651,-0.1534383893013,-0.147947952151299,-0.992017805576324,0.0899852737784386,0.0883364826440811,-0.992023766040802,-0.0459390804171562,-0.117381863296032,-0.992004156112671,0.0864852219820023,0.0919135957956314,-0.982061743736267,0.0652569904923439,0.17690746486187,-0.992025136947632,-0.0451165325939655,-0.1176887601614,-0.992045879364014,-0.0133294928818941,0.125169053673744,-0.992025136947632,-0.0451165325939655,-0.1176887601614,-0.982061743736267,0.0652569904923439,0.17690746486187,-0.991996288299561,-0.0368092693388462,-0.120782479643822,-0.992050409317017,-0.0148962792009115,0.124956548213959,-0.980414688587189,0.0319093391299248,-0.19434218108654,-0.0862859413027763,-0.996210336685181,0.0109495017677546,0.0234218016266823,-0.999651312828064,0.0121925603598356,-0.0625114813446999,-0.997981250286102,0.0112230032682419,0.0234496481716633,-0.999670386314392,0.0104528414085507,-0.0862866714596748,-0.99621856212616,0.0101564545184374,0.0707608237862587,-0.99744713306427,0.00960094109177589,0.0553429052233696,-0.998436152935028,0.00789917539805174,0.0707598701119423,-0.997448444366455,0.00946783181279898,-0.0862867906689644,-0.996219992637634,0.0100247757509351,-0.0628840550780296,-0.998020708560944,0.000527501862961799,0.0548838935792446,-0.998485505580902,-0.00382888130843639,
- -0.0862910896539688,-0.996269762516022,0.000657047785352916,-0.993837654590607,0.107284061610699,-0.0278713386505842,-0.996208846569061,-0.0846592634916306,0.0200238525867462,-0.987432718276978,0.157989233732224,-0.00400846730917692,-0.996205508708954,-0.0863375440239906,0.0109741641208529,-0.993910670280457,0.102492325007916,-0.0404590591788292,-0.998864591121674,-0.0314328372478485,0.035798441618681,-0.99870228767395,-0.0479873530566692,0.0170644801110029,-0.993789076805115,0.0973447859287262,-0.0539192408323288,-0.999450325965881,-0.0240643918514252,-0.0228030160069466,-0.999034106731415,0.0122006451711059,-0.0422158539295197,-0.993377804756165,0.114569619297981,-0.00862392410635948,-0.998993456363678,0.025678489357233,0.0367784164845943,-0.998293161392212,0.0285495743155479,-0.0509477443993092,-0.999888718128204,0.00341811683028936,0.0145279904827476,-0.999863743782043,-0.0096651017665863,0.0133896293118596,-0.996099233627319,0.082010455429554,-0.0325667597353458,-0.999735474586487,-0.00278760562650859,0.0228313002735376,-0.999796450138092,0.00758645962923765,0.0186953078955412,-0.999443709850311,-0.0215138550847769,0.0254882946610451,-0.996150732040405,0.0800662562251091,-0.0356801375746727,-0.999786972999573,0.00794295500963926,0.0190516971051693,0.0881996154785156,0.167479395866394,-0.981922328472137,0.209438234567642,0.182061165571213,-0.960723459720612,0.384302735328674,0.140744984149933,-0.912415623664856,-0.175327733159065,-0.0725088343024254,-0.981836378574371,0.191011264920235,0.00800446234643459,-0.981555223464966,0.0937358736991882,0.0325176864862442,-0.995065927505493,-0.172375366091728,-0.0780529826879501,-0.981934070587158,0.187545537948608,0.0844887718558311,-0.978615522384644,0.193057298660278,0.0248863603919744,-0.980871856212616,0.349346667528152,0.0544150918722153,-0.935412168502808,0.195493072271347,0.0456052720546722,-0.979644119739532,0.204915940761566,0.0284465048462152,-0.978366136550903,0.190426737070084,0.00326334522105753,-0.981696009635925,0.351146578788757,0.0411509647965431,-0.935415804386139,
- 0.200218290090561,-0.00279378634877503,-0.979747354984283,0.0319845117628574,-0.0128821888938546,0.999405443668365,-0.000585325818974525,-0.0123893907293677,0.999923169612885,-0.00705454219132662,-0.0148483142256737,0.999864876270294,0.000166325800819322,0.00352057022973895,0.999993801116943,0.0313724540174007,0.00274295965209603,0.999504089355469,0.0315630324184895,0.00210134545341134,0.999499559402466,0.977557778358459,-0.00165875221136957,-0.210661455988884,0.977259278297424,0.00333893136121333,-0.212022125720978,0.977455675601959,4.4200763299963e-017,-0.211140781641006,0.999980449676514,-9.8443531896919e-005,0.00625116843730211,0.999969184398651,6.18337435298599e-005,0.00785295758396387,0.999685883522034,-0.023476479575038,0.0087724793702364,-0.999719798564911,0.0236369110643864,0.00136408465914428,-0.999875247478485,-0.015773331746459,0.000865665439050645,-0.999998986721039,-2.34083981922595e-005,0.00148643366992474,-0.999871253967285,-0.0156309362500906,-0.00365344295278192,-0.999992251396179,0.00392911862581968,-0.000247503427090123,-0.999995291233063,4.8829686420504e-005,-0.00310068484395742,-0.999716639518738,0.0235619451850653,-0.00339144305326045,-0.999221861362457,-0.0393880642950535,-0.00205810717307031,-0.999870955944061,-0.0156289078295231,-0.00371765904128551,-0.999980330467224,0.00626250309869647,-0.000394488510210067,-0.999874532222748,-0.0157889034599066,0.00136040057986975,-0.999202787876129,0.00209681573323905,-0.0398672446608543,-0.771559596061707,0.0078843804076314,-0.636108219623566,-0.75737726688385,-0.0452056340873241,-0.65141087770462,-0.749610841274261,-0.660762369632721,0.0384274534881115,-0.999987483024597,0.00499307876452804,-0.000314524630084634,-0.99920928478241,0.00094044953584671,-0.0397481955587864,-0.999956846237183,0.00419603567570448,0.0083024874329567,-0.999222278594971,-0.0393857583403587,-0.00195992318913341,-0.999716937541962,0.0235635098069906,-0.00329245114699006,-0.999961376190186,0.0047184587456286,-0.00741192977875471,-0.999930143356323,0.00962341483682394,-0.00686668558046222,
- -0.999698460102081,0.0235028974711895,-0.00711366627365351,-0.99995630979538,0.00934083666652441,0.000367749715223908,-0.581058025360107,-0.808365345001221,-0.0944302678108215,-0.0687884986400604,-0.516701757907867,0.853397607803345,-0.387850254774094,0.00650275545194745,0.921699464321136,-0.999930143356323,0.00962341483682394,-0.00686668558046222,-0.99995630979538,0.00934083666652441,0.000367749715223908,-0.999822795391083,0.00869332253932953,-0.0166981387883425,-0.123837947845459,0.0992010086774826,0.987331509590149,-0.98250138759613,0.185812175273895,0.0128479553386569,-0.998834908008575,-0.00728400843217969,0.047705240547657,-0.998819172382355,0.0153247900307179,0.0461022965610027,-0.999911189079285,0.0115479435771704,-0.00665269885212183,-0.999801337718964,0.0105988318100572,-0.0168792754411697,-0.999866425991058,0.0059463051147759,-0.0152308931574225,-0.999958157539368,0.00390250352211297,0.00827687233686447,-0.999208688735962,0.00106155534740537,-0.0397606641054153,-0.959286093711853,-0.279684215784073,-0.0393314175307751,-0.999210715293884,-0.00876568537205458,-0.0387467704713345,-0.536173522472382,-0.000627515953965485,-0.844107568264008,-0.999965667724609,0.0017891472671181,0.00809243135154247,-0.999873876571655,0.00382888177409768,-0.0154144093394279,-0.999499142169952,-0.0313836745917797,0.00409001717343926,-0.999720871448517,0.0236238110810518,0.000530592689756304,-0.999504327774048,-0.0314414650201797,0.00165048521012068,-0.999876797199249,0.00205118302255869,-0.0155684296041727,-0.999721169471741,-0.0236130394041538,-6.14767559454776e-005,-0.999504327774048,-0.0314414650201797,0.00165048521012068,-0.999720871448517,0.0236238110810518,0.000530592689756304,-0.99971216917038,0.0235425196588039,-0.00461823400110006,-0.999494969844818,0.0315670669078827,-0.00367920845746994,-0.999711573123932,-0.0234019663184881,-0.00541697023436427,-0.998864054679871,0.0107123991474509,0.0464312806725502,-0.999718070030212,-0.0234734583646059,-0.00360502558760345,-0.999501347541809,0.0315233878791332,-0.00182164728175849,
- 0.979118406772614,0.0310385152697563,-0.200907245278358,0.979824006557465,0.00456852559000254,-0.199810028076172,0.979476094245911,0.0261285398155451,-0.199859797954559,0.995018303394318,0.00939772091805935,0.099248580634594,0.995742082595825,0.0199784245342016,0.0899930894374847,0.995175719261169,0.000772491737734526,0.0981066450476646,0.319999098777771,0.121815092861652,-0.93955397605896,0.187852099537849,0.247726052999496,-0.950443804264069,0.317672073841095,0.12982277572155,-0.93927127122879,0.232653319835663,0.140820145606995,-0.96231085062027,0.316639512777328,0.180781990289688,-0.931159138679504,0.0761571675539017,0.172429159283638,-0.982073426246643,0.231088951230049,0.144717708230019,-0.962109506130219,0.0330028980970383,0.0650007501244545,-0.997339308261871,0.222118616104126,0.141588374972343,-0.964684545993805,0.0330028980970383,0.0650007501244545,-0.997339308261871,0.231088951230049,0.144717708230019,-0.962109506130219,0.0792170986533165,0.127679973840714,-0.988646805286407,0.0853112936019897,0.0294141583144665,-0.995920181274414,-0.285403966903687,-0.0337894558906555,-0.957811594009399,0.0164975393563509,0.104797594249249,-0.994356751441956,-0.495196342468262,-0.0503896698355675,-0.867318570613861,-0.318944096565247,0.0320185944437981,-0.94723254442215,0.083185225725174,0.0652841106057167,-0.994393408298492,-0.484836459159851,-0.0758940801024437,-0.871305763721466,-0.455824732780457,-0.0662128254771233,-0.887603342533112,-0.312327414751053,0.0187701862305403,-0.949789047241211,0.0814761817455292,0.0928252637386322,-0.992343246936798,-0.407760202884674,0.0951972082257271,-0.908112943172455,-0.492799758911133,-0.0563778132200241,-0.868314445018768,-0.548868119716644,-0.0711778253316879,-0.832873165607452,-0.483633458614349,-0.078793540596962,-0.871716976165771,-0.424881935119629,-0.0837814435362816,-0.901363432407379
- }
- TangentsW: *628 {
- 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
- }
- }
- LayerElementTangent: 1 {
- Version: 102
- Name: "uvSet"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *1884 {
- a: 2.34383401220839e-006,1,0,2.33383093473094e-006,1,0.000103692829725333,1.82559142558603e-006,1,0,1.32264517560543e-006,1,0,-0.000523855211213231,0.99999988079071,0.000126859813462943,-0.000436712696682662,1,0.000126804268802516,-0.000139256357215345,1,0.000126614613691345,-1.97999161173357e-005,0.99999988079071,0.000404964492190629,6.38788260403089e-005,1,0.000292826734948903,0.00032167139579542,0.999999940395355,0.000126320708659478,-0.00013913368456997,1,0.000126614526379853,2.74876401817892e-006,1,0,2.45696401179885e-006,1,0,2.34383401220839e-006,1,0,2.94624669550103e-006,1,0,0,1,-9.7140309662791e-007,0,1,-1.33474641188513e-005,0,1,-1.32077238959027e-005,0,1,-6.9192128648865e-007,0,1,-9.12895029614447e-006,6.38788260403089e-005,1,0.000292826734948903,-1.97999161173357e-005,0.99999988079071,0.000404964492190629,2.33383093473094e-006,1,0.000103692829725333,2.22115613723872e-006,1,0.000149282612255774,-0.999773859977722,-0.0123417740687728,0.0173236131668091,-0.999940752983093,-0.00648567359894514,0.00874069053679705,-0.99999988079071,-0.000628874986432493,0.000156826092279516,-0.999940752983093,-0.00648567313328385,0.00874069053679705,-0,-0.0250603090971708,0.999685943126678,-0,9.43099530559266e-006,1,-0,0.0250769499689341,0.999685525894165,0,0.00836740247905254,0.999964952468872,0,1.18616089821444e-005,1,0,-0.00834618415683508,0.999965190887451,-0.999594807624817,0.028464674949646,-1.13618000341376e-006,-0.999594807624817,0.0284650027751923,-5.67154245345591e-007,-0.999594807624817,0.028465336188674,-7.64991206231996e-013,-0.999594807624817,0.0284650027751923,-5.67154245345591e-007,-3.58125271304743e-006,1,5.99064687220314e-015,-2.04431103156821e-007,1,0.000103661659522913,-3.99643852233567e-007,1,2.23886504538615e-016,-3.1542472243018e-006,1,5.27636008140959e-015,2.22115613723872e-006,1,0.000149282612255774,2.33383093473094e-006,1,0.000103692829725333,2.34383401220839e-006,1,0,2.45696401179885e-006,1,0,2.44224315792962e-006,0.600337386131287,-0.799746990203857,2.17079650610685e-006,0.600337266921997,-0.799746930599213,
- 2.44224315792962e-006,0.600337386131287,-0.799746990203857,2.71346334557165e-006,0.600337266921997,-0.799746930599213,0,7.00509372109082e-006,-1,0,8.34753700473811e-006,-1,0,9.02566080185352e-006,-1,0,1.03818283605506e-005,-1,0,7.68319114285987e-006,-1,0,4.32012802775716e-006,-1,3.13349255520734e-006,0.600373089313507,0.799720048904419,2.17993442674924e-006,0.600373148918152,0.799719989299774,3.13349255520734e-006,0.600373089313507,0.799720048904419,4.08722053180099e-006,0.600373148918152,0.799719989299774,1.17857689474477e-006,1,0,9.30469184368121e-007,1,0,6.86774797031831e-007,1,0,-3.99643852233567e-007,1,2.23886504538615e-016,1.17857689474477e-006,1,0,-3.99643852233567e-007,1,2.23886504538615e-016,-2.04431103156821e-007,1,0.000103661659522913,1.72818727151025e-006,1,0.000149240979226306,-2.04431103156821e-007,1,0.000103661659522913,0.00189986685290933,0.999998092651367,0.000395168230170384,0.00243611773476005,0.999997019767761,0.00032329693203792,1.72818727151025e-006,1,0.000149240979226306,-1.26951426864252e-005,1,0.00017500706599094,0.00243611773476005,0.999997019767761,0.00032329693203792,0.00189986685290933,0.999998092651367,0.000395168230170384,0.0204439964145422,0.999791026115417,0.000160619543748908,0.0728959813714027,0.99733954668045,0.000123393925605342,0.0360162369906902,0.999351143836975,0.000149618164869025,0.0010446262313053,0.999999403953552,0.000174265223904513,1.18534080684185e-006,0,-1,7.12341261532856e-007,0,-1,-0,0,-1,9.53358153310546e-007,0,-1,1.56085661728866e-007,3.43774064770486e-010,-1,1.18534080684185e-006,0,-1,9.53358153310546e-007,0,-1,9.42429210226692e-007,3.43774064770486e-010,-1,-1.62570131578832e-006,-9.98512064143142e-008,-1,1.56085661728866e-007,3.43774064770486e-010,-1,9.42429210226692e-007,3.43774064770486e-010,-1,-3.86984623901299e-007,-9.98014968445204e-008,-1,-1.62570131578832e-006,-9.98512064143142e-008,-1,-3.86984623901299e-007,-9.98014968445204e-008,-1,-2.78958782473637e-006,-2.12489297268803e-007,-1,-2.32295360547141e-006,-2.12489993600684e-007,-1,5.49248580644646e-012,-2.12493404205816e-007,-1,
- -0.999594807624817,0.0284646656364203,1.13099758891622e-006,-0.999594807624817,0.0284653250128031,-6.30984686722513e-009,-0.999594748020172,0.0284659881144762,-1.14157887765032e-006,-0.999594807624817,0.0284653250128031,-6.30984686722513e-009,-0.99999988079071,0.000629672664217651,0.00015560285828542,-0.99994683265686,-0.00546588888391852,-0.00875523965805769,-0.999777138233185,-0.0115608125925064,-0.0176650602370501,-0.99994683265686,-0.00546588934957981,-0.00875523965805769,-0.0387334935367107,0.0705863460898399,-0.996753334999084,-0.0245494395494461,0.121434263885021,-0.992295861244202,-0.275969952344894,-0.290670931339264,-0.916161000728607,-0.10243833065033,0.0209597777575254,-0.994518518447876,-0.206636160612106,0.00380623270757496,-0.978410482406616,-0.329963624477386,-0.0927401334047318,-0.939427077770233,-0.256194680929184,-0.0943358689546585,-0.962010979652405,-0.138197675347328,0.05520224198699,-0.988865077495575,-0.290824800729752,0.0370061844587326,-0.956060409545898,-0.47660568356514,0.0175307206809521,-0.878942370414734,-0.430260300636292,-0.0103987120091915,-0.90264505147934,-0.430260300636292,-0.0103987120091915,-0.90264505147934,-0.329963624477386,-0.0927401334047318,-0.939427077770233,-0.206636160612106,0.00380623270757496,-0.978410482406616,-0.138197675347328,0.05520224198699,-0.988865077495575,0.187778651714325,0.441684424877167,-0.877299249172211,-0.0245494395494461,0.121434263885021,-0.992295861244202,-0.0387334935367107,0.0705863460898399,-0.996753334999084,0.0417735241353512,0.113635241985321,-0.992643892765045,-0.206636160612106,0.00380623270757496,-0.978410482406616,-0.10243833065033,0.0209597777575254,-0.994518518447876,0.0247165318578482,0.0976729542016983,-0.99491161108017,0.23861825466156,0.121803499758244,-0.963444411754608,-0.206636160612106,0.00380623270757496,-0.978410482406616,0.0417735241353512,0.113635241985321,-0.992643892765045,0.161624893546104,0.111295774579048,-0.98055636882782,-0.290824800729752,0.0370061844587326,-0.956060409545898,-0.138197675347328,0.05520224198699,-0.988865077495575,
- 0.23861825466156,0.121803499758244,-0.963444411754608,-0.138197675347328,0.05520224198699,-0.988865077495575,-0.206636160612106,0.00380623270757496,-0.978410482406616,0.161624893546104,0.111295774579048,-0.98055636882782,-0.138197675347328,0.05520224198699,-0.988865077495575,0.23861825466156,0.121803499758244,-0.963444411754608,0.12254036962986,0.232486739754677,-0.964849174022675,-0.113057106733322,0.0198474451899529,-0.993390262126923,-0.0245494395494461,0.121434263885021,-0.992295861244202,0.187778651714325,0.441684424877167,-0.877299249172211,-0.275969952344894,-0.290670931339264,-0.916161000728607,-0.0245494395494461,0.121434263885021,-0.992295861244202,-0.113057106733322,0.0198474451899529,-0.993390262126923,-0.304891228675842,-0.168765515089035,-0.937315046787262,0.0247165318578482,0.0976729542016983,-0.99491161108017,-0.10243833065033,0.0209597777575254,-0.994518518447876,-0.113057106733322,0.0198474451899529,-0.993390262126923,0.12254036962986,0.232486739754677,-0.964849174022675,-0.304891228675842,-0.168765515089035,-0.937315046787262,-0.113057106733322,0.0198474451899529,-0.993390262126923,-0.10243833065033,0.0209597777575254,-0.994518518447876,-0.256194680929184,-0.0943358689546585,-0.962010979652405,-0.0125868655741215,-0.599830627441406,0.800028026103973,-0.00976956635713577,-0.602109253406525,0.798353970050812,-0.016168100759387,-0.584720313549042,0.811073839664459,-0.000794842140749097,-0.521840631961823,0.853042602539063,-0.00994797144085169,-0.505352973937988,0.862855494022369,-0.0254841186106205,-0.669145405292511,0.742694437503815,-0.0227554347366095,-0.641763389110565,0.766565024852753,-0.0189669877290726,-0.504424691200256,0.863247334957123,-0.0339782387018204,-0.514637410640717,0.85673451423645,-0.0914513021707535,-0.495445936918259,0.863811433315277,-0.0957568362355232,-0.642079293727875,0.760634481906891,-0.109863206744194,-0.660839200019836,0.742443025112152,-0.933067798614502,-0.187976062297821,0.306674867868423,-0.943073749542236,-0.250624448060989,0.218630433082581,-0.907633721828461,-0.396257638931274,-0.138495355844498,
- 0.22527588903904,-0.925612390041351,-0.304125756025314,0.226663678884506,-0.784203231334686,-0.577623665332794,0.643500864505768,-0.54636937379837,0.53608500957489,0.532203733921051,-0.519691824913025,0.668340921401978,0.239826843142509,-0.808024406433105,-0.538126051425934,0.238299265503883,-0.922697961330414,-0.303054690361023,0.360285431146622,-0.886584281921387,-0.290108144283295,0.361891031265259,-0.774750530719757,-0.518455862998962,0.362649500370026,-0.748307526111603,-0.555446803569794,0.257157772779465,-0.804162859916687,-0.535902976989746,0.423439085483551,-0.562465131282806,0.710163593292236,0.694844186306,-0.398154526948929,0.598886072635651,0.151927173137665,-0.823457479476929,-0.546658933162689,0.172087356448174,0.507857918739319,-0.844077169895172,0.151707097887993,-0.79693204164505,-0.584708750247955,0.313326060771942,0.596183359622955,-0.739183485507965,0.363716930150986,-0.747956335544586,-0.555221855640411,0.321635395288467,0.482855945825577,-0.81449419260025,0.0866182893514633,-0.0208000130951405,-0.996024429798126,0.304530620574951,-0.765757620334625,-0.566459536552429,0.0689858496189117,0.623096883296967,-0.77909642457962,-0.0870426371693611,0.0646766573190689,-0.994102895259857,-0.0599734038114548,0.621868491172791,-0.780821859836578,-0.0638206601142883,0.522536516189575,-0.85022497177124,-0.0685083046555519,0.621420383453369,-0.780476331710815,-0.0982471778988838,0.0648747086524963,-0.993045210838318,-0.0624604895710945,-0.0255354922264814,-0.997720718383789,0.00676748622208834,0.602911591529846,0.797779321670532,0.0124545162543654,0.598302364349365,0.801173627376556,0.0163549371063709,0.583196938037872,0.812166154384613,0.0200519319623709,0.677752375602722,0.735016763210297,0.00845362711697817,0.544796168804169,0.838526010513306,-0.00363501161336899,0.527993023395538,0.849240899085999,0.0184328425675631,0.543862521648407,0.838971853256226,0.0195082779973745,0.641669452190399,0.766733169555664,0.0258665401488543,0.561820864677429,0.826854407787323,0.0910622701048851,0.64216285943985,0.761140286922455,
- 0.090458057820797,0.535491645336151,0.839682221412659,0.104755885899067,0.669716477394104,0.735191166400909,0.960493981838226,0.215927809476852,0.17557467520237,0.951586365699768,0.153940945863724,0.266055643558502,0.918899178504944,0.372231125831604,-0.13064581155777,-0.213492795825005,0.786789238452911,-0.579123079776764,-0.21262489259243,0.928276836872101,-0.305111140012741,-0.618449509143829,0.564951360225677,0.546214401721954,-0.23009392619133,0.810072660446167,-0.539295017719269,-0.51860237121582,0.525673389434814,0.674328625202179,-0.228942409157753,0.924809515476227,-0.303830057382584,-0.362592756748199,0.748326182365417,-0.555458724498749,-0.361835718154907,0.774768948554993,-0.518466949462891,-0.360238522291183,0.886601388454437,-0.290114164352417,-0.422099173069,0.562924087047577,0.710597455501556,-0.248501136898994,0.806126117706299,-0.537036180496216,-0.705839931964874,0.392886251211166,0.589432239532471,-0.143668353557587,-0.511189222335815,-0.847375392913818,-0.123164676129818,0.827041149139404,-0.548482835292816,-0.124159395694733,0.800417304039001,-0.586444199085236,-0.404959052801132,0.733492374420166,-0.545891106128693,-0.355707108974457,-0.587317943572998,-0.727000713348389,-0.359310984611511,-0.474458575248718,-0.803607285022736,-0.340408354997635,0.755372047424316,-0.559942185878754,-0.0931357368826866,0.0205809529870749,-0.995440781116486,-0.0738978087902069,-0.62293803691864,-0.778772950172424,0.0584858506917953,-0.621941924095154,-0.780876219272614,0.0853273347020149,-0.0646456331014633,-0.994253575801849,0.062366459518671,-0.522535562515259,-0.850333511829376,0.0989191457629204,-0.0648863315582275,-0.992977738380432,0.0693048238754272,-0.621376216411591,-0.780441164970398,0.0633805319666862,0.0255630817264318,-0.997662007808685,-0.994739174842834,-0.102106317877769,-0.00827667769044638,-0.993894338607788,0.110063686966896,-0.00774931767955422,-0.983331382274628,-0.181433379650116,0.0118881678208709,-0.993893682956696,0.110313847661018,-0.0024943957105279,-0.994737327098846,-0.102385856211185,-0.00387097150087357,
- -0.986155807971954,0.164293378591537,0.0224594138562679,0.991022706031799,-0.00155456620268524,-0.133684739470482,0.989971876144409,-0.00654204888269305,0.141113042831421,0.977277994155884,0.0186536572873592,-0.211139649152756,0.989971458911896,-0.00764655461534858,0.141060382127762,0.991021811962128,-0.00364001444540918,-0.13365150988102,0.978721141815186,0.00177426356822252,0.205187097191811,-0.994733452796936,-0.101977586746216,-0.0102948313578963,-0.99388724565506,0.109966471791267,-0.00977423973381519,-0.983323931694031,-0.181596055626869,0.00985385291278362,-0.993896842002869,0.110129572451115,-0.00637161452323198,-0.994739890098572,-0.102140314877033,-0.00774232763797045,-0.986158192157745,0.164761260151863,0.0185948871076107,0.991022408008575,-0.00309274788014591,-0.133660271763802,0.986209511756897,-0.00971401762217283,0.16521692276001,0.971818685531616,0.0222688503563404,-0.234675347805023,0.986210584640503,-0.00882202107459307,0.165259927511215,0.991021871566772,-0.0035952846519649,-0.133652240037918,0.97872120141983,0.0018193933647126,0.205186381936073,-0.994669198989868,-0.101453073322773,-0.0184514746069908,-0.993817150592804,0.109569631516933,-0.0179444327950478,-0.983251869678497,-0.182244554162025,0.00164670497179031,-0.993875563144684,0.110496580600739,0.00138525629881769,-0.994719505310059,-0.102630823850632,1.62566648214124e-005,-0.986138343811035,0.163820281624794,0.0263458676636219,0.991013050079346,-0.00657130731269717,-0.133603796362877,0.986197292804718,-0.0132146747782826,0.165046840906143,0.971804141998291,0.0187645331025124,-0.235042169690132,0.986210644245148,-0.00877997372299433,0.165261954069138,0.991021811962128,-0.00355966319330037,-0.133652791380882,0.978721380233765,0.00185537384822965,0.20518584549427,-0.0138076124712825,0.87678337097168,0.480687290430069,-0.0564754158258438,0.875692307949066,0.479555547237396,0.092090018093586,0.873363971710205,0.478283435106277,0.0920328944921494,0.879765629768372,0.466414391994476,0.0836293920874596,0.878108620643616,0.471095949411392,-0.0139084858819842,0.883188843727112,0.468811303377151,
- -0.0919646397233009,-0.885585129261017,0.455281794071198,0.0139996083453298,-0.888975143432617,0.457741469144821,-0.0911074727773666,-0.883041739463806,0.460366100072861,0.0141316261142492,-0.897358298301697,0.441076457500458,-0.0918357670307159,-0.894010365009308,0.438533544540405,0.0561994984745979,-0.896279513835907,0.439914405345917,-0.0343277528882027,0.871924877166748,0.488434880971909,-0.063352070748806,0.871076703071594,0.487044006586075,0.0701779872179031,0.87055516242981,0.487040847539902,0.0702435076236725,0.899567127227783,0.43109729886055,0.0496318265795708,0.900463163852692,0.432091176509857,-0.035461537539959,0.900722980499268,0.432944357395172,-0.0702315121889114,-0.903083145618439,0.423684269189835,0.0356005392968655,-0.904253661632538,0.42550927400589,-0.0569136403501034,-0.903504014015198,0.424783825874329,0.0343286618590355,-0.871948063373566,0.488393425941467,-0.0701781436800957,-0.870578348636627,0.486999362707138,0.0633520558476448,-0.871100008487701,0.487002581357956,-0.0563217885792255,-0.894108355045319,0.444295078516006,-0.0667122378945351,-0.894293606281281,0.442479848861694,0.0282021071761847,-0.895416855812073,0.44433468580246,-0.0667143762111664,-0.894205570220947,0.442657440900803,0.0667103081941605,-0.894372880458832,0.442319929599762,0.0281992331147194,-0.895325601100922,0.444518744945526,-0.0283670630306005,0.900654196739197,0.433609664440155,0.0665786117315292,0.899531424045563,0.431752800941467,0.0566492415964603,0.899306654930115,0.433633923530579,-0.0633115023374558,0.884249687194824,0.462703138589859,0.0669357925653458,0.884197235107422,0.462293028831482,-0.0278845001012087,0.885332822799683,0.464120924472809,-0.994737446308136,0.102424539625645,-0.00260948739014566,-0.986172258853912,-0.125636324286461,-0.108072958886623,-0.983421504497528,-0.179519891738892,0.0255877058953047,-0.986196041107178,-0.123578980565071,-0.110206983983517,-0.994584500789642,0.103427179157734,0.0102225951850414,-0.991997063159943,0.085635282099247,0.0927815660834312,-0.986217796802521,-0.118645325303078,-0.115316018462181,
- -0.99201774597168,0.0904442518949509,0.0878670662641525,-0.992977499961853,-0.0439369305968285,-0.109842695295811,-0.992013871669769,0.0881913900375366,0.0901704281568527,-0.977095723152161,0.0691206380724907,0.20126186311245,-0.992980420589447,-0.0426164753735065,-0.110335439443588,-0.992052376270294,-0.0164406653493643,0.124746769666672,-0.992980420589447,-0.0426164753735065,-0.110335439443588,-0.977095723152161,0.0691206380724907,0.20126186311245,-0.992952227592468,-0.0341527238488197,-0.11348782479763,-0.992050528526306,-0.0149647854268551,0.124947249889374,-0.980414807796478,0.0318401828408241,-0.194352880120277,0.04737289249897,0.00463164877146482,0.998866558074951,-0.0316932760179043,0.00678698532283306,0.999474585056305,0.0470601804554462,0.00825239811092615,0.998857975006104,-0.0347847267985344,0.111229337751865,0.993185818195343,0.0512276254594326,0.110056541860104,0.992604315280914,-0.0330408774316311,0.111713819205761,0.993191003799438,-0.0312611907720566,-0.0137478737160563,0.999416708946228,0.0465721376240253,-0.0156190562993288,0.998792827129364,-0.0161597952246666,-0.0131822321563959,0.999782502651215,-0.0312839671969414,0.00622512167319655,-0.999491155147552,0.0469574704766274,0.0074051539413631,-0.99886953830719,0.0472643673419952,0.00467289751395583,-0.998871505260468,0.0502733401954174,-0.106639079749584,-0.9930260181427,-0.0346712246537209,-0.107176125049591,-0.993635356426239,-0.0329917892813683,-0.107708394527435,-0.993635058403015,0.0467242561280727,0.0147047834470868,-0.998799681663513,-0.0312680639326572,0.0133224073797464,-0.999422252178192,-0.0161448679864407,0.0127050960436463,-0.99978893995285,0.0473100580275059,0.00302471779286861,0.998875677585602,-0.0316185802221298,0.00439958553761244,0.999490320682526,0.0470958687365055,0.00602914299815893,0.99887228012085,-0.0348467864096165,0.113453336060047,0.992932140827179,0.0513070002198219,0.112391605973244,0.992338538169861,-0.0330682694911957,0.113966912031174,0.992934048175812,-0.0312604196369648,-0.0137955993413925,0.999416053295136,0.0465702265501022,-0.0156667847186327,0.998792171478271,
- -0.0161612872034311,-0.0132299149408937,0.999781847000122,-0.0313209220767021,0.00505726970732212,-0.999496579170227,0.0469937771558762,0.0062613831833005,-0.998875558376312,0.047246303409338,0.00350898178294301,-0.998877108097076,0.0502789802849293,-0.106853052973747,-0.993002772331238,-0.0346768237650394,-0.107375413179398,-0.993613719940186,-0.0329942964017391,-0.107911981642246,-0.993612885475159,0.0467264540493488,0.014636293053627,-0.99880051612854,-0.0312691703438759,0.0132541945204139,-0.999423205852509,-0.0161427278071642,0.0126367080956697,-0.999789834022522,0.0473100244998932,0.00302381278015673,0.998875677585602,-0.0316188335418701,0.00440766522660851,0.99949038028717,0.0470957644283772,0.00603527901694179,0.99887216091156,-0.0348459556698799,0.113423638045788,0.992935478687286,0.0513060800731182,0.112364485859871,0.992341637611389,-0.0330679155886173,0.113937869668007,0.992937386035919,-0.031259760260582,-0.0138363800942898,0.999415516853333,0.0465687476098537,-0.0157038550823927,0.998791754245758,-0.0161624625325203,-0.0132675273343921,0.999781370162964,-0.03132164478302,0.0050344537012279,-0.999496698379517,0.0469947755336761,0.00623012194409966,-0.998875796794891,0.0472459122538567,0.00348397740162909,-0.998877227306366,0.0502790212631226,-0.106854699552059,-0.993002593517303,-0.0346770621836185,-0.107384026050568,-0.993612706661224,-0.0329943746328354,-0.107918582856655,-0.993612051010132,0.0467238537967205,0.0147172315046191,-0.998799443244934,-0.0312679633498192,0.0133286453783512,-0.999422192573547,-0.0161452535539865,0.0127174202352762,-0.999788761138916,0.999465465545654,0.0301858969032764,0.0125547908246517,0.995456039905548,-0.0794905051589012,-0.0524282827973366,0.998406112194061,0.0549214631319046,0.0129963969811797,0.999378621578217,0.0151482988148928,0.0318293087184429,0.988545179367065,-0.0933567360043526,-0.118588261306286,0.995457410812378,-0.0904597118496895,-0.0296923965215683,0.988545179367065,-0.0933567360043526,-0.118588261306286,0.999378621578217,0.0151482988148928,0.0318293087184429,
- 0.997439920902252,-0.0712752118706703,-0.00578466942533851,0.9887375831604,-0.078203372657299,-0.127601876854897,0.99743390083313,-0.0681466981768608,-0.0219464190304279,0.997440278530121,0.0710161328315735,0.00834402907639742,0.997460901737213,-0.0689368322491646,-0.0178741719573736,0.996873915195465,0.0784179866313934,-0.00965478550642729,0.997467458248138,0.0699474588036537,0.0128851355984807,0.996890485286713,0.0784357637166977,-0.00756305456161499,0.997462332248688,-0.0689967200160027,-0.0175653100013733,0.993860483169556,-0.110428936779499,-0.00684237293899059,-0.994673848152161,0.0849035382270813,-0.0584411434829235,-0.999480009078979,-0.0292366035282612,0.0135982222855091,-0.998815596103668,-0.0471213608980179,0.0121237868443131,-0.999392807483673,-0.0152115784585476,0.0313470028340817,-0.994658410549164,0.0960286110639572,-0.0378564298152924,-0.984593272209167,0.106187395751476,-0.138925775885582,-0.984593272209167,0.106187395751476,-0.138925775885582,-0.997449696063995,0.0710172280669212,-0.00712123699486256,-0.999392807483673,-0.0152115784585476,0.0313470028340817,-0.99743378162384,0.0681419521570206,-0.0219708681106567,-0.984784245491028,0.0911291167140007,-0.147971868515015,-0.997440099716187,-0.071020781993866,0.00832428317517042,-0.996874153614044,-0.0784182250499725,-0.00962725561112165,-0.997461140155792,0.0689428970217705,-0.0178429298102856,-0.997467577457428,-0.0699399709701538,0.0129169300198555,-0.997443437576294,0.0683745443820953,-0.0207727774977684,-0.99686586856842,-0.0784106403589249,-0.0105069549754262,-0.993835926055908,0.110426209867001,-0.00980681274086237,0.999985039234161,-0.00377951748669147,0.00395131297409534,0.999718129634857,-0.0205071214586496,-0.0119623132050037,0.999501287937164,0.0252475086599588,0.0189720671623945,0.999504506587982,-0.0311650335788727,0.00442000199109316,0.999699473381042,-0.0169455111026764,0.017715759575367,0.999588310718536,-0.0271062906831503,0.00941510498523712,0.999678671360016,-0.0242430828511715,0.00740448711439967,0.999829292297363,-0.0127759147435427,0.0133566362783313,
- 0.990409255027771,-0.108211271464825,0.085905946791172,0.999902546405792,-0.0139606343582273,0.000184845936018974,0.990473449230194,-0.106601610779762,0.0871689394116402,0.999848067760468,-0.0125152999535203,-0.0121336216107011,0.999858736991882,-0.016794215887785,0.0008095633238554,0.990095734596252,-0.114938601851463,0.0806197449564934,0.997323155403137,-0.0688686296343803,-0.0245732702314854,0.721109509468079,-0.601418495178223,-0.343943059444427,0.941170275211334,-0.160110279917717,-0.297595679759979,0.965947806835175,-0.196563675999641,0.168248653411865,0.997352242469788,-0.0679263398051262,-0.0259704794734716,0.996209561824799,0.0869853645563126,-0.00030834341305308,0.999857544898987,-0.0168516207486391,0.000983276288025081,0.996219158172607,0.0868074148893356,0.0034462190233171,0.997286319732666,-0.0699420794844627,-0.0229810997843742,0.987445950508118,-0.157953545451164,0.00118122308049351,-0.980508208274841,0.19370137155056,-0.0329155512154102,-0.992017805576324,0.0899391993880272,0.0883836001157761,-0.995479166507721,-0.0949573069810867,-0.0020968085154891,-0.995456516742706,-0.0951178595423698,-0.00437464658170938,-0.992015600204468,0.0916360318660736,0.0866478160023689,-0.977017641067505,-0.151742115616798,-0.149702653288841,-0.977020025253296,-0.153419062495232,-0.147967949509621,-0.992017805576324,0.0900044590234756,0.0883168652653694,-0.992023885250092,-0.0459154918789864,-0.117390677332878,-0.992004096508026,0.0864826515316963,0.0919162258505821,-0.982061743736267,0.065244622528553,0.176912114024162,-0.992025136947632,-0.0451288670301437,-0.117684155702591,-0.992046058177948,-0.0133500061929226,0.125166282057762,-0.992025136947632,-0.0451288670301437,-0.117684155702591,-0.982061743736267,0.065244622528553,0.176912114024162,-0.991996824741364,-0.0368607118725777,-0.120763368904591,-0.992050588130951,-0.014950399287045,0.124949216842651,-0.980414867401123,0.0318552367389202,-0.194350585341454,-0.980508029460907,0.193698823451996,-0.0329363197088242,-0.992017805576324,0.0899290814995766,0.0883939489722252,
- -0.995478987693787,-0.0949586257338524,-0.00211549014784396,-0.995456635951996,-0.0951170399785042,-0.00436294684186578,-0.992015659809113,0.0916187316179276,0.0866655111312866,-0.97701770067215,-0.15175949037075,-0.149684682488441,-0.977019965648651,-0.153437584638596,-0.147948786616325,-0.992017805576324,0.089986078441143,0.0883356556296349,-0.992023766040802,-0.0459379516541958,-0.117382280528545,-0.992004156112671,0.0864852219820023,0.0919135957956314,-0.982061743736267,0.0652569904923439,0.17690746486187,-0.992025136947632,-0.0451165325939655,-0.1176887601614,-0.992045879364014,-0.0133294928818941,0.125169053673744,-0.992025136947632,-0.0451165325939655,-0.1176887601614,-0.982061743736267,0.0652569904923439,0.17690746486187,-0.991996288299561,-0.0368057414889336,-0.120783790946007,-0.992050468921661,-0.0148922502994537,0.124957107007504,-0.980414628982544,0.0319133847951889,-0.19434155523777,-0.0862859413027763,-0.996210336685181,0.0109496163204312,0.0234217997640371,-0.999651312828064,0.0121926758438349,-0.0625114738941193,-0.997981250286102,0.0112231178209186,0.0234496798366308,-0.999670386314392,0.0104509238153696,-0.0862866714596748,-0.996218621730804,0.0101545304059982,0.0707608088850975,-0.99744713306427,0.00959901977330446,0.0553428381681442,-0.998436272144318,0.0078972615301609,0.0707598626613617,-0.997448563575745,0.00946591421961784,-0.0862867832183838,-0.99621993303299,0.0100228535011411,-0.0628840252757072,-0.998020708560944,0.000526487769093364,0.0548838526010513,-0.998485505580902,-0.0038299011066556,-0.0862910896539688,-0.996269762516022,0.000656032469123602,-0.993837654590607,0.107284061610699,-0.0278713386505842,-0.996208846569061,-0.0846592634916306,0.0200238525867462,-0.987432718276978,0.157989233732224,-0.00400846730917692,-0.996205508708954,-0.086337998509407,0.0109716914594173,-0.993910670280457,0.102491371333599,-0.0404615588486195,-0.998864591121674,-0.0314346514642239,0.0357963927090168,-0.998702168464661,-0.0479879751801491,0.0170637667179108,-0.99378913640976,0.0973441749811172,-0.0539208762347698,
- -0.999450325965881,-0.0240625236183405,-0.0228040181100369,-0.99903392791748,0.0122029818594456,-0.0422170981764793,-0.993377804756165,0.114569537341595,-0.00862413365393877,-0.998993456363678,0.0256791152060032,0.0367790423333645,-0.998293101787567,0.0285512562841177,-0.0509486421942711,-0.999888598918915,0.00341954082250595,0.0145294135436416,-0.999863743782043,-0.00966405589133501,0.0133910644799471,-0.996099293231964,0.0820120424032211,-0.0325642302632332,-0.999735414981842,-0.0027858498506248,0.0228337105363607,-0.999796390533447,0.00758853135630488,0.0186973791569471,-0.999443709850311,-0.0215138550847769,0.0254882946610451,-0.996150732040405,0.0800662562251091,-0.0356801375746727,-0.999786972999573,0.00794295500963926,0.0190516971051693,-0.0199604444205761,0.992424547672272,-0.121223442256451,0.146963387727737,0.983711898326874,-0.103502951562405,0.335671275854111,0.941248774528503,-0.0370909981429577,-0.477905571460724,0.877811789512634,-0.0324466452002525,0.117001198232174,0.991522789001465,0.0565090700984001,-0.0303815696388483,0.999438464641571,-0.0141399027779698,-0.47047820687294,0.882320642471313,0.0126797063276172,-0.291616082191467,0.956181704998016,-0.0260158833116293,0.117092907428741,0.991538286209106,0.0560455471277237,-0.144572108983994,0.98911452293396,0.027415044605732,0.117331549525261,0.991577565670013,0.0548387169837952,-0.291365563869476,0.956224381923676,-0.0272231791168451,0.132192134857178,0.990972220897675,-0.022344620898366,-0.0910952389240265,0.989419221878052,-0.112921558320522,0.194929212331772,0.980769157409668,-0.00971613172441721,-0.0384583845734596,0.998880445957184,0.027546800673008,0.0471756085753441,0.998550355434418,0.0259169209748507,-0.0552163943648338,0.998150706291199,0.025426484644413,0.0471725687384605,0.998486042022705,0.0282912347465754,-0.0383718572556973,0.998807013034821,0.0302022807300091,0.040195032954216,0.998808324337006,0.0276819411665201,-0.00596670852974057,0.00787363294512033,0.999951303005219,-0.00596552481874824,-0.0157457999885082,0.999858260154724,-0.0059659443795681,-2.22103976640678e-016,0.999982297420502,
- -0.00405203877016902,-0.0157459527254105,0.999867916107178,-0.00405283132568002,0.0078737074509263,0.999960780143738,-0.00339092430658638,0.0158260725438595,0.999869108200073,0.0619444325566292,0.014252932742238,0.99797785282135,0.062045693397522,-0.0304436553269625,0.99760890007019,0.0615705363452435,-0.0157162044197321,0.997978985309601,-0.851583778858185,-0.0298947021365166,0.523365437984467,-0.796515822410584,-0.603421688079834,0.03801079839468,-0.85336571931839,-0.00820863246917725,0.52124810218811,-0.00886060111224651,0.015954714268446,0.999833464622498,-0.00924820546060801,0.0232505481690168,0.999686896800995,-0.00818327628076077,-0.0316081419587135,0.999466836452484,0.75522780418396,-0.654165804386139,0.0412072576582432,0.574804306030273,-0.0167155154049397,0.818120181560516,0.751537084579468,-0.652499198913574,0.097144216299057,0.0245555005967617,-0.031084643676877,0.999215185642242,0.0228353980928659,0.0245078224688768,0.99943882226944,0.484840780496597,-0.867811918258667,0.108775585889816,0.0800293982028961,-0.994820833206177,0.0626658797264099,0.0766865313053131,-0.991475284099579,0.10533818602562,0.0795470252633095,-0.992999076843262,-0.0873217433691025,0.130273178219795,0.028539901599288,0.991067290306091,0.129178196191788,0.0125633776187897,0.991541802883148,0.676380753517151,0.731438934803009,0.0866381451487541,-0.505618512630463,0.857911586761475,0.0913105607032776,-0.649416923522949,0.0273081343621016,0.759942173957825,-0.52607673406601,0.849778771400452,0.0334558375179768,0.00660362746566534,0.993856310844421,0.110480904579163,-0.067947655916214,0.996923685073853,0.0390676930546761,0.543505907058716,0.0412020049989223,0.838393568992615,0.0305173229426146,0.993394196033478,0.110619358718395,0.0312593020498753,0.998737573623657,0.0393203794956207,0.0327555686235428,0.995010197162628,-0.0942429527640343,-0.0619160309433937,0.998007118701935,-0.0121757676824927,-0.0262358579784632,0.993564546108246,0.110187865793705,-0.0280774869024754,0.997197806835175,-0.0693410560488701,-0.0280774869024754,0.997197806835175,-0.0693410560488701,
- -0.0262358579784632,0.993564546108246,0.110187865793705,-0.0238327644765377,0.995177030563354,-0.0951570719480515,-0.0926254093647003,-0.991860568523407,-0.0873678624629974,-0.0943002998828888,-0.991836130619049,-0.0858404636383057,-0.0986504927277565,-0.99025958776474,0.0982549339532852,-0.0283566769212484,-0.995830833911896,-0.0866996347904205,-0.0362825468182564,-0.994210660457611,0.10113750398159,-0.0495084039866924,-0.014557383954525,-0.998667597770691,-0.4047991335392,-0.911213636398315,-0.0763375088572502,-0.424695044755936,-0.901360154151917,-0.0847586318850517,-0.367250293493271,-0.0335240289568901,-0.929517805576324,0.658244073390961,-0.0273963995277882,-0.752305924892426,0.639581918716431,0.00198558112606406,-0.768720388412476,0.733080744743347,-0.678500235080719,-0.047223124653101,-0.0433050692081451,0.0382813103497028,-0.99832820892334,-0.0416675768792629,-0.0249065663665533,-0.998821139335632,-0.0420631431043148,-0.0147387646138668,-0.99900621175766,-0.00872738100588322,-0.0155393742024899,-0.999841272830963,-0.00763507187366486,0.0238551143556833,-0.999686360359192,-0.00913341157138348,0.0391225516796112,-0.999192774295807,0.101606741547585,0.991986036300659,-0.0750985369086266,0.0410165376961231,0.0402738526463509,-0.998346447944641,0.00829101447016001,0.0233536399900913,-0.999692976474762,0.048259761184454,0.0404319725930691,-0.998016178607941,0.0493524968624115,-0.0153383873403072,-0.998663663864136,0.0498367324471474,-0.0220173001289368,-0.998514652252197,-0.0300142709165812,-0.0159752704203129,-0.999421775341034,-0.0304980799555779,0.0386019796133041,-0.998789131641388,-0.0303884632885456,-0.00787013582885265,-0.999507188796997,-0.0611832812428474,0.986014306545258,0.155023887753487,-0.376097589731216,0.924306333065033,0.0648718476295471,-0.0758493468165398,0.985792458057404,0.149866953492165,-0.37604546546936,0.924343287944794,0.064649224281311,-0.0616456121206284,0.985770881175995,0.156382992863655,-0.0668599158525467,0.988323748111725,0.136916622519493,-0.370225787162781,0.928066432476044,0.0403181836009026,
- -0.367606669664383,0.917863547801971,-0.149638965725899,-0.381070882081985,0.924113571643829,0.028268501162529,-0.382489681243896,0.920240521430969,0.0828206315636635,-0.372469484806061,0.926718831062317,0.0495850220322609,-0.0644217059016228,0.992222845554352,0.106506831943989,-0.0643385872244835,0.992337703704834,0.105481617152691,-0.442888200283051,0.881770133972168,0.162269756197929,-0.382480561733246,0.920285999774933,0.0823562815785408,-0.342274606227875,0.919053375720978,0.195420101284981,-0.444430023431778,0.88184916973114,0.15755707025528,-0.0593433864414692,0.997215628623962,0.0451597720384598,-0.292226076126099,0.915656208992004,0.276003390550613,-0.375921696424484,0.86272668838501,0.338209331035614,-0.319799333810806,0.829636514186859,0.457637012004852,-0.0625356063246727,0.994550228118896,0.0834213942289352,0.0491858012974262,0.989489734172821,-0.135981068015099,-0.401445657014847,0.911407589912415,0.0904301777482033,0.0133919296786189,0.99228698015213,-0.123236604034901,-0.386711418628693,0.914659321308136,0.117697030305862,0.0563853159546852,0.991080343723297,-0.120749652385712
- }
- TangentsW: *628 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *602 {
- a: -2.44717597961426,0.33155882358551,-2.44717645645142,0.544939756393433,-1.12025117874146,0.331561267375946,-1.12025189399719,0.546224534511566,-2.05675292015076,0.250349551439285,-2.08931493759155,0.279381603002548,-2.27149057388306,0.331559121608734,-2.217209815979,0.000190528109669685,-2.00861120223999,0.000190794467926025,-2.04456949234009,0.150148779153824,-2.44717526435852,0.000190010294318199,-2.99997043609619,0.000188706442713737,-2.87961935997009,0.000188916921615601,-2.87962007522583,0.331557840108871,-2.99997138977051,0.338360905647278,-0.790691614151001,0.337513953447342,-0.895295143127441,0.398999929428101,-0.999900341033936,0.337088942527771,-0.999900579452515,-0.000232715159654617,-0.79069185256958,-0.000658253207802773,-2.87962079048157,0.62474524974823,-2.87962055206299,0.546221137046814,-3.3188943862915,-0.26520249247551,-3.32343912124634,-0.160541594028473,-3.48941278457642,-0.157267883419991,-3.50743341445923,-0.265127688646317,-1.76190376281738,0.331558912992477,-1.64380264282227,0.400399327278137,-1.55269527435303,0.331561088562012,-1.55269622802734,0.544942259788513,-1.65730214118958,0.623465001583099,-1.76190567016602,0.544939935207367,-3.42804360389709,-0.420993030071259,-3.42804360389709,-0.541344165802002,-3.32343912124634,-0.543089151382446,-3.32343912124634,-0.422738015651703,-2.44717669487,0.623463928699493,-0.911043167114258,0.546225786209106,-1.01564788818359,0.624749481678009,-1.01564717292786,0.392431348562241,-0.911041736602783,0.331562489271164,-1.55269575119019,0.623466193675995,-1.12025141716003,0.624748587608337,-1.12025165557861,0.000192496925592422,-1.55269575119019,0.000192407518625259,-1.78258299827576,0.000192407518625259,-1.72838032245636,0.331561058759689,-1.96862435340881,0.000192603853065521,-1.91392040252686,0.274420857429504,-1.92867517471313,0.251961320638657,-1.94955265522003,0.0681654363870621,-1.3960257768631,0.708725214004517,-1.275674700737,0.708725214004517,-1.275674700737,0.91793429851532,-1.39602553844452,0.91793429851532,-1.82846975326538,
- 0.708725214004517,-1.82846975326538,0.917934238910675,-2.05843496322632,0.708725214004517,-2.05835700035095,0.91793429851532,-2.24440312385559,0.917933940887451,-2.26703882217407,0.864463686943054,-2.26703882217407,0.708725094795227,-3.53264808654785,-0.543089151382446,-3.53264808654785,-0.422738015651703,-3.48932194709778,-0.372625797986984,-3.32343912124634,-0.369750618934631,-3.25704550743103,0.799276292324066,-3.25853109359741,0.697849810123444,-3.12080240249634,0.762981653213501,-3.24661564826965,0.556250512599945,-3.26384091377258,0.488967388868332,-3.17075872421265,0.522783696651459,-3.16892385482788,0.549859046936035,-3.28653621673584,0.378737181425095,-3.24271464347839,0.264818042516708,-3.18690657615662,0.26296278834343,-3.17750906944275,0.330210328102112,-3.39751863479614,0.781576633453369,-3.38088297843933,0.52901965379715,-3.37845039367676,0.574529469013214,-3.38731503486633,0.425541043281555,-3.38977575302124,0.275805324316025,-2.24214029312134,0.290333658456802,-3.38732051849365,0.720589876174927,-3.25131511688232,0.645531952381134,-1.76924061775208,0.297891438007355,-3.1468985080719,0.68696653842926,-0.64990234375,-1.78125,-0.6513671875,-1.65234375,-0.6171875,-1.77734375,-0.59765625,-1.6328125,-0.60546875,-1.7734375,-0.239013671875,-1.77734375,-0.234130859375,-1.6328125,-0.3369140625,-1.779296875,-0.60107421875,-1.80859375,-0.234619140625,-1.806640625,-0.23046875,-1.814453125,-0.599609375,-1.8125,-0.6201171875,-1.9375,-0.236083984375,-1.9375,-0.6513671875,-0.6533203125,-0.64990234375,-0.78125,-0.6171875,-0.7783203125,-0.60595703125,-0.7744140625,-0.59814453125,-0.634765625,-0.2386474609375,-0.779296875,-0.2344970703125,-0.63671875,-0.337158203125,-0.779296875,-0.60107421875,-0.80859375,-0.234619140625,-0.8076171875,-0.2305908203125,-0.814453125,-0.599609375,-0.8134765625,-0.6201171875,-0.939453125,-0.236083984375,-0.9375,-0.26416015625,0.583984375,-0.1734619140625,0.531005859375,-0.1728515625,0.583251953125,-0.264892578125,0.530517578125,-0.77294921875,0.7119140625,-0.62890625,0.652587890625,-0.62939453125,
- 0.711669921875,-0.77294921875,0.65283203125,0.7353515625,0.583984375,0.826171875,0.531005859375,0.82666015625,0.583251953125,0.73486328125,0.530517578125,0.226806640625,0.7119140625,0.37109375,0.653076171875,0.370361328125,0.711669921875,0.226806640625,0.65283203125,1.7353515625,0.583984375,1.826171875,0.531005859375,1.826171875,0.583251953125,1.734375,0.530517578125,1.2265625,0.7119140625,1.37109375,0.653076171875,1.3701171875,0.711669921875,1.2265625,0.65283203125,-0.669921875,-1.857421875,-0.671875,-1.974609375,-0.6396484375,-1.974609375,-0.6416015625,-1.8359375,-0.6396484375,0.0234375,-0.669921875,0.14208984375,-0.63916015625,0.15966796875,-0.671875,0.025390625,-0.673828125,-0.8603515625,-0.6748046875,-0.9794921875,-0.64501953125,-0.9775390625,-0.6455078125,-0.83984375,-0.64501953125,2.021484375,-0.673828125,2.138671875,-0.64453125,2.15625,-0.6748046875,2.01953125,-0.6455078125,1.1590576171875,-0.64453125,1.02210998535156,-0.67431640625,1.138671875,-0.67529296875,1.02154541015625,-0.67431640625,3.138671875,-0.64453125,3.021484375,-0.64453125,3.15625,-0.67333984375,3.017578125,-0.0118560791015625,0.439453125,-0.07147216796875,0.474609375,-0.0718994140625,0.439453125,-0.0126724243164063,0.47607421875,-0.07208251953125,0.62255859375,-0.0125732421875,0.62255859375,-0.0124359130859375,0.65283203125,-0.07147216796875,0.6533203125,-0.493896484375,0.746337890625,-0.529296875,0.606201171875,-0.49365234375,0.6044921875,-0.59326171875,0.71630859375,-0.59375,0.746337890625,-0.52294921875,0.84716796875,-0.5595703125,0.98590087890625,-0.56005859375,0.8472900390625,-0.461181640625,0.95611572265625,-0.4609375,0.986305236816406,0.505859375,0.746337890625,0.470703125,0.60546875,0.50634765625,0.60400390625,0.406982421875,0.716552734375,0.40576171875,0.746337890625,0.477294921875,0.8477783203125,0.440185546875,0.985893249511719,0.439697265625,0.846923828125,0.53857421875,0.956024169921875,0.53857421875,0.986305236816406,1.505859375,0.746337890625,1.470703125,0.60546875,1.505859375,0.60400390625,1.40625,0.716552734375,1.4052734375,
- 0.746337890625,1.4765625,0.8477783203125,1.439453125,0.985893249511719,1.439453125,0.846923828125,1.5380859375,0.956024169921875,1.5380859375,0.986297607421875,-0.210693359375,2.2216796875,-0.33349609375,2.3642578125,-0.20947265625,2.3671875,-0.333251953125,2.2216796875,-0.210205078125,2.1884765625,-0.3310546875,2.1875,-0.33447265625,2.0634765625,-0.209228515625,2.0625,-0.333251953125,0.36279296875,-0.210693359375,0.22216796875,-0.20947265625,0.365234375,-0.33349609375,0.22216796875,-0.210205078125,0.18896484375,-0.3310546875,0.18798828125,-0.33447265625,0.06494140625,-0.209228515625,0.0634765625,-0.210693359375,1.222412109375,-0.394775390625,1.361083984375,-0.208740234375,1.364990234375,-0.385498046875,1.22412109375,-0.2099609375,1.18994140625,-0.38037109375,1.187255859375,-0.2122802734375,1.1846923828125,-0.209228515625,1.06280517578125,-0.4072265625,1.06439208984375,0.9873046875,0.43896484375,0.98681640625,0.47509765625,0.927734375,0.43994140625,0.92822265625,0.4755859375,0.927734375,0.62255859375,0.9873046875,0.62255859375,0.9873046875,0.65283203125,0.92822265625,0.6533203125,1.9873046875,0.43896484375,1.986328125,0.47509765625,1.927734375,0.43994140625,1.927734375,0.4755859375,1.927734375,0.62255859375,1.9873046875,0.62255859375,1.9873046875,0.65283203125,1.927734375,0.6533203125,-0.274169921875,0.3076171875,-0.26123046875,0.22802734375,-0.2396240234375,0.2421875,-0.299560546875,0.30810546875,-0.26123046875,0.38671875,-0.2396240234375,0.373046875,-0.2098388671875,3.185546875,-0.41162109375,3.0625,-0.209228515625,3.0625,-0.427490234375,3.177734375,-0.434326171875,3.20703125,-0.2108154296875,3.220703125,-0.42431640625,3.23046875,-0.395263671875,3.365234375,-0.208740234375,3.365234375,-0.72119140625,-1.935546875,-0.8359375,-1.876953125,-0.7412109375,-1.94140625,-0.7265625,-1.91015625,-0.8388671875,-1.830078125,-0.95068359375,-1.90625,-0.93310546875,-1.939453125,0.381103515625,-0.083984375,0.236328125,-0.01171875,0.2359619140625,-0.0859375,0.383544921875,-0.0146484375,0.28173828125,-0.8955078125,0.26025390625,-0.814453125,
- 0.2685546875,-0.8388671875,0.273681640625,-0.9248046875,0.970703125,-0.818359375,0.2467041015625,-0.80859375,0.97998046875,-0.9228515625,0.98046875,-0.810546875,0.2435302734375,-0.7626953125,0.9755859375,-0.9287109375,0.2666015625,-0.9287109375,0.98046875,-0.9853515625,0.259765625,-0.98046875,0.9755859375,-0.9814453125,0.97412109375,-0.7578125,0.9794921875,-0.755859375,0.2413330078125,-0.755859375,0.258056640625,-0.6455078125,0.9814453125,-0.6484375,0.97607421875,-0.642578125,0.259765625,-0.73046875,0.269287109375,-0.67578125,0.41162109375,-0.529296875,0.413330078125,-0.4794921875,0.40673828125,-0.5244140625,0.45263671875,-0.5361328125,0.453857421875,-0.4794921875,0.41552734375,-0.47265625,0.52880859375,-0.48046875,0.57373046875,-0.4873046875,0.57666015625,-0.4775390625,0.52734375,-0.5419921875,0.576171875,-0.541015625
- }
- UVIndex: *628 {
- a: 13,0,1,21,4,5,82,6,7,8,9,11,12,13,14,15,16,17,18,19,7,6,0,10,23,24,25,22,26,27,28,29,30,31,32,33,34,35,29,28,2,3,10,0,13,12,21,1,36,20,37,38,3,2,39,40,41,29,3,42,43,18,17,2,43,2,28,44,28,46,45,44,47,45,46,85,48,49,50,51,52,53,54,55,51,54,56,57,55,56,58,57,58,59,60,61,62,33,32,63,25,64,65,22,66,67,68,69,70,71,72,73,74,75,76,76,71,70,73,77,67,66,78,70,69,79,80,70,78,81,74,73,80,73,70,81,73,80,83,84,67,77,68,67,84,86,79,69,84,83,86,84,69,72,87,88,89,88,90,91,92,90,93,90,92,91,91,92,94,94,95,91,92,96,94,94,96,95,96,92,97,96,97,95,98,95,97,99,95,98,100,98,97,98,100,99,101,102,103,104,105,101,105,106,107,106,105,104,106,104,108,109,108,104,110,106,108,109,110,108,106,110,111,111,110,109,109,112,111,109,113,112,112,114,111,114,112,113,115,116,117,116,115,118,119,120,121,120,119,122,123,124,125,124,123,126,127,128,129,128,127,130,131,132,133,132,131,134,135,136,137,136,135,138,139,140,141,141,142,139,143,144,145,144,143,146,147,148,149,149,150,147,151,152,153,152,151,154,155,156,157,156,158,157,159,160,161,162,160,159,163,164,165,164,163,166,164,166,167,166,168,167,169,167,168,167,169,170,171,172,173,172,171,174,174,171,175,176,177,178,177,176,179,177,179,180,181,182,183,182,181,184,184,181,185,186,187,188,187,186,189,187,189,190,191,192,193,192,191,194,194,191,195,196,197,198,197,196,199,197,199,200,201,202,203,201,204,202,204,201,205,204,205,206,205,207,206,207,205,208,209,210,211,210,209,212,212,213,210,213,212,214,215,213,214,213,215,216,217,218,219,218,217,220,220,217,221,220,221,222,222,221,223,221,224,223,223,225,222,225,223,224,226,227,228,228,227,229,229,227,230,227,231,230,232,230,231,230,232,233,234,235,236,236,235,237,237,235,238,235,239,238,240,238,239,238,240,241,242,243,244,243,242,245,246,245,242,247,246,242,248,249,250,249,248,251,251,248,252,252,248,253,252,253,254,255,254,253,256,255,253,257,258,259,260,258,257,260,261,258,262,258,261,258,262,263,264,265,266,265,264,267,268,269,270,269,268,271,271,272,269,272,273,269,271,274,272,273,272,275,272,274,275,273,275,276,274,271,277,277,
- 271,278,277,279,274,277,278,280,279,277,281,281,277,280,282,276,275,282,275,283,276,282,284,283,284,282,285,284,283,283,286,285,287,285,286,285,288,284,288,285,289,290,291,292,291,290,293,291,294,295,294,291,293,293,296,294,297,296,293,297,298,296,293,299,297,300,297,299
- }
- }
- LayerElementUV: 1 {
- Version: 101
- Name: "uvSet"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *606 {
- a: 0.693419635295868,0.377424389123917,0.693420112133026,0.195856511592865,0.783011257648468,0.195856720209122,0.783549308776855,0.377424508333206,0.659323394298553,0.0319317579269409,0.67151290178299,0.0456033982336521,0.676111280918121,0.109769314527512,0.69342029094696,0.122092433273792,0.554290533065796,0.0993018820881844,0.554290533065796,0.01171875,0.61725264787674,0.0268163569271564,0.554289638996124,0.427955150604248,0.554289817810059,0.377424031496048,0.696276247501373,0.427955567836761,0.408107876777649,0.01171875,0.433817595243454,0.0554575026035309,0.407930254936218,0.0991969481110573,0.266883075237274,0.099197044968605,0.266705244779587,0.0117188859730959,0.554290533065796,0.19585619866848,0.613920867443085,0.844768404960632,0.539376616477966,0.846238851547241,0.531282901763916,0.797795474529266,0.615961909294128,0.797761917114258,0.288864612579346,0.806018590927124,0.240639358758926,0.777908504009247,0.405618637800217,0.330341696739197,0.494841814041138,0.330342054367065,0.246151745319366,0.686822235584259,0.288865387439728,0.71888679265976,0.696078062057495,0.795432269573212,0.643248200416565,0.795432209968567,0.642482161521912,0.749514639377594,0.695312440395355,0.749514639377594,0.405618727207184,0.149520292878151,0.176006734371185,0.717414855957031,0.815980613231659,0.195856839418411,0.816518723964691,0.377424657344818,0.0903207659721375,0.717414140701294,0.133163869380951,0.685253024101257,0.133163601160049,0.780404090881348,0.0903201699256897,0.805334210395813,0.527675330638886,0.330341935157776,0.528211534023285,0.149520352482796,0.267060935497284,0.149520456790924,0.267060935497284,0.330341935157776,0.405618876218796,0.403802305459976,0.267060697078705,0.42646649479866,0.267060697078705,0.504257619380951,0.391540199518204,0.420887559652328,0.381726086139679,0.481383770704269,0.372335106134415,0.487553358078003,0.295483022928238,0.496282964944839,0.84379118680954,0.0609888508915901,0.84379118680954,0.01171875,0.929438471794128,0.01171875,0.929438471794128,0.0609887279570103,
- 0.843791246414185,0.238025575876236,0.929438292980194,0.238025516271591,0.843791246414185,0.332170128822327,0.929438292980194,0.332138240337372,0.929438292980194,0.408302992582321,0.907548546791077,0.417569696903229,0.843791246414185,0.417569696903229,0.642482161521912,0.84134978055954,0.695311903953552,0.841349720954895,0.539417445659637,0.749514639377594,0.613920867443085,0.750805795192719,0.916278123855591,0.659267604351044,0.915673971176147,0.618013620376587,0.971693336963654,0.644505202770233,0.920520544052124,0.560419797897339,0.913514137268066,0.5330531001091,0.951374351978302,0.546807467937469,0.952120840549469,0.55782014131546,0.904282987117767,0.488218426704407,0.922107040882111,0.44188317656517,0.944806456565857,0.441128611564636,0.948628425598145,0.468480676412582,0.859142422676086,0.652068555355072,0.865908622741699,0.549344003200531,0.86689817905426,0.567854523658752,0.863292455673218,0.50725531578064,0.862291872501373,0.446352124214172,0.863290727138519,0.627262830734253,0.918608784675598,0.596733927726746,0.961079239845276,0.613586902618408,0.759864985942841,0.649115145206451,0.699166119098663,0.649763405323029,0.757119119167328,0.630910933017731,0.68994677066803,0.624518573284149,0.758028388023376,0.455548137426376,0.689946889877319,0.453279167413712,0.758964717388153,0.501644015312195,0.77273952960968,0.626067101955414,0.771839141845703,0.453459441661835,0.775512516498566,0.451514482498169,0.774594247341156,0.625455021858215,0.833438575267792,0.635070204734802,0.833474516868591,0.454179674386978,0.655541777610779,0.725955665111542,0.595301032066345,0.725265800952911,0.597600340843201,0.707216620445251,0.664278864860535,0.700893640518188,0.596220791339874,0.531610310077667,0.66335928440094,0.529655814170837,0.596220791339874,0.577998042106628,0.582425177097321,0.702273368835449,0.582885026931763,0.529713451862335,0.579665899276733,0.527816593647003,0.58012592792511,0.701583445072174,0.520804762840271,0.711240410804749,0.5217245221138,0.530403137207031,0.128574937582016,0.893507182598114,0.0910851657390594,
- 0.829325616359711,0.128056615591049,0.828893721103668,0.0907396674156189,0.894025444984436,0.886643826961517,0.77290666103363,0.849542856216431,0.682826578617096,0.886491179466248,0.68313193321228,0.8496955037117,0.77290666103363,0.0493700057268143,0.987935781478882,0.0118676722049713,0.923645913600922,0.0488515049219131,0.923300385475159,0.0115220546722412,0.98828125,0.823251724243164,0.76362681388855,0.786427080631256,0.673322319984436,0.823099076747894,0.673780739307404,0.786274313926697,0.76362681388855,0.0650717914104462,0.899050056934357,0.0275695323944092,0.834760367870331,0.0645532310009003,0.834760367870331,0.0272237658500671,0.899741470813751,0.759968042373657,0.763742625713348,0.723158419132233,0.673322319984436,0.759815216064453,0.673933267593384,0.723005712032318,0.763742625713348,0.237910747528076,0.887384235858917,0.236947327852249,0.829577505588531,0.252844244241714,0.829577505588531,0.251880824565887,0.897982180118561,0.1544568836689,0.828893721103668,0.169344276189804,0.887216031551361,0.154242783784866,0.89582884311676,0.170328229665756,0.829834818840027,0.360495626926422,0.881793260574341,0.36000120639801,0.821464121341705,0.375083476305008,0.822453081607819,0.374836176633835,0.892177939414978,0.319244861602783,0.822450280189514,0.333823680877686,0.881850242614746,0.318965762853622,0.890758574008942,0.334333330392838,0.821464121341705,0.196493268013,0.897907257080078,0.195996075868607,0.829840779304504,0.210782170295715,0.887815892696381,0.211279481649399,0.829577505588531,0.278512120246887,0.889689981937408,0.29329788684845,0.831517040729523,0.29329788684845,0.898415923118591,0.278996914625168,0.829577505588531,0.370492428541183,0.527816593647003,0.333825528621674,0.549439430236816,0.333562761545181,0.527816593647003,0.369990319013596,0.550340473651886,0.333450138568878,0.640435755252838,0.370051324367523,0.640435755252838,0.370135873556137,0.659055471420288,0.333825528621674,0.659355759620667,0.794347822666168,0.876082062721252,0.772191107273102,0.78837126493454,0.794500648975372,0.787301599979401,
- 0.732155978679657,0.857286989688873,0.731850147247314,0.876082062721252,0.491407841444016,0.877550363540649,0.468346536159515,0.964914083480835,0.46803891658783,0.87762725353241,0.530304551124573,0.946157574653625,0.530458211898804,0.965168714523315,0.971387624740601,0.885564863681793,0.949380397796631,0.797382652759552,0.971693396568298,0.796465575695038,0.909491956233978,0.866919755935669,0.908727824687958,0.885564863681793,0.579796552658081,0.870335757732391,0.55643367767334,0.957288980484009,0.556126117706299,0.869797825813293,0.61837637424469,0.938484191894531,0.61837637424469,0.957548260688782,0.883059859275818,0.885460019111633,0.861078381538391,0.797381520271301,0.883059859275818,0.796465575695038,0.820778965950012,0.866836786270142,0.820168554782867,0.885460019111633,0.667422890663147,0.865446984767914,0.644044280052185,0.952458441257477,0.644044280052185,0.864908695220947,0.706182241439819,0.933641135692596,0.706182241439819,0.952713191509247,0.0250955559313297,0.600764870643616,0.0763762593269348,0.660284340381622,0.0245935674756765,0.661516547203064,0.0762849971652031,0.600764870643616,0.024890223518014,0.586889326572418,0.0753493309020996,0.586478412151337,0.0767871290445328,0.534695684909821,0.0244793798774481,0.534284949302673,0.0120322927832603,0.810180902481079,0.0632581859827042,0.751403868198395,0.0637684017419815,0.811201453208923,0.0119302272796631,0.751403868198395,0.0634623244404793,0.737525880336761,0.0129506727680564,0.73711770772934,0.0115220556035638,0.685687899589539,0.0638704299926758,0.685075461864471,0.223914593458176,0.60238778591156,0.30245453119278,0.661581993103027,0.223063051700592,0.663263320922852,0.298502385616302,0.603130280971527,0.223587051033974,0.588544487953186,0.29631894826889,0.58740907907486,0.224591463804245,0.586295425891876,0.223281338810921,0.534284949302673,0.307782232761383,0.534940004348755,0.495136886835098,0.527816593647003,0.49483647942543,0.55005294084549,0.458477109670639,0.528417646884918,0.458777725696564,0.550353288650513,0.458477109670639,0.640800893306732,
- 0.495136886835098,0.640800893306732,0.495136886835098,0.659431278705597,0.458777725696564,0.659731805324554,0.432809233665466,0.527816593647003,0.432208478450775,0.550046145915985,0.396160274744034,0.528417229652405,0.396160274744034,0.550346612930298,0.396160274744034,0.640767455101013,0.432809233665466,0.640767455101013,0.432809233665466,0.659392356872559,0.396160274744034,0.659692883491516,0.332409203052521,0.742534577846527,0.341466784477234,0.686822235584259,0.356591135263443,0.696734249591827,0.314635992050171,0.742876410484314,0.341466784477234,0.797905147075653,0.356591135263443,0.788334906101227,0.196932792663574,0.586070358753204,0.112010583281517,0.534284949302673,0.197189703583717,0.534284949302673,0.105331927537918,0.582782626152039,0.102455005049706,0.59511262178421,0.196521788835526,0.600866436958313,0.106667593121529,0.604976654052734,0.118894875049591,0.66169410943985,0.197395205497742,0.66169410943985,0.38636040687561,0.683290660381317,0.413402736186981,0.736248433589935,0.38365626335144,0.692529916763306,0.398078799247742,0.685769736766815,0.435036420822144,0.737600684165955,0.399881631135941,0.789206266403198,0.384557664394379,0.781093597412109,0.401846706867218,0.878919363021851,0.442371040582657,0.960105001926422,0.400751352310181,0.960310399532318,0.440728157758713,0.877550363540649,0.0717056393623352,0.493082106113434,0.125605419278145,0.493150502443314,0.105700865387917,0.495849668979645,0.0519401878118515,0.484186828136444,0.122997879981995,0.018889594823122,0.12951685488224,0.502195596694946,0.053243987262249,0.0126965697854757,0.128213033080101,0.0123705910518765,0.160156399011612,0.504314243793488,0.0493325851857662,0.0156301520764828,0.0493326000869274,0.488913029432297,0.0115220556035638,0.0123705910518765,0.0147816175594926,0.493476390838623,0.014129776507616,0.0156301520764828,0.163415879011154,0.0166079737246037,0.164719685912132,0.0130225503817201,0.164719685912132,0.505781054496765,0.238384962081909,0.494617223739624,0.236429288983345,0.01171875,0.240340694785118,0.0153042320162058,
- 0.184100419282913,0.510726034641266,0.218482434749603,0.505033314228058,0.470068365335464,0.850989043712616,0.500690937042236,0.84993839263916,0.473070591688156,0.853991389274597,0.465865314006805,0.825770616531372,0.500690937042236,0.825019955635071,0.504894018173218,0.848587393760681,0.500090479850769,0.778936088085175,0.495887339115143,0.751315712928772,0.501891791820526,0.749514639377594,0.462262630462646,0.779836893081665,0.462863028049469,0.749814748764038,0.203437030315399,0.718885779380798,0.203436672687531,0.806017875671387,0.176006436347961,0.805334806442261,0.495377749204636,0.149520576000214
- }
- UVIndex: *628 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,12,0,13,14,15,16,17,18,8,7,1,19,20,21,22,23,24,25,300,299,28,29,30,31,32,33,27,26,34,302,19,1,0,12,3,2,36,37,38,39,35,301,40,41,42,27,302,43,44,17,16,34,44,34,26,45,26,46,47,45,48,47,46,49,50,51,52,53,54,55,56,57,53,56,58,59,57,58,60,59,60,61,62,63,64,31,30,65,22,66,67,23,68,69,70,71,72,73,74,75,76,77,78,78,73,72,75,79,69,68,80,72,71,81,82,72,80,83,76,75,82,75,72,83,75,82,84,85,69,79,70,69,85,86,81,71,85,84,86,85,71,74,87,88,89,88,90,89,91,90,92,90,91,89,89,91,93,93,94,89,91,95,93,93,95,94,95,91,96,95,96,94,97,94,96,98,94,97,99,97,96,97,99,98,100,101,102,102,103,100,103,104,105,104,103,102,104,102,106,107,106,102,108,104,106,107,108,106,104,108,109,109,108,107,107,110,109,107,111,110,110,112,109,112,110,111,113,114,115,114,113,116,117,118,119,118,117,120,121,122,123,122,121,124,125,126,127,126,125,128,129,130,131,130,129,132,133,134,135,134,133,136,137,138,139,139,140,137,141,142,143,142,141,144,145,146,147,147,148,145,149,150,151,150,149,152,153,154,155,154,156,155,157,158,159,160,158,157,161,162,163,162,161,164,162,164,165,164,166,165,167,165,166,165,167,168,169,170,171,170,169,172,172,169,173,174,175,176,175,174,177,175,177,178,179,180,181,180,179,182,182,179,183,184,185,186,185,184,187,185,187,188,189,190,191,190,189,192,192,189,193,194,195,196,195,194,197,195,197,198,199,200,201,199,202,200,202,199,203,202,203,204,203,205,204,205,203,206,207,208,209,208,207,210,210,211,208,211,210,212,213,211,212,211,213,214,215,216,217,216,215,218,218,215,219,218,219,220,220,219,221,219,222,221,221,223,220,223,221,222,224,225,226,226,225,227,227,225,228,225,229,228,230,228,229,228,230,231,232,233,234,234,233,235,235,233,236,233,237,236,238,236,237,236,238,239,240,241,242,241,240,243,244,243,240,245,244,240,246,247,248,247,246,249,249,246,250,250,246,251,250,251,252,253,252,251,254,253,251,255,256,257,258,256,255,258,259,256,260,256,259,256,260,261,262,263,264,263,262,265,266,267,268,267,266,269,269,270,267,270,271,267,269,272,270,271,270,273,270,272,273,271,273,274,272,269,275,
- 275,269,276,275,277,272,275,276,278,277,275,279,279,275,278,280,274,273,280,273,281,274,280,282,281,282,280,283,282,281,281,284,283,285,283,284,283,286,282,286,283,287,288,289,290,289,288,291,289,292,293,292,289,291,291,294,292,295,294,291,295,296,294,291,297,295,298,295,297
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *314 {
- a: 0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
- }
- }
- 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: 2267733712544, "Geometry::", "Mesh" {
- Vertices: *45 {
- a: 407.341796875,-110.894775390625,-50,0,-110.894775390625,-50,342.734375,66.49365234375,-50,0,66.49365234375,-50,342.734375,66.49365234375,50,0,66.49365234375,50,311.017578125,-187.145874023438,50,0,-187.145874023438,50,284.658203125,96.3873291015625,0,0,96.3873291015625,0,311.017578125,-187.145874023438,-5.19284057617188,0,-187.145874023438,-5.19284057617188,407.341796875,2.3480224609375,-50,407.341796875,2.3480224609375,50,407.341796875,-110.894775390625,50
- }
- PolygonVertexIndex: *48 {
- a: 0,1,3,2,-13,5,4,8,-10,4,5,7,6,14,-14,10,11,1,-1,1,11,7,5,9,-4,6,10,0,-15,9,8,2,-4,6,7,11,-11,13,12,2,-5,4,2,-9,14,0,12,-14
- }
- Edges: *24 {
- a: 0,5,11,4,1,30,23,14,10,25,20,2,6,8,7,18,16,15,3,13,37,39,12,27
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *144 {
- a: 1.39140050592346e-008,0,-0.999999940395355,1.39140050592346e-008,0,-0.999999940395355,1.39140050592346e-008,0,-0.999999940395355,1.39140050592346e-008,0,-0.999999940395355,1.39140041710561e-008,0,-1,0,0.858297109603882,0.51315313577652,0,0.858297049999237,0.513153076171875,0,0.858297049999237,0.513153076171875,0,0.858297109603882,0.51315313577652,7.50636797164361e-009,0,1,7.50636708346519e-009,0,1,7.50636708346519e-009,0,1,7.50636708346519e-009,0,0.999999940395355,7.50636797164361e-009,0,1,7.50636708346519e-009,0,1,0,-0.506630122661591,-0.862163484096527,0,-0.506630063056946,-0.862163484096527,0,-0.506630063056946,-0.862163484096527,0,-0.506630063056946,-0.862163543701172,-1,0,0,-1,0,0,-1,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,-0.999999940395355,0,0,0.620675086975098,-0.784067928791046,0,0.620675146579742,-0.784067928791046,0,0.620675146579742,-0.784067869186401,0,0.620675086975098,-0.784067928791046,0,0,0.858297109603882,-0.51315313577652,0,0.858297049999237,-0.513153076171875,0,0.858297049999237,-0.513153076171875,0,0.858297109603882,-0.51315313577652,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.704566061496735,0.709638297557831,0,0.704566061496735,0.709638297557831,0,0.704566061496735,0.709638297557831,0,0.704566061496735,0.709638297557831,0,0.457661956548691,0.889126360416412,0,0.457661956548691,0.889126360416412,0,0.457661926746368,0.889126181602478,0,1,0,0,1,0,0,1,0,0,1,0,0
- }
- NormalsW: *48 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *144 {
- a: 0,1,0,-0.0345319546759129,0.999403595924377,-4.80477824194026e-010,0,1,0,-0.0518056824803352,0.998657286167145,-7.20824566702305e-010,-0.0518056787550449,0.9986572265625,-7.20824455680003e-010,0,-0.51315313577652,0.858297109603882,-0,-0.51315313577652,0.858297169208527,0,-0.51315313577652,0.858297169208527,0,-0.51315313577652,0.858297109603882,0.252724707126617,-0.967538237571716,-1.89704474351515e-009,0,-1,0,0,-1,0,0.50544947385788,-0.862856268882751,-3.79408993111952e-009,-0.707106828689575,0.707106828689575,5.30780397411945e-009,-0.707106828689575,0.707106828689575,5.30780353003024e-009,0,0.862163484096527,-0.506630122661591,0,0.862163603305817,-0.506630122661591,0,0.862163603305817,-0.506630122661591,0,0.862163543701172,-0.506630063056946,0,0.932347655296326,0.361563205718994,0,0.86793726682663,0.496673911809921,0,1,0,0,0.864450216293335,0.502718508243561,0,1,-0,0,0.858297169208527,-0.51315313577652,0.784067928791046,0.620675086975098,0,0.642420649528503,0.508545875549316,0.573303520679474,0.268657922744751,0.212672024965286,0.939464569091797,0.642420649528503,0.508545815944672,0.573303461074829,0,0.51315313577652,0.858297109603882,0,0.51315313577652,0.858297169208527,0,0.51315313577652,0.858297169208527,0,0.51315313577652,0.858297109603882,-0,-0,-1,-0,-0,-1,-0,-0,-1,-0,-0,-1,-0.709638357162476,0.704566121101379,-0,-0.709638357162476,0.704566121101379,-0,-0.709638357162476,0.704566121101379,-0,-0.709638357162476,0.704566121101379,-0,-0,-0,0,-0,-0,0,-0,-0,0,-0,0.822088897228241,0.569359183311462,-0,0.954486489295959,0.298254162073135,0,1,-0,-0,0.954486489295959,0.298254162073135
- }
- BinormalsW: *48 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *144 {
- a: -1,0,-1.39140041710561e-008,-0.999403536319733,-0.0345319546759129,-1.39057059200809e-008,-1,0,-1.39140041710561e-008,-0.9986572265625,-0.0518056787550449,-1.38953213379978e-008,-0.9986572265625,-0.0518056787550449,-1.38953213379978e-008,-1,0,0,-1,0,-0,-1,0,0,-1,0,0,-0.967538237571716,-0.252724707126617,7.26269799855572e-009,-1,0,7.50636708346519e-009,-1,0,7.50636708346519e-009,-0.862856149673462,-0.505449414253235,6.47691411614915e-009,-0.707106828689575,-0.707106828689575,5.30780397411945e-009,-0.707106828689575,-0.707106828689575,5.30780353003024e-009,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0.361563175916672,0.932347536087036,0,-0.496673911809921,0.86793726682663,0,-0,1,0,-0.502718508243561,0.86445015668869,0,0,1,0,0.51315313577652,0.858297109603882,-0,0,-1,0.449508845806122,0.355835199356079,-0.819343149662018,0.736603975296021,0.583102285861969,-0.342646270990372,0.449508875608444,0.355835169553757,-0.819343149662018,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,0,-0,-1,0,-0,-1,0,-0,-1,0,-0,-1,0,-0,-0,0,-0,-0,0,-0,-0,0,0.569359183311462,-0.822088897228241,0,0.298254162073135,-0.954486489295959,0,-0,-1,0,0.298254162073135,-0.954486489295959
- }
- TangentsW: *48 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *54 {
- a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.375,0.125,0.625,0.5,0.375,0.5,0.375,0.375,0.625,0.375,0.625,0.75,0.375,0.75,0.375,0.702563405036926,0.375,0.625,0.375,0.875,0.625,0.875,0.625,1,0.375,1,0.75,0,0.875,0,0.875,0.25,0.75,0.25,0.125,0,0.25,0,0.125,0.0474366173148155,0.125,0.125,0.125,0.25,0.25,0.25
- }
- UVIndex: *48 {
- a: 0,1,2,3,4,5,6,7,8,6,5,9,10,11,12,13,14,15,16,1,17,18,19,20,2,21,22,0,23,8,7,3,2,10,9,14,13,24,4,3,25,25,3,26,23,0,4,24
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *24 {
- 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
- }
- }
- 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: 2267733696672, "Geometry::", "Mesh" {
- Vertices: *30 {
- a: 220.80859375,67.1422119140625,-50,47.478515625,67.1422119140625,-50,220.80859375,152.643188476563,-50,47.478515625,152.643188476563,-50,220.80859375,152.643188476563,50,47.478515625,152.643188476563,50,220.80859375,67.142333984375,50,47.478515625,67.1422119140625,50,220.80859375,186.495727539063,0,47.478515625,186.495727539063,0
- }
- PolygonVertexIndex: *30 {
- a: 0,1,3,-3,5,4,8,-10,4,5,7,-7,6,7,1,-1,1,7,5,9,-4,6,0,2,8,-5,9,8,2,-4
- }
- Edges: *15 {
- a: 0,4,10,3,1,23,19,11,9,15,13,2,5,7,6
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *90 {
- a: 0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0.828060388565063,0.560638844966888,0,0.828060388565063,0.560638844966888,0,0.828060388565063,0.560638844966888,0,0.828060388565063,0.560638844966888,0,0,1,0,0,1,0,0,0.999999940395355,0,0,1,3.52132559555685e-007,-1,6.19753222963482e-007,3.52132559555685e-007,-1,6.19753222963482e-007,3.52132559555685e-007,-1,6.19753222963482e-007,3.52132559555685e-007,-1,6.19753222963482e-007,-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,1,0,0,0,0.828060388565063,-0.560638844966888,0,0.828060388565063,-0.560638844966888,0,0.828060388565063,-0.560638844966888,0,0.828060388565063,-0.560638844966888
- }
- NormalsW: *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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *90 {
- a: 0,1,0,0,1,0,0,1,0,0,1,0,0,-0.560638904571533,0.828060507774353,0,-0.560638904571533,0.828060507774353,0,-0.560638904571533,0.828060507774353,0,-0.560638904571533,0.828060507774353,-0,-1,0,3.52132502712266e-007,-1,0,7.04265005424531e-007,-1,0,3.52132502712266e-007,-1,0,4.36470521184007e-013,-6.19753222963482e-007,-1,2.18235260592003e-013,-6.19753222963482e-007,-1,0,-6.19753222963482e-007,-1,2.18235260592003e-013,-6.19753222963482e-007,-1,0,1,0,0,1,0,0,1,0,-0,-0,-0,0,1,0,0,1,-1.22070309771516e-006,0,1,-6.10351548857579e-007,-0,1,0,-0,-0,-0,0,1,-6.10351548857579e-007,0,0.560638904571533,0.828060507774353,0,0.560638904571533,0.828060507774353,0,0.560638904571533,0.828060507774353,0,0.560638904571533,0.828060507774353
- }
- 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: -1,-0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,0,-1,0,-0,-1,-3.52132502712266e-007,0,-1,-7.04265005424531e-007,0,-1,-3.52132502712266e-007,0,-1,-3.52132559555685e-007,-2.18235233486949e-013,-1,-3.52132559555685e-007,2.71050543121376e-020,-1,-3.52132559555685e-007,2.18235287697058e-013,-1,-3.52132559555685e-007,2.71050543121376e-020,0,-0,1,0,-0,1,0,-0,1,0,-0,-0,0,-0,1,0,-1.22070309771516e-006,-1,0,-6.10351548857579e-007,-1,0,0,-1,0,0,0,0,-6.10351548857579e-007,-1,-1,-0,0,-1,-0,0,-1,-0,0,-1,-0,0
- }
- 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: *36 {
- a: 0.375,0,0.625,0,0.625,0.25,0.375,0.25,0.625,0.5,0.375,0.5,0.375,0.375,0.625,0.375,0.625,0.75,0.375,0.75,0.625,1,0.375,1,0.875,0,0.875,0.25,0.75,0.25,0.125,0,0.25,0.25,0.125,0.25
- }
- UVIndex: *30 {
- a: 0,1,2,3,4,5,6,7,5,4,8,9,9,8,10,11,1,12,13,14,2,15,0,3,16,17,7,6,3,2
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *15 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
- }
- }
- 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: 2268515676704, "Model::SM_Crenelation_Ruined_06", "Null" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,0,1.70530256582424e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,0,1.70530256582424e-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: 2268515662784, "Model::LOD_Group_SM_Crenelation_Ruined_06", "LodGroup" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,0,1.70530256582424e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,0,1.70530256582424e-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: 2268515690624, "Model::SM_Crenelation_Ruined_06_LOD0", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,0,1.70530256582424e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,0,1.70530256582424e-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: 2268515667424, "Model::SM_Crenelation_Ruined_06_LOD1", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,0,1.70530256582424e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,0,1.70530256582424e-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", "uvSet"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2268515695264, "Model::SM_Crenelation_Ruined_06_LOD2", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,0,1.70530256582424e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,0,1.70530256582424e-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", "uvSet"
- }
- Shading: T
- Culling: "CullingOff"
- }
- Model: 2268515697584, "Model::UCX_SM_Crenelation_Ruined_06_LOD0_02", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,0,1.70530256582424e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,0,1.70530256582424e-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: 2268515699904, "Model::UCX_SM_Crenelation_Ruined_06_LOD0_01", "Mesh" {
- Version: 232
- Properties70: {
- P: "RotationPivot", "Vector3D", "Vector", "",0,0,1.70530256582424e-013
- P: "ScalingPivot", "Vector3D", "Vector", "",0,0,1.70530256582424e-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: 2267949114368, "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: 2267949125408, "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: 2267949116768, "Material::MI_Wall_03", "" {
- 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: 2267949097088, "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: 2267949122048, "Material::MI_Bricks_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: 2267949112448, "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: 2268161678752, "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: 2268161703952, "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: 2268161719952, "Video::file56", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Marketplace/PLagueTaleTest_01/Content/Tower Assets/Wall_03_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Marketplace/PLagueTaleTest_01/Content/Tower Assets/Wall_03_BC.png"
- RelativeFilename: "..\..\..\..\..\..\..\Marketplace\PLagueTaleTest_01\Content\Tower Assets\Wall_03_BC.png"
- }
- Video: 2268161721952, "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: 2268161722352, "Video::file61", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Bricks_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Bricks_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Bricks_01_BC.png"
- }
- Video: 2268161714352, "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: 2268161704752, "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"
- }
- Video: 2268161707552, "Video::file57", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Marketplace/PLagueTaleTest_01/Content/Tower Assets/Wall_03_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Marketplace/PLagueTaleTest_01/Content/Tower Assets/Wall_03_N.png"
- RelativeFilename: "..\..\..\..\..\..\..\Marketplace\PLagueTaleTest_01\Content\Tower Assets\Wall_03_N.png"
- }
- Video: 2268161709552, "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: 2268161707952, "Video::file35", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/CapitalsAndCastles/UE4/Scale_Test_01/Scale_Test_01/Content/Materials/T_Bricks_02_N.png"
- }
- UseMipMap: 0
- Filename: "A:/CapitalsAndCastles/UE4/Scale_Test_01/Scale_Test_01/Content/Materials/T_Bricks_02_N.png"
- RelativeFilename: "..\..\..\..\..\..\..\CapitalsAndCastles\UE4\Scale_Test_01\Scale_Test_01\Content\Materials\T_Bricks_02_N.png"
- }
- Texture: 2267949106208, "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: 2267949103808, "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: 2267949110528, "Texture::file56", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file56"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file56"
- FileName: "A:/Marketplace/PLagueTaleTest_01/Content/Tower Assets/Wall_03_BC.png"
- RelativeFilename: "..\..\..\..\..\..\..\Marketplace\PLagueTaleTest_01\Content\Tower Assets\Wall_03_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2267949119168, "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: 2267949104288, "Texture::file61", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file61"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file61"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Bricks_01_BC.png"
- RelativeFilename: "..\..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Bricks_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2267949114848, "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: 2267949108608, "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
- }
- Texture: 2267949105248, "Texture::file57", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file57"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file57"
- FileName: "A:/Marketplace/PLagueTaleTest_01/Content/Tower Assets/Wall_03_N.png"
- RelativeFilename: "..\..\..\..\..\..\..\Marketplace\PLagueTaleTest_01\Content\Tower Assets\Wall_03_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2267949119648, "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: 2267949111488, "Texture::file35", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file35"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "map1"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file35"
- FileName: "A:/CapitalsAndCastles/UE4/Scale_Test_01/Scale_Test_01/Content/Materials/T_Bricks_02_N.png"
- RelativeFilename: "..\..\..\..\..\..\..\CapitalsAndCastles\UE4\Scale_Test_01\Scale_Test_01\Content\Materials\T_Bricks_02_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- AnimationStack: 2268362659808, "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: 2272349528640, "AnimLayer::BaseLayer", "" {
- }
- }
- ; Object connections
- ;------------------------------------------------------------------
- Connections: {
-
- ;Model::SM_Crenelation_Ruined_06, Model::RootNode
- C: "OO",2268515676704,0
-
- ;AnimLayer::BaseLayer, AnimStack::Take 001
- C: "OO",2272349528640,2268362659808
-
- ;NodeAttribute::, Model::SM_Crenelation_Ruined_06
- C: "OO",2268237833536,2268515676704
-
- ;Model::LOD_Group_SM_Crenelation_Ruined_06, Model::SM_Crenelation_Ruined_06
- C: "OO",2268515662784,2268515676704
-
- ;Model::UCX_SM_Crenelation_Ruined_06_LOD0_02, Model::SM_Crenelation_Ruined_06
- C: "OO",2268515697584,2268515676704
-
- ;Model::UCX_SM_Crenelation_Ruined_06_LOD0_01, Model::SM_Crenelation_Ruined_06
- C: "OO",2268515699904,2268515676704
-
- ;NodeAttribute::, Model::LOD_Group_SM_Crenelation_Ruined_06
- C: "OO",2268321084608,2268515662784
-
- ;Model::SM_Crenelation_Ruined_06_LOD0, Model::LOD_Group_SM_Crenelation_Ruined_06
- C: "OO",2268515690624,2268515662784
-
- ;Model::SM_Crenelation_Ruined_06_LOD1, Model::LOD_Group_SM_Crenelation_Ruined_06
- C: "OO",2268515667424,2268515662784
-
- ;Model::SM_Crenelation_Ruined_06_LOD2, Model::LOD_Group_SM_Crenelation_Ruined_06
- C: "OO",2268515695264,2268515662784
-
- ;Texture::file4, Material::MI_Wall_01
- C: "OP",2267949106208,2267949114368, "DiffuseColor"
-
- ;Texture::file24, Material::MI_Wall_01
- C: "OP",2267949114848,2267949114368, "NormalMap"
-
- ;Texture::file83, Material::MI_Battlement_01
- C: "OP",2267949103808,2267949125408, "DiffuseColor"
-
- ;Texture::file84, Material::MI_Battlement_01
- C: "OP",2267949108608,2267949125408, "NormalMap"
-
- ;Texture::file56, Material::MI_Wall_03
- C: "OP",2267949110528,2267949116768, "DiffuseColor"
-
- ;Texture::file57, Material::MI_Wall_03
- C: "OP",2267949105248,2267949116768, "NormalMap"
-
- ;Texture::file89, Material::MI_Trim_01
- C: "OP",2267949119168,2267949097088, "DiffuseColor"
-
- ;Texture::file90, Material::MI_Trim_01
- C: "OP",2267949119648,2267949097088, "NormalMap"
-
- ;Texture::file61, Material::MI_Bricks_01
- C: "OP",2267949104288,2267949122048, "DiffuseColor"
-
- ;Texture::file35, Material::MI_Bricks_01
- C: "OP",2267949111488,2267949122048, "NormalMap"
-
- ;Video::file4, Texture::file4
- C: "OO",2268161678752,2267949106208
-
- ;Video::file83, Texture::file83
- C: "OO",2268161703952,2267949103808
-
- ;Video::file56, Texture::file56
- C: "OO",2268161719952,2267949110528
-
- ;Video::file89, Texture::file89
- C: "OO",2268161721952,2267949119168
-
- ;Video::file61, Texture::file61
- C: "OO",2268161722352,2267949104288
-
- ;Video::file24, Texture::file24
- C: "OO",2268161714352,2267949114848
-
- ;Video::file84, Texture::file84
- C: "OO",2268161704752,2267949108608
-
- ;Video::file57, Texture::file57
- C: "OO",2268161707552,2267949105248
-
- ;Video::file90, Texture::file90
- C: "OO",2268161709552,2267949119648
-
- ;Video::file35, Texture::file35
- C: "OO",2268161707952,2267949111488
-
- ;Geometry::, Model::SM_Crenelation_Ruined_06_LOD0
- C: "OO",2267733681312,2268515690624
-
- ;Material::MI_Wall_01, Model::SM_Crenelation_Ruined_06_LOD0
- C: "OO",2267949114368,2268515690624
-
- ;Material::MI_Battlement_01, Model::SM_Crenelation_Ruined_06_LOD0
- C: "OO",2267949125408,2268515690624
-
- ;Material::MI_Wall_03, Model::SM_Crenelation_Ruined_06_LOD0
- C: "OO",2267949116768,2268515690624
-
- ;Material::MI_Trim_01, Model::SM_Crenelation_Ruined_06_LOD0
- C: "OO",2267949097088,2268515690624
-
- ;Material::MI_Bricks_01, Model::SM_Crenelation_Ruined_06_LOD0
- C: "OO",2267949122048,2268515690624
-
- ;Geometry::, Model::SM_Crenelation_Ruined_06_LOD1
- C: "OO",2267733687968,2268515667424
-
- ;Material::MI_Battlement_01, Model::SM_Crenelation_Ruined_06_LOD1
- C: "OO",2267949125408,2268515667424
-
- ;Material::MI_Trim_01, Model::SM_Crenelation_Ruined_06_LOD1
- C: "OO",2267949097088,2268515667424
-
- ;Material::MI_Bricks_01, Model::SM_Crenelation_Ruined_06_LOD1
- C: "OO",2267949122048,2268515667424
-
- ;Material::MI_Wall_01, Model::SM_Crenelation_Ruined_06_LOD1
- C: "OO",2267949114368,2268515667424
-
- ;Material::MI_Wall_03, Model::SM_Crenelation_Ruined_06_LOD1
- C: "OO",2267949116768,2268515667424
-
- ;Geometry::, Model::SM_Crenelation_Ruined_06_LOD2
- C: "OO",2267733694624,2268515695264
-
- ;Material::MI_Wall_01, Model::SM_Crenelation_Ruined_06_LOD2
- C: "OO",2267949114368,2268515695264
-
- ;Geometry::, Model::UCX_SM_Crenelation_Ruined_06_LOD0_02
- C: "OO",2267733712544,2268515697584
-
- ;Material::M_Collision_01, Model::UCX_SM_Crenelation_Ruined_06_LOD0_02
- C: "OO",2267949112448,2268515697584
-
- ;Geometry::, Model::UCX_SM_Crenelation_Ruined_06_LOD0_01
- C: "OO",2267733696672,2268515699904
-
- ;Material::M_Collision_01, Model::UCX_SM_Crenelation_Ruined_06_LOD0_01
- C: "OO",2267949112448,2268515699904
- }
- ;Takes section
- ;----------------------------------------------------
- Takes: {
- Current: "Take 001"
- Take: "Take 001" {
- FileName: "Take_001.tak"
- LocalTime: 1539538600,46186158000
- ReferenceTime: 1539538600,46186158000
- }
- }
|