| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848 |
- ; 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: 2020
- Month: 9
- Day: 29
- Hour: 10
- Minute: 24
- Second: 27
- Millisecond: 849
- }
- 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\SM_Arch_8m_14.fbx"
- P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Arch_8m_14.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", "", "", "29/09/2020 07:24:27.849"
- P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Arch_8m_14.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", "", "", "29/09/2020 07:24:27.849"
- P: "Original|ApplicationActiveProject", "KString", "", "", "A:\Lordenfel\Maya"
- P: "Original|ApplicationNativeFile", "KString", "", "", "A:\Lordenfel\Maya\Lordenfel_08.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: 2463580641120, "", "Scene" {
- Properties70: {
- P: "SourceObject", "object", "", ""
- P: "ActiveAnimStackName", "KString", "", "", "Take 001"
- }
- RootNode: 0
- }
- }
- ; Document References
- ;------------------------------------------------------------------
- References: {
- }
- ; Object definitions
- ;------------------------------------------------------------------
- Definitions: {
- Version: 100
- Count: 25
- 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: 8
- 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: 6
- 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: 2
- 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: 2
- 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: 2
- 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: 2463548133792, "NodeAttribute::", "Null" {
- Properties70: {
- P: "Look", "enum", "", "",0
- }
- TypeFlags: "Null"
- }
- NodeAttribute: 2463173895136, "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: 2463645305648, "Geometry::", "Mesh" {
- Vertices: *1434 {
- a: 165.8115234375,203.060852050781,-20.25634765625,44.81005859375,192.609375,-55.017578125,134.275390625,204.163146972656,-55.8681640625,76.03125,219.863830566406,-56.8662109375,101.2255859375,180.9453125,-46.140625,79.38134765625,217.707580566406,-52.1142578125,23.8955078125,114.567138671875,-56.1962890625,-5.4365234375,132.3759765625,-56.1376953125,13.3974609375,160.9072265625,-55.09130859375,51.7509765625,130.556396484375,-47.4658203125,72.90625,160.8525390625,-47.37353515625,97.5009765625,187.69677734375,-54.353515625,128.5029296875,239.236572265625,-57.6669921875,109.736328125,233.897216796875,-56.169921875,122.7861328125,231.01953125,-56.92578125,43.0771484375,137.04150390625,-56.5703125,119.6494140625,238.935546875,-50.94482421875,14.54541015625,161.18603515625,-54.92578125,137.4267578125,194.508850097656,-46.9697265625,-6.81396484375,132.231079101563,-56.078125,75.9462890625,221.085021972656,-55.451171875,67.7373046875,166.145751953125,-53.689453125,66.8447265625,168.8310546875,-56.404296875,157.982421875,246.4638671875,-51.9580078125,74.53173828125,160.78076171875,-31.4169921875,164.189453125,213.768127441406,-55.37744140625,156.275390625,246.818603515625,-57.3603515625,98.775390625,188.00048828125,-57.1181640625,101.041015625,180.75830078125,-20.25634765625,135.2509765625,204.346740722656,-57.7724609375,67.044921875,165.104248046875,-57.2021484375,32.1845703125,109.979919433594,-46.5751953125,15.3408203125,162.65234375,-56.904296875,124.83984375,233.0859375,-57.52001953125,16.34375,160.0654296875,-55.98779296875,158.3271484375,244.62841796875,-56.30078125,163.4267578125,211.193176269531,-57.4482421875,43.060546875,139.192626953125,-57.46728515625,122.58203125,235.34033203125,-49.0517578125,43.80419921875,196.211975097656,-56.7431640625,43.4384765625,192.630126953125,-57.6044921875,136.8359375,193.026184082031,-47.125,132.8779296875,204.472717285156,-57.69580078125,13.3564453125,163.351318359375,-54.69384765625,139.39453125,192.5380859375,-47.0927734375,79.900390625,219.417053222656,-55.6015625,
- 165.2236328125,200.186096191406,-47.62890625,80.4345703125,217.731262207031,-57.45458984375,101.04296875,179.131591796875,-26.75830078125,79.72802734375,215.960998535156,-55.0908203125,27.498046875,113.812255859375,-56.8828125,128.38671875,240.31103515625,-56.4833984375,156.02734375,248.28466796875,-56.330078125,43.173828125,197.067687988281,-55.42236328125,14.228515625,160.30810546875,-56.9521484375,-4.23681640625,131.85546875,-57.1748046875,42.5185546875,192.856201171875,-55.744140625,36.14501953125,108.910034179688,-46.73828125,110.3271484375,233.0048828125,-57.36572265625,123.0498046875,237.87890625,-49.4326171875,103.630859375,178.37451171875,-47.6689453125,95.513671875,188.991455078125,-55.7216796875,100.8515625,179.6845703125,-46.49365234375,74.71923828125,160.26806640625,-46.2041015625,74.88037109375,156.7626953125,-47.376953125,124.0830078125,231.3671875,-55.3681640625,44.12890625,193.403137207031,-55.3505859375,166.0947265625,203.553527832031,-47.603515625,50.20556640625,133.5146484375,-47.18798828125,51.8759765625,133.26708984375,-47.458984375,42.318359375,139.25048828125,-54.92626953125,31.96435546875,109.768859863281,-20.25634765625,76.01416015625,220.407897949219,0,119.9697265625,239.0517578125,0,78.81005859375,217.858947753906,0,45.212890625,192.932312011719,0,50.26416015625,133.2314453125,-20.25634765625,72.03515625,161.420166015625,-20.25634765625,139.697265625,192.8779296875,-20.25634765625,-7.083984375,133.17578125,0,51.7548828125,130.08544921875,-20.25634765625,15.1123046875,160.59912109375,0,136.7412109375,193.616271972656,-20.25634765625,137.30078125,194.565979003906,-20.25634765625,157.90576171875,246.73095703125,0,43.9248046875,196.416076660156,0,13.724609375,163.3876953125,0,13.71875,160.40576171875,0,42.11376953125,193.214782714844,0,122.484375,235.7138671875,0,35.74755859375,108.674926757813,-20.25634765625,-5.6796875,133.991943359375,0,123.3701171875,237.193603515625,0,156.46630859375,247.725341796875,0,164.87890625,199.955383300781,-20.25634765625,103.5087890625,177.893310546875,-20.25634765625,
- 78.98046875,220.268737792969,0,97.9345703125,177.384521484375,-20.25634765625,74.36767578125,156.33740234375,-20.25634765625,76.314453125,161.998046875,-20.25634765625,52.1044921875,133.482177734375,-20.25634765625,14.0888671875,70.12890625,-20.25634765625,1.42724609375,42.0390625,-55.8681640625,32.49658203125,108.052001953125,-46.828125,5.0859375,1.03057861328125,-47.68798828125,-38.74072265625,1.16845703125,-52.1142578125,-4.0244140625,1.426513671875,-55.53076171875,-33.6455078125,53.6123046875,-57.6669921875,-37.6650390625,34.521484375,-56.169921875,-29.0009765625,44.6953125,-56.92578125,-37.462890625,45.640380859375,-50.94482421875,9.9560546875,40.51611328125,-46.9697265625,-26.6328125,83.181884765625,-51.9580078125,5.1328125,73.32861328125,-55.37744140625,-27.3076171875,81.70361328125,-57.3603515625,-2.44580078125,3.57098388671875,-57.1181640625,5.0859375,1.03057861328125,-20.25634765625,-27.494140625,84.84814453125,-57.3408203125,0.3310546875,43.1982421875,-57.7724609375,-28.5419921875,47.2744140625,-57.52001953125,-23.1728515625,82.10009765625,-56.30078125,7.5078125,71.30224609375,-57.4482421875,3.9140625,75.123046875,-57.37890625,-35.7236328125,46.96142578125,-49.0517578125,11.1435546875,39.275390625,-47.125,-0.822265625,41.15087890625,-57.69580078125,12.703125,41.31640625,-47.0927734375,21.634765625,114.185791015625,-57.703125,-39.09423828125,3.17254638671875,-55.6015625,18.0712890625,67.724609375,-47.62890625,-8.0126953125,131.68994140625,-58.1533203125,-37.3701171875,2.81561279296875,-57.45458984375,-35.1884765625,0.625244140625,-56.2685546875,-34.64892578125,54.013671875,-56.4833984375,-28.71875,82.17236328125,-56.330078125,-30.16796875,86.029296875,-55.1669921875,-9.43798828125,132.439453125,-56.873046875,-36.599609375,34.624755859375,-57.36572265625,-35.353515625,48.21142578125,-49.4326171875,8.31396484375,2.82342529296875,-47.6689453125,-28.69921875,46.00341796875,-55.3681640625,13.78759765625,70.61328125,-47.603515625,15.3564453125,71.24560546875,-47.5771484375,-37.4150390625,45.97705078125,0,-38.923828125,0.7933349609375,0,
- 12.544921875,41.743408203125,-20.25634765625,10.57763671875,39.46826171875,-20.25634765625,9.8466796875,40.43212890625,-20.25634765625,-26.90380859375,83.24072265625,0,-9.87451171875,133.671264648438,0,-34.77880859375,46.853515625,0,-35.98974609375,48.388916015625,0,-28.0185546875,82.2982177734375,0,-31.2265625,85.8873291015625,0,31.99169921875,107.69580078125,-20.25634765625,18.11328125,67.31103515625,-20.25634765625,8.666015625,2.42913818359375,-20.25634765625,-40.29443359375,2.84686279296875,0,15.9658203125,71.197509765625,-20.25634765625,140.08203125,198.628967285156,-31.57470703125,95.734375,133.388916015625,-32.38525390625,72.70751953125,160.665283203125,-32.591796875,99.7177734375,180.939208984375,-31.6416015625,124.99658203125,139.084228515625,-24.71533203125,153.7470703125,158.50146484375,-24.63134765625,119.16015625,148.203369140625,-32.98486328125,100.880859375,180.792236328125,-31.4912109375,71.2958984375,160.318359375,-32.439453125,151.04052734375,165.383544921875,-30.3681640625,150.056640625,164.707763671875,-33.55859375,102.916015625,125.489013671875,-23.642578125,102.1240234375,181.874755859375,-33.2880859375,102.16748046875,179.110107421875,-32.4560546875,119.826171875,150.179443359375,-33.7998046875,138.8359375,199.179260253906,-33.923828125,100.5205078125,183.231201171875,-31.2802734375,97.8427734375,132.439208984375,-33.2685546875,100.28515625,180.086669921875,-33.33203125,73.6728515625,159.783935546875,-33.5341796875,138.0791015625,199.743225097656,-32.23486328125,105.583984375,124.15869140625,-24.05419921875,154.06201171875,153.990966796875,-24.63427734375,124.51513671875,142.35205078125,-24.462890625,125.9453125,141.505126953125,-24.708984375,119.169921875,150.5048828125,-31.49169921875,102.6689453125,125.03466796875,0,124.4794921875,142.072265625,0,153.1767578125,159.365966796875,0,71.8251953125,160.92041015625,0,124.85595703125,138.654541015625,0,105.15185546875,124.08251953125,0,153.46533203125,153.808837890625,0,126.2177734375,141.61572265625,0,71.43359375,161.6396484375,-32.63623046875,
- 73.5439453125,96.770751953125,0,5.0859375,1.03057861328125,-32.64404296875,54.6875,74.513671875,-32.34716796875,4.0068359375,42.813232421875,-34.3232421875,101.359375,127.059814453125,-24.16943359375,100.8203125,125.46826171875,-24.1357421875,49.51708984375,37.000732421875,-24.9169921875,6.6416015625,44.157470703125,-28.93701171875,47.91015625,1.1566162109375,-24.63134765625,40.9140625,38.67626953125,-32.04052734375,23.62451171875,94.422607421875,-33.9814453125,15.091796875,77.1396484375,-32.62109375,25.91796875,84.736572265625,-33.3076171875,17.9609375,87.759765625,-27.875,62.56640625,70.916259765625,-24.2646484375,3.01806640625,43.530029296875,-33.03759765625,38.71484375,0.5819091796875,-31.43798828125,37.625,2.216796875,-33.90380859375,38.11376953125,120.69287109375,-28.79541015625,65.8349609375,102.333251953125,-31.9013671875,37.0625,119.47900390625,-33.70263671875,42.67138671875,39.58642578125,-33.482421875,50.0615234375,36.66748046875,0,37.74609375,122.5205078125,-33.6845703125,53.8974609375,75.86572265625,-34.0771484375,26.98828125,87.07568359375,-33.84765625,41.130859375,118.685302734375,-32.740234375,67.580078125,99.773681640625,-33.7822265625,65.13525390625,104.346435546875,-33.7197265625,19.966796875,88.58984375,-26.15576171875,1.8505859375,2.60546875,-34.2109375,63.431640625,69.48046875,-24.40576171875,52.31103515625,74.271484375,-34.00732421875,65.39501953125,70.930908203125,-24.3759765625,92.5107421875,134.766845703125,-34.01416015625,6.51220703125,45.501953125,-32.10498046875,76.73388671875,93.407958984375,-24.86328125,70.06396484375,160.8603515625,-34.4228515625,8.14453125,44.82568359375,-33.7880859375,51.2578125,35.6806640625,-5.90625,10.04931640625,42.998046875,-32.7109375,22.755859375,95.064697265625,-32.90576171875,35.8388671875,120.322021484375,-32.7666015625,35.51123046875,124.40380859375,-31.71044921875,68.9560546875,162.02880859375,-33.259765625,0.791015625,2.68896484375,-33.01171875,16.14990234375,76.982421875,-33.70751953125,20.6318359375,89.693115234375,-26.50146484375,93.708984375,135.321533203125,-32.90478515625,
- 53.15966796875,37.110107421875,-24.89990234375,40.1552734375,37.791015625,-33.28369140625,50.7099609375,35.88330078125,-24.9013671875,49.24755859375,2.7451171875,-24.638671875,26.52734375,85.90576171875,-31.89306640625,73.37890625,97.3017578125,-24.84033203125,75.0263671875,97.41552734375,-24.81640625,101.080078125,127.28076171875,0,5.0859375,1.03057861328125,0,46.91015625,0.7760009765625,0,65.3388671875,71.360107421875,0,70.9921875,162.991455078125,0,62.92919921875,69.8017578125,0,62.4423828125,70.8681640625,0,100.2529296875,125.315673828125,0,76.671875,93.0205078125,0,53.451171875,36.7275390625,0,50.62890625,32.396484375,0,48.9560546875,2.99951171875,0,75.5927734375,97.190673828125,0,140.08203125,198.628967285156,31.57470703125,95.734375,133.388916015625,32.38525390625,72.70703125,160.665283203125,32.591796875,99.7177734375,180.939208984375,31.6416015625,124.99658203125,139.084228515625,24.71533203125,153.74658203125,158.50146484375,24.63134765625,119.16015625,148.203369140625,32.98486328125,100.88037109375,180.7919921875,31.4912109375,71.2958984375,160.318115234375,32.439453125,151.041015625,165.38330078125,30.3681640625,150.05615234375,164.707763671875,33.55859375,102.91552734375,125.48876953125,23.642578125,102.1240234375,181.874755859375,33.2880859375,102.16748046875,179.110107421875,32.4560546875,119.826171875,150.179443359375,33.7998046875,138.8359375,199.179260253906,33.923828125,100.52001953125,183.231201171875,31.2802734375,97.8427734375,132.439208984375,33.2685546875,100.28515625,180.086669921875,33.33203125,73.6728515625,159.783935546875,33.5341796875,138.07958984375,199.743225097656,32.23486328125,105.583984375,124.15869140625,24.05419921875,154.06201171875,153.99072265625,24.63427734375,124.5146484375,142.35205078125,24.462890625,125.94482421875,141.505126953125,24.708984375,119.169921875,150.505126953125,31.49169921875,71.43359375,161.639892578125,32.63623046875,5.0859375,1.03057861328125,32.64404296875,54.6875,74.513916015625,32.34716796875,4.00732421875,42.813232421875,34.3232421875,101.359375,127.059814453125,24.16943359375,
- 100.8203125,125.46826171875,24.1357421875,49.517578125,37.000732421875,24.9169921875,6.64111328125,44.15771484375,28.93701171875,47.91015625,1.1566162109375,24.63134765625,40.9140625,38.67626953125,32.04052734375,23.6240234375,94.42236328125,33.9814453125,15.091796875,77.139892578125,32.62109375,25.91796875,84.736328125,33.3076171875,17.9609375,87.759521484375,27.875,62.56640625,70.916748046875,24.2646484375,3.017578125,43.530029296875,33.03759765625,38.71484375,0.5816650390625,31.43798828125,37.62451171875,2.216796875,33.90380859375,38.11328125,120.69287109375,28.79541015625,65.83447265625,102.333251953125,31.9013671875,37.0625,119.47900390625,33.70263671875,42.671875,39.586181640625,33.482421875,37.74560546875,122.5205078125,33.6845703125,53.89794921875,75.865478515625,34.0771484375,26.98828125,87.07568359375,33.84765625,41.13037109375,118.685302734375,32.740234375,67.580078125,99.773681640625,33.7822265625,65.134765625,104.346435546875,33.7197265625,19.966796875,88.58984375,26.15576171875,1.85107421875,2.605712890625,34.2109375,63.431640625,69.48046875,24.40576171875,52.3115234375,74.271484375,34.00732421875,65.39453125,70.930908203125,24.3759765625,92.5107421875,134.766845703125,34.01416015625,6.51220703125,45.501953125,32.10498046875,76.73388671875,93.407958984375,24.86328125,70.064453125,160.8603515625,34.4228515625,8.14453125,44.82568359375,33.7880859375,51.2578125,35.680908203125,5.90625,10.048828125,42.997802734375,32.7109375,22.755859375,95.064697265625,32.90576171875,35.8388671875,120.322021484375,32.7666015625,35.51171875,124.404052734375,31.71044921875,68.9560546875,162.029052734375,33.259765625,0.791015625,2.68896484375,33.01171875,16.1494140625,76.982666015625,33.70751953125,20.6318359375,89.693115234375,26.50146484375,93.708984375,135.321533203125,32.90478515625,53.1591796875,37.110107421875,24.89990234375,40.1552734375,37.791259765625,33.28369140625,50.71044921875,35.883544921875,24.9013671875,49.24755859375,2.744873046875,24.638671875,26.52734375,85.90576171875,31.89306640625,73.37890625,97.302001953125,24.84033203125,
- 75.0263671875,97.41552734375,24.81640625,165.8115234375,203.061096191406,20.25634765625,44.8095703125,192.609375,55.017578125,134.275390625,204.162902832031,55.8681640625,76.03076171875,219.863586425781,56.8662109375,101.2255859375,180.9453125,46.140625,79.380859375,217.707580566406,52.1142578125,23.8955078125,114.567138671875,56.1962890625,-5.4365234375,132.3759765625,56.1376953125,13.3974609375,160.9072265625,55.0908203125,51.7509765625,130.55615234375,47.4658203125,72.90576171875,160.8525390625,47.37353515625,97.5009765625,187.69677734375,54.353515625,128.5029296875,239.236328125,57.6669921875,109.73583984375,233.897216796875,56.169921875,122.7861328125,231.01953125,56.92578125,43.0771484375,137.041748046875,56.5703125,119.6494140625,238.935546875,50.94482421875,14.54541015625,161.18603515625,54.92578125,137.4267578125,194.508850097656,46.9697265625,-5.7353515625,131.671569824219,56.078125,75.94580078125,221.085021972656,55.451171875,67.7373046875,166.145751953125,53.689453125,66.84423828125,168.8310546875,56.404296875,157.98193359375,246.463623046875,51.9580078125,74.53173828125,160.78076171875,31.4169921875,164.18896484375,213.767883300781,55.37744140625,156.275390625,246.818603515625,57.3603515625,98.77490234375,188.000244140625,57.1181640625,101.04052734375,180.758056640625,20.25634765625,135.2509765625,204.346496582031,57.7724609375,67.04443359375,165.104248046875,57.2021484375,32.541015625,109.81396484375,46.86474609375,15.3408203125,162.65234375,56.904296875,124.83984375,233.0859375,57.52001953125,16.34375,160.065185546875,55.98779296875,158.3271484375,244.62841796875,56.30078125,163.42626953125,211.192932128906,57.4482421875,43.06005859375,139.192626953125,57.4677734375,122.58203125,235.340087890625,49.0517578125,43.80419921875,196.211975097656,56.7431640625,43.4384765625,192.6298828125,57.6044921875,136.83642578125,193.026184082031,47.125,132.8779296875,204.472473144531,57.69580078125,13.3564453125,163.35107421875,54.69384765625,139.39453125,192.5380859375,47.0927734375,79.900390625,219.417053222656,55.6015625,
- 165.2236328125,200.185852050781,47.62890625,80.4345703125,217.731262207031,57.455078125,101.04296875,179.13134765625,26.75830078125,79.72802734375,215.960998535156,55.0908203125,27.498046875,113.812255859375,56.8828125,128.38671875,240.31103515625,56.4833984375,156.02734375,248.284912109375,56.330078125,43.173828125,197.067443847656,55.42236328125,14.228515625,160.307861328125,56.9521484375,-4.23681640625,131.85546875,57.1748046875,42.5185546875,192.856201171875,55.744140625,37.5224609375,108.511962890625,46.73828125,110.3271484375,233.0048828125,57.36572265625,123.04931640625,237.87890625,49.4326171875,103.630859375,178.37451171875,47.6689453125,95.513671875,188.991455078125,55.7216796875,100.8515625,179.6845703125,46.49365234375,74.71923828125,160.26806640625,46.2041015625,74.88037109375,156.7626953125,47.376953125,124.0830078125,231.3671875,55.3681640625,44.12890625,193.402893066406,55.3505859375,166.0947265625,203.553527832031,47.603515625,50.20556640625,133.5146484375,47.18798828125,51.8759765625,133.26708984375,47.458984375,42.318359375,139.25048828125,54.9267578125,32.203125,109.9296875,20.25634765625,50.26416015625,133.2314453125,20.25634765625,72.03466796875,161.419921875,20.25634765625,139.697265625,192.8779296875,20.25634765625,51.7548828125,130.085205078125,20.25634765625,136.7412109375,193.616271972656,20.25634765625,137.30078125,194.565979003906,20.25634765625,37.125,108.276611328125,20.25634765625,164.87841796875,199.955139160156,20.25634765625,103.50830078125,177.893310546875,20.25634765625,97.9345703125,177.38427734375,20.25634765625,74.36767578125,156.33740234375,20.25634765625,76.314453125,161.998046875,20.25634765625,52.1044921875,133.482177734375,20.25634765625,14.08837890625,70.12890625,20.25634765625,1.42724609375,42.038818359375,55.8681640625,32.49609375,108.052001953125,46.828125,5.0859375,1.03057861328125,47.68798828125,-38.74072265625,1.16845703125,52.1142578125,-4.0244140625,1.42626953125,55.53076171875,-33.6455078125,53.612060546875,57.6669921875,-37.66552734375,34.521484375,56.169921875,
- -29.0009765625,44.695068359375,56.92578125,-37.462890625,45.640380859375,50.94482421875,9.9560546875,40.51611328125,46.9697265625,-26.6328125,83.181884765625,51.9580078125,5.1328125,73.32861328125,55.37744140625,-27.3076171875,81.70361328125,57.3603515625,-2.44580078125,3.57073974609375,57.1181640625,5.0859375,1.03057861328125,20.25634765625,-27.494140625,84.84814453125,57.3408203125,0.3310546875,43.1982421875,57.7724609375,-28.5419921875,47.2744140625,57.52001953125,-23.1728515625,82.10009765625,56.30078125,7.5078125,71.30224609375,57.4482421875,3.9140625,75.123046875,57.37890625,-35.72412109375,46.96142578125,49.0517578125,11.14306640625,39.275390625,47.125,-0.822265625,41.15087890625,57.69580078125,12.70263671875,41.316162109375,47.0927734375,21.634765625,114.185546875,57.703125,-39.09423828125,3.17254638671875,55.6015625,18.0712890625,67.724609375,47.62890625,-8.0126953125,131.68994140625,58.1533203125,-37.3701171875,2.81561279296875,57.455078125,-35.1884765625,0.625244140625,56.2685546875,-34.64892578125,54.013427734375,56.4833984375,-28.71875,82.17236328125,56.330078125,-30.16796875,86.029296875,55.1669921875,-9.43798828125,132.439453125,56.873046875,-36.599609375,34.624755859375,57.36572265625,-35.35400390625,48.211181640625,49.4326171875,8.31396484375,2.82318115234375,47.6689453125,-28.69921875,46.00341796875,55.3681640625,13.78759765625,70.61328125,47.603515625,15.35595703125,71.24560546875,47.5771484375,12.544921875,41.743408203125,20.25634765625,10.57763671875,39.46826171875,20.25634765625,9.8466796875,40.431884765625,20.25634765625,31.99169921875,107.69580078125,20.25634765625,18.11279296875,67.31103515625,20.25634765625,8.666015625,2.42913818359375,20.25634765625,15.9658203125,71.197509765625,20.25634765625
- }
- PolygonVertexIndex: *1896 {
- a: 4,60,95,-29,22,39,3,-62,69,37,30,-65,22,63,10,-22,43,86,88,-57,45,96,73,16,-14,49,61,-4,32,40,30,-38,46,94,78,-45,27,42,41,-61,58,42,27,-48,2,65,33,-30,58,14,-43,50,57,31,-7,34,15,-55,14,16,-39,33,59,-13,36,46,44,-30,19,7,-56,12,26,36,-30,51,52,26,-13,24,10,-64,29,44,18,-3,53,66,75,-86,36,26,35,-26,23,35,-27,27,60,4,-12,4,28,48,-63,59,51,-13,15,34,-71,29,33,-13,8,17,-55,7,8,54,-56,20,5,-50,24,77,-11,39,22,21,-2,44,78,83,-19,43,56,40,-33,21,30,40,-2,2,42,-15,34,17,-33,27,11,49,-48,50,6,19,-56,53,20,3,-40,1,53,-40,8,87,81,-18,40,56,-2,15,9,57,-51,8,7,91,-88,49,5,45,-48,13,58,47,-46,33,65,38,-60,23,52,93,-85,0,94,-47,14,58,13,-17,2,18,41,-43,11,61,-50,4,62,61,-12,74,96,45,-6,20,49,-4,61,62,63,-23,10,64,30,-22,2,14,-66,38,65,-15,1,66,-54,56,66,-2,46,67,-1,25,67,46,-37,23,26,-53,68,76,-10,69,100,76,-69,37,69,68,-71,70,68,9,-16,54,15,50,-56,70,34,32,-38,54,17,-35,32,17,-44,85,72,20,-54,72,74,5,-21,79,91,7,-20,88,75,66,-57,90,71,31,-58,64,98,100,-70,99,77,-25,81,86,43,-18,73,89,38,-17,28,97,-49,83,82,41,-19,76,80,-10,80,90,57,-10,89,92,59,-39,92,93,52,51,-60,82,95,60,-42,77,98,64,-11,97,99,24,63,-63,97,62,-49,104,139,156,-117,130,127,122,-118,135,136,130,-118,103,31,71,-155,122,127,103,-143,128,157,143,110,-109,129,155,145,-127,115,125,124,-140,137,125,115,-132,102,140,119,-119,137,109,-126,109,110,-124,119,138,-108,121,129,126,-119,136,149,79,-20,107,114,121,-119,133,134,114,-108,122,120,-118,118,126,111,-103,121,114,120,-114,112,120,-115,115,139,104,-107,138,133,-108,118,119,-108,120,135,-118,120,122,-114,126,145,147,-112,102,125,-110,127,6,-32,115,106,132,-132,19,130,-137,132,105,128,-132,108,137,131,-129,119,140,123,-139,112,134,152,-149,135,153,149,-137,19,6,127,-131,103,154,158,-143,101,155,-130,109,137,108,-111,102,111,124,-126,144,157,128,-106,102,109,-141,123,140,-110,120,112,-136,148,153,135,-113,129,141,-102,113,141,129,-122,101,141,-143,122,142,141,-114,142,158,-102,112,114,-135,127,31,-104,143,150,123,-111,147,146,124,-112,150,151,138,-124,151,152,134,133,-139,146,156,139,-125,185,188,-171,
- 160,170,188,-168,183,173,169,-182,171,174,169,-174,176,180,170,-161,165,177,172,-185,167,161,-179,177,162,166,-173,178,161,162,-178,171,175,179,-175,159,168,169,-175,171,172,166,-176,178,176,160,-168,174,179,-160,165,163,180,-177,164,181,169,-169,163,182,186,-190,182,183,192,-187,173,183,182,-185,165,184,182,-164,178,177,165,-177,184,172,-174,173,172,-172,190,185,170,-181,183,181,191,-193,189,190,180,-164,164,187,191,-182,198,193,254,-251,200,243,259,-217,211,224,197,-245,231,228,222,-218,211,246,202,-211,237,238,231,-218,199,198,250,-258,222,228,199,-250,234,244,-198,230,258,253,-228,215,226,225,-244,240,226,215,-233,196,247,219,-219,240,206,-227,206,207,-224,219,241,-205,221,230,227,-219,204,214,221,-219,235,236,214,-205,222,220,-218,218,227,208,-197,221,214,220,-214,212,220,-215,215,243,200,-204,200,216,233,-246,241,235,-205,218,219,-205,220,237,-218,209,201,-235,220,222,-214,224,211,210,-196,227,253,256,-209,196,226,-207,228,242,-199,215,203,234,-233,193,231,-239,239,209,197,-225,195,239,-225,234,201,229,-233,205,240,232,-230,219,247,223,-242,193,198,-243,193,242,228,-232,199,257,262,-250,194,258,-231,206,240,205,-208,196,208,225,-227,203,244,-235,200,245,244,-204,209,234,-198,244,245,246,-212,196,206,-248,223,247,-207,220,212,-238,230,248,-195,213,248,230,-222,194,248,-250,222,249,248,-214,249,262,-195,212,214,-237,228,198,-200,246,261,252,-203,216,260,-234,256,255,225,-209,255,259,243,-226,260,261,246,-246,260,245,-234,185,274,-189,188,274,264,-272,287,285,273,-278,275,277,273,-279,280,264,274,-285,276,281,269,-289,271,282,-266,270,266,281,-277,266,265,282,-282,283,279,275,-279,273,272,263,-279,270,276,275,-280,264,280,282,-272,278,263,-284,269,280,284,-268,268,272,273,-286,186,286,267,-190,192,287,286,-187,277,288,286,-288,286,288,269,-268,269,281,282,-281,288,277,-277,276,277,-276,190,284,274,-186,191,285,287,-193,189,267,284,-191,191,187,268,-286,293,250,254,-290,295,216,259,-338,306,338,292,-319,325,311,316,-323,306,305,297,-341,331,311,325,-333,294,257,250,-294,316,343,294,-323,328,292,-339,324,321,253,
- -259,310,337,319,-321,334,326,310,-321,291,312,313,-342,334,320,-302,301,317,-303,313,299,-336,315,312,321,-325,299,312,315,-310,329,299,309,-331,316,311,-315,261,340,297,-253,312,291,303,-322,315,308,314,-310,307,309,-315,310,298,295,-338,295,339,327,-217,335,299,-330,312,299,-314,314,311,-332,304,328,-297,314,308,-317,318,290,305,-307,321,303,256,-254,291,301,-321,322,293,-337,310,326,328,-299,289,332,-326,333,318,292,-305,290,318,-334,328,326,323,-297,300,323,326,-335,313,335,317,-342,289,336,-294,289,325,322,-337,294,343,262,-258,194,324,-259,301,302,300,-335,291,320,319,-304,298,328,-339,295,298,338,-340,304,292,-329,338,306,340,-340,291,341,-302,317,301,-342,314,331,-308,324,194,-343,308,315,324,-343,194,343,-343,316,308,342,-344,343,194,-263,307,330,-310,322,294,-294,216,327,-261,256,303,319,-256,255,319,337,-260,260,339,340,-262,260,327,-340,348,372,424,-405,366,405,347,-384,413,408,374,-382,366,365,354,-408,387,400,88,-87,389,357,360,73,-97,393,347,-406,376,381,374,-385,390,388,418,-424,371,404,385,-387,402,391,371,-387,346,373,377,-410,402,386,-359,394,350,375,-402,378,398,-360,358,382,-361,377,356,-404,380,373,388,-391,363,399,-352,356,373,380,-371,395,356,370,-397,368,407,-355,373,346,362,-389,397,85,75,-411,380,369,379,-371,367,370,-380,371,355,348,-405,348,406,392,-373,403,356,-396,359,414,-379,373,356,-378,352,398,-362,351,399,398,-353,364,393,-350,368,354,-418,383,345,365,-367,388,362,421,-419,387,376,384,-401,365,345,384,-375,346,358,-387,378,376,-362,371,391,393,-356,394,399,363,-351,397,383,347,-365,345,383,-398,352,361,81,-88,384,345,-401,359,394,401,-354,352,87,91,-352,393,391,389,-350,357,389,391,-403,377,403,382,-410,367,84,93,-397,344,390,-424,358,360,357,-403,346,386,385,-363,355,393,-406,348,355,405,-407,74,349,389,-97,364,347,-394,405,366,407,-407,354,365,374,-409,346,409,-359,382,358,-410,345,397,-411,400,345,-411,390,344,-412,369,380,390,-412,367,396,-371,412,353,-417,413,412,416,-429,381,414,412,-414,414,359,353,-413,398,399,394,-360,414,381,376,-379,398,378,-362,376,387,-362,85,397,364,
- -73,72,364,349,-75,79,363,351,-92,88,400,410,-76,422,401,375,-416,408,413,428,-427,427,368,-418,81,361,387,-87,73,360,382,-90,372,392,-426,421,362,385,-421,416,353,-420,419,353,401,-423,89,382,403,-93,92,403,395,396,-94,420,385,404,-425,417,354,408,-427,425,406,407,368,-428,425,392,-407,432,444,476,-468,458,445,450,-456,463,445,458,-465,431,474,415,-376,450,470,431,-456,456,436,438,143,-158,457,454,471,-476,443,467,452,-454,465,459,443,-454,430,446,447,-469,465,453,-438,437,451,-439,447,435,-467,449,446,454,-458,464,363,79,-150,435,446,449,-443,461,435,442,-463,450,445,-449,446,430,439,-455,449,441,448,-443,440,442,-449,443,434,432,-468,466,435,-462,446,435,-448,448,445,-464,448,441,-451,454,439,473,-472,430,437,-454,455,375,-351,443,459,460,-435,363,464,-459,460,459,456,-434,436,456,459,-466,447,466,451,-469,440,148,152,-463,463,464,149,-154,363,458,455,-351,431,470,477,-475,429,457,-476,437,438,436,-466,430,453,452,-440,144,433,456,-158,430,468,-438,451,437,-469,448,463,-441,148,440,463,-154,457,429,-470,441,449,457,-470,429,470,-470,450,441,469,-471,470,429,-478,440,462,-443,455,431,-376,143,438,451,-151,473,439,452,-473,150,451,466,-152,151,466,461,462,-153,472,452,467,-477,116,444,432,434,460,433,144,105,132,106,-105,252,297,305,290,251,195,210,-203,168,159,263,-273,168,272,268,-188,187,164,-169,159,179,283,-264,279,283,179,-176,161,167,188,-163,271,265,-189,188,265,266,-163,279,175,-271,270,175,-267,175,166,-267,166,162,-267,78,94,423,-419,94,0,344,-424,23,84,367,379,369,411,344,0,67,25,-36
- }
- Edges: *987 {
- a: 157,5,4,296,9,104,121,27,25,53,154,28,29,68,69,156,252,84,36,125,145,229,76,49,23,171,55,174,60,3,148,117,0,38,64,35,206,99,290,15,14,71,72,78,169,114,67,74,46,91,100,102,47,139,62,52,322,31,63,146,57,94,24,180,122,93,92,260,79,59,130,141,203,133,129,143,277,83,150,42,197,151,54,138,75,191,158,160,89,161,116,119,70,19,136,66,172,51,298,181,183,40,48,43,189,105,61,329,32,58,37,39,1,7,221,6,210,103,20,123,13,12,81,224,10,299,305,45,44,188,234,86,237,240,241,243,96,256,11,8,110,259,56,109,115,147,280,22,216,87,251,124,34,166,318,194,16,164,18,311,176,192,315,250,253,2,17,279,21,283,287,291,295,300,33,303,88,306,310,314,317,132,321,193,165,324,328,332,195,337,213,341,345,254,349,357,358,365,370,371,424,382,455,510,416,395,376,399,356,353,384,403,381,435,411,412,418,443,420,419,406,414,392,427,436,360,393,401,402,430,377,467,466,429,428,447,398,502,451,453,423,460,388,496,463,461,415,478,364,362,516,361,410,407,405,468,470,386,394,389,476,437,400,554,456,378,397,383,385,354,373,391,390,475,522,523,525,530,531,372,432,359,458,375,508,380,537,550,481,546,479,482,368,492,355,367,374,379,408,545,549,450,480,553,557,483,491,494,562,505,518,568,574,569,572,577,578,589,590,612,627,665,619,622,608,597,571,626,617,593,605,582,630,580,594,586,638,607,604,610,584,600,592,599,591,601,602,620,581,656,623,575,658,631,576,573,588,637,585,587,628,632,566,653,659,629,661,666,633,669,799,678,677,681,682,762,693,698,699,772,703,701,746,708,888,788,855,738,721,834,725,676,673,710,729,707,840,757,688,687,733,734,740,769,742,741,732,736,718,749,758,760,684,719,727,728,752,813,807,773,751,750,776,724,781,837,784,780,786,745,793,714,831,796,794,737,882,692,690,861,689,798,800,802,803,731,808,810,712,720,715,816,763,726,820,790,789,704,723,709,711,674,680,851,679,844,761,774,686,685,886,717,716,815,863,864,866,871,872,700,754,683,791,672,1831,706,670,878,894,696,891,827,671,675,695,705,887,890,893,783,826,829,897,901,904,908,917,912,913,922,921,933,932,955,970,1008,964,961,951,938,914,965,959,934,946,925,971,919,937,927,977,948,
- 947,953,923,943,935,940,931,942,945,963,926,995,968,916,999,974,915,918,929,978,928,930,969,973,1014,1148,1021,1022,1026,1025,1105,1038,1041,1040,1120,1043,1045,1091,1053,1088,1132,1201,1081,1063,1179,1065,1015,1018,1051,1074,1046,1188,1102,1027,1028,1078,1077,1079,1117,1084,1085,1071,1075,1059,1096,1101,1107,1023,1058,1069,1068,1100,1156,1154,1119,1094,1095,1122,1066,1124,1184,1129,1125,1134,1092,1140,1055,1175,1144,1139,1082,1226,1031,1033,1207,1034,1142,1147,1145,1151,1072,1153,1159,1057,1064,1054,1161,1111,1070,1164,1136,1137,1049,1067,1052,1050,1017,1019,1198,1020,1191,1106,1118,1029,1030,1086,1060,1061,1162,1211,1210,1215,1217,1216,1039,1098,1024,1135,1011,1830,1047,1013,1237,1035,1233,1172,1243,1410,1256,1257,1547,1260,1351,1373,1275,1277,1302,1405,1281,1280,1320,1319,1403,1500,1333,1289,1375,1393,1479,1327,1299,1271,1424,1307,1421,1308,1250,1396,1370,1253,1287,1317,1282,1458,1348,1537,1262,1263,1324,1323,1325,1419,1366,1314,1321,1295,1342,1347,1353,1294,1392,1312,1303,1572,1278,1311,1398,1305,1346,1270,1431,1372,1340,1341,1507,1331,1309,1377,1390,1454,1382,1378,1395,1527,1334,1401,1291,1445,1400,1301,1385,1328,1444,1409,1407,1336,1413,1364,1368,1318,1266,1387,1315,1423,1304,1545,1430,1436,1293,1300,1290,1438,1357,1313,1580,1285,1310,1288,1286,1252,1254,1472,1255,1461,1352,1274,1371,1264,1265,1329,1477,1259,1552,1553,1296,1297,1439,1486,1339,1489,1492,1491,1496,1344,1503,1258,1261,1358,1508,1306,1359,1365,1397,1531,1272,1463,1338,1501,1376,1283,1415,1569,1441,1269,1417,1267,1562,1427,1443,1565,1502,1506,1251,1548,1551,1284,1555,177,1566,1570,1383,1573,1577,1447,1590,1594,1599,1505,1595,1610,1609,1618,1621,1620,1673,1635,1703,1760,1667,1645,1624,1647,1603,1606,1633,1656,1628,1684,1664,1663,1665,1695,1670,1671,1653,1661,1641,1678,1683,1607,1640,1651,1650,1682,1623,1718,1719,1676,1677,1697,1648,1753,1700,1705,1674,1711,1637,1744,1715,1710,1668,1731,1611,1613,1766,1614,1657,1660,1654,1717,1723,1639,1646,1636,1725,1689,1652,1805,1708,1631,1649,1634,1632,1605,1627,1642,1643,1726,1774,1773,1778,1780,1779,1619,1680,
- 1608,1706,1625,1755,1629,1787,1801,1728,1797,1730,1735,1615,1741,1604,1616,1630,1802,1701,1742,1746,1815,1816,1836,1847,567,648,909,990,1838,1842,1853,1856,1859,1866,1869,1872,1863,1882,1880,1878
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *5688 {
- a: -0.518535912036896,-0.838391602039337,-0.167988508939743,0.337555855512619,-0.892323851585388,-0.299690246582031,0.331374824047089,-0.943496644496918,0.00217071967199445,-0.611155390739441,-0.791439652442932,0.0106051126495004,0.0650704205036163,-0.180380582809448,-0.981442093849182,-0.0253751184791327,0.00613661855459213,-0.99965912103653,-0.00501109566539526,0.0333154648542404,-0.999432265758514,0.134136348962784,-0.140492796897888,-0.980953216552734,0.661115765571594,-0.685588240623474,-0.304786652326584,0.0992997288703918,-0.149157389998436,-0.983814895153046,0.171153128147125,-0.0786775872111321,-0.982097983360291,0.7603520154953,-0.582524359226227,-0.287280589342117,0.0650704205036163,-0.180380582809448,-0.981442093849182,0.544648826122284,-0.773938298225403,-0.323074579238892,0.935838878154755,0.308347314596176,-0.170667663216591,0.686779141426086,0.344468265771866,-0.640059292316437,-0.760875165462494,0.648553311824799,-0.0211572628468275,-0.759675860404968,0.650302052497864,6.68233553824393e-007,-0.691503882408142,0.722372829914093,7.3714386417123e-007,-0.695302605628967,0.718104660511017,-0.0296654999256134,-0.442320734262466,0.896305978298187,-0.0314294993877411,-0.461399048566818,0.887192726135254,-8.43403313410818e-007,-0.349567502737045,0.936911225318909,-6.96419192536268e-007,-0.372813761234283,0.927553236484528,-0.0255900397896767,-0.42218616604805,0.905760049819946,-0.036847248673439,-0.4647296667099,-0.236025646328926,-0.853415668010712,0.134136348962784,-0.140492796897888,-0.980953216552734,-0.00501109566539526,0.0333154648542404,-0.999432265758514,-0.0679884254932404,0.0319447666406631,-0.997174620628357,0.00504413107410073,0.0745989978313446,-0.997200846672058,0.171153128147125,-0.0786775872111321,-0.982097983360291,0.0992997288703918,-0.149157389998436,-0.983814895153046,0.306998014450073,-0.894741415977478,-0.324330031871796,0.34788390994072,-0.937537014484406,0.00105211220216006,0.240052759647369,-0.970759212970734,0.00117678847163916,0.193639636039734,-0.932801604270935,-0.303949028253555,
- 0.0333635807037354,-0.216231226921082,-0.975771963596344,0.112800054252148,-0.196690514683723,-0.97395533323288,0.415895640850067,-0.859642744064331,-0.296724081039429,0.337555855512619,-0.892323851585388,-0.299690246582031,-0.0111037706956267,0.0617851503193378,-0.998027682304382,0.112800054252148,-0.196690514683723,-0.97395533323288,0.0333635807037354,-0.216231226921082,-0.975771963596344,-0.0715248733758926,0.00172653375193477,-0.997437357902527,-0.400405377149582,-0.448369711637497,-0.799149692058563,-0.703390419483185,-0.0744020491838455,-0.706898987293243,-0.441111415624619,-0.00668907165527344,-0.897427320480347,0.00872160959988832,-0.206971317529678,-0.978308141231537,-0.0111037706956267,0.0617851503193378,-0.998027682304382,0.149755716323853,0.207288905978203,-0.966749429702759,0.112800054252148,-0.196690514683723,-0.97395533323288,0.13428208231926,-0.136014819145203,-0.981564223766327,0.710224628448486,-0.648627936840057,-0.27361074090004,-0.264814794063568,-0.95973938703537,-0.0936658307909966,-0.317929238080978,-0.684644997119904,-0.655882835388184,-0.404693752527237,-0.484571903944016,-0.775508224964142,0.173260405659676,-0.0757765993475914,-0.981956601142883,-0.0208132546395063,0.0342724695801735,-0.999195754528046,0.149755716323853,0.207288905978203,-0.966749429702759,-0.372813761234283,0.927553236484528,-0.0255900397896767,0.415380150079727,0.907566785812378,-0.061496663838625,-0.441111415624619,-0.00668907165527344,-0.897427320480347,-0.330506086349487,0.943687438964844,0.0148201007395983,-0.0168437343090773,0.0391084626317024,-0.999092936515808,0.101911582052708,-0.181668967008591,-0.978064656257629,0.306998014450073,-0.894741415977478,-0.324330031871796,0.193639636039734,-0.932801604270935,-0.303949028253555,0.00872160959988832,-0.206971317529678,-0.978308141231537,-0.417752981185913,0.888960003852844,-0.187702804803848,-0.806116461753845,0.591219186782837,-0.0252236593514681,-0.0475194528698921,-0.01181017793715,-0.99880051612854,-0.0168437343090773,0.0391084626317024,-0.999092936515808,0.0275428686290979,0.0427649058401585,-0.998705446720123,
- 0.101911582052708,-0.181668967008591,-0.978064656257629,0.00872160959988832,-0.206971317529678,-0.978308141231537,-0.300950527191162,0.953633725643158,0.00339253409765661,-0.280420333147049,0.959877073764801,0.000705338316038251,0.0275428686290979,0.0427649058401585,-0.998705446720123,-0.0168437343090773,0.0391084626317024,-0.999092936515808,0.562850713729858,-0.826525688171387,0.00737156253308058,0.935838878154755,0.308347314596176,-0.170667663216591,0.544648826122284,-0.773938298225403,-0.323074579238892,0.00872160959988832,-0.206971317529678,-0.978308141231537,0.193639636039734,-0.932801604270935,-0.303949028253555,-0.190676122903824,-0.938605904579163,-0.287509143352509,-0.400405377149582,-0.448369711637497,-0.799149692058563,-0.658831596374512,0.752281129360199,-0.00373942195437849,-0.922289550304413,0.38649520277977,0.00182902067899704,-0.94901579618454,0.315228641033173,6.73862672329051e-008,-0.661382019519806,0.750049233436584,-4.96339907840593e-007,0.101911582052708,-0.181668967008591,-0.978064656257629,0.0275428686290979,0.0427649058401585,-0.998705446720123,0.740481197834015,0.166048467159271,-0.651241600513458,0.793749451637268,0.0697271749377251,-0.604234993457794,0.642245709896088,0.7664874792099,-0.00415395386517048,0.740481197834015,0.166048467159271,-0.651241600513458,0.0275428686290979,0.0427649058401585,-0.998705446720123,0.0333635807037354,-0.216231226921082,-0.975771963596344,0.337555855512619,-0.892323851585388,-0.299690246582031,-0.518535912036896,-0.838391602039337,-0.167988508939743,-0.612215280532837,-0.571279942989349,-0.546654939651489,-0.518535912036896,-0.838391602039337,-0.167988508939743,-0.611155390739441,-0.791439652442932,0.0106051126495004,0.821235775947571,-0.570544123649597,-0.0071467156521976,0.566478908061981,-0.748178660869598,-0.345442205667496,-0.330506086349487,0.943687438964844,0.0148201007395983,-0.300950527191162,0.953633725643158,0.00339253409765661,-0.0168437343090773,0.0391084626317024,-0.999092936515808,0.173260405659676,-0.0757765993475914,-0.981956601142883,-0.404693752527237,-0.484571903944016,-0.775508224964142,
- -0.0373133271932602,-0.359861016273499,-0.932259500026703,0.00872160959988832,-0.206971317529678,-0.978308141231537,-0.441111415624619,-0.00668907165527344,-0.897427320480347,-0.0168437343090773,0.0391084626317024,-0.999092936515808,-0.807286322116852,0.589673697948456,-0.0239549111574888,-0.997769236564636,0.0650292038917542,-0.0150879416614771,-0.0208132546395063,0.0342724695801735,-0.999195754528046,-0.806116461753845,0.591219186782837,-0.0252236593514681,-0.807286322116852,0.589673697948456,-0.0239549111574888,-0.0208132546395063,0.0342724695801735,-0.999195754528046,-0.0475194528698921,-0.01181017793715,-0.99880051612854,-0.542943716049194,0.83976823091507,-0.00119962613098323,0.114784613251686,0.993274033069611,-0.0152020854875445,-0.4647296667099,-0.236025646328926,-0.853415668010712,0.562850713729858,-0.826525688171387,0.00737156253308058,0.965690851211548,0.256964325904846,0.0375576131045818,0.935838878154755,0.308347314596176,-0.170667663216591,-0.0253751184791327,0.00613661855459213,-0.99965912103653,0.0650704205036163,-0.180380582809448,-0.981442093849182,0.686779141426086,0.344468265771866,-0.640059292316437,0.0625641569495201,0.0381840765476227,-0.997310280799866,0.193639636039734,-0.932801604270935,-0.303949028253555,0.240052759647369,-0.970759212970734,0.00117678847163916,-0.215296342968941,-0.976473689079285,0.0121067874133587,-0.190676122903824,-0.938605904579163,-0.287509143352509,-0.760875165462494,0.648553311824799,-0.0211572628468275,-0.695302605628967,0.718104660511017,-0.0296654999256134,0.00504413107410073,0.0745989978313446,-0.997200846672058,-0.0679884254932404,0.0319447666406631,-0.997174620628357,0.686779141426086,0.344468265771866,-0.640059292316437,0.171153128147125,-0.0786775872111321,-0.982097983360291,0.00504413107410073,0.0745989978313446,-0.997200846672058,0.0625641569495201,0.0381840765476227,-0.997310280799866,-0.400405377149582,-0.448369711637497,-0.799149692058563,0.112800054252148,-0.196690514683723,-0.97395533323288,0.149755716323853,0.207288905978203,-0.966749429702759,-0.404693752527237,-0.484571903944016,-0.775508224964142,
- -0.997769236564636,0.0650292038917542,-0.0150879416614771,-0.0679884254932404,0.0319447666406631,-0.997174620628357,0.0333635807037354,-0.216231226921082,-0.975771963596344,-0.612215280532837,-0.571279942989349,-0.546654939651489,-0.4647296667099,-0.236025646328926,-0.853415668010712,-0.0715248733758926,0.00172653375193477,-0.997437357902527,0.13428208231926,-0.136014819145203,-0.981564223766327,-0.317929238080978,-0.684644997119904,-0.655882835388184,-0.417752981185913,0.888960003852844,-0.187702804803848,-0.0475194528698921,-0.01181017793715,-0.99880051612854,-0.658831596374512,0.752281129360199,-0.00373942195437849,-0.542943716049194,0.83976823091507,-0.00119962613098323,-0.00501109566539526,0.0333154648542404,-0.999432265758514,-0.0253751184791327,0.00613661855459213,-0.99965912103653,0.0625641569495201,0.0381840765476227,-0.997310280799866,-0.658831596374512,0.752281129360199,-0.00373942195437849,-0.0253751184791327,0.00613661855459213,-0.99965912103653,-0.807286322116852,0.589673697948456,-0.0239549111574888,-0.805599629878998,0.59246027469635,1.9001351603265e-009,-0.999992966651917,-0.00375574012286961,-1.90853839399097e-007,-0.997769236564636,0.0650292038917542,-0.0150879416614771,0.00504413107410073,0.0745989978313446,-0.997200846672058,-0.695302605628967,0.718104660511017,-0.0296654999256134,0.0625641569495201,0.0381840765476227,-0.997310280799866,0.173260405659676,-0.0757765993475914,-0.981956601142883,0.805320739746094,-0.5186807513237,-0.287103950977325,0.710224628448486,-0.648627936840057,-0.27361074090004,0.13428208231926,-0.136014819145203,-0.981564223766327,-0.807286322116852,0.589673697948456,-0.0239549111574888,-0.806116461753845,0.591219186782837,-0.0252236593514681,-0.811456441879272,0.584412932395935,7.52008236304391e-006,-0.805599629878998,0.59246027469635,1.9001351603265e-009,-0.4647296667099,-0.236025646328926,-0.853415668010712,0.114784613251686,0.993274033069611,-0.0152020854875445,-0.442320734262466,0.896305978298187,-0.0314294993877411,-0.0715248733758926,0.00172653375193477,-0.997437357902527,
- -0.42218616604805,0.905760049819946,-0.036847248673439,-0.0111037706956267,0.0617851503193378,-0.998027682304382,-0.0715248733758926,0.00172653375193477,-0.997437357902527,-0.442320734262466,0.896305978298187,-0.0314294993877411,-0.441111415624619,-0.00668907165527344,-0.897427320480347,-0.703390419483185,-0.0744020491838455,-0.706898987293243,0.415380150079727,0.907566785812378,-0.061496663838625,-0.330506086349487,0.943687438964844,0.0148201007395983,0.642245709896088,0.7664874792099,-0.00415395386517048,-0.280420333147049,0.959877073764801,0.000705338316038251,-0.251168996095657,0.96794331073761,-1.09130269265734e-006,0.638469815254211,0.769646883010864,1.83705242307042e-006,0.95797073841095,-0.286856085062027,0.00238210032694042,0.34788390994072,-0.937537014484406,0.00105211220216006,0.306998014450073,-0.894741415977478,-0.324330031871796,0.149755716323853,0.207288905978203,-0.966749429702759,-0.0111037706956267,0.0617851503193378,-0.998027682304382,-0.42218616604805,0.905760049819946,-0.036847248673439,-0.372813761234283,0.927553236484528,-0.0255900397896767,-0.400405377149582,-0.448369711637497,-0.799149692058563,-0.190676122903824,-0.938605904579163,-0.287509143352509,0.415895640850067,-0.859642744064331,-0.296724081039429,0.112800054252148,-0.196690514683723,-0.97395533323288,-0.612215280532837,-0.571279942989349,-0.546654939651489,0.134136348962784,-0.140492796897888,-0.980953216552734,-0.4647296667099,-0.236025646328926,-0.853415668010712,-0.518535912036896,-0.838391602039337,-0.167988508939743,0.566478908061981,-0.748178660869598,-0.345442205667496,0.134136348962784,-0.140492796897888,-0.980953216552734,-0.612215280532837,-0.571279942989349,-0.546654939651489,0.249409228563309,0.968398153781891,2.86556155515427e-006,-0.461399048566818,0.887192726135254,-8.43403313410818e-007,-0.442320734262466,0.896305978298187,-0.0314294993877411,0.114784613251686,0.993274033069611,-0.0152020854875445,-0.542943716049194,0.83976823091507,-0.00119962613098323,-0.4647296667099,-0.236025646328926,-0.853415668010712,-0.00501109566539526,0.0333154648542404,-0.999432265758514,
- 0.134136348962784,-0.140492796897888,-0.980953216552734,0.566478908061981,-0.748178660869598,-0.345442205667496,0.544648826122284,-0.773938298225403,-0.323074579238892,0.0650704205036163,-0.180380582809448,-0.981442093849182,0.935838878154755,0.308347314596176,-0.170667663216591,0.7603520154953,-0.582524359226227,-0.287280589342117,0.171153128147125,-0.0786775872111321,-0.982097983360291,0.686779141426086,0.344468265771866,-0.640059292316437,-0.400405377149582,-0.448369711637497,-0.799149692058563,0.149755716323853,0.207288905978203,-0.966749429702759,-0.703390419483185,-0.0744020491838455,-0.706898987293243,0.415380150079727,0.907566785812378,-0.061496663838625,-0.703390419483185,-0.0744020491838455,-0.706898987293243,0.149755716323853,0.207288905978203,-0.966749429702759,0.0625641569495201,0.0381840765476227,-0.997310280799866,-0.922289550304413,0.38649520277977,0.00182902067899704,-0.658831596374512,0.752281129360199,-0.00373942195437849,-0.695302605628967,0.718104660511017,-0.0296654999256134,-0.922289550304413,0.38649520277977,0.00182902067899704,0.0625641569495201,0.0381840765476227,-0.997310280799866,0.306998014450073,-0.894741415977478,-0.324330031871796,0.962016701698303,-0.186239033937454,-0.199596658349037,0.95797073841095,-0.286856085062027,0.00238210032694042,0.793749451637268,0.0697271749377251,-0.604234993457794,0.962016701698303,-0.186239033937454,-0.199596658349037,0.306998014450073,-0.894741415977478,-0.324330031871796,0.101911582052708,-0.181668967008591,-0.978064656257629,0.642245709896088,0.7664874792099,-0.00415395386517048,0.0275428686290979,0.0427649058401585,-0.998705446720123,-0.280420333147049,0.959877073764801,0.000705338316038251,0.828131139278412,-0.439163953065872,-0.348329961299896,0.845453500747681,-0.534022390842438,0.00533290626481175,0.805320739746094,-0.5186807513237,-0.287103950977325,0.661115765571594,-0.685588240623474,-0.304786652326584,0.689282834529877,-0.724491775035858,0.000936258060391992,0.845453500747681,-0.534022390842438,0.00533290626481175,0.828131139278412,-0.439163953065872,-0.348329961299896,
- 0.0992997288703918,-0.149157389998436,-0.983814895153046,0.661115765571594,-0.685588240623474,-0.304786652326584,0.828131139278412,-0.439163953065872,-0.348329961299896,-0.0373133271932602,-0.359861016273499,-0.932259500026703,-0.0373133271932602,-0.359861016273499,-0.932259500026703,0.828131139278412,-0.439163953065872,-0.348329961299896,0.805320739746094,-0.5186807513237,-0.287103950977325,0.173260405659676,-0.0757765993475914,-0.981956601142883,-0.0208132546395063,0.0342724695801735,-0.999195754528046,0.173260405659676,-0.0757765993475914,-0.981956601142883,0.13428208231926,-0.136014819145203,-0.981564223766327,-0.0475194528698921,-0.01181017793715,-0.99880051612854,-0.0373133271932602,-0.359861016273499,-0.932259500026703,-0.404693752527237,-0.484571903944016,-0.775508224964142,-0.0679884254932404,0.0319447666406631,-0.997174620628357,0.0992997288703918,-0.149157389998436,-0.983814895153046,-0.0208132546395063,0.0342724695801735,-0.999195754528046,-0.997769236564636,0.0650292038917542,-0.0150879416614771,-0.404693752527237,-0.484571903944016,-0.775508224964142,-0.0679884254932404,0.0319447666406631,-0.997174620628357,-0.997769236564636,0.0650292038917542,-0.0150879416614771,-0.760875165462494,0.648553311824799,-0.0211572628468275,-0.661382019519806,0.750049233436584,-4.96339907840593e-007,-0.511869311332703,0.859063327312469,-7.8733755515259e-008,-0.542943716049194,0.83976823091507,-0.00119962613098323,-0.658831596374512,0.752281129360199,-0.00373942195437849,-0.511869311332703,0.859063327312469,-7.8733755515259e-008,0.249409228563309,0.968398153781891,2.86556155515427e-006,0.114784613251686,0.993274033069611,-0.0152020854875445,-0.542943716049194,0.83976823091507,-0.00119962613098323,-0.484060615301132,0.87503457069397,0.000106643739854917,-0.811456441879272,0.584412932395935,7.52008236304391e-006,-0.806116461753845,0.591219186782837,-0.0252236593514681,-0.417752981185913,0.888960003852844,-0.187702804803848,-0.691503882408142,0.722372829914093,7.3714386417123e-007,-0.94901579618454,0.315228641033173,6.73862672329051e-008,
- -0.922289550304413,0.38649520277977,0.00182902067899704,-0.695302605628967,0.718104660511017,-0.0296654999256134,0.720377385616302,-0.693574190139771,-0.00336512364447117,-0.269325196743011,-0.962983071804047,-0.0112877767533064,-0.264814794063568,-0.95973938703537,-0.0936658307909966,0.710224628448486,-0.648627936840057,-0.27361074090004,0.7603520154953,-0.582524359226227,-0.287280589342117,0.803104996681213,-0.595823049545288,0.00414239196106792,0.689282834529877,-0.724491775035858,0.000936258060391992,0.661115765571594,-0.685588240623474,-0.304786652326584,0.576312065124512,-0.817184150218964,0.00862669013440609,0.965690851211548,0.256964325904846,0.0375576131045818,0.562850713729858,-0.826525688171387,0.00737156253308058,-0.999992966651917,-0.00375574012286961,-1.90853839399097e-007,-0.759675860404968,0.650302052497864,6.68233553824393e-007,-0.760875165462494,0.648553311824799,-0.0211572628468275,-0.997769236564636,0.0650292038917542,-0.0150879416614771,-0.349567502737045,0.936911225318909,-6.96419192536268e-007,0.403797924518585,0.914848208427429,6.12031714197769e-009,0.415380150079727,0.907566785812378,-0.061496663838625,-0.372813761234283,0.927553236484528,-0.0255900397896767,-0.611155390739441,-0.791439652442932,0.0106051126495004,0.586154758930206,-0.810156583786011,0.00830775499343872,0.821235775947571,-0.570544123649597,-0.0071467156521976,-0.215296342968941,-0.976473689079285,0.0121067874133587,0.436660885810852,-0.899618625640869,0.00370766874402761,0.415895640850067,-0.859642744064331,-0.296724081039429,-0.190676122903824,-0.938605904579163,-0.287509143352509,0.845453500747681,-0.534022390842438,0.00533290626481175,0.837527394294739,-0.546393811702728,-0.00135842594318092,0.805320739746094,-0.5186807513237,-0.287103950977325,0.837527394294739,-0.546393811702728,-0.00135842594318092,0.720377385616302,-0.693574190139771,-0.00336512364447117,0.710224628448486,-0.648627936840057,-0.27361074090004,0.805320739746094,-0.5186807513237,-0.287103950977325,0.403797924518585,0.914848208427429,6.12031714197769e-009,
- -0.339778989553452,0.940505266189575,-1.34768902171345e-006,-0.330506086349487,0.943687438964844,0.0148201007395983,0.415380150079727,0.907566785812378,-0.061496663838625,-0.339778989553452,0.940505266189575,-1.34768902171345e-006,-0.251168996095657,0.96794331073761,-1.09130269265734e-006,-0.280420333147049,0.959877073764801,0.000705338316038251,-0.300950527191162,0.953633725643158,0.00339253409765661,-0.330506086349487,0.943687438964844,0.0148201007395983,0.436660885810852,-0.899618625640869,0.00370766874402761,0.331374824047089,-0.943496644496918,0.00217071967199445,0.337555855512619,-0.892323851585388,-0.299690246582031,0.415895640850067,-0.859642744064331,-0.296724081039429,0.965690851211548,0.256964325904846,0.0375576131045818,0.803104996681213,-0.595823049545288,0.00414239196106792,0.7603520154953,-0.582524359226227,-0.287280589342117,0.935838878154755,0.308347314596176,-0.170667663216591,0.586154758930206,-0.810156583786011,0.00830775499343872,0.576312065124512,-0.817184150218964,0.00862669013440609,0.562850713729858,-0.826525688171387,0.00737156253308058,0.544648826122284,-0.773938298225403,-0.323074579238892,0.566478908061981,-0.748178660869598,-0.345442205667496,0.586154758930206,-0.810156583786011,0.00830775499343872,0.566478908061981,-0.748178660869598,-0.345442205667496,0.821235775947571,-0.570544123649597,-0.0071467156521976,0.439998716115952,-0.874612092971802,-0.203604742884636,0.947766542434692,-0.131116896867752,-0.290769428014755,0.988661229610443,-0.150140687823296,0.00259618530981243,0.424448549747467,-0.905405044555664,-0.00923372805118561,-0.036936279386282,0.0370020233094692,-0.998632371425629,0.18717160820961,-0.0510095283389091,-0.981001973152161,0.163365989923477,-0.104078240692616,-0.981060266494751,-0.0543340668082237,-0.000179311740794219,-0.998522877693176,-0.932826399803162,0.356397956609726,-0.0530607514083385,-0.894855201244354,0.443056672811508,-0.0541747137904167,-0.036936279386282,0.0370020233094692,-0.998632371425629,-0.0543340668082237,-0.000179311740794219,-0.998522877693176,
- 0.869616866111755,-0.373934507369995,-0.322396457195282,0.982256233692169,0.11311312764883,-0.149593219161034,0.99639368057251,0.0835923254489899,0.0145564572885633,0.92011022567749,-0.391639083623886,-0.00399168347939849,0.163365989923477,-0.104078240692616,-0.981060266494751,0.18717160820961,-0.0510095283389091,-0.981001973152161,0.869616866111755,-0.373934507369995,-0.322396457195282,0.852442145347595,-0.399459302425385,-0.337305098772049,-0.998647332191467,0.0397253893315792,-0.0335454158484936,-0.99950784444809,0.0313712507486343,-2.09321524380357e-006,-0.995324671268463,0.0965862646698952,-2.1920448034507e-006,-0.99627023935318,0.0818122327327728,-0.0274303872138262,-0.997490406036377,0.0596703849732876,-0.0381070598959923,0.938523948192596,-0.124128974974155,-0.322125464677811,0.992079436779022,-0.125573933124542,0.00308424653485417,0.957591593265533,-0.288115113973618,0.00280961417593062,0.915156483650208,-0.265198588371277,-0.303575962781906,0.218208163976669,-0.0497388355433941,-0.974633872509003,0.230292528867722,0.00900822132825851,-0.973079800605774,0.954786002635956,-0.0410142317414284,-0.294451236724854,0.947766542434692,-0.131116896867752,-0.290769428014755,-0.0594997368752956,0.0197896491736174,-0.998032093048096,0.230292528867722,0.00900822132825851,-0.973079800605774,0.218208163976669,-0.0497388355433941,-0.974633872509003,-0.0398446433246136,-0.0345951206982136,-0.998606860637665,0.322047799825668,-0.543920397758484,-0.774877965450287,-0.285087704658508,-0.426847279071808,-0.858211100101471,-0.171832427382469,-0.419705212116241,-0.891246914863586,0.182087555527687,-0.0973675549030304,-0.978449583053589,-0.0594997368752956,0.0197896491736174,-0.998032093048096,-0.112464100122452,0.221905305981636,-0.968560695648193,0.230292528867722,0.00900822132825851,-0.973079800605774,-0.112464100122452,0.221905305981636,-0.968560695648193,-0.99627023935318,0.0818122327327728,-0.0274303872138262,-0.77141410112381,0.633809387683868,-0.0566199496388435,-0.171832427382469,-0.419705212116241,-0.891246914863586,-0.981111466884613,0.193419128656387,-0.00304747885093093,
- -0.044252872467041,-0.0008254325366579,-0.999020099639893,0.210914745926857,0.0104011651128531,-0.977449119091034,0.938523948192596,-0.124128974974155,-0.322125464677811,0.915156483650208,-0.265198588371277,-0.303575962781906,0.182087555527687,-0.0973675549030304,-0.978449583053589,-0.894855201244354,0.443056672811508,-0.0541747137904167,-0.888665020465851,0.458556890487671,0.000180288319825195,0.165744334459305,0.98616349697113,0.00321727152913809,0.238370344042778,0.946244478225708,-0.218634516000748,-0.044252872467041,-0.0008254325366579,-0.999020099639893,-0.026317672803998,0.0416108779609203,-0.99878716468811,0.210914745926857,0.0104011651128531,-0.977449119091034,0.182087555527687,-0.0973675549030304,-0.978449583053589,-0.977966725826263,0.208433151245117,-0.0116897253319621,-0.974617600440979,0.223425328731537,-0.0142016336321831,-0.026317672803998,0.0416108779609203,-0.99878716468811,-0.044252872467041,-0.0008254325366579,-0.999020099639893,0.163365989923477,-0.104078240692616,-0.981060266494751,0.0914860144257545,0.399955987930298,-0.911956965923309,-0.0543340668082237,-0.000179311740794219,-0.998522877693176,0.182087555527687,-0.0973675549030304,-0.978449583053589,0.915156483650208,-0.265198588371277,-0.303575962781906,0.761827766895294,-0.58837229013443,-0.270991533994675,0.322047799825668,-0.543920397758484,-0.774877965450287,0.210914745926857,0.0104011651128531,-0.977449119091034,-0.026317672803998,0.0416108779609203,-0.99878716468811,0.0914860144257545,0.399955987930298,-0.911956965923309,0.35911837220192,0.497477799654007,-0.789651811122894,-0.888087034225464,-0.459150701761246,-0.0219568535685539,0.0914860144257545,0.399955987930298,-0.911956965923309,-0.026317672803998,0.0416108779609203,-0.99878716468811,0.218208163976669,-0.0497388355433941,-0.974633872509003,0.947766542434692,-0.131116896867752,-0.290769428014755,0.439998716115952,-0.874612092971802,-0.203604742884636,0.129745572805405,-0.601667702198029,-0.788138389587402,-0.981111466884613,0.193419128656387,-0.00304747885093093,-0.977966725826263,0.208433151245117,-0.0116897253319621,
- -0.044252872467041,-0.0008254325366579,-0.999020099639893,0.182087555527687,-0.0973675549030304,-0.978449583053589,-0.171832427382469,-0.419705212116241,-0.891246914863586,-0.044252872467041,-0.0008254325366579,-0.999020099639893,0.0914860144257545,0.399955987930298,-0.911956965923309,-0.932826399803162,0.356397956609726,-0.0530607514083385,-0.0543340668082237,-0.000179311740794219,-0.998522877693176,0.0914860144257545,0.399955987930298,-0.911956965923309,0.163365989923477,-0.104078240692616,-0.981060266494751,0.35911837220192,0.497477799654007,-0.789651811122894,0.915156483650208,-0.265198588371277,-0.303575962781906,0.957591593265533,-0.288115113973618,0.00280961417593062,0.775470316410065,-0.631261229515076,0.0124447233974934,0.761827766895294,-0.58837229013443,-0.270991533994675,0.322047799825668,-0.543920397758484,-0.774877965450287,0.230292528867722,0.00900822132825851,-0.973079800605774,-0.112464100122452,0.221905305981636,-0.968560695648193,0.18717160820961,-0.0510095283389091,-0.981001973152161,0.528936624526978,0.448013097047806,-0.720770537853241,0.982256233692169,0.11311312764883,-0.149593219161034,0.218208163976669,-0.0497388355433941,-0.974633872509003,0.129745572805405,-0.601667702198029,-0.788138389587402,-0.0231882780790329,-0.567445337772369,-0.823084473609924,-0.0398446433246136,-0.0345951206982136,-0.998606860637665,0.238370344042778,0.946244478225708,-0.218634516000748,-0.036936279386282,0.0370020233094692,-0.998632371425629,-0.894855201244354,0.443056672811508,-0.0541747137904167,-0.0231882780790329,-0.567445337772369,-0.823084473609924,-0.907648503780365,-0.418715208768845,-0.029184602200985,-0.998647332191467,0.0397253893315792,-0.0335454158484936,-0.0398446433246136,-0.0345951206982136,-0.998606860637665,-0.997490406036377,0.0596703849732876,-0.0381070598959923,-0.0594997368752956,0.0197896491736174,-0.998032093048096,-0.0398446433246136,-0.0345951206982136,-0.998606860637665,-0.998647332191467,0.0397253893315792,-0.0335454158484936,-0.171832427382469,-0.419705212116241,-0.891246914863586,
- -0.285087704658508,-0.426847279071808,-0.858211100101471,-0.77141410112381,0.633809387683868,-0.0566199496388435,-0.981111466884613,0.193419128656387,-0.00304747885093093,-0.888087034225464,-0.459150701761246,-0.0219568535685539,-0.974617600440979,0.223425328731537,-0.0142016336321831,-0.969277381896973,0.24597030878067,-9.60722701393024e-008,-0.846765398979187,-0.53196656703949,1.54001895680267e-008,-0.932826399803162,0.356397956609726,-0.0530607514083385,-0.944668054580688,0.328027814626694,-9.04110031285654e-009,-0.888665020465851,0.458556890487671,0.000180288319825195,-0.894855201244354,0.443056672811508,-0.0541747137904167,0.238370344042778,0.946244478225708,-0.218634516000748,0.528936624526978,0.448013097047806,-0.720770537853241,0.18717160820961,-0.0510095283389091,-0.981001973152161,-0.036936279386282,0.0370020233094692,-0.998632371425629,0.869616866111755,-0.373934507369995,-0.322396457195282,0.92011022567749,-0.391639083623886,-0.00399168347939849,0.904638469219208,-0.426149368286133,-0.00508422590792179,0.852442145347595,-0.399459302425385,-0.337305098772049,0.867623627185822,0.497182041406631,0.00627308478578925,0.992079436779022,-0.125573933124542,0.00308424653485417,0.938523948192596,-0.124128974974155,-0.322125464677811,-0.112464100122452,0.221905305981636,-0.968560695648193,-0.0594997368752956,0.0197896491736174,-0.998032093048096,-0.997490406036377,0.0596703849732876,-0.0381070598959923,-0.99627023935318,0.0818122327327728,-0.0274303872138262,0.322047799825668,-0.543920397758484,-0.774877965450287,0.761827766895294,-0.58837229013443,-0.270991533994675,0.954786002635956,-0.0410142317414284,-0.294451236724854,0.230292528867722,0.00900822132825851,-0.973079800605774,-0.915854871273041,-0.401509523391724,0,-0.99950784444809,0.0313712507486343,-2.09321524380357e-006,-0.998647332191467,0.0397253893315792,-0.0335454158484936,-0.907648503780365,-0.418715208768845,-0.029184602200985,0.322047799825668,-0.543920397758484,-0.774877965450287,-0.112464100122452,0.221905305981636,-0.968560695648193,-0.285087704658508,-0.426847279071808,-0.858211100101471,
- -0.77141410112381,0.633809387683868,-0.0566199496388435,-0.285087704658508,-0.426847279071808,-0.858211100101471,-0.112464100122452,0.221905305981636,-0.968560695648193,0.0914860144257545,0.399955987930298,-0.911956965923309,-0.888087034225464,-0.459150701761246,-0.0219568535685539,-0.932826399803162,0.356397956609726,-0.0530607514083385,-0.846765398979187,-0.53196656703949,1.54001895680267e-008,-0.944668054580688,0.328027814626694,-9.04110031285654e-009,-0.932826399803162,0.356397956609726,-0.0530607514083385,-0.888087034225464,-0.459150701761246,-0.0219568535685539,0.938523948192596,-0.124128974974155,-0.322125464677811,0.733624696731567,0.615089356899261,-0.288894474506378,0.867623627185822,0.497182041406631,0.00627308478578925,0.35911837220192,0.497477799654007,-0.789651811122894,0.733624696731567,0.615089356899261,-0.288894474506378,0.938523948192596,-0.124128974974155,-0.322125464677811,0.210914745926857,0.0104011651128531,-0.977449119091034,0.867623627185822,0.497182041406631,0.00627308478578925,0.733624696731567,0.615089356899261,-0.288894474506378,0.852442145347595,-0.399459302425385,-0.337305098772049,0.163365989923477,-0.104078240692616,-0.981060266494751,0.852442145347595,-0.399459302425385,-0.337305098772049,0.733624696731567,0.615089356899261,-0.288894474506378,0.35911837220192,0.497477799654007,-0.789651811122894,0.852442145347595,-0.399459302425385,-0.337305098772049,0.904638469219208,-0.426149368286133,-0.00508422590792179,0.867623627185822,0.497182041406631,0.00627308478578925,-0.888087034225464,-0.459150701761246,-0.0219568535685539,-0.026317672803998,0.0416108779609203,-0.99878716468811,-0.974617600440979,0.223425328731537,-0.0142016336321831,0.18717160820961,-0.0510095283389091,-0.981001973152161,0.982256233692169,0.11311312764883,-0.149593219161034,0.869616866111755,-0.373934507369995,-0.322396457195282,-0.995324671268463,0.0965862646698952,-2.1920448034507e-006,-0.814019381999969,0.580837607383728,-3.32047989104467e-006,-0.77141410112381,0.633809387683868,-0.0566199496388435,-0.99627023935318,0.0818122327327728,-0.0274303872138262,
- 0.775470316410065,-0.631261229515076,0.0124447233974934,0.999298393726349,-0.0372495949268341,0.00390606047585607,0.954786002635956,-0.0410142317414284,-0.294451236724854,0.761827766895294,-0.58837229013443,-0.270991533994675,-0.814019381999969,0.580837607383728,-3.32047989104467e-006,-0.981136918067932,0.193314477801323,-2.79703073147175e-007,-0.981111466884613,0.193419128656387,-0.00304747885093093,-0.77141410112381,0.633809387683868,-0.0566199496388435,-0.981136918067932,0.193314477801323,-2.79703073147175e-007,-0.969277381896973,0.24597030878067,-9.60722701393024e-008,-0.974617600440979,0.223425328731537,-0.0142016336321831,-0.977966725826263,0.208433151245117,-0.0116897253319621,-0.981111466884613,0.193419128656387,-0.00304747885093093,0.999298393726349,-0.0372495949268341,0.00390606047585607,0.988661229610443,-0.150140687823296,0.00259618530981243,0.947766542434692,-0.131116896867752,-0.290769428014755,0.954786002635956,-0.0410142317414284,-0.294451236724854,-0.727274656295776,-0.686346530914307,-1.05055842141155e-005,-0.746138513088226,-0.665790736675262,7.84162011768785e-007,-0.723590672016144,-0.690167546272278,-0.0092359958216548,-0.73964923620224,-0.672224938869476,-0.0321336649358273,-0.723590672016144,-0.690167546272278,-0.0092359958216548,-0.746138513088226,-0.665790736675262,7.84162011768785e-007,-0.743085026741028,-0.669195711612701,-0.00131791015155613,0.356895267963409,-0.872115969657898,-0.334722965955734,0.0380984432995319,-0.153906732797623,-0.987350642681122,0.118375353515148,-0.119100674986839,-0.985800325870514,0.491993755102158,-0.81147313117981,-0.315362453460693,-0.0410963967442513,0.0568258725106716,-0.997537851333618,0.0301780588924885,0.0619674324989319,-0.997621834278107,0.118375353515148,-0.119100674986839,-0.985800325870514,0.0380984432995319,-0.153906732797623,-0.987350642681122,0.073575347661972,-0.144876196980476,-0.986710429191589,0.507488191127777,-0.799642622470856,-0.320978909730911,-0.723590672016144,-0.690167546272278,-0.0092359958216548,-0.73964923620224,-0.672224938869476,-0.0321336649358273,
- 0.128820911049843,-0.105671674013138,-0.98602157831192,0.00159754930064082,0.0427951812744141,-0.999082565307617,0.28442919254303,0.187130883336067,-0.940256476402283,0.242050394415855,-0.0630737245082855,-0.968211352825165,-0.743085026741028,-0.669195711612701,-0.00131791015155613,-0.439970225095749,0.606656670570374,-0.662113070487976,-0.0498524531722069,-0.000109712185803801,-0.998756587505341,0.00159754930064082,0.0427951812744141,-0.999082565307617,-0.412440747022629,0.626641988754272,-0.661220371723175,-0.541587829589844,0.241546720266342,-0.805194139480591,0.28442919254303,0.187130883336067,-0.940256476402283,-0.0498524531722069,-0.000109712185803801,-0.998756587505341,-0.439970225095749,0.606656670570374,-0.662113070487976,-0.412440747022629,0.626641988754272,-0.661220371723175,0.00159754930064082,0.0427951812744141,-0.999082565307617,-0.0410963967442513,0.0568258725106716,-0.997537851333618,-0.369071394205093,0.702186703681946,-0.608867943286896,0.110963501036167,0.937901854515076,-0.328674972057343,0.0301780588924885,0.0619674324989319,-0.997621834278107,0.717934429645538,0.674856066703796,-0.17070309817791,0.907544791698456,0.223426833748817,-0.35558819770813,0.118375353515148,-0.119100674986839,-0.985800325870514,0.0301780588924885,0.0619674324989319,-0.997621834278107,-0.0410963967442513,0.0568258725106716,-0.997537851333618,0.28442919254303,0.187130883336067,-0.940256476402283,-0.541587829589844,0.241546720266342,-0.805194139480591,-0.369071394205093,0.702186703681946,-0.608867943286896,-0.0498524531722069,-0.000109712185803801,-0.998756587505341,0.073575347661972,-0.144876196980476,-0.986710429191589,-0.73964923620224,-0.672224938869476,-0.0321336649358273,-0.743085026741028,-0.669195711612701,-0.00131791015155613,0.0301780588924885,0.0619674324989319,-0.997621834278107,0.110963501036167,0.937901854515076,-0.328674972057343,0.717934429645538,0.674856066703796,-0.17070309817791,0.128820911049843,-0.105671674013138,-0.98602157831192,0.636270761489868,-0.696747601032257,-0.331213533878326,0.507488191127777,-0.799642622470856,-0.320978909730911,
- 0.073575347661972,-0.144876196980476,-0.986710429191589,0.994157135486603,0.0675622522830963,-0.0841832384467125,0.491993755102158,-0.81147313117981,-0.315362453460693,0.118375353515148,-0.119100674986839,-0.985800325870514,0.907544791698456,0.223426833748817,-0.35558819770813,0.636270761489868,-0.696747601032257,-0.331213533878326,0.862495362758636,-0.429878979921341,-0.267031341791153,0.920300185680389,-0.391212970018387,2.86288764073106e-006,0.68627804517746,-0.727339386940002,5.09226822487108e-007,0.862495362758636,-0.429878979921341,-0.267031341791153,0.356895267963409,-0.872115969657898,-0.334722965955734,0.371451318264008,-0.928452491760254,-4.52793443628252e-007,0.920300185680389,-0.391212970018387,2.86288764073106e-006,0.0380984432995319,-0.153906732797623,-0.987350642681122,0.356895267963409,-0.872115969657898,-0.334722965955734,0.862495362758636,-0.429878979921341,-0.267031341791153,0.242050394415855,-0.0630737245082855,-0.968211352825165,0.128820911049843,-0.105671674013138,-0.98602157831192,0.242050394415855,-0.0630737245082855,-0.968211352825165,0.862495362758636,-0.429878979921341,-0.267031341791153,0.636270761489868,-0.696747601032257,-0.331213533878326,-0.0498524531722069,-0.000109712185803801,-0.998756587505341,0.00159754930064082,0.0427951812744141,-0.999082565307617,0.128820911049843,-0.105671674013138,-0.98602157831192,0.073575347661972,-0.144876196980476,-0.986710429191589,0.242050394415855,-0.0630737245082855,-0.968211352825165,0.28442919254303,0.187130883336067,-0.940256476402283,0.0380984432995319,-0.153906732797623,-0.987350642681122,0.0380984432995319,-0.153906732797623,-0.987350642681122,0.28442919254303,0.187130883336067,-0.940256476402283,-0.0410963967442513,0.0568258725106716,-0.997537851333618,0.523827970027924,-0.851824045181274,-4.95342760586936e-007,-0.727274656295776,-0.686346530914307,-1.05055842141155e-005,-0.723590672016144,-0.690167546272278,-0.0092359958216548,0.507488191127777,-0.799642622470856,-0.320978909730911,0.356895267963409,-0.872115969657898,-0.334722965955734,0.491993755102158,-0.81147313117981,-0.315362453460693,
- 0.5333291888237,-0.845907747745514,5.33594857188291e-007,0.371451318264008,-0.928452491760254,-4.52793443628252e-007,0.68627804517746,-0.727339386940002,5.09226822487108e-007,0.523827970027924,-0.851824045181274,-4.95342760586936e-007,0.507488191127777,-0.799642622470856,-0.320978909730911,0.636270761489868,-0.696747601032257,-0.331213533878326,0.994157135486603,0.0675622522830963,-0.0841832384467125,0.998207092285156,0.0598547458648682,5.11918960910407e-006,0.5333291888237,-0.845907747745514,5.33594857188291e-007,0.491993755102158,-0.81147313117981,-0.315362453460693,0.781275510787964,0.623967707157135,-0.0165163949131966,0.759858906269073,0.648147583007813,-0.0501909255981445,0.761007845401764,0.648742735385895,-1.54400913743302e-006,0.780031144618988,0.625740826129913,-1.53381006384734e-006,0.401799321174622,-0.866470456123352,-0.296287566423416,0.88049590587616,-0.342968255281448,-0.327261120080948,0.925477802753448,-0.378801941871643,4.44414899902768e-006,0.208481475710869,-0.978026330471039,-2.58475802183966e-006,0.168623045086861,-0.0517860539257526,-0.98431921005249,-0.0182502120733261,-0.0135083459317684,-0.999742269515991,-0.0269335489720106,0.015416344627738,-0.999518394470215,0.175917655229568,0.011215491220355,-0.984340906143188,-0.0221305191516876,0.0435516461730003,-0.998806059360504,0.138361275196075,-0.0995216444134712,-0.985368728637695,0.108278401196003,-0.132379487156868,-0.985267221927643,-0.0490833260118961,0.0154445497319102,-0.998675286769867,0.168623045086861,-0.0517860539257526,-0.98431921005249,0.93932044506073,-0.0866242572665215,-0.331923693418503,0.714404881000519,-0.659928560256958,-0.23263680934906,0.207741647958755,-0.720445871353149,-0.661665499210358,-0.480133235454559,0.311567068099976,-0.819998741149902,-0.437100380659103,0.365420311689377,-0.821834146976471,-0.0221305191516876,0.0435516461730003,-0.998806059360504,-0.0490833260118961,0.0154445497319102,-0.998675286769867,0.704847514629364,-0.615299999713898,-0.352981358766556,0.781275510787964,0.623967707157135,-0.0165163949131966,
- 0.780031144618988,0.625740826129913,-1.53381006384734e-006,0.755027234554291,-0.655693411827087,6.97855773168499e-009,0.108278401196003,-0.132379487156868,-0.985267221927643,0.138361275196075,-0.0995216444134712,-0.985368728637695,0.704847514629364,-0.615299999713898,-0.352981358766556,0.682502746582031,-0.630110144615173,-0.3703393638134,-0.0472411997616291,-0.136983215808868,-0.989446222782135,0.175917655229568,0.011215491220355,-0.984340906143188,-0.0269335489720106,0.015416344627738,-0.999518394470215,0.863316655158997,-0.360671252012253,-0.352988213300705,0.925672292709351,-0.378326416015625,4.23513620262383e-006,0.844791352748871,-0.535095751285553,4.77341245641583e-006,0.802211463451386,-0.495368540287018,-0.333267033100128,0.169197782874107,-0.0850756093859673,-0.981903374195099,0.195728778839111,-0.0358522497117519,-0.980002462863922,0.910895109176636,-0.252805590629578,-0.326127916574478,0.88049590587616,-0.342968255281448,-0.327261120080948,-0.0503305569291115,0.031306479126215,-0.99824184179306,0.195728778839111,-0.0358522497117519,-0.980002462863922,0.169197782874107,-0.0850756093859673,-0.981903374195099,-0.0429741181433201,-0.0211012437939644,-0.998853325843811,0.157274410128593,-0.586983680725098,-0.794175624847412,-0.357447117567062,-0.328397929668427,-0.874291896820068,-0.252352148294449,-0.340019911527634,-0.905927658081055,0.130756855010986,-0.129355907440186,-0.98293936252594,-0.0503305569291115,0.031306479126215,-0.99824184179306,-0.0475192628800869,0.222934514284134,-0.973674595355988,0.195728778839111,-0.0358522497117519,-0.980002462863922,-0.0475192628800869,0.222934514284134,-0.973674595355988,-0.324013143777847,0.583792924880981,-0.744446873664856,-0.461090445518494,0.487390726804733,-0.741515934467316,-0.252352148294449,-0.340019911527634,-0.905927658081055,-0.755170404911041,-0.315147519111633,-0.57480400800705,-0.0399958789348602,0.00985555443912745,-0.999151170253754,0.185359820723534,-0.0375935658812523,-0.981951355934143,0.863316655158997,-0.360671252012253,-0.352988213300705,0.802211463451386,-0.495368540287018,-0.333267033100128,
- 0.130756855010986,-0.129355907440186,-0.98293936252594,-0.0399958789348602,0.00985555443912745,-0.999151170253754,-0.0132126687094569,0.0440264008939266,-0.998943030834198,0.185359820723534,-0.0375935658812523,-0.981951355934143,0.130756855010986,-0.129355907440186,-0.98293936252594,-0.599178075790405,0.224979013204575,-0.768355429172516,-0.490654677152634,0.371093690395355,-0.788382768630981,-0.0132126687094569,0.0440264008939266,-0.998943030834198,-0.0399958789348602,0.00985555443912745,-0.999151170253754,0.108278401196003,-0.132379487156868,-0.985267221927643,0.190093517303467,0.337783068418503,-0.921828091144562,-0.0490833260118961,0.0154445497319102,-0.998675286769867,0.130756855010986,-0.129355907440186,-0.98293936252594,0.802211463451386,-0.495368540287018,-0.333267033100128,0.563850522041321,-0.769950866699219,-0.298744380474091,0.157274410128593,-0.586983680725098,-0.794175624847412,0.185359820723534,-0.0375935658812523,-0.981951355934143,-0.0132126687094569,0.0440264008939266,-0.998943030834198,0.190093517303467,0.337783068418503,-0.921828091144562,0.454230576753616,0.370374321937561,-0.810245335102081,-0.8122438788414,-0.391549617052078,-0.43237566947937,0.190093517303467,0.337783068418503,-0.921828091144562,-0.0132126687094569,0.0440264008939266,-0.998943030834198,0.169197782874107,-0.0850756093859673,-0.981903374195099,0.88049590587616,-0.342968255281448,-0.327261120080948,0.401799321174622,-0.866470456123352,-0.296287566423416,0.0879096910357475,-0.513729751110077,-0.853436410427094,0.401799321174622,-0.866470456123352,-0.296287566423416,0.208481475710869,-0.978026330471039,-2.58475802183966e-006,0.932915806770325,0.359948098659515,-0.0102613195776939,0.931840121746063,-0.0176091212779284,-0.362441658973694,-0.755170404911041,-0.315147519111633,-0.57480400800705,-0.599178075790405,0.224979013204575,-0.768355429172516,-0.0399958789348602,0.00985555443912745,-0.999151170253754,0.130756855010986,-0.129355907440186,-0.98293936252594,-0.252352148294449,-0.340019911527634,-0.905927658081055,-0.0399958789348602,0.00985555443912745,-0.999151170253754,
- 0.190093517303467,0.337783068418503,-0.921828091144562,-0.480133235454559,0.311567068099976,-0.819998741149902,-0.0490833260118961,0.0154445497319102,-0.998675286769867,-0.707262873649597,0.23138353228569,-0.668012619018555,-0.301942497491837,0.803883790969849,-0.512446761131287,-0.0472411997616291,-0.136983215808868,-0.989446222782135,0.190093517303467,0.337783068418503,-0.921828091144562,0.108278401196003,-0.132379487156868,-0.985267221927643,0.454230576753616,0.370374321937561,-0.810245335102081,-0.0182502120733261,-0.0135083459317684,-0.999742269515991,0.168623045086861,-0.0517860539257526,-0.98431921005249,0.207741647958755,-0.720445871353149,-0.661665499210358,0.0026879298966378,-0.781319260597229,-0.624125719070435,0.802211463451386,-0.495368540287018,-0.333267033100128,0.844791352748871,-0.535095751285553,4.77341245641583e-006,0.568420112133026,-0.822738468647003,4.47744014309137e-006,0.563850522041321,-0.769950866699219,-0.298744380474091,0.157274410128593,-0.586983680725098,-0.794175624847412,0.195728778839111,-0.0358522497117519,-0.980002462863922,-0.0475192628800869,0.222934514284134,-0.973674595355988,0.138361275196075,-0.0995216444134712,-0.985368728637695,0.75965690612793,0.611335456371307,-0.22178927063942,0.781275510787964,0.623967707157135,-0.0165163949131966,0.169197782874107,-0.0850756093859673,-0.981903374195099,0.0879096910357475,-0.513729751110077,-0.853436410427094,-0.0472411997616291,-0.136983215808868,-0.989446222782135,-0.0429741181433201,-0.0211012437939644,-0.998853325843811,0.759858906269073,0.648147583007813,-0.0501909255981445,-0.0221305191516876,0.0435516461730003,-0.998806059360504,-0.437100380659103,0.365420311689377,-0.821834146976471,-0.765810251235962,0.0146731855347753,-0.64289927482605,-0.707262873649597,0.23138353228569,-0.668012619018555,-0.0269335489720106,0.015416344627738,-0.999518394470215,-0.0182502120733261,-0.0135083459317684,-0.999742269515991,0.0026879298966378,-0.781319260597229,-0.624125719070435,-0.765810251235962,0.0146731855347753,-0.64289927482605,-0.0182502120733261,-0.0135083459317684,-0.999742269515991,
- -0.0472411997616291,-0.136983215808868,-0.989446222782135,-0.301942497491837,0.803883790969849,-0.512446761131287,-0.72051864862442,0.01223358605057,-0.693327724933624,-0.0429741181433201,-0.0211012437939644,-0.998853325843811,-0.54306972026825,0.344518065452576,-0.76575630903244,-0.0503305569291115,0.031306479126215,-0.99824184179306,-0.0429741181433201,-0.0211012437939644,-0.998853325843811,-0.72051864862442,0.01223358605057,-0.693327724933624,-0.252352148294449,-0.340019911527634,-0.905927658081055,-0.357447117567062,-0.328397929668427,-0.874291896820068,-0.461090445518494,0.487390726804733,-0.741515934467316,-0.755170404911041,-0.315147519111633,-0.57480400800705,0.759858906269073,0.648147583007813,-0.0501909255981445,0.781275510787964,0.623967707157135,-0.0165163949131966,0.75965690612793,0.611335456371307,-0.22178927063942,0.759858906269073,0.648147583007813,-0.0501909255981445,0.75965690612793,0.611335456371307,-0.22178927063942,0.138361275196075,-0.0995216444134712,-0.985368728637695,-0.0221305191516876,0.0435516461730003,-0.998806059360504,0.704847514629364,-0.615299999713898,-0.352981358766556,0.755027234554291,-0.655693411827087,6.97855773168499e-009,0.733209788799286,-0.680002510547638,7.57167484266574e-009,0.682502746582031,-0.630110144615173,-0.3703393638134,0.963927209377289,0.266165971755981,-3.97640832261459e-007,0.925672292709351,-0.378326416015625,4.23513620262383e-006,0.863316655158997,-0.360671252012253,-0.352988213300705,-0.0475192628800869,0.222934514284134,-0.973674595355988,-0.0503305569291115,0.031306479126215,-0.99824184179306,-0.54306972026825,0.344518065452576,-0.76575630903244,-0.324013143777847,0.583792924880981,-0.744446873664856,0.157274410128593,-0.586983680725098,-0.794175624847412,0.563850522041321,-0.769950866699219,-0.298744380474091,0.910895109176636,-0.252805590629578,-0.326127916574478,0.195728778839111,-0.0358522497117519,-0.980002462863922,0.0879096910357475,-0.513729751110077,-0.853436410427094,0.175917655229568,0.011215491220355,-0.984340906143188,-0.0472411997616291,-0.136983215808868,-0.989446222782135,
- 0.401799321174622,-0.866470456123352,-0.296287566423416,0.931840121746063,-0.0176091212779284,-0.362441658973694,0.175917655229568,0.011215491220355,-0.984340906143188,0.0879096910357475,-0.513729751110077,-0.853436410427094,-0.707262873649597,0.23138353228569,-0.668012619018555,-0.0472411997616291,-0.136983215808868,-0.989446222782135,-0.0269335489720106,0.015416344627738,-0.999518394470215,0.175917655229568,0.011215491220355,-0.984340906143188,0.931840121746063,-0.0176091212779284,-0.362441658973694,0.93932044506073,-0.0866242572665215,-0.331923693418503,0.168623045086861,-0.0517860539257526,-0.98431921005249,0.157274410128593,-0.586983680725098,-0.794175624847412,-0.0475192628800869,0.222934514284134,-0.973674595355988,-0.357447117567062,-0.328397929668427,-0.874291896820068,-0.461090445518494,0.487390726804733,-0.741515934467316,-0.357447117567062,-0.328397929668427,-0.874291896820068,-0.0475192628800869,0.222934514284134,-0.973674595355988,0.190093517303467,0.337783068418503,-0.921828091144562,-0.8122438788414,-0.391549617052078,-0.43237566947937,-0.480133235454559,0.311567068099976,-0.819998741149902,0.863316655158997,-0.360671252012253,-0.352988213300705,0.860438644886017,0.406316608190537,-0.307493448257446,0.963927209377289,0.266165971755981,-3.97640832261459e-007,0.454230576753616,0.370374321937561,-0.810245335102081,0.860438644886017,0.406316608190537,-0.307493448257446,0.863316655158997,-0.360671252012253,-0.352988213300705,0.185359820723534,-0.0375935658812523,-0.981951355934143,0.963927209377289,0.266165971755981,-3.97640832261459e-007,0.860438644886017,0.406316608190537,-0.307493448257446,0.682502746582031,-0.630110144615173,-0.3703393638134,0.108278401196003,-0.132379487156868,-0.985267221927643,0.682502746582031,-0.630110144615173,-0.3703393638134,0.860438644886017,0.406316608190537,-0.307493448257446,0.454230576753616,0.370374321937561,-0.810245335102081,0.682502746582031,-0.630110144615173,-0.3703393638134,0.733209788799286,-0.680002510547638,7.57167484266574e-009,0.963927209377289,0.266165971755981,-3.97640832261459e-007,
- -0.8122438788414,-0.391549617052078,-0.43237566947937,-0.0132126687094569,0.0440264008939266,-0.998943030834198,-0.490654677152634,0.371093690395355,-0.788382768630981,0.138361275196075,-0.0995216444134712,-0.985368728637695,0.781275510787964,0.623967707157135,-0.0165163949131966,0.704847514629364,-0.615299999713898,-0.352981358766556,0.93932044506073,-0.0866242572665215,-0.331923693418503,0.995257973670959,-0.0972709283232689,-4.50202378488029e-006,0.747917234897614,-0.663792014122009,-1.02012768365967e-006,0.714404881000519,-0.659928560256958,-0.23263680934906,0.208481475710869,-0.978026330471039,-2.58475802183966e-006,0.99875396490097,-0.0499040856957436,-4.72037845611339e-006,0.932915806770325,0.359948098659515,-0.0102613195776939,0.568420112133026,-0.822738468647003,4.47744014309137e-006,0.965259432792664,-0.261293470859528,4.44926035925164e-006,0.910895109176636,-0.252805590629578,-0.326127916574478,0.563850522041321,-0.769950866699219,-0.298744380474091,0.965259432792664,-0.261293470859528,4.44926035925164e-006,0.925477802753448,-0.378801941871643,4.44414899902768e-006,0.88049590587616,-0.342968255281448,-0.327261120080948,0.910895109176636,-0.252805590629578,-0.326127916574478,0.99875396490097,-0.0499040856957436,-4.72037845611339e-006,0.995257973670959,-0.0972709283232689,-4.50202378488029e-006,0.93932044506073,-0.0866242572665215,-0.331923693418503,0.931840121746063,-0.0176091212779284,-0.362441658973694,0.99875396490097,-0.0499040856957436,-4.72037845611339e-006,0.931840121746063,-0.0176091212779284,-0.362441658973694,0.932915806770325,0.359948098659515,-0.0102613195776939,-0.727274656295776,-0.686346530914307,-1.05055842141155e-005,-0.723587870597839,-0.690170526504517,0.0092360470443964,-0.746138513088226,-0.665790736675262,7.84162011768785e-007,-0.746138513088226,-0.665790736675262,7.84162011768785e-007,-0.723587870597839,-0.690170526504517,0.0092360470443964,-0.739652156829834,-0.672221183776855,0.0321456789970398,-0.743089139461517,-0.669191181659698,0.00132883747573942,0.356888890266418,-0.872118175029755,0.334723770618439,
- 0.491992115974426,-0.811474740505219,0.315361082553864,0.11837762594223,-0.119099944829941,0.98580014705658,0.0380998849868774,-0.153910234570503,0.987350046634674,-0.0410985574126244,0.0568308159708977,0.997537553310394,0.0380998849868774,-0.153910234570503,0.987350046634674,0.11837762594223,-0.119099944829941,0.98580014705658,0.0301750805228949,0.0619743727147579,0.997621417045593,0.073575995862484,-0.144877448678017,0.9867103099823,-0.739652156829834,-0.672221183776855,0.0321456789970398,-0.723587870597839,-0.690170526504517,0.0092360470443964,0.507486701011658,-0.799643933773041,0.320977807044983,0.284416913986206,0.187121793627739,0.940261960029602,0.00159762694966048,0.0427952036261559,0.999082624912262,0.12882187962532,-0.105670735239983,0.98602157831192,0.242032259702683,-0.0630545988678932,0.968217134475708,-0.743089139461517,-0.669191181659698,0.00132883747573942,-0.0498535707592964,-0.000104000493593048,0.998756587505341,-0.439945071935654,0.606620728969574,0.662162780761719,-0.541464447975159,0.241554915904999,0.805274784564972,-0.412418127059937,0.62661224603653,0.661262631416321,0.00159762694966048,0.0427952036261559,0.999082624912262,0.284416913986206,0.187121793627739,0.940261960029602,-0.412418127059937,0.62661224603653,0.661262631416321,-0.439945071935654,0.606620728969574,0.662162780761719,-0.0498535707592964,-0.000104000493593048,0.998756587505341,0.00159762694966048,0.0427952036261559,0.999082624912262,0.110984809696674,0.937905192375183,0.328658014535904,-0.369071453809738,0.702180564403534,0.608875036239624,-0.0410985574126244,0.0568308159708977,0.997537553310394,0.0301750805228949,0.0619743727147579,0.997621417045593,0.11837762594223,-0.119099944829941,0.98580014705658,0.907514095306396,0.223390117287636,0.355689436197281,0.717925190925598,0.674850046634674,0.170765399932861,0.0301750805228949,0.0619743727147579,0.997621417045593,-0.541464447975159,0.241554915904999,0.805274784564972,0.284416913986206,0.187121793627739,0.940261960029602,-0.0410985574126244,0.0568308159708977,0.997537553310394,
- -0.369071453809738,0.702180564403534,0.608875036239624,-0.739652156829834,-0.672221183776855,0.0321456789970398,0.073575995862484,-0.144877448678017,0.9867103099823,-0.0498535707592964,-0.000104000493593048,0.998756587505341,-0.743089139461517,-0.669191181659698,0.00132883747573942,0.0301750805228949,0.0619743727147579,0.997621417045593,0.717925190925598,0.674850046634674,0.170765399932861,0.110984809696674,0.937905192375183,0.328658014535904,0.12882187962532,-0.105670735239983,0.98602157831192,0.073575995862484,-0.144877448678017,0.9867103099823,0.507486701011658,-0.799643933773041,0.320977807044983,0.636273801326752,-0.696744382381439,0.331214278936386,0.994154453277588,0.0675764307379723,0.084202952682972,0.907514095306396,0.223390117287636,0.355689436197281,0.11837762594223,-0.119099944829941,0.98580014705658,0.491992115974426,-0.811474740505219,0.315361082553864,0.920300185680389,-0.391212970018387,2.86288764073106e-006,0.862545430660248,-0.429787665605545,0.267016679048538,0.636273801326752,-0.696744382381439,0.331214278936386,0.68627804517746,-0.727339386940002,5.09226822487108e-007,0.371451318264008,-0.928452491760254,-4.52793443628252e-007,0.356888890266418,-0.872118175029755,0.334723770618439,0.862545430660248,-0.429787665605545,0.267016679048538,0.920300185680389,-0.391212970018387,2.86288764073106e-006,0.0380998849868774,-0.153910234570503,0.987350046634674,0.242032259702683,-0.0630545988678932,0.968217134475708,0.862545430660248,-0.429787665605545,0.267016679048538,0.356888890266418,-0.872118175029755,0.334723770618439,0.862545430660248,-0.429787665605545,0.267016679048538,0.242032259702683,-0.0630545988678932,0.968217134475708,0.12882187962532,-0.105670735239983,0.98602157831192,0.636273801326752,-0.696744382381439,0.331214278936386,0.12882187962532,-0.105670735239983,0.98602157831192,0.00159762694966048,0.0427952036261559,0.999082624912262,-0.0498535707592964,-0.000104000493593048,0.998756587505341,0.073575995862484,-0.144877448678017,0.9867103099823,0.242032259702683,-0.0630545988678932,0.968217134475708,
- 0.0380998849868774,-0.153910234570503,0.987350046634674,0.284416913986206,0.187121793627739,0.940261960029602,0.284416913986206,0.187121793627739,0.940261960029602,0.0380998849868774,-0.153910234570503,0.987350046634674,-0.0410985574126244,0.0568308159708977,0.997537553310394,0.523827970027924,-0.851824045181274,-4.95342760586936e-007,0.507486701011658,-0.799643933773041,0.320977807044983,-0.723587870597839,-0.690170526504517,0.0092360470443964,-0.727274656295776,-0.686346530914307,-1.05055842141155e-005,0.5333291888237,-0.845907747745514,5.33594857188291e-007,0.491992115974426,-0.811474740505219,0.315361082553864,0.356888890266418,-0.872118175029755,0.334723770618439,0.371451318264008,-0.928452491760254,-4.52793443628252e-007,0.68627804517746,-0.727339386940002,5.09226822487108e-007,0.636273801326752,-0.696744382381439,0.331214278936386,0.507486701011658,-0.799643933773041,0.320977807044983,0.523827970027924,-0.851824045181274,-4.95342760586936e-007,0.5333291888237,-0.845907747745514,5.33594857188291e-007,0.998207092285156,0.0598547458648682,5.11918960910407e-006,0.994154453277588,0.0675764307379723,0.084202952682972,0.491992115974426,-0.811474740505219,0.315361082553864,0.781276524066925,0.623966574668884,0.0165135972201824,0.780031144618988,0.625740826129913,-1.53381006384734e-006,0.761007845401764,0.648742735385895,-1.54400913743302e-006,0.759860455989838,0.648146748542786,0.0501806139945984,0.401781469583511,-0.866482675075531,0.296276062726974,0.208481475710869,-0.978026330471039,-2.58475802183966e-006,0.925477802753448,-0.378801941871643,4.44414899902768e-006,0.880500018596649,-0.342967212200165,0.327251136302948,0.168623700737953,-0.0517897270619869,0.984318971633911,0.175922140479088,0.0112135345116258,0.984340190887451,-0.0269293300807476,0.0154167236760259,0.99951833486557,-0.0182538293302059,-0.013511479832232,0.999742090702057,-0.0221247859299183,0.0435525886714458,0.998806118965149,-0.0490788072347641,0.0154413990676403,0.998675584793091,0.108275309205055,-0.132377713918686,0.985267758369446,0.138360753655434,-0.0995226129889488,0.98536878824234,
- 0.168623700737953,-0.0517897270619869,0.984318971633911,0.207753881812096,-0.720394372940063,0.661717712879181,0.714398205280304,-0.659928619861603,0.23265740275383,0.939316511154175,-0.0866310372948647,0.331933200359344,-0.480136096477509,0.311582863330841,0.819991171360016,-0.0490788072347641,0.0154413990676403,0.998675584793091,-0.0221247859299183,0.0435525886714458,0.998806118965149,-0.437105000019073,0.365425914525986,0.821829080581665,0.704845309257507,-0.61529952287674,0.352986663579941,0.755027234554291,-0.655693411827087,6.97855773168499e-009,0.780031144618988,0.625740826129913,-1.53381006384734e-006,0.781276524066925,0.623966574668884,0.0165135972201824,0.108275309205055,-0.132377713918686,0.985267758369446,0.682498633861542,-0.630109846591949,0.3703473508358,0.704845309257507,-0.61529952287674,0.352986663579941,0.138360753655434,-0.0995226129889488,0.98536878824234,-0.0472483113408089,-0.136956959962845,0.989449501037598,-0.0269293300807476,0.0154167236760259,0.99951833486557,0.175922140479088,0.0112135345116258,0.984340190887451,0.863319337368011,-0.360675156116486,0.35297766327858,0.802210748195648,-0.495372951030731,0.333262205123901,0.844791352748871,-0.535095751285553,4.77341245641583e-006,0.925672292709351,-0.378326416015625,4.23513620262383e-006,0.169198170304298,-0.085074245929718,0.981903433799744,0.880500018596649,-0.342967212200165,0.327251136302948,0.910898566246033,-0.252809762954712,0.32611495256424,0.195727080106735,-0.0358536690473557,0.980002701282501,-0.0503293387591839,0.0313048176467419,0.998241901397705,-0.0429732948541641,-0.021103149279952,0.998853325843811,0.169198170304298,-0.085074245929718,0.981903433799744,0.195727080106735,-0.0358536690473557,0.980002701282501,0.157231122255325,-0.587002813816071,0.794170022010803,0.130761712789536,-0.12935346364975,0.982939004898071,-0.252355724573135,-0.340041726827621,0.905918478965759,-0.357459604740143,-0.32840496301651,0.874284148216248,-0.0503293387591839,0.0313048176467419,0.998241901397705,0.195727080106735,-0.0358536690473557,0.980002701282501,
- -0.0475133433938026,0.222934514284134,0.973674893379211,-0.0475133433938026,0.222934514284134,0.973674893379211,-0.461106926202774,0.487353265285492,0.741530299186707,-0.324011027812958,0.583814084529877,0.74443131685257,-0.252355724573135,-0.340041726827621,0.905918478965759,-0.0399928689002991,0.00985286105424166,0.999151408672333,-0.75517064332962,-0.315175116062164,0.574788510799408,0.185357809066772,-0.037591028958559,0.981951832771301,0.130761712789536,-0.12935346364975,0.982939004898071,0.802210748195648,-0.495372951030731,0.333262205123901,0.863319337368011,-0.360675156116486,0.35297766327858,-0.0399928689002991,0.00985286105424166,0.999151408672333,0.130761712789536,-0.12935346364975,0.982939004898071,0.185357809066772,-0.037591028958559,0.981951832771301,-0.0132124964147806,0.0440252125263214,0.998943090438843,-0.599223136901855,0.22504822909832,0.768299996852875,-0.0399928689002991,0.00985286105424166,0.999151408672333,-0.0132124964147806,0.0440252125263214,0.998943090438843,-0.490690618753433,0.371123522520065,0.788346409797668,0.108275309205055,-0.132377713918686,0.985267758369446,-0.0490788072347641,0.0154413990676403,0.998675584793091,0.190111741423607,0.337825119495392,0.921809017658234,0.995257973670959,-0.0972709283232689,-4.50202378488029e-006,0.939316511154175,-0.0866310372948647,0.331933200359344,0.714398205280304,-0.659928619861603,0.23265740275383,0.747917234897614,-0.663792014122009,-1.02012768365967e-006,0.130761712789536,-0.12935346364975,0.982939004898071,0.157231122255325,-0.587002813816071,0.794170022010803,0.563873887062073,-0.769939661026001,0.298729002475739,0.802210748195648,-0.495372951030731,0.333262205123901,0.185357809066772,-0.037591028958559,0.981951832771301,0.454256176948547,0.370419442653656,0.810210406780243,0.190111741423607,0.337825119495392,0.921809017658234,-0.0132124964147806,0.0440252125263214,0.998943090438843,-0.812262058258057,-0.391425520181656,0.432453960180283,-0.0132124964147806,0.0440252125263214,0.998943090438843,0.190111741423607,0.337825119495392,0.921809017658234,
- 0.169198170304298,-0.085074245929718,0.981903433799744,0.0878719240427017,-0.513730645179749,0.853439748287201,0.401781469583511,-0.866482675075531,0.296276062726974,0.880500018596649,-0.342967212200165,0.327251136302948,0.401781469583511,-0.866482675075531,0.296276062726974,0.931836128234863,-0.0176192298531532,0.36245122551918,0.932907283306122,0.359971016645432,0.0102391196414828,0.208481475710869,-0.978026330471039,-2.58475802183966e-006,-0.75517064332962,-0.315175116062164,0.574788510799408,-0.0399928689002991,0.00985286105424166,0.999151408672333,-0.599223136901855,0.22504822909832,0.768299996852875,0.130761712789536,-0.12935346364975,0.982939004898071,-0.0399928689002991,0.00985286105424166,0.999151408672333,-0.252355724573135,-0.340041726827621,0.905918478965759,0.190111741423607,0.337825119495392,0.921809017658234,-0.0490788072347641,0.0154413990676403,0.998675584793091,-0.480136096477509,0.311582863330841,0.819991171360016,-0.707074999809265,0.231272950768471,0.668249726295471,-0.0472483113408089,-0.136956959962845,0.989449501037598,-0.301842153072357,0.803893148899078,0.512491166591644,0.190111741423607,0.337825119495392,0.921809017658234,0.454256176948547,0.370419442653656,0.810210406780243,0.108275309205055,-0.132377713918686,0.985267758369446,-0.0182538293302059,-0.013511479832232,0.999742090702057,0.00268402136862278,-0.781274855136871,0.62418133020401,0.207753881812096,-0.720394372940063,0.661717712879181,0.168623700737953,-0.0517897270619869,0.984318971633911,0.802210748195648,-0.495372951030731,0.333262205123901,0.563873887062073,-0.769939661026001,0.298729002475739,0.568420112133026,-0.822738468647003,4.47744014309137e-006,0.844791352748871,-0.535095751285553,4.77341245641583e-006,0.157231122255325,-0.587002813816071,0.794170022010803,-0.0475133433938026,0.222934514284134,0.973674893379211,0.195727080106735,-0.0358536690473557,0.980002701282501,0.138360753655434,-0.0995226129889488,0.98536878824234,0.781276524066925,0.623966574668884,0.0165135972201824,0.759660661220551,0.611332595348358,0.221783488988876,
- 0.169198170304298,-0.085074245929718,0.981903433799744,-0.0429732948541641,-0.021103149279952,0.998853325843811,-0.0472483113408089,-0.136956959962845,0.989449501037598,0.0878719240427017,-0.513730645179749,0.853439748287201,0.759860455989838,0.648146748542786,0.0501806139945984,-0.437105000019073,0.365425914525986,0.821829080581665,-0.0221247859299183,0.0435525886714458,0.998806118965149,-0.765588641166687,0.0146640678867698,0.643163204193115,-0.0182538293302059,-0.013511479832232,0.999742090702057,-0.0269293300807476,0.0154167236760259,0.99951833486557,-0.707074999809265,0.231272950768471,0.668249726295471,0.00268402136862278,-0.781274855136871,0.62418133020401,-0.0182538293302059,-0.013511479832232,0.999742090702057,-0.765588641166687,0.0146640678867698,0.643163204193115,-0.0472483113408089,-0.136956959962845,0.989449501037598,-0.0429732948541641,-0.021103149279952,0.998853325843811,-0.720577597618103,0.0122436974197626,0.693266093730927,-0.301842153072357,0.803893148899078,0.512491166591644,-0.54309207201004,0.344551831483841,0.765725076198578,-0.720577597618103,0.0122436974197626,0.693266093730927,-0.0429732948541641,-0.021103149279952,0.998853325843811,-0.0503293387591839,0.0313048176467419,0.998241901397705,-0.252355724573135,-0.340041726827621,0.905918478965759,-0.75517064332962,-0.315175116062164,0.574788510799408,-0.461106926202774,0.487353265285492,0.741530299186707,-0.357459604740143,-0.32840496301651,0.874284148216248,0.759860455989838,0.648146748542786,0.0501806139945984,0.759660661220551,0.611332595348358,0.221783488988876,0.781276524066925,0.623966574668884,0.0165135972201824,0.759860455989838,0.648146748542786,0.0501806139945984,-0.0221247859299183,0.0435525886714458,0.998806118965149,0.138360753655434,-0.0995226129889488,0.98536878824234,0.759660661220551,0.611332595348358,0.221783488988876,0.704845309257507,-0.61529952287674,0.352986663579941,0.682498633861542,-0.630109846591949,0.3703473508358,0.733209788799286,-0.680002510547638,7.57167484266574e-009,0.755027234554291,-0.655693411827087,6.97855773168499e-009,
- 0.963927209377289,0.266165971755981,-3.97640832261459e-007,0.863319337368011,-0.360675156116486,0.35297766327858,0.925672292709351,-0.378326416015625,4.23513620262383e-006,-0.0475133433938026,0.222934514284134,0.973674893379211,-0.324011027812958,0.583814084529877,0.74443131685257,-0.54309207201004,0.344551831483841,0.765725076198578,-0.0503293387591839,0.0313048176467419,0.998241901397705,0.157231122255325,-0.587002813816071,0.794170022010803,0.195727080106735,-0.0358536690473557,0.980002701282501,0.910898566246033,-0.252809762954712,0.32611495256424,0.563873887062073,-0.769939661026001,0.298729002475739,0.0878719240427017,-0.513730645179749,0.853439748287201,-0.0472483113408089,-0.136956959962845,0.989449501037598,0.175922140479088,0.0112135345116258,0.984340190887451,0.401781469583511,-0.866482675075531,0.296276062726974,0.0878719240427017,-0.513730645179749,0.853439748287201,0.175922140479088,0.0112135345116258,0.984340190887451,0.931836128234863,-0.0176192298531532,0.36245122551918,-0.707074999809265,0.231272950768471,0.668249726295471,-0.0269293300807476,0.0154167236760259,0.99951833486557,-0.0472483113408089,-0.136956959962845,0.989449501037598,0.175922140479088,0.0112135345116258,0.984340190887451,0.168623700737953,-0.0517897270619869,0.984318971633911,0.939316511154175,-0.0866310372948647,0.331933200359344,0.931836128234863,-0.0176192298531532,0.36245122551918,0.157231122255325,-0.587002813816071,0.794170022010803,-0.357459604740143,-0.32840496301651,0.874284148216248,-0.0475133433938026,0.222934514284134,0.973674893379211,-0.461106926202774,0.487353265285492,0.741530299186707,-0.0475133433938026,0.222934514284134,0.973674893379211,-0.357459604740143,-0.32840496301651,0.874284148216248,0.190111741423607,0.337825119495392,0.921809017658234,-0.480136096477509,0.311582863330841,0.819991171360016,-0.812262058258057,-0.391425520181656,0.432453960180283,0.863319337368011,-0.360675156116486,0.35297766327858,0.963927209377289,0.266165971755981,-3.97640832261459e-007,0.860432088375092,0.40632626414299,0.307499080896378,
- 0.454256176948547,0.370419442653656,0.810210406780243,0.185357809066772,-0.037591028958559,0.981951832771301,0.863319337368011,-0.360675156116486,0.35297766327858,0.860432088375092,0.40632626414299,0.307499080896378,0.963927209377289,0.266165971755981,-3.97640832261459e-007,0.682498633861542,-0.630109846591949,0.3703473508358,0.860432088375092,0.40632626414299,0.307499080896378,0.108275309205055,-0.132377713918686,0.985267758369446,0.454256176948547,0.370419442653656,0.810210406780243,0.860432088375092,0.40632626414299,0.307499080896378,0.682498633861542,-0.630109846591949,0.3703473508358,0.682498633861542,-0.630109846591949,0.3703473508358,0.963927209377289,0.266165971755981,-3.97640832261459e-007,0.733209788799286,-0.680002510547638,7.57167484266574e-009,-0.812262058258057,-0.391425520181656,0.432453960180283,-0.490690618753433,0.371123522520065,0.788346409797668,-0.0132124964147806,0.0440252125263214,0.998943090438843,0.138360753655434,-0.0995226129889488,0.98536878824234,0.704845309257507,-0.61529952287674,0.352986663579941,0.781276524066925,0.623966574668884,0.0165135972201824,0.208481475710869,-0.978026330471039,-2.58475802183966e-006,0.932907283306122,0.359971016645432,0.0102391196414828,0.99875396490097,-0.0499040856957436,-4.72037845611339e-006,0.568420112133026,-0.822738468647003,4.47744014309137e-006,0.563873887062073,-0.769939661026001,0.298729002475739,0.910898566246033,-0.252809762954712,0.32611495256424,0.965259432792664,-0.261293470859528,4.44926035925164e-006,0.965259432792664,-0.261293470859528,4.44926035925164e-006,0.910898566246033,-0.252809762954712,0.32611495256424,0.880500018596649,-0.342967212200165,0.327251136302948,0.925477802753448,-0.378801941871643,4.44414899902768e-006,0.99875396490097,-0.0499040856957436,-4.72037845611339e-006,0.931836128234863,-0.0176192298531532,0.36245122551918,0.939316511154175,-0.0866310372948647,0.331933200359344,0.995257973670959,-0.0972709283232689,-4.50202378488029e-006,0.99875396490097,-0.0499040856957436,-4.72037845611339e-006,0.932907283306122,0.359971016645432,0.0102391196414828,
- 0.931836128234863,-0.0176192298531532,0.36245122551918,-0.518542766571045,-0.838387906551361,0.167985036969185,-0.611140727996826,-0.791451156139374,-0.0105935810133815,0.331372112035751,-0.943497657775879,-0.00217608059756458,0.337554752826691,-0.892324984073639,0.299687951803207,0.0650665760040283,-0.180381089448929,0.981442272663116,0.134137615561485,-0.140495643019676,0.980952620506287,-0.0050112958997488,0.0333161726593971,0.999432265758514,-0.0253781843930483,0.00613595265895128,0.999659061431885,0.661116003990173,-0.685584127902985,0.304795145988464,0.760355174541473,-0.582517325878143,0.287286669015884,0.17116005718708,-0.0786727592349052,0.982097148895264,0.0993011072278023,-0.149152040481567,0.983815550804138,0.0650665760040283,-0.180381089448929,0.981442272663116,0.686782121658325,0.3444604575634,0.640060424804688,0.935821115970612,0.308403700590134,0.170663431286812,0.544642627239227,-0.773938477039337,0.323084712028503,-0.760875523090363,0.648552894592285,0.02115773037076,-0.695302903652191,0.718104302883148,0.029665706679225,-0.691503882408142,0.722372829914093,7.3714386417123e-007,-0.759675860404968,0.650302052497864,6.68233553824393e-007,-0.442321389913559,0.896305680274963,0.0314293503761292,-0.422187358140945,0.905759394168854,0.0368461310863495,-0.372811496257782,0.927554190158844,0.0255892481654882,-0.349567502737045,0.936911225318909,-6.96419192536268e-007,-0.461399048566818,0.887192726135254,-8.43403313410818e-007,-0.464788317680359,-0.236040279269218,0.853379726409912,-0.0050112958997488,0.0333161726593971,0.999432265758514,0.134137615561485,-0.140495643019676,0.980952620506287,-0.0679914578795433,0.0319552943110466,0.997173964977264,0.0993011072278023,-0.149152040481567,0.983815550804138,0.17116005718708,-0.0786727592349052,0.982097148895264,0.00504730269312859,0.0746152326464653,0.997199594974518,0.306998938322067,-0.894742786884308,0.324325442314148,0.193634748458862,-0.932802975177765,0.303947776556015,0.240050196647644,-0.970759749412537,-0.00117943855002522,0.347882270812988,-0.937537670135498,-0.00105427403468639,
- 0.0333634801208973,-0.216233566403389,0.975771486759186,0.337554752826691,-0.892324984073639,0.299687951803207,0.415893197059631,-0.859646439552307,0.296716630458832,0.112806268036366,-0.196696117520332,0.973953425884247,-0.0110948858782649,0.0617883615195751,0.998027682304382,-0.0715231522917748,0.00172653479967266,0.997437417507172,0.0333634801208973,-0.216233566403389,0.975771486759186,0.112806268036366,-0.196696117520332,0.973953425884247,-0.400428920984268,-0.448355227708817,0.799145877361298,0.00872053392231464,-0.20697158575058,0.978308081626892,-0.441116809844971,-0.00669649289920926,0.897424697875977,-0.703402876853943,-0.0744253620505333,0.706884145736694,-0.0110948858782649,0.0617883615195751,0.998027682304382,0.112806268036366,-0.196696117520332,0.973953425884247,0.149756222963333,0.207290574908257,0.966749012470245,0.131470024585724,-0.133535996079445,0.982284903526306,-0.316550344228745,-0.694046080112457,0.646603345870972,-0.27234935760498,-0.957810163497925,0.0917904376983643,0.71356076002121,-0.638851702213287,0.287575393915176,-0.40471813082695,-0.484581410884857,0.775489568710327,-0.020821139216423,0.0342778153717518,0.999195456504822,0.172697246074677,-0.0709007754921913,0.982419848442078,0.149756222963333,0.207290574908257,0.966749012470245,0.41540515422821,0.907555341720581,0.0614978969097137,-0.372811496257782,0.927554190158844,0.0255892481654882,-0.441116809844971,-0.00669649289920926,0.897424697875977,-0.0168437194079161,0.0391077846288681,0.999093055725098,-0.330510318279266,0.943685948848724,-0.0148225286975503,0.101911671459675,-0.181669697165489,0.978064477443695,0.00872053392231464,-0.20697158575058,0.978308081626892,0.193634748458862,-0.932802975177765,0.303947776556015,0.306998938322067,-0.894742786884308,0.324325442314148,-0.79215532541275,0.513190925121307,0.330340474843979,-0.0448774471879005,-0.00646000355482101,0.998971581459045,-0.816444933414459,0.576871991157532,0.0252254828810692,-0.0168437194079161,0.0391077846288681,0.999093055725098,0.00872053392231464,-0.20697158575058,0.978308081626892,
- 0.101911671459675,-0.181669697165489,0.978064477443695,0.0275439452379942,0.0427657961845398,0.998705387115479,-0.300952017307281,0.953633308410645,-0.00339196203276515,-0.0168437194079161,0.0391077846288681,0.999093055725098,0.0275439452379942,0.0427657961845398,0.998705387115479,-0.280420362949371,0.959877073764801,-0.000704935286194086,0.562845945358276,-0.826529085636139,-0.00736791873350739,0.544642627239227,-0.773938477039337,0.323084712028503,0.935821115970612,0.308403700590134,0.170663431286812,0.00872053392231464,-0.20697158575058,0.978308081626892,-0.400428920984268,-0.448355227708817,0.799145877361298,-0.190677672624588,-0.93860650062561,0.287506282329559,0.193634748458862,-0.932802975177765,0.303947776556015,-0.658836483955383,0.752276957035065,0.00373745616525412,-0.661382019519806,0.750049233436584,-4.96339907840593e-007,-0.94901579618454,0.315228641033173,6.73862672329051e-008,-0.922282040119171,0.386513084173203,-0.00183651666156948,0.101911671459675,-0.181669697165489,0.978064477443695,0.793748676776886,0.069720096886158,0.604236960411072,0.740486264228821,0.166040405631065,0.651237785816193,0.0275439452379942,0.0427657961845398,0.998705387115479,0.642367005348206,0.766385972499847,0.00415621744468808,0.0275439452379942,0.0427657961845398,0.998705387115479,0.740486264228821,0.166040405631065,0.651237785816193,0.0333634801208973,-0.216233566403389,0.975771486759186,-0.612276554107666,-0.571296632289886,0.546568930149078,-0.518542766571045,-0.838387906551361,0.167985036969185,0.337554752826691,-0.892324984073639,0.299687951803207,-0.518542766571045,-0.838387906551361,0.167985036969185,0.56647652387619,-0.748176336288452,0.345451295375824,0.821274936199188,-0.570487916469574,0.00714444415643811,-0.611140727996826,-0.791451156139374,-0.0105935810133815,-0.330510318279266,0.943685948848724,-0.0148225286975503,-0.0168437194079161,0.0391077846288681,0.999093055725098,-0.300952017307281,0.953633308410645,-0.00339196203276515,0.172697246074677,-0.0709007754921913,0.982419848442078,-0.0374053306877613,-0.359970301389694,0.932213604450226,
- -0.40471813082695,-0.484581410884857,0.775489568710327,0.00872053392231464,-0.20697158575058,0.978308081626892,-0.0168437194079161,0.0391077846288681,0.999093055725098,-0.441116809844971,-0.00669649289920926,0.897424697875977,-0.807282686233521,0.589678585529327,0.0239542536437511,-0.020821139216423,0.0342778153717518,0.999195456504822,-0.997776746749878,0.0649135187268257,0.0150933284312487,-0.816444933414459,0.576871991157532,0.0252254828810692,-0.0448774471879005,-0.00646000355482101,0.998971581459045,-0.020821139216423,0.0342778153717518,0.999195456504822,-0.807282686233521,0.589678585529327,0.0239542536437511,-0.542949080467224,0.839764654636383,0.00119829119648784,-0.464788317680359,-0.236040279269218,0.853379726409912,0.11478616297245,0.993273854255676,0.0152054466307163,0.562845945358276,-0.826529085636139,-0.00736791873350739,0.935821115970612,0.308403700590134,0.170663431286812,0.965670645236969,0.257040023803711,-0.0375587120652199,-0.0253781843930483,0.00613595265895128,0.999659061431885,0.0625298842787743,0.0381571650505066,0.997313499450684,0.686782121658325,0.3444604575634,0.640060424804688,0.0650665760040283,-0.180381089448929,0.981442272663116,0.193634748458862,-0.932802975177765,0.303947776556015,-0.190677672624588,-0.93860650062561,0.287506282329559,-0.215314224362373,-0.976469695568085,-0.0121109876781702,0.240050196647644,-0.970759749412537,-0.00117943855002522,-0.760875523090363,0.648552894592285,0.02115773037076,-0.0679914578795433,0.0319552943110466,0.997173964977264,0.00504730269312859,0.0746152326464653,0.997199594974518,-0.695302903652191,0.718104302883148,0.029665706679225,0.686782121658325,0.3444604575634,0.640060424804688,0.0625298842787743,0.0381571650505066,0.997313499450684,0.00504730269312859,0.0746152326464653,0.997199594974518,0.17116005718708,-0.0786727592349052,0.982097148895264,-0.400428920984268,-0.448355227708817,0.799145877361298,0.149756222963333,0.207290574908257,0.966749012470245,0.112806268036366,-0.196696117520332,0.973953425884247,-0.40471813082695,-0.484581410884857,0.775489568710327,
- -0.0679914578795433,0.0319552943110466,0.997173964977264,-0.997776746749878,0.0649135187268257,0.0150933284312487,0.0333634801208973,-0.216233566403389,0.975771486759186,-0.0715231522917748,0.00172653479967266,0.997437417507172,-0.464788317680359,-0.236040279269218,0.853379726409912,-0.612276554107666,-0.571296632289886,0.546568930149078,0.131470024585724,-0.133535996079445,0.982284903526306,-0.0448774471879005,-0.00646000355482101,0.998971581459045,-0.79215532541275,0.513190925121307,0.330340474843979,-0.316550344228745,-0.694046080112457,0.646603345870972,-0.658836483955383,0.752276957035065,0.00373745616525412,-0.0253781843930483,0.00613595265895128,0.999659061431885,-0.0050112958997488,0.0333161726593971,0.999432265758514,-0.542949080467224,0.839764654636383,0.00119829119648784,0.0625298842787743,0.0381571650505066,0.997313499450684,-0.0253781843930483,0.00613595265895128,0.999659061431885,-0.658836483955383,0.752276957035065,0.00373745616525412,-0.807282686233521,0.589678585529327,0.0239542536437511,-0.997776746749878,0.0649135187268257,0.0150933284312487,-0.999992966651917,-0.00375574012286961,-1.90853839399097e-007,-0.805599629878998,0.59246027469635,1.9001351603265e-009,0.00504730269312859,0.0746152326464653,0.997199594974518,0.0625298842787743,0.0381571650505066,0.997313499450684,-0.695302903652191,0.718104302883148,0.029665706679225,0.172697246074677,-0.0709007754921913,0.982419848442078,0.131470024585724,-0.133535996079445,0.982284903526306,0.71356076002121,-0.638851702213287,0.287575393915176,0.820794105529785,-0.480140745639801,0.309454172849655,-0.807282686233521,0.589678585529327,0.0239542536437511,-0.805599629878998,0.59246027469635,1.9001351603265e-009,-0.811456441879272,0.584412932395935,7.52008236304391e-006,-0.816444933414459,0.576871991157532,0.0252254828810692,-0.464788317680359,-0.236040279269218,0.853379726409912,-0.0715231522917748,0.00172653479967266,0.997437417507172,-0.442321389913559,0.896305680274963,0.0314293503761292,0.11478616297245,0.993273854255676,0.0152054466307163,-0.422187358140945,0.905759394168854,0.0368461310863495,
- -0.442321389913559,0.896305680274963,0.0314293503761292,-0.0715231522917748,0.00172653479967266,0.997437417507172,-0.0110948858782649,0.0617883615195751,0.998027682304382,-0.441116809844971,-0.00669649289920926,0.897424697875977,-0.330510318279266,0.943685948848724,-0.0148225286975503,0.41540515422821,0.907555341720581,0.0614978969097137,-0.703402876853943,-0.0744253620505333,0.706884145736694,0.642367005348206,0.766385972499847,0.00415621744468808,0.638469815254211,0.769646883010864,1.83705242307042e-006,-0.251168996095657,0.96794331073761,-1.09130269265734e-006,-0.280420362949371,0.959877073764801,-0.000704935286194086,0.957963883876801,-0.28687909245491,-0.00237762252800167,0.306998938322067,-0.894742786884308,0.324325442314148,0.347882270812988,-0.937537670135498,-0.00105427403468639,0.149756222963333,0.207290574908257,0.966749012470245,-0.372811496257782,0.927554190158844,0.0255892481654882,-0.422187358140945,0.905759394168854,0.0368461310863495,-0.0110948858782649,0.0617883615195751,0.998027682304382,-0.400428920984268,-0.448355227708817,0.799145877361298,0.112806268036366,-0.196696117520332,0.973953425884247,0.415893197059631,-0.859646439552307,0.296716630458832,-0.190677672624588,-0.93860650062561,0.287506282329559,-0.612276554107666,-0.571296632289886,0.546568930149078,-0.464788317680359,-0.236040279269218,0.853379726409912,0.134137615561485,-0.140495643019676,0.980952620506287,-0.518542766571045,-0.838387906551361,0.167985036969185,-0.612276554107666,-0.571296632289886,0.546568930149078,0.134137615561485,-0.140495643019676,0.980952620506287,0.56647652387619,-0.748176336288452,0.345451295375824,0.249409228563309,0.968398153781891,2.86556155515427e-006,0.11478616297245,0.993273854255676,0.0152054466307163,-0.442321389913559,0.896305680274963,0.0314293503761292,-0.461399048566818,0.887192726135254,-8.43403313410818e-007,-0.542949080467224,0.839764654636383,0.00119829119648784,-0.0050112958997488,0.0333161726593971,0.999432265758514,-0.464788317680359,-0.236040279269218,0.853379726409912,0.134137615561485,-0.140495643019676,0.980952620506287,
- 0.0650665760040283,-0.180381089448929,0.981442272663116,0.544642627239227,-0.773938477039337,0.323084712028503,0.56647652387619,-0.748176336288452,0.345451295375824,0.935821115970612,0.308403700590134,0.170663431286812,0.686782121658325,0.3444604575634,0.640060424804688,0.17116005718708,-0.0786727592349052,0.982097148895264,0.760355174541473,-0.582517325878143,0.287286669015884,-0.400428920984268,-0.448355227708817,0.799145877361298,-0.703402876853943,-0.0744253620505333,0.706884145736694,0.149756222963333,0.207290574908257,0.966749012470245,0.41540515422821,0.907555341720581,0.0614978969097137,0.149756222963333,0.207290574908257,0.966749012470245,-0.703402876853943,-0.0744253620505333,0.706884145736694,0.0625298842787743,0.0381571650505066,0.997313499450684,-0.658836483955383,0.752276957035065,0.00373745616525412,-0.922282040119171,0.386513084173203,-0.00183651666156948,-0.695302903652191,0.718104302883148,0.029665706679225,0.0625298842787743,0.0381571650505066,0.997313499450684,-0.922282040119171,0.386513084173203,-0.00183651666156948,0.306998938322067,-0.894742786884308,0.324325442314148,0.957963883876801,-0.28687909245491,-0.00237762252800167,0.962016999721527,-0.186225578188896,0.199607893824577,0.793748676776886,0.069720096886158,0.604236960411072,0.101911671459675,-0.181669697165489,0.978064477443695,0.306998938322067,-0.894742786884308,0.324325442314148,0.962016999721527,-0.186225578188896,0.199607893824577,0.642367005348206,0.766385972499847,0.00415621744468808,-0.280420362949371,0.959877073764801,-0.000704935286194086,0.0275439452379942,0.0427657961845398,0.998705387115479,0.828144252300262,-0.4391710460186,0.34828993678093,0.820794105529785,-0.480140745639801,0.309454172849655,0.845472097396851,-0.533993005752563,-0.00533270323649049,0.661116003990173,-0.685584127902985,0.304795145988464,0.828144252300262,-0.4391710460186,0.34828993678093,0.845472097396851,-0.533993005752563,-0.00533270323649049,0.689282834529877,-0.724491715431213,-0.000936291296966374,0.0993011072278023,-0.149152040481567,0.983815550804138,
- -0.0374053306877613,-0.359970301389694,0.932213604450226,0.828144252300262,-0.4391710460186,0.34828993678093,0.661116003990173,-0.685584127902985,0.304795145988464,-0.0374053306877613,-0.359970301389694,0.932213604450226,0.172697246074677,-0.0709007754921913,0.982419848442078,0.820794105529785,-0.480140745639801,0.309454172849655,0.828144252300262,-0.4391710460186,0.34828993678093,-0.020821139216423,0.0342778153717518,0.999195456504822,-0.0448774471879005,-0.00646000355482101,0.998971581459045,0.131470024585724,-0.133535996079445,0.982284903526306,0.172697246074677,-0.0709007754921913,0.982419848442078,-0.0374053306877613,-0.359970301389694,0.932213604450226,0.0993011072278023,-0.149152040481567,0.983815550804138,-0.0679914578795433,0.0319552943110466,0.997173964977264,-0.40471813082695,-0.484581410884857,0.775489568710327,-0.020821139216423,0.0342778153717518,0.999195456504822,-0.40471813082695,-0.484581410884857,0.775489568710327,-0.997776746749878,0.0649135187268257,0.0150933284312487,-0.0679914578795433,0.0319552943110466,0.997173964977264,-0.760875523090363,0.648552894592285,0.02115773037076,-0.997776746749878,0.0649135187268257,0.0150933284312487,-0.661382019519806,0.750049233436584,-4.96339907840593e-007,-0.658836483955383,0.752276957035065,0.00373745616525412,-0.542949080467224,0.839764654636383,0.00119829119648784,-0.511869311332703,0.859063327312469,-7.8733755515259e-008,-0.511869311332703,0.859063327312469,-7.8733755515259e-008,-0.542949080467224,0.839764654636383,0.00119829119648784,0.11478616297245,0.993273854255676,0.0152054466307163,0.249409228563309,0.968398153781891,2.86556155515427e-006,-0.484060615301132,0.87503457069397,0.000106643739854917,-0.79215532541275,0.513190925121307,0.330340474843979,-0.816444933414459,0.576871991157532,0.0252254828810692,-0.811456441879272,0.584412932395935,7.52008236304391e-006,-0.691503882408142,0.722372829914093,7.3714386417123e-007,-0.695302903652191,0.718104302883148,0.029665706679225,-0.922282040119171,0.386513084173203,-0.00183651666156948,-0.94901579618454,0.315228641033173,6.73862672329051e-008,
- 0.725075900554657,-0.688665509223938,0.00216121296398342,0.71356076002121,-0.638851702213287,0.287575393915176,-0.27234935760498,-0.957810163497925,0.0917904376983643,-0.285857379436493,-0.958252549171448,0.00611849268898368,0.760355174541473,-0.582517325878143,0.287286669015884,0.661116003990173,-0.685584127902985,0.304795145988464,0.689282834529877,-0.724491715431213,-0.000936291296966374,0.803110599517822,-0.595815598964691,-0.00414259405806661,0.576309084892273,-0.81718635559082,-0.00862322747707367,0.562845945358276,-0.826529085636139,-0.00736791873350739,0.965670645236969,0.257040023803711,-0.0375587120652199,-0.999992966651917,-0.00375574012286961,-1.90853839399097e-007,-0.997776746749878,0.0649135187268257,0.0150933284312487,-0.760875523090363,0.648552894592285,0.02115773037076,-0.759675860404968,0.650302052497864,6.68233553824393e-007,-0.349567502737045,0.936911225318909,-6.96419192536268e-007,-0.372811496257782,0.927554190158844,0.0255892481654882,0.41540515422821,0.907555341720581,0.0614978969097137,0.403797924518585,0.914848208427429,6.12031714197769e-009,-0.611140727996826,-0.791451156139374,-0.0105935810133815,0.821274936199188,-0.570487916469574,0.00714444415643811,0.58615243434906,-0.81015819311142,-0.00830447766929865,-0.215314224362373,-0.976469695568085,-0.0121109876781702,-0.190677672624588,-0.93860650062561,0.287506282329559,0.415893197059631,-0.859646439552307,0.296716630458832,0.436657965183258,-0.899619996547699,-0.00371489743702114,0.845472097396851,-0.533993005752563,-0.00533270323649049,0.820794105529785,-0.480140745639801,0.309454172849655,0.864014387130737,-0.503466606140137,0.000606767251156271,0.864014387130737,-0.503466606140137,0.000606767251156271,0.820794105529785,-0.480140745639801,0.309454172849655,0.71356076002121,-0.638851702213287,0.287575393915176,0.725075900554657,-0.688665509223938,0.00216121296398342,0.403797924518585,0.914848208427429,6.12031714197769e-009,0.41540515422821,0.907555341720581,0.0614978969097137,-0.330510318279266,0.943685948848724,-0.0148225286975503,-0.339778989553452,0.940505266189575,-1.34768902171345e-006,
- -0.339778989553452,0.940505266189575,-1.34768902171345e-006,-0.330510318279266,0.943685948848724,-0.0148225286975503,-0.300952017307281,0.953633308410645,-0.00339196203276515,-0.280420362949371,0.959877073764801,-0.000704935286194086,-0.251168996095657,0.96794331073761,-1.09130269265734e-006,0.436657965183258,-0.899619996547699,-0.00371489743702114,0.415893197059631,-0.859646439552307,0.296716630458832,0.337554752826691,-0.892324984073639,0.299687951803207,0.331372112035751,-0.943497657775879,-0.00217608059756458,0.965670645236969,0.257040023803711,-0.0375587120652199,0.935821115970612,0.308403700590134,0.170663431286812,0.760355174541473,-0.582517325878143,0.287286669015884,0.803110599517822,-0.595815598964691,-0.00414259405806661,0.58615243434906,-0.81015819311142,-0.00830447766929865,0.56647652387619,-0.748176336288452,0.345451295375824,0.544642627239227,-0.773938477039337,0.323084712028503,0.562845945358276,-0.826529085636139,-0.00736791873350739,0.576309084892273,-0.81718635559082,-0.00862322747707367,0.58615243434906,-0.81015819311142,-0.00830447766929865,0.821274936199188,-0.570487916469574,0.00714444415643811,0.56647652387619,-0.748176336288452,0.345451295375824,0.439975529909134,-0.874626338481903,0.203593641519547,0.424422055482864,-0.905417442321777,0.00922961626201868,0.988662362098694,-0.150133833289146,-0.00258841016329825,0.947767496109009,-0.131111010909081,0.290769249200821,-0.0419304817914963,0.0293977595865726,0.998687982559204,-0.0543341264128685,-0.000179308088263497,0.998522877693176,0.163367688655853,-0.104079179465771,0.981059849262238,0.186708196997643,-0.0517053045332432,0.98105388879776,-0.932826399803162,0.356398046016693,0.0530607141554356,-0.0543341264128685,-0.000179308088263497,0.998522877693176,-0.0419304817914963,0.0293977595865726,0.998687982559204,-0.889010846614838,0.454634666442871,0.0544717907905579,0.868200123310089,-0.378378123044968,0.321027398109436,0.917667150497437,-0.397330284118652,0.0039518247358501,0.997837364673615,-0.0638725757598877,-0.0155152408406138,0.983618557453156,-0.0632586404681206,0.168798372149467,
- 0.163367688655853,-0.104079179465771,0.981059849262238,0.852444469928741,-0.399456650018692,0.337302178144455,0.868200123310089,-0.378378123044968,0.321027398109436,0.186708196997643,-0.0517053045332432,0.98105388879776,-0.998647451400757,0.039724063128233,0.0335444062948227,-0.997490644454956,0.0596699565649033,0.0381046161055565,-0.996270656585693,0.0818081274628639,0.0274270828813314,-0.995324671268463,0.0965862646698952,-2.1920448034507e-006,-0.99950784444809,0.0313712507486343,-2.09321524380357e-006,0.938525915145874,-0.124131329357624,0.322118729352951,0.915158987045288,-0.26519450545311,0.303571969270706,0.957594811916351,-0.28810453414917,-0.00281010661274195,0.992079555988312,-0.125572860240936,-0.00308605167083442,0.218214333057404,-0.0497359409928322,0.974632680416107,0.947767496109009,-0.131111010909081,0.290769249200821,0.954785287380219,-0.0410128608345985,0.294453591108322,0.230298340320587,0.00901423394680023,0.973078310489655,-0.0594997256994247,0.0197980739176273,0.998031914234161,-0.0398434996604919,-0.0345920547842979,0.998607039451599,0.218214333057404,-0.0497359409928322,0.974632680416107,0.230298340320587,0.00901423394680023,0.973078310489655,0.322033584117889,-0.543931543827057,0.774876058101654,0.182089194655418,-0.0973682850599289,0.978449285030365,-0.171826958656311,-0.419707119464874,0.891247093677521,-0.285058349370956,-0.426822751760483,0.858233034610748,-0.0594997256994247,0.0197980739176273,0.998031914234161,0.230298340320587,0.00901423394680023,0.973078310489655,-0.112462885677814,0.221908777952194,0.968560099601746,-0.112462885677814,0.221908777952194,0.968560099601746,-0.771439790725708,0.633778929710388,0.0566130205988884,-0.996270656585693,0.0818081274628639,0.0274270828813314,-0.171826958656311,-0.419707119464874,0.891247093677521,-0.0442530177533627,-0.000825772760435939,0.999020040035248,-0.981110215187073,0.193425595760345,0.0030472727958113,0.210915565490723,0.0103995222598314,0.977448880672455,0.182089194655418,-0.0973682850599289,0.978449285030365,0.915158987045288,-0.26519450545311,0.303571969270706,
- 0.938525915145874,-0.124131329357624,0.322118729352951,-0.889010846614838,0.454634666442871,0.0544717907905579,0.282411247491837,0.931712687015533,0.228375688195229,0.165744334459305,0.98616349697113,0.00321727152913809,-0.888665020465851,0.458556890487671,0.000180288319825195,-0.0442530177533627,-0.000825772760435939,0.999020040035248,0.182089194655418,-0.0973682850599289,0.978449285030365,0.210915565490723,0.0103995222598314,0.977448880672455,-0.0263180118054152,0.0416107885539532,0.998787224292755,-0.977965474128723,0.208439230918884,0.0116895688697696,-0.0442530177533627,-0.000825772760435939,0.999020040035248,-0.0263180118054152,0.0416107885539532,0.998787224292755,-0.974616229534149,0.22343111038208,0.0142014650627971,0.163367688655853,-0.104079179465771,0.981059849262238,-0.0543341264128685,-0.000179308088263497,0.998522877693176,0.0914861410856247,0.399956732988358,0.911956608295441,0.182089194655418,-0.0973682850599289,0.978449285030365,0.322033584117889,-0.543931543827057,0.774876058101654,0.761808574199677,-0.588403522968292,0.270977526903152,0.915158987045288,-0.26519450545311,0.303571969270706,0.210915565490723,0.0103995222598314,0.977448880672455,0.359117031097412,0.497503936290741,0.789635837078094,0.0914861410856247,0.399956732988358,0.911956608295441,-0.0263180118054152,0.0416107885539532,0.998787224292755,-0.888087093830109,-0.459150612354279,0.0219567939639091,-0.0263180118054152,0.0416107885539532,0.998787224292755,0.0914861410856247,0.399956732988358,0.911956608295441,0.218214333057404,-0.0497359409928322,0.974632680416107,0.129737600684166,-0.601718723773956,0.788100779056549,0.439975529909134,-0.874626338481903,0.203593641519547,0.947767496109009,-0.131111010909081,0.290769249200821,-0.981110215187073,0.193425595760345,0.0030472727958113,-0.0442530177533627,-0.000825772760435939,0.999020040035248,-0.977965474128723,0.208439230918884,0.0116895688697696,0.182089194655418,-0.0973682850599289,0.978449285030365,-0.0442530177533627,-0.000825772760435939,0.999020040035248,-0.171826958656311,-0.419707119464874,0.891247093677521,
- 0.0914861410856247,0.399956732988358,0.911956608295441,-0.0543341264128685,-0.000179308088263497,0.998522877693176,-0.932826399803162,0.356398046016693,0.0530607141554356,0.0914861410856247,0.399956732988358,0.911956608295441,0.359117031097412,0.497503936290741,0.789635837078094,0.163367688655853,-0.104079179465771,0.981059849262238,0.915158987045288,-0.26519450545311,0.303571969270706,0.761808574199677,-0.588403522968292,0.270977526903152,0.775454938411713,-0.631280362606049,-0.0124386707320809,0.957594811916351,-0.28810453414917,-0.00281010661274195,0.322033584117889,-0.543931543827057,0.774876058101654,-0.112462885677814,0.221908777952194,0.968560099601746,0.230298340320587,0.00901423394680023,0.973078310489655,0.186708196997643,-0.0517053045332432,0.98105388879776,0.983618557453156,-0.0632586404681206,0.168798372149467,0.519895017147064,0.451101273298264,0.725408017635345,0.218214333057404,-0.0497359409928322,0.974632680416107,-0.0398434996604919,-0.0345920547842979,0.998607039451599,-0.0231919083744287,-0.567512571811676,0.823037981987,0.129737600684166,-0.601718723773956,0.788100779056549,0.282411247491837,0.931712687015533,0.228375688195229,-0.889010846614838,0.454634666442871,0.0544717907905579,-0.0419304817914963,0.0293977595865726,0.998687982559204,-0.0231919083744287,-0.567512571811676,0.823037981987,-0.0398434996604919,-0.0345920547842979,0.998607039451599,-0.998647451400757,0.039724063128233,0.0335444062948227,-0.907648086547852,-0.418716132640839,0.0291845314204693,-0.997490644454956,0.0596699565649033,0.0381046161055565,-0.998647451400757,0.039724063128233,0.0335444062948227,-0.0398434996604919,-0.0345920547842979,0.998607039451599,-0.0594997256994247,0.0197980739176273,0.998031914234161,-0.171826958656311,-0.419707119464874,0.891247093677521,-0.981110215187073,0.193425595760345,0.0030472727958113,-0.771439790725708,0.633778929710388,0.0566130205988884,-0.285058349370956,-0.426822751760483,0.858233034610748,-0.888087093830109,-0.459150612354279,0.0219567939639091,-0.846765398979187,-0.53196656703949,1.54001895680267e-008,
- -0.969277381896973,0.24597030878067,-9.60722701393024e-008,-0.974616229534149,0.22343111038208,0.0142014650627971,-0.932826399803162,0.356398046016693,0.0530607141554356,-0.889010846614838,0.454634666442871,0.0544717907905579,-0.888665020465851,0.458556890487671,0.000180288319825195,-0.944668054580688,0.328027814626694,-9.04110031285654e-009,0.282411247491837,0.931712687015533,0.228375688195229,-0.0419304817914963,0.0293977595865726,0.998687982559204,0.186708196997643,-0.0517053045332432,0.98105388879776,0.519895017147064,0.451101273298264,0.725408017635345,0.868200123310089,-0.378378123044968,0.321027398109436,0.852444469928741,-0.399456650018692,0.337302178144455,0.904636323451996,-0.426153898239136,0.00510054919868708,0.917667150497437,-0.397330284118652,0.0039518247358501,0.867667078971863,0.497106105089188,-0.00628032069653273,0.938525915145874,-0.124131329357624,0.322118729352951,0.992079555988312,-0.125572860240936,-0.00308605167083442,-0.112462885677814,0.221908777952194,0.968560099601746,-0.996270656585693,0.0818081274628639,0.0274270828813314,-0.997490644454956,0.0596699565649033,0.0381046161055565,-0.0594997256994247,0.0197980739176273,0.998031914234161,0.322033584117889,-0.543931543827057,0.774876058101654,0.230298340320587,0.00901423394680023,0.973078310489655,0.954785287380219,-0.0410128608345985,0.294453591108322,0.761808574199677,-0.588403522968292,0.270977526903152,-0.915854871273041,-0.401509523391724,0,-0.907648086547852,-0.418716132640839,0.0291845314204693,-0.998647451400757,0.039724063128233,0.0335444062948227,-0.99950784444809,0.0313712507486343,-2.09321524380357e-006,0.322033584117889,-0.543931543827057,0.774876058101654,-0.285058349370956,-0.426822751760483,0.858233034610748,-0.112462885677814,0.221908777952194,0.968560099601746,-0.771439790725708,0.633778929710388,0.0566130205988884,-0.112462885677814,0.221908777952194,0.968560099601746,-0.285058349370956,-0.426822751760483,0.858233034610748,0.0914861410856247,0.399956732988358,0.911956608295441,-0.932826399803162,0.356398046016693,0.0530607141554356,
- -0.888087093830109,-0.459150612354279,0.0219567939639091,-0.846765398979187,-0.53196656703949,1.54001895680267e-008,-0.888087093830109,-0.459150612354279,0.0219567939639091,-0.932826399803162,0.356398046016693,0.0530607141554356,-0.944668054580688,0.328027814626694,-9.04110031285654e-009,0.938525915145874,-0.124131329357624,0.322118729352951,0.867667078971863,0.497106105089188,-0.00628032069653273,0.733592808246613,0.615144014358521,0.288858532905579,0.359117031097412,0.497503936290741,0.789635837078094,0.210915565490723,0.0103995222598314,0.977448880672455,0.938525915145874,-0.124131329357624,0.322118729352951,0.733592808246613,0.615144014358521,0.288858532905579,0.867667078971863,0.497106105089188,-0.00628032069653273,0.852444469928741,-0.399456650018692,0.337302178144455,0.733592808246613,0.615144014358521,0.288858532905579,0.163367688655853,-0.104079179465771,0.981059849262238,0.359117031097412,0.497503936290741,0.789635837078094,0.733592808246613,0.615144014358521,0.288858532905579,0.852444469928741,-0.399456650018692,0.337302178144455,0.852444469928741,-0.399456650018692,0.337302178144455,0.867667078971863,0.497106105089188,-0.00628032069653273,0.904636323451996,-0.426153898239136,0.00510054919868708,-0.888087093830109,-0.459150612354279,0.0219567939639091,-0.974616229534149,0.22343111038208,0.0142014650627971,-0.0263180118054152,0.0416107885539532,0.998787224292755,0.186708196997643,-0.0517053045332432,0.98105388879776,0.868200123310089,-0.378378123044968,0.321027398109436,0.983618557453156,-0.0632586404681206,0.168798372149467,-0.995324671268463,0.0965862646698952,-2.1920448034507e-006,-0.996270656585693,0.0818081274628639,0.0274270828813314,-0.771439790725708,0.633778929710388,0.0566130205988884,-0.814019381999969,0.580837607383728,-3.32047989104467e-006,0.775454938411713,-0.631280362606049,-0.0124386707320809,0.761808574199677,-0.588403522968292,0.270977526903152,0.954785287380219,-0.0410128608345985,0.294453591108322,0.999298453330994,-0.0372496619820595,-0.00389747973531485,-0.814019381999969,0.580837607383728,-3.32047989104467e-006,
- -0.771439790725708,0.633778929710388,0.0566130205988884,-0.981110215187073,0.193425595760345,0.0030472727958113,-0.981136918067932,0.193314477801323,-2.79703073147175e-007,-0.981136918067932,0.193314477801323,-2.79703073147175e-007,-0.981110215187073,0.193425595760345,0.0030472727958113,-0.977965474128723,0.208439230918884,0.0116895688697696,-0.974616229534149,0.22343111038208,0.0142014650627971,-0.969277381896973,0.24597030878067,-9.60722701393024e-008,0.999298453330994,-0.0372496619820595,-0.00389747973531485,0.954785287380219,-0.0410128608345985,0.294453591108322,0.947767496109009,-0.131111010909081,0.290769249200821,0.988662362098694,-0.150133833289146,-0.00258841016329825,0.00194783578626812,-0.999998152256012,-1.01996329249232e-006,0.00194783578626812,-0.999998152256012,-1.01996329249232e-006,0.00194783578626812,-0.999998152256012,-1.01996340617916e-006,0.00194783578626812,-0.999998092651367,-1.01996317880548e-006,0.00194783578626812,-0.999998092651367,-1.01996329249232e-006,0.00194783566985279,-0.999998092651367,-1.01996329249232e-006,0.00194783590268344,-0.999998152256012,-1.01996340617916e-006,0.00194783566985279,-0.999998092651367,-1.01996329249232e-006,0.00194783590268344,-0.999998092651367,-1.01996329249232e-006,0.00194783578626812,-0.999998152256012,-1.01996329249232e-006,0.00194783566985279,-0.999998152256012,-1.01996329249232e-006,-0.00223142141476274,-0.999997556209564,-1.9762196643569e-006,-0.00223142141476274,-0.999997556209564,-1.9762196643569e-006,-0.00223142188042402,-0.999997556209564,-1.97621989173058e-006,-0.00223142141476274,-0.999997556209564,-1.9762196643569e-006,-0.00223142164759338,-0.999997556209564,-1.97621989173058e-006,-0.00223142141476274,-0.999997556209564,-1.9762196643569e-006,-0.00223142141476274,-0.999997496604919,-1.97621989173058e-006,-0.00223142164759338,-0.999997556209564,-1.97621989173058e-006,0.949186086654663,0.314715296030045,0.000106145336758345,0.949733078479767,0.313060641288757,-3.12259817292215e-006,0.949733078479767,0.313060641288757,-3.12259817292215e-006,0.948946416378021,0.315437257289886,-0.000195786749827676,
- 0.949186086654663,0.314715296030045,0.000106145336758345,0.948946416378021,0.315437257289886,-0.000195786749827676,0.93793660402298,0.3467957675457,-0.00275311642326415,0.937687993049622,0.347469627857208,-0.00245642615482211,0.937687993049622,0.347469627857208,-0.00245642615482211,0.928172469139099,0.372054934501648,0.00843268167227507,0.949186086654663,0.314715296030045,0.000106145336758345,0.717934429645538,0.674856066703796,-0.17070309817791,0.110963501036167,0.937901854515076,-0.328674972057343,0.110984809696674,0.937905192375183,0.328658014535904,0.717925190925598,0.674850046634674,0.170765399932861,-0.429197043180466,0.903210878372192,-1.92287942013536e-007,-0.402453392744064,0.915440499782562,4.33209699224335e-008,-0.402453422546387,0.915440499782562,4.33209699224335e-008,-0.429407507181168,0.903110682964325,-0.000532479316461831,-0.586693704128265,0.809504091739655,-0.0222195833921433,-0.586693704128265,0.80950403213501,-0.0222195852547884,-0.588432490825653,0.808535635471344,0.00415484979748726,-0.571978509426117,0.820268630981445,0.00021640608611051,-0.240308910608292,0.970594108104706,0.0140999164432287,-0.584687113761902,0.811222791671753,0.00765890115872025,-0.588432490825653,0.808535635471344,0.00415484979748726,-0.588432490825653,0.808535635471344,0.00415484979748726,-0.584687113761902,0.811222791671753,0.00765890115872025,-0.578258693218231,0.815812349319458,0.00818119198083878,-0.571978509426117,0.820268630981445,0.00021640608611051,-0.429197043180466,0.903210878372192,-1.92287942013536e-007,-0.429407507181168,0.903110682964325,-0.000532479316461831,-0.913970828056335,0.405236929655075,0.0209866762161255,-0.913970828056335,0.405236929655075,0.0209866762161255,-0.429407507181168,0.903110682964325,-0.000532479316461831,-0.578258693218231,0.815812349319458,0.00818119198083878,-0.429407507181168,0.903110682964325,-0.000532479316461831,-0.920027017593384,0.391447603702545,-0.0178607199341059,-0.578258693218231,0.815812349319458,0.00818119198083878,-0.920027017593384,0.391447603702545,-0.0178607199341059,
- -0.571978509426117,0.820268630981445,0.00021640608611051,-0.578258693218231,0.815812349319458,0.00818119198083878,0.240052759647369,-0.970759212970734,0.00117678847163916,0.34788390994072,-0.937537014484406,0.00105211220216006,0.347882270812988,-0.937537670135498,-0.00105427403468639,0.240050196647644,-0.970759749412537,-0.00117943855002522,0.34788390994072,-0.937537014484406,0.00105211220216006,0.95797073841095,-0.286856085062027,0.00238210032694042,0.957963883876801,-0.28687909245491,-0.00237762252800167,0.347882270812988,-0.937537670135498,-0.00105427403468639,0.983488619327545,0.180970147252083,2.38656730289222e-006,0.9834885597229,0.18097011744976,2.38656707551854e-006,0.983488619327545,0.180970147252083,2.38656730289222e-006,0.983488619327545,0.180970132350922,2.38656684814487e-006,0.9834885597229,0.180970147252083,2.38656730289222e-006,0.983488619327545,0.180970147252083,2.38656730289222e-006,0.983488619327545,0.180970147252083,2.38656707551854e-006,0.9834885597229,0.180970147252083,2.38656730289222e-006,0.9834885597229,0.180970132350922,2.38656707551854e-006,0.983488500118256,0.18097011744976,2.38656684814487e-006,0.9834885597229,0.18097011744976,2.38656707551854e-006
- }
- NormalsW: *1896 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *5688 {
- a: -0.217734977602959,0.319457203149796,-0.92224657535553,-0.448982357978821,0.127197831869125,-0.884440839290619,-0.330233693122864,-0.11813922971487,-0.93647688627243,0.414253741502762,-0.331249266862869,-0.847742795944214,-0.889798820018768,0.434704542160034,-0.138889342546463,-0.920298874378204,0.390367358922958,0.0257570073008537,-0.291495978832245,0.955991268157959,0.0333289317786694,-0.075753279030323,0.985548734664917,-0.151509538292885,-0.281758308410645,0.149631410837173,-0.947746157646179,-0.694993674755096,0.697180867195129,-0.175848484039307,-0.846779406070709,0.497821807861328,-0.187452137470245,-0.346201837062836,0.0107501596212387,-0.93809849023819,-0.889798820018768,0.434704542160034,-0.138889342546463,-0.0849258080124855,0.332348704338074,-0.939325273036957,-0.340160191059113,0.663627445697784,-0.666250467300415,-0.726104259490967,0.284823179244995,-0.625818133354187,-0.0346396118402481,-0.00803717598319054,0.999367594718933,-0.0149951986968517,-0.0175182558596134,0.999734163284302,-0.000227482174523175,-0.000218781700823456,1,-0.185796454548836,-0.139717742800713,0.972604036331177,0.139452785253525,0.103352278470993,0.984820425510406,0.286976307630539,0.149247601628304,0.946239769458771,0.0858481377363205,0.0320312231779099,0.995793223381042,-0.0692468956112862,-0.000310048460960388,0.997599542140961,-0.00725056882947683,0.037272110581398,0.999278903007507,0.259618371725082,0.88513708114624,-0.386174529790878,-0.075753279030323,0.985548734664917,-0.151509538292885,-0.291495978832245,0.955991268157959,0.0333289317786694,-0.942357182502747,0.326164096593857,0.0746996700763702,-0.732301354408264,0.679348766803741,0.0471168011426926,-0.846779406070709,0.497821807861328,-0.187452137470245,-0.694993674755096,0.697180867195129,-0.175848484039307,-0.302084594964981,0.231551706790924,-0.92473179101944,-0.133371815085411,-0.0505998842418194,-0.989773511886597,-0.0715657696127892,-0.018905945122242,-0.997256696224213,0.0445125550031662,0.317847281694412,-0.947096467018127,-0.270294845104218,0.937981367111206,-0.217098742723465,
- -0.346150130033493,0.911027908325195,-0.224072173237801,-0.0597377866506577,0.299752056598663,-0.952145040035248,-0.448982357978821,0.127197831869125,-0.884440839290619,-0.339659839868546,0.938510596752167,0.0618795715272427,-0.346150130033493,0.911027908325195,-0.224072173237801,-0.270294845104218,0.937981367111206,-0.217098742723465,-0.288664311170578,0.957169413566589,0.0223565548658371,0.235142439603806,0.792633831501007,-0.562529563903809,-0.484443187713623,0.777937650680542,0.400159776210785,-0.487593919038773,0.841295838356018,0.233395785093308,-0.0282168854027987,0.977904796600342,-0.207137539982796,-0.339659839868546,0.938510596752167,0.0618795715272427,-0.177677363157272,0.967500507831573,0.179926589131355,-0.346150130033493,0.911027908325195,-0.224072173237801,-0.23413921892643,0.958133637905121,-0.164799273014069,-0.0802197158336639,0.311564743518829,-0.946832776069641,0.0124319978058338,0.0937275886535645,-0.995520353317261,-0.146633476018906,0.718959093093872,-0.679408967494965,-0.912447690963745,0.157856106758118,0.37751916050911,-0.94090861082077,0.281841367483139,-0.187767133116722,-0.731273114681244,0.680992245674133,0.038590494543314,-0.177677363157272,0.967500507831573,0.179926589131355,-0.0692468956112862,-0.000310048460960388,0.997599542140961,-0.355044603347778,0.223998799920082,0.90761661529541,-0.487593919038773,0.841295838356018,0.233395785093308,0.283935934305191,0.0844428017735481,0.955117762088776,-0.449499905109406,0.892268598079681,0.0425050668418407,-0.61783766746521,0.759015440940857,-0.205358982086182,-0.302084594964981,0.231551706790924,-0.92473179101944,0.0445125550031662,0.317847281694412,-0.947096467018127,-0.0282168854027987,0.977904796600342,-0.207137539982796,0.151297599077225,0.271774381399155,0.950393557548523,0.0360611937940121,0.0916252508759499,0.995140433311462,-0.535872578620911,0.844156444072723,0.0155133437365294,-0.449499905109406,0.892268598079681,0.0425050668418407,0.0239539481699467,0.998769342899323,0.0434282571077347,-0.61783766746521,0.759015440940857,-0.205358982086182,
- -0.0282168854027987,0.977904796600342,-0.207137539982796,0.0404573567211628,0.00921323429793119,0.99913889169693,-0.00959921348839998,-0.00353911565616727,0.999947667121887,0.0239539481699467,0.998769342899323,0.0434282571077347,-0.449499905109406,0.892268598079681,0.0425050668418407,0.213627725839615,0.136850118637085,-0.96728241443634,-0.340160191059113,0.663627445697784,-0.666250467300415,-0.0849258080124855,0.332348704338074,-0.939325273036957,-0.0282168854027987,0.977904796600342,-0.207137539982796,0.0445125550031662,0.317847281694412,-0.947096467018127,-0.245547890663147,0.329175740480423,-0.911783814430237,0.235142439603806,0.792633831501007,-0.562529563903809,0.0301875285804272,0.0314036458730698,0.999050855636597,-0.0594352893531322,-0.146502628922462,0.987423121929169,0.00487074721604586,0.0146634802222252,0.999880731105804,-0.183413237333298,-0.161730378866196,0.969640612602234,-0.61783766746521,0.759015440940857,-0.205358982086182,0.0239539481699467,0.998769342899323,0.0434282571077347,-0.338200062513351,0.929432928562164,-0.147564083337784,-0.483484387397766,0.675089597702026,-0.557222545146942,-0.0755684822797775,0.0687105283141136,0.994770467281342,-0.338200062513351,0.929432928562164,-0.147564083337784,0.0239539481699467,0.998769342899323,0.0434282571077347,-0.270294845104218,0.937981367111206,-0.217098742723465,-0.448982357978821,0.127197831869125,-0.884440839290619,-0.217734977602959,0.319457203149796,-0.92224657535553,0.00548243522644043,0.688279867172241,-0.725424528121948,-0.366357445716858,0.395360082387924,-0.842302083969116,-0.077380359172821,0.0464085564017296,-0.995921015739441,-0.129155620932579,-0.198076263070107,0.971640229225159,-0.0849773660302162,0.36391818523407,-0.927546560764313,0.283935934305191,0.0844428017735481,0.955117762088776,0.0404573567211628,0.00921323429793119,0.99913889169693,-0.449499905109406,0.892268598079681,0.0425050668418407,-0.94090861082077,0.281841367483139,-0.187767133116722,-0.912447690963745,0.157856106758118,0.37751916050911,-0.87493896484375,0.46248123049736,-0.143503054976463,
- -0.0282168854027987,0.977904796600342,-0.207137539982796,-0.487593919038773,0.841295838356018,0.233395785093308,-0.449499905109406,0.892268598079681,0.0425050668418407,-0.0459079965949059,-0.0222787577658892,0.998697221279144,-0.0126401716843247,0.0378895699977875,0.999202072620392,-0.731273114681244,0.680992245674133,0.038590494543314,0.0360611937940121,0.0916252508759499,0.995140433311462,-0.0459079965949059,-0.0222787577658892,0.998697221279144,-0.731273114681244,0.680992245674133,0.038590494543314,-0.535872578620911,0.844156444072723,0.0155133437365294,-0.232030496001244,-0.148643776774406,0.961284041404724,0.390274912118912,-0.0310175847262144,0.920175850391388,0.259618371725082,0.88513708114624,-0.386174529790878,0.138763785362244,0.103280194103718,0.984925270080566,-0.0508742593228817,0.329010456800461,-0.942954897880554,-0.141021355986595,-0.116172641515732,-0.983166873455048,-0.920298874378204,0.390367358922958,0.0257570073008537,-0.889798820018768,0.434704542160034,-0.138889342546463,-0.726104259490967,0.284823179244995,-0.625818133354187,-0.92665684223175,0.37334343791008,-0.0438376441597939,0.0445125550031662,0.317847281694412,-0.947096467018127,-0.0715657696127892,-0.018905945122242,-0.997256696224213,-0.10514797270298,0.0108543802052736,-0.994397342205048,-0.245547890663147,0.329175740480423,-0.911783814430237,-0.0346396118402481,-0.00803717598319054,0.999367594718933,-0.185796454548836,-0.139717742800713,0.972604036331177,-0.732301354408264,0.679348766803741,0.0471168011426926,-0.942357182502747,0.326164096593857,0.0746996700763702,-0.726104259490967,0.284823179244995,-0.625818133354187,-0.846779406070709,0.497821807861328,-0.187452137470245,-0.732301354408264,0.679348766803741,0.0471168011426926,-0.92665684223175,0.37334343791008,-0.0438376441597939,0.235142439603806,0.792633831501007,-0.562529563903809,-0.346150130033493,0.911027908325195,-0.224072173237801,-0.177677363157272,0.967500507831573,0.179926589131355,-0.912447690963745,0.157856106758118,0.37751916050911,-0.0126401716843247,0.0378895699977875,0.999202072620392,
- -0.942357182502747,0.326164096593857,0.0746996700763702,-0.270294845104218,0.937981367111206,-0.217098742723465,0.00548243522644043,0.688279867172241,-0.725424528121948,0.259618371725082,0.88513708114624,-0.386174529790878,-0.288664311170578,0.957169413566589,0.0223565548658371,-0.23413921892643,0.958133637905121,-0.164799273014069,-0.146633476018906,0.718959093093872,-0.679408967494965,0.151297599077225,0.271774381399155,0.950393557548523,-0.535872578620911,0.844156444072723,0.0155133437365294,0.0301875285804272,0.0314036458730698,0.999050855636597,-0.232030496001244,-0.148643776774406,0.961284041404724,-0.291495978832245,0.955991268157959,0.0333289317786694,-0.920298874378204,0.390367358922958,0.0257570073008537,-0.92665684223175,0.37334343791008,-0.0438376441597939,0.0301875285804272,0.0314036458730698,0.999050855636597,-0.920298874378204,0.390367358922958,0.0257570073008537,-0.0459079965949059,-0.0222787577658892,0.998697221279144,-0.0105182584375143,-0.0143022369593382,0.999842405319214,-0.000451194413471967,0.120083332061768,0.992763757705688,-0.0126401716843247,0.0378895699977875,0.999202072620392,-0.732301354408264,0.679348766803741,0.0471168011426926,-0.185796454548836,-0.139717742800713,0.972604036331177,-0.92665684223175,0.37334343791008,-0.0438376441597939,-0.94090861082077,0.281841367483139,-0.187767133116722,-0.352667182683945,-0.0298639126121998,-0.93527227640152,-0.0802197158336639,0.311564743518829,-0.946832776069641,-0.23413921892643,0.958133637905121,-0.164799273014069,-0.0459079965949059,-0.0222787577658892,0.998697221279144,0.0360611937940121,0.0916252508759499,0.995140433311462,0.029591491445899,0.0410748906433582,0.998717784881592,-0.0105182584375143,-0.0143022369593382,0.999842405319214,0.259618371725082,0.88513708114624,-0.386174529790878,0.390274912118912,-0.0310175847262144,0.920175850391388,0.139452785253525,0.103352278470993,0.984820425510406,-0.288664311170578,0.957169413566589,0.0223565548658371,-0.00725056882947683,0.037272110581398,0.999278903007507,-0.339659839868546,0.938510596752167,0.0618795715272427,
- -0.288664311170578,0.957169413566589,0.0223565548658371,0.139452785253525,0.103352278470993,0.984820425510406,-0.487593919038773,0.841295838356018,0.233395785093308,-0.484443187713623,0.777937650680542,0.400159776210785,-0.355044603347778,0.223998799920082,0.90761661529541,0.283935934305191,0.0844428017735481,0.955117762088776,-0.0755684822797775,0.0687105283141136,0.994770467281342,-0.00959921348839998,-0.00353911565616727,0.999947667121887,0.264938682317734,0.0687493085861206,0.961811304092407,0.0389690175652504,-0.0323295965790749,0.998717308044434,-0.0187500659376383,-0.0708986222743988,-0.997307300567627,-0.133371815085411,-0.0505998842418194,-0.989773511886597,-0.302084594964981,0.231551706790924,-0.92473179101944,-0.177677363157272,0.967500507831573,0.179926589131355,-0.339659839868546,0.938510596752167,0.0618795715272427,-0.00725056882947683,0.037272110581398,0.999278903007507,-0.0692468956112862,-0.000310048460960388,0.997599542140961,0.235142439603806,0.792633831501007,-0.562529563903809,-0.245547890663147,0.329175740480423,-0.911783814430237,-0.0597377866506577,0.299752056598663,-0.952145040035248,-0.346150130033493,0.911027908325195,-0.224072173237801,0.00548243522644043,0.688279867172241,-0.725424528121948,-0.075753279030323,0.985548734664917,-0.151509538292885,0.259618371725082,0.88513708114624,-0.386174529790878,-0.366357445716858,0.395360082387924,-0.842302083969116,-0.281455725431442,-0.569636762142181,0.772202551364899,-0.075753279030323,0.985548734664917,-0.151509538292885,0.543139636516571,0.198594003915787,-0.815818428993225,0.954864919185638,-0.245923280715942,-0.166597500443459,0.182351142168045,0.0948337465524673,-0.978649377822876,0.139452785253525,0.103352278470993,0.984820425510406,0.977489709854126,-0.110206983983517,0.179912075400352,-0.232030496001244,-0.148643776774406,0.961284041404724,0.259618371725082,0.88513708114624,-0.386174529790878,-0.291495978832245,0.955991268157959,0.0333289317786694,-0.075753279030323,0.985548734664917,-0.151509538292885,-0.0849773660302162,0.36391818523407,-0.927546560764313,
- -0.0849258080124855,0.332348704338074,-0.939325273036957,-0.889798820018768,0.434704542160034,-0.138889342546463,-0.340160191059113,0.663627445697784,-0.666250467300415,-0.346201837062836,0.0107501596212387,-0.93809849023819,-0.846779406070709,0.497821807861328,-0.187452137470245,-0.726104259490967,0.284823179244995,-0.625818133354187,0.235142439603806,0.792633831501007,-0.562529563903809,-0.177677363157272,0.967500507831573,0.179926589131355,-0.484443187713623,0.777937650680542,0.400159776210785,-0.355044603347778,0.223998799920082,0.90761661529541,-0.484443187713623,0.777937650680542,0.400159776210785,-0.177677363157272,0.967500507831573,0.179926589131355,0.954760909080505,0.288786262273788,0.0709516853094101,-0.0239503476768732,-0.0524280108511448,-0.998337507247925,-0.0696797296404839,-0.0659718438982964,-0.995385587215424,-0.185796454548836,-0.139717742800713,0.972604036331177,-0.0594352893531322,-0.146502628922462,0.987423121929169,-0.92665684223175,0.37334343791008,-0.0438376441597939,-0.302084594964981,0.231551706790924,-0.92473179101944,-0.126078546047211,0.345391720533371,-0.929950952529907,-0.0187500659376383,-0.0708986222743988,-0.997307300567627,-0.483484387397766,0.675089597702026,-0.557222545146942,-0.126078546047211,0.345391720533371,-0.929950952529907,-0.302084594964981,0.231551706790924,-0.92473179101944,-0.61783766746521,0.759015440940857,-0.205358982086182,-0.0755684822797775,0.0687105283141136,0.994770467281342,0.0239539481699467,0.998769342899323,0.0434282571077347,-0.00959921348839998,-0.00353911565616727,0.999947667121887,-0.18173260986805,0.377502351999283,-0.908000707626343,0.0227980241179466,0.0261130779981613,-0.999399065971375,-0.352667182683945,-0.0298639126121998,-0.93527227640152,-0.281758308410645,0.149631410837173,-0.947746157646179,-0.0357226580381393,-0.0352772697806358,-0.998738884925842,0.0227980241179466,0.0261130779981613,-0.999399065971375,-0.18173260986805,0.377502351999283,-0.908000707626343,-0.694993674755096,0.697180867195129,-0.175848484039307,-0.281758308410645,0.149631410837173,-0.947746157646179,
- -0.18173260986805,0.377502351999283,-0.908000707626343,-0.87493896484375,0.46248123049736,-0.143503054976463,-0.87493896484375,0.46248123049736,-0.143503054976463,-0.18173260986805,0.377502351999283,-0.908000707626343,-0.352667182683945,-0.0298639126121998,-0.93527227640152,-0.94090861082077,0.281841367483139,-0.187767133116722,-0.731273114681244,0.680992245674133,0.038590494543314,-0.94090861082077,0.281841367483139,-0.187767133116722,-0.23413921892643,0.958133637905121,-0.164799273014069,-0.535872578620911,0.844156444072723,0.0155133437365294,-0.87493896484375,0.46248123049736,-0.143503054976463,-0.912447690963745,0.157856106758118,0.37751916050911,-0.942357182502747,0.326164096593857,0.0746996700763702,-0.694993674755096,0.697180867195129,-0.175848484039307,0.25958725810051,-0.964951694011688,-0.0385050997138023,0.0667426437139511,0.967126607894897,-0.245380595326424,-0.608928680419922,-0.489889740943909,0.623870134353638,-0.942357182502747,0.326164096593857,0.0746996700763702,-0.0126401716843247,0.0378895699977875,0.999202072620392,-0.0346396118402481,-0.00803717598319054,0.999367594718933,-0.183413237333298,-0.161730378866196,0.969640612602234,0.2240229845047,0.133483245968819,0.965399384498596,-0.232030496001244,-0.148643776774406,0.961284041404724,0.0301875285804272,0.0314036458730698,0.999050855636597,0.2240229845047,0.133483245968819,0.965399384498596,0.954862236976624,-0.245923563838005,0.166612967848778,0.390274912118912,-0.0310175847262144,0.920175850391388,-0.232030496001244,-0.148643776774406,0.961284041404724,0.0147526543587446,0.00803916901350021,0.999858856201172,0.029591491445899,0.0410748906433582,0.998717784881592,0.0360611937940121,0.0916252508759499,0.995140433311462,0.151297599077225,0.271774381399155,0.950393557548523,-0.000227482174523175,-0.000218781700823456,1,0.00487074721604586,0.0146634802222252,0.999880731105804,-0.0594352893531322,-0.146502628922462,0.987423121929169,-0.185796454548836,-0.139717742800713,0.972604036331177,0.0733019933104515,0.0809575915336609,-0.99401843547821,0.104483038187027,-0.017565906047821,-0.994371592998505,
- 0.0124319978058338,0.0937275886535645,-0.995520353317261,-0.0802197158336639,0.311564743518829,-0.946832776069641,-0.346201837062836,0.0107501596212387,-0.93809849023819,-0.0161906220018864,-0.0287718046456575,-0.999454975128174,-0.0357226580381393,-0.0352772697806358,-0.998738884925842,-0.281758308410645,0.149631410837173,-0.947746157646179,0.133100286126137,0.0834422931075096,-0.987583875656128,-0.178934007883072,0.763196885585785,-0.620897233486176,0.213627725839615,0.136850118637085,-0.96728241443634,-0.000451194413471967,0.120083332061768,0.992763757705688,-0.0149951986968517,-0.0175182558596134,0.999734163284302,-0.0346396118402481,-0.00803717598319054,0.999367594718933,-0.0126401716843247,0.0378895699977875,0.999202072620392,0.0858481377363205,0.0320312231779099,0.995793223381042,-0.139983013272285,0.0617860369384289,0.98822432756424,-0.355044603347778,0.223998799920082,0.90761661529541,-0.0692468956112862,-0.000310048460960388,0.997599542140961,0.414253741502762,-0.331249266862869,-0.847742795944214,0.096558190882206,0.0596723929047585,-0.993536949157715,0.152411893010139,0.231415882706642,-0.96084201335907,-0.10514797270298,0.0108543802052736,-0.994397342205048,0.0413876846432686,0.0159716196358204,-0.99901556968689,-0.0597377866506577,0.299752056598663,-0.952145040035248,-0.245547890663147,0.329175740480423,-0.911783814430237,0.0227980241179466,0.0261130779981613,-0.999399065971375,-0.0182937271893024,-0.0255561843514442,-0.999506056308746,-0.352667182683945,-0.0298639126121998,-0.93527227640152,-0.0182937271893024,-0.0255561843514442,-0.999506056308746,0.0733019933104515,0.0809575915336609,-0.99401843547821,-0.0802197158336639,0.311564743518829,-0.946832776069641,-0.352667182683945,-0.0298639126121998,-0.93527227640152,-0.139983013272285,0.0617860369384289,0.98822432756424,0.0217395760118961,0.00785535108298063,0.999732911586761,0.283935934305191,0.0844428017735481,0.955117762088776,-0.355044603347778,0.223998799920082,0.90761661529541,0.0217395760118961,0.00785535108298063,0.999732911586761,0.264938682317734,0.0687493085861206,0.961811304092407,
- -0.00959921348839998,-0.00353911565616727,0.999947667121887,0.0404573567211628,0.00921323429793119,0.99913889169693,0.283935934305191,0.0844428017735481,0.955117762088776,0.0413876846432686,0.0159716196358204,-0.99901556968689,-0.330233693122864,-0.11813922971487,-0.93647688627243,-0.448982357978821,0.127197831869125,-0.884440839290619,-0.0597377866506577,0.299752056598663,-0.952145040035248,-0.178934007883072,0.763196885585785,-0.620897233486176,-0.0161906220018864,-0.0287718046456575,-0.999454975128174,-0.346201837062836,0.0107501596212387,-0.93809849023819,-0.340160191059113,0.663627445697784,-0.666250467300415,0.096558190882206,0.0596723929047585,-0.993536949157715,0.133100286126137,0.0834422931075096,-0.987583875656128,0.213627725839615,0.136850118637085,-0.96728241443634,-0.0849258080124855,0.332348704338074,-0.939325273036957,-0.0849773660302162,0.36391818523407,-0.927546560764313,0.096558190882206,0.0596723929047585,-0.993536949157715,-0.0849773660302162,0.36391818523407,-0.927546560764313,0.152411893010139,0.231415882706642,-0.96084201335907,-0.240939319133759,0.103437967598438,-0.96501237154007,-0.27012637257576,0.154824361205101,-0.950295329093933,-0.0180137697607279,-0.135747641324997,-0.990579664707184,-0.139244362711906,-0.0551935434341431,-0.988718748092651,-0.618405878543854,0.784141480922699,0.0519274547696114,-0.71852719783783,0.673861622810364,-0.172131404280663,-0.961246609687805,-0.240633592009544,-0.134538397192955,-0.994687139987946,-0.0875565111637115,0.0541410706937313,0.00445170002058148,0.158645406365395,0.987325668334961,-0.141758054494858,-0.167008057236671,0.975711584091187,-0.618405878543854,0.784141480922699,0.0519274547696114,-0.994687139987946,-0.0875565111637115,0.0541410706937313,-0.288015782833099,0.146160617470741,-0.94640588760376,-0.180826112627983,0.35963299870491,-0.915404915809631,0.0285999588668346,-0.169353663921356,-0.985140264034271,0.00659945793449879,0.0256933178752661,-0.999648094177246,-0.961246609687805,-0.240633592009544,-0.134538397192955,-0.71852719783783,0.673861622810364,-0.172131404280663,
- -0.288015782833099,0.146160617470741,-0.94640588760376,-0.337875872850418,0.0714295879006386,-0.938476324081421,-0.0285398233681917,0.120479203760624,0.992305517196655,-0.00785753317177296,-0.250281363725662,0.968141257762909,0.00883284863084555,0.0910454019904137,0.995807588100433,-0.0337517745792866,-0.0769130662083626,0.996466398239136,-0.0375043861567974,0.0111880796030164,0.999233841896057,-0.342893332242966,-0.227178275585175,-0.911490082740784,-0.0125145735219121,-0.123241677880287,-0.992297828197479,-0.0176269952207804,-0.0683132335543633,-0.997508227825165,-0.293438315391541,0.078058235347271,-0.952785968780518,-0.91973865032196,0.323432683944702,-0.222423672676086,-0.879790246486664,0.429249405860901,-0.204240530729294,-0.289016038179398,0.104041703045368,-0.951653838157654,-0.27012637257576,0.154824361205101,-0.950295329093933,-0.987545549869537,0.144712448120117,0.0617440156638622,-0.879790246486664,0.429249405860901,-0.204240530729294,-0.91973865032196,0.323432683944702,-0.222423672676086,-0.997480690479279,-0.057327426970005,0.0417857244610786,-0.616565465927124,0.500608146190643,-0.607649981975555,-0.917883157730103,0.379465311765671,0.116175912320614,-0.98336261510849,0.127187967300415,0.12969708442688,-0.967332482337952,0.160765022039413,-0.196016743779182,-0.987545549869537,0.144712448120117,0.0617440156638622,-0.893336892127991,0.404226809740067,0.196341246366501,-0.879790246486664,0.429249405860901,-0.204240530729294,-0.893336892127991,0.404226809740067,0.196341246366501,-0.0337517745792866,-0.0769130662083626,0.996466398239136,-0.114582598209381,-0.05083117634058,0.992112398147583,-0.98336261510849,0.127187967300415,0.12969708442688,0.0526477806270123,0.282146841287613,0.957925617694855,-0.998141050338745,-0.0419108308851719,0.0442485623061657,-0.967409908771515,-0.141113460063934,-0.210250079631805,-0.342893332242966,-0.227178275585175,-0.911490082740784,-0.293438315391541,0.078058235347271,-0.952785968780518,-0.967332482337952,0.160765022039413,-0.196016743779182,-0.141758054494858,-0.167008057236671,0.975711584091187,
- -0.0642195343971252,-0.124844186007977,0.990095853805542,-0.0325148776173592,0.00220409128814936,0.999468803405762,-0.32651099562645,0.290102779865265,0.899572610855103,-0.998141050338745,-0.0419108308851719,0.0442485623061657,-0.880323171615601,0.472432643175125,0.0428783930838108,-0.967409908771515,-0.141113460063934,-0.210250079631805,-0.967332482337952,0.160765022039413,-0.196016743779182,-0.00328818522393703,0.0406091064214706,0.999169707298279,0.0177839584648609,0.140499100089073,0.989921092987061,-0.880323171615601,0.472432643175125,0.0428783930838108,-0.998141050338745,-0.0419108308851719,0.0442485623061657,-0.961246609687805,-0.240633592009544,-0.134538397192955,-0.818896293640137,-0.490862369537354,-0.297427296638489,-0.994687139987946,-0.0875565111637115,0.0541410706937313,-0.967332482337952,0.160765022039413,-0.196016743779182,-0.293438315391541,0.078058235347271,-0.952785968780518,-0.403216898441315,-0.1033044308424,-0.909254848957062,-0.616565465927124,0.500608146190643,-0.607649981975555,-0.967409908771515,-0.141113460063934,-0.210250079631805,-0.880323171615601,0.472432643175125,0.0428783930838108,-0.818896293640137,-0.490862369537354,-0.297427296638489,-0.730748653411865,-0.376429736614227,-0.569479703903198,-0.0563526898622513,0.0613427013158798,0.996524691581726,-0.818896293640137,-0.490862369537354,-0.297427296638489,-0.880323171615601,0.472432643175125,0.0428783930838108,-0.91973865032196,0.323432683944702,-0.222423672676086,-0.27012637257576,0.154824361205101,-0.950295329093933,-0.240939319133759,0.103437967598438,-0.96501237154007,-0.700321555137634,0.507090270519257,-0.502403438091278,0.0526477806270123,0.282146841287613,0.957925617694855,-0.00328818522393703,0.0406091064214706,0.999169707298279,-0.998141050338745,-0.0419108308851719,0.0442485623061657,-0.967332482337952,0.160765022039413,-0.196016743779182,-0.98336261510849,0.127187967300415,0.12969708442688,-0.998141050338745,-0.0419108308851719,0.0442485623061657,-0.818896293640137,-0.490862369537354,-0.297427296638489,0.00445170002058148,0.158645406365395,0.987325668334961,
- -0.994687139987946,-0.0875565111637115,0.0541410706937313,-0.818896293640137,-0.490862369537354,-0.297427296638489,-0.961246609687805,-0.240633592009544,-0.134538397192955,-0.730748653411865,-0.376429736614227,-0.569479703903198,-0.293438315391541,0.078058235347271,-0.952785968780518,-0.0176269952207804,-0.0683132335543633,-0.997508227825165,-0.0640309303998947,-0.0982365980744362,-0.993101000785828,-0.403216898441315,-0.1033044308424,-0.909254848957062,-0.616565465927124,0.500608146190643,-0.607649981975555,-0.879790246486664,0.429249405860901,-0.204240530729294,-0.893336892127991,0.404226809740067,0.196341246366501,-0.71852719783783,0.673861622810364,-0.172131404280663,-0.39244669675827,0.882163107395172,0.26033416390419,-0.180826112627983,0.35963299870491,-0.915404915809631,-0.91973865032196,0.323432683944702,-0.222423672676086,-0.700321555137634,0.507090270519257,-0.502403438091278,-0.999273538589478,-0.0117532424628735,0.0362547896802425,-0.997480690479279,-0.057327426970005,0.0417857244610786,-0.32651099562645,0.290102779865265,0.899572610855103,-0.618405878543854,0.784141480922699,0.0519274547696114,-0.141758054494858,-0.167008057236671,0.975711584091187,-0.999273538589478,-0.0117532424628735,0.0362547896802425,0.00279014953412116,-0.0755490958690643,0.997138202190399,-0.0285398233681917,0.120479203760624,0.992305517196655,-0.997480690479279,-0.057327426970005,0.0417857244610786,-0.0375043861567974,0.0111880796030164,0.999233841896057,-0.987545549869537,0.144712448120117,0.0617440156638622,-0.997480690479279,-0.057327426970005,0.0417857244610786,-0.0285398233681917,0.120479203760624,0.992305517196655,-0.98336261510849,0.127187967300415,0.12969708442688,-0.917883157730103,0.379465311765671,0.116175912320614,-0.114582598209381,-0.05083117634058,0.992112398147583,0.0526477806270123,0.282146841287613,0.957925617694855,-0.0563526898622513,0.0613427013158798,0.996524691581726,0.0177839584648609,0.140499100089073,0.989921092987061,0.065645769238472,0.258685916662216,0.963728308677673,-0.104663364589214,0.166599437594414,0.980454087257385,
- 0.00445170002058148,0.158645406365395,0.987325668334961,-0.0805628001689911,-0.232008069753647,0.969371974468231,-0.0642195343971252,-0.124844186007977,0.990095853805542,-0.141758054494858,-0.167008057236671,0.975711584091187,-0.32651099562645,0.290102779865265,0.899572610855103,-0.39244669675827,0.882163107395172,0.26033416390419,-0.71852719783783,0.673861622810364,-0.172131404280663,-0.618405878543854,0.784141480922699,0.0519274547696114,-0.288015782833099,0.146160617470741,-0.94640588760376,0.00659945793449879,0.0256933178752661,-0.999648094177246,0.0393282733857632,0.0953538417816162,-0.994666337966919,-0.337875872850418,0.0714295879006386,-0.938476324081421,-0.202893748879433,0.365528076887131,-0.908418118953705,-0.0125145735219121,-0.123241677880287,-0.992297828197479,-0.342893332242966,-0.227178275585175,-0.911490082740784,-0.893336892127991,0.404226809740067,0.196341246366501,-0.987545549869537,0.144712448120117,0.0617440156638622,-0.0375043861567974,0.0111880796030164,0.999233841896057,-0.0337517745792866,-0.0769130662083626,0.996466398239136,-0.616565465927124,0.500608146190643,-0.607649981975555,-0.403216898441315,-0.1033044308424,-0.909254848957062,-0.289016038179398,0.104041703045368,-0.951653838157654,-0.879790246486664,0.429249405860901,-0.204240530729294,0.0264331586658955,-0.0602947995066643,0.997830629348755,-0.00785753317177296,-0.250281363725662,0.968141257762909,-0.0285398233681917,0.120479203760624,0.992305517196655,0.00279014953412116,-0.0755490958690643,0.997138202190399,-0.616565465927124,0.500608146190643,-0.607649981975555,-0.893336892127991,0.404226809740067,0.196341246366501,-0.917883157730103,0.379465311765671,0.116175912320614,-0.114582598209381,-0.05083117634058,0.992112398147583,-0.917883157730103,0.379465311765671,0.116175912320614,-0.893336892127991,0.404226809740067,0.196341246366501,-0.818896293640137,-0.490862369537354,-0.297427296638489,-0.0563526898622513,0.0613427013158798,0.996524691581726,0.00445170002058148,0.158645406365395,0.987325668334961,-0.104663364589214,0.166599437594414,0.980454087257385,
- -0.0805628001689911,-0.232008069753647,0.969371974468231,0.00445170002058148,0.158645406365395,0.987325668334961,-0.0563526898622513,0.0613427013158798,0.996524691581726,-0.342893332242966,-0.227178275585175,-0.911490082740784,-0.503852486610413,0.207077920436859,-0.838600933551788,-0.202893748879433,0.365528076887131,-0.908418118953705,-0.730748653411865,-0.376429736614227,-0.569479703903198,-0.503852486610413,0.207077920436859,-0.838600933551788,-0.342893332242966,-0.227178275585175,-0.911490082740784,-0.967409908771515,-0.141113460063934,-0.210250079631805,-0.431935459375381,0.759892344474792,-0.485793620347977,-0.105566546320915,-0.316807329654694,-0.942596912384033,0.298949897289276,-0.156870394945145,0.941286742687225,-0.961246609687805,-0.240633592009544,-0.134538397192955,-0.337875872850418,0.0714295879006386,-0.938476324081421,-0.503852486610413,0.207077920436859,-0.838600933551788,-0.730748653411865,-0.376429736614227,-0.569479703903198,-0.337875872850418,0.0714295879006386,-0.938476324081421,0.0393282733857632,0.0953538417816162,-0.994666337966919,-0.202893748879433,0.365528076887131,-0.908418118953705,-0.108413815498352,0.162796512246132,0.980685353279114,-0.0800648480653763,-0.996011316776276,-0.0393855534493923,0.149200037121773,0.600921154022217,-0.785259962081909,-0.71852719783783,0.673861622810364,-0.172131404280663,-0.180826112627983,0.35963299870491,-0.915404915809631,-0.288015782833099,0.146160617470741,-0.94640588760376,0.00883284863084555,0.0910454019904137,0.995807588100433,-0.036284364759922,-0.0508453026413918,0.998047232627869,-0.114582598209381,-0.05083117634058,0.992112398147583,-0.0337517745792866,-0.0769130662083626,0.996466398239136,-0.0640309303998947,-0.0982365980744362,-0.993101000785828,0.00554651767015457,0.0440384782850742,-0.999014496803284,-0.289016038179398,0.104041703045368,-0.951653838157654,-0.403216898441315,-0.1033044308424,-0.909254848957062,-0.036284364759922,-0.0508453026413918,0.998047232627869,0.00437421351671219,0.0222020726650953,0.99974399805069,0.0526477806270123,0.282146841287613,0.957925617694855,
- -0.114582598209381,-0.05083117634058,0.992112398147583,0.00437421351671219,0.0222020726650953,0.99974399805069,0.065645769238472,0.258685916662216,0.963728308677673,0.0177839584648609,0.140499100089073,0.989921092987061,-0.00328818522393703,0.0406091064214706,0.999169707298279,0.0526477806270123,0.282146841287613,0.957925617694855,0.00554651767015457,0.0440384782850742,-0.999014496803284,-0.0180137697607279,-0.135747641324997,-0.990579664707184,-0.27012637257576,0.154824361205101,-0.950295329093933,-0.289016038179398,0.104041703045368,-0.951653838157654,7.935648682178e-006,6.8976642069174e-006,-1,0.00664369948208332,-0.00744664017111063,-0.999950230121613,0.0114981085062027,0.00132642185781151,-0.999933063983917,0.0237885341048241,0.0216027423739433,-0.999483644962311,0.0114981085062027,0.00132642185781151,-0.999933063983917,0.00664369948208332,-0.00744664017111063,-0.999950230121613,0.00765219982713461,-0.00652782432734966,-0.99994945526123,-0.052993468940258,0.338841259479523,-0.939349949359894,-0.195407018065453,0.967844843864441,-0.158406287431717,-0.415947318077087,0.895532786846161,-0.158142030239105,-0.132233068346977,0.288380920886993,-0.948341190814972,-0.763936817646027,0.641695439815521,0.0680274441838264,-0.424647718667984,0.904321432113647,0.0433264747262001,-0.415947318077087,0.895532786846161,-0.158142030239105,-0.195407018065453,0.967844843864441,-0.158406287431717,0.0047399690374732,0.989431738853455,-0.144922316074371,-0.0475752651691437,0.345941036939621,-0.937049388885498,-0.0617675818502903,0.0780746042728424,-0.995032250881195,-0.350737392902374,0.425787031650543,-0.834079563617706,-0.840250909328461,0.516442477703094,-0.165123388171196,-0.497643619775772,0.866620719432831,0.0363255068659782,-0.611286163330078,0.790931642055511,-0.027503028512001,-0.267270684242249,0.954944312572479,-0.12902644276619,-0.361386567354202,0.402945131063461,-0.840853810310364,-0.217521488666534,0.643357276916504,0.734013497829437,-0.355654954910278,0.934450685977936,0.0176496971398592,-0.497643619775772,0.866620719432831,0.0363255068659782,
- -0.26580873131752,0.611465513706207,0.745289027690887,-0.567238390445709,0.60190337896347,0.562097012996674,-0.611286163330078,0.790931642055511,-0.027503028512001,-0.355654954910278,0.934450685977936,0.0176496971398592,-0.217521488666534,0.643357276916504,0.734013497829437,-0.26580873131752,0.611465513706207,0.745289027690887,-0.497643619775772,0.866620719432831,0.0363255068659782,-0.763936817646027,0.641695439815521,0.0680274441838264,-0.661805212497711,0.261401891708374,0.702625751495361,-0.148100525140762,0.342629939317703,0.927723526954651,-0.424647718667984,0.904321432113647,0.0433264747262001,-0.677873432636261,0.733542859554291,0.0490160323679447,-0.26806628704071,0.959991276264191,-0.0809766724705696,-0.138400465250015,0.9811110496521,-0.135153323411942,-0.651373505592346,0.758262634277344,0.0273955520242453,-0.763936817646027,0.641695439815521,0.0680274441838264,-0.611286163330078,0.790931642055511,-0.027503028512001,-0.567238390445709,0.60190337896347,0.562097012996674,-0.661805212497711,0.261401891708374,0.702625751495361,-0.355654954910278,0.934450685977936,0.0176496971398592,0.0047399690374732,0.989431738853455,-0.144922316074371,-0.350737392902374,0.425787031650543,-0.834079563617706,-0.361386567354202,0.402945131063461,-0.840853810310364,-0.651373505592346,0.758262634277344,0.0273955520242453,-0.9924196600914,0.122150331735611,0.0135168824344873,-0.677873432636261,0.733542859554291,0.0490160323679447,-0.840250909328461,0.516442477703094,-0.165123388171196,-0.322343319654465,0.149951010942459,-0.934670865535736,-0.0475752651691437,0.345941036939621,-0.937049388885498,0.0047399690374732,0.989431738853455,-0.144922316074371,-0.0738909915089607,0.994481265544891,-0.0744787231087685,0.810246050357819,0.559311866760254,-0.175133600831032,-0.138400465250015,0.9811110496521,-0.135153323411942,-0.26806628704071,0.959991276264191,-0.0809766724705696,-0.322343319654465,0.149951010942459,-0.934670865535736,-0.024150300770998,0.492097765207291,-0.870204985141754,0.0401118434965611,0.0943529307842255,-0.994730472564697,
- 0.0133521361276507,0.0125976521521807,-0.99983149766922,-0.024150300770998,0.492097765207291,-0.870204985141754,-0.052993468940258,0.338841259479523,-0.939349949359894,-0.0428465828299522,-0.017141392454505,-0.998934686183929,0.0401118434965611,0.0943529307842255,-0.994730472564697,-0.195407018065453,0.967844843864441,-0.158406287431717,-0.052993468940258,0.338841259479523,-0.939349949359894,-0.024150300770998,0.492097765207291,-0.870204985141754,-0.267270684242249,0.954944312572479,-0.12902644276619,-0.840250909328461,0.516442477703094,-0.165123388171196,-0.267270684242249,0.954944312572479,-0.12902644276619,-0.024150300770998,0.492097765207291,-0.870204985141754,-0.322343319654465,0.149951010942459,-0.934670865535736,-0.355654954910278,0.934450685977936,0.0176496971398592,-0.497643619775772,0.866620719432831,0.0363255068659782,-0.840250909328461,0.516442477703094,-0.165123388171196,0.0047399690374732,0.989431738853455,-0.144922316074371,-0.267270684242249,0.954944312572479,-0.12902644276619,-0.611286163330078,0.790931642055511,-0.027503028512001,-0.195407018065453,0.967844843864441,-0.158406287431717,-0.195407018065453,0.967844843864441,-0.158406287431717,-0.611286163330078,0.790931642055511,-0.027503028512001,-0.763936817646027,0.641695439815521,0.0680274441838264,0.0465656332671642,0.0286360513418913,-0.998504757881165,0.105770252645016,-0.112062409520149,-0.988056063652039,-0.0617675818502903,0.0780746042728424,-0.995032250881195,-0.0475752651691437,0.345941036939621,-0.937049388885498,-0.052993468940258,0.338841259479523,-0.939349949359894,-0.132233068346977,0.288380920886993,-0.948341190814972,-0.00489684147760272,-0.0030879988335073,-0.999983310699463,-0.0428465828299522,-0.017141392454505,-0.998934686183929,0.0133521361276507,0.0125976521521807,-0.99983149766922,0.0465656332671642,0.0286360513418913,-0.998504757881165,-0.0475752651691437,0.345941036939621,-0.937049388885498,-0.322343319654465,0.149951010942459,-0.934670865535736,-0.0738909915089607,0.994481265544891,-0.0744787231087685,-0.0598533377051353,0.998184204101563,-0.00678636413067579,
- 0.845903396606445,0.53332644701004,-0.00324369454756379,0.810246050357819,0.559311866760254,-0.175133600831032,0.0102934567257762,0.0135775813832879,0.999854862689972,0.0353268533945084,0.0359235443174839,0.998730003833771,-0.00610660901293159,0.00716573931276798,0.999955654144287,-0.00140347308479249,0.00175198167562485,0.999997496604919,-0.401319861412048,0.124209769070148,-0.907476961612701,-0.203909009695053,0.349211037158966,-0.914588809013367,-0.0646310821175575,-0.157916307449341,-0.985335171222687,0.291401028633118,0.0621191710233688,-0.954581916332245,-0.982771277427673,-0.0855037197470665,-0.163859412074089,-0.939886748790741,-0.340792447328568,0.0217622853815556,-0.870382189750671,0.49139791727066,0.0310329869389534,-0.950461745262146,0.262250542640686,-0.166874825954437,-0.42807948589325,0.902420818805695,0.0488338395953178,-0.613766670227051,0.772228181362152,-0.164177075028419,-0.992229282855988,0.0467153862118721,-0.115320138633251,-0.976931512355804,0.207319170236588,0.0512208491563797,-0.982771277427673,-0.0855037197470665,-0.163859412074089,-0.336982667446136,-0.0519627742469311,-0.940075874328613,-0.171839654445648,0.156821236014366,-0.972562789916992,-0.904969990253448,0.115212872624397,-0.409579455852509,-0.861948609352112,0.00596045050770044,0.506960809230804,-0.267944276332855,0.819350183010101,0.506824553012848,-0.42807948589325,0.902420818805695,0.0488338395953178,-0.976931512355804,0.207319170236588,0.0512208491563797,-0.307285189628601,0.183649465441704,-0.933728456497192,-0.371212869882584,0.443200796842575,-0.81594979763031,0.0553502812981606,-0.0690005645155907,-0.996079981327057,-0.0502250157296658,-0.0578338280320168,-0.997062087059021,-0.992229282855988,0.0467153862118721,-0.115320138633251,-0.613766670227051,0.772228181362152,-0.164177075028419,-0.307285189628601,0.183649465441704,-0.933728456497192,-0.320094913244247,0.197828754782677,-0.92650043964386,-0.829675257205963,0.55698561668396,-0.0374985821545124,-0.950461745262146,0.262250542640686,-0.166874825954437,-0.870382189750671,0.49139791727066,0.0310329869389534,
- -0.423159629106522,-0.136215463280678,-0.89575731754303,-0.0436582081019878,-0.106832087039948,-0.993318140506744,-0.0340102389454842,-0.0537031330168247,-0.997977614402771,-0.276660025119781,0.186221450567245,-0.94275176525116,-0.788271307945251,0.586341083049774,-0.186634540557861,-0.757229685783386,0.629472196102142,-0.174264490604401,-0.291776925325394,0.164255604147911,-0.942277312278748,-0.203909009695053,0.349211037158966,-0.914588809013367,-0.927289485931396,0.369769841432571,0.0583497770130634,-0.757229685783386,0.629472196102142,-0.174264490604401,-0.788271307945251,0.586341083049774,-0.186634540557861,-0.994591891765594,0.0955232977867126,0.0407728031277657,-0.484279841184616,0.655010521411896,-0.580029547214508,-0.781012177467346,0.618423223495483,0.0870208889245987,-0.923385202884674,0.364502310752869,0.120407186448574,-0.887379467487335,0.426855087280273,-0.174219474196434,-0.927289485931396,0.369769841432571,0.0583497770130634,-0.751694202423096,0.633949100971222,0.181836009025574,-0.757229685783386,0.629472196102142,-0.174264490604401,-0.751694202423096,0.633949100971222,0.181836009025574,-0.591507732868195,0.489110440015793,0.641006827354431,-0.606187164783478,0.43725112080574,0.664340734481812,-0.923385202884674,0.364502310752869,0.120407186448574,-0.655044674873352,0.396467596292496,0.643218457698822,-0.975502729415894,0.216098815202713,0.0411808155477047,-0.975524485111237,0.113253325223923,-0.188482493162155,-0.423159629106522,-0.136215463280678,-0.89575731754303,-0.276660025119781,0.186221450567245,-0.94275176525116,-0.887379467487335,0.426855087280273,-0.174219474196434,-0.975502729415894,0.216098815202713,0.0411808155477047,-0.578137040138245,0.814776301383972,0.0435564406216145,-0.975524485111237,0.113253325223923,-0.188482493162155,-0.887379467487335,0.426855087280273,-0.174219474196434,-0.742072641849518,0.204177632927895,0.638466715812683,-0.229546070098877,0.817771434783936,0.527786374092102,-0.578137040138245,0.814776301383972,0.0435564406216145,-0.975502729415894,0.216098815202713,0.0411808155477047,
- -0.992229282855988,0.0467153862118721,-0.115320138633251,-0.930920481681824,-0.236235707998276,-0.278531700372696,-0.976931512355804,0.207319170236588,0.0512208491563797,-0.887379467487335,0.426855087280273,-0.174219474196434,-0.276660025119781,0.186221450567245,-0.94275176525116,-0.518827795982361,-0.0487919598817825,-0.853485226631165,-0.484279841184616,0.655010521411896,-0.580029547214508,-0.975524485111237,0.113253325223923,-0.188482493162155,-0.578137040138245,0.814776301383972,0.0435564406216145,-0.930920481681824,-0.236235707998276,-0.278531700372696,-0.822602212429047,-0.174827352166176,-0.541073977947235,0.500013530254364,-0.0856143087148666,-0.86177533864975,-0.930920481681824,-0.236235707998276,-0.278531700372696,-0.578137040138245,0.814776301383972,0.0435564406216145,-0.788271307945251,0.586341083049774,-0.186634540557861,-0.203909009695053,0.349211037158966,-0.914588809013367,-0.401319861412048,0.124209769070148,-0.907476961612701,-0.932137608528137,0.259697526693344,-0.252342522144318,0.395915746688843,0.456124484539032,-0.796995103359222,0.246398657560349,0.0525262542068958,-0.967744171619415,-0.00238428101874888,0.0346701517701149,0.999395966529846,-0.359409272670746,0.092812679708004,-0.928553104400635,-0.655044674873352,0.396467596292496,0.643218457698822,-0.742072641849518,0.204177632927895,0.638466715812683,-0.975502729415894,0.216098815202713,0.0411808155477047,-0.887379467487335,0.426855087280273,-0.174219474196434,-0.923385202884674,0.364502310752869,0.120407186448574,-0.975502729415894,0.216098815202713,0.0411808155477047,-0.930920481681824,-0.236235707998276,-0.278531700372696,-0.861948609352112,0.00596045050770044,0.506960809230804,-0.976931512355804,0.207319170236588,0.0512208491563797,-0.611176431179047,0.274782627820969,0.742265343666077,-0.902179419994354,-0.414652705192566,-0.11889286339283,-0.829675257205963,0.55698561668396,-0.0374985821545124,-0.930920481681824,-0.236235707998276,-0.278531700372696,-0.992229282855988,0.0467153862118721,-0.115320138633251,-0.822602212429047,-0.174827352166176,-0.541073977947235,
- -0.939886748790741,-0.340792447328568,0.0217622853815556,-0.982771277427673,-0.0855037197470665,-0.163859412074089,-0.904969990253448,0.115212872624397,-0.409579455852509,-0.903073966503143,-0.269946038722992,0.334045916795731,-0.276660025119781,0.186221450567245,-0.94275176525116,-0.0340102389454842,-0.0537031330168247,-0.997977614402771,-0.135127797722816,-0.093363530933857,-0.986419677734375,-0.518827795982361,-0.0487919598817825,-0.853485226631165,-0.484279841184616,0.655010521411896,-0.580029547214508,-0.757229685783386,0.629472196102142,-0.174264490604401,-0.751694202423096,0.633949100971222,0.181836009025574,-0.613766670227051,0.772228181362152,-0.164177075028419,-0.61568021774292,0.785898983478546,0.0574518293142319,-0.371212869882584,0.443200796842575,-0.81594979763031,-0.788271307945251,0.586341083049774,-0.186634540557861,-0.932137608528137,0.259697526693344,-0.252342522144318,-0.829675257205963,0.55698561668396,-0.0374985821545124,-0.994591891765594,0.0955232977867126,0.0407728031277657,-0.461859703063965,0.592569172382355,0.659960091114044,-0.42807948589325,0.902420818805695,0.0488338395953178,-0.267944276332855,0.819350183010101,0.506824553012848,-0.641092538833618,0.0608568862080574,0.765047013759613,-0.611176431179047,0.274782627820969,0.742265343666077,-0.870382189750671,0.49139791727066,0.0310329869389534,-0.939886748790741,-0.340792447328568,0.0217622853815556,-0.903073966503143,-0.269946038722992,0.334045916795731,-0.641092538833618,0.0608568862080574,0.765047013759613,-0.939886748790741,-0.340792447328568,0.0217622853815556,-0.829675257205963,0.55698561668396,-0.0374985821545124,-0.902179419994354,-0.414652705192566,-0.11889286339283,-0.665446102619171,0.269001305103302,0.696290075778961,-0.994591891765594,0.0955232977867126,0.0407728031277657,-0.720689535140991,0.276753008365631,0.63562136888504,-0.927289485931396,0.369769841432571,0.0583497770130634,-0.994591891765594,0.0955232977867126,0.0407728031277657,-0.665446102619171,0.269001305103302,0.696290075778961,-0.923385202884674,0.364502310752869,0.120407186448574,
- -0.781012177467346,0.618423223495483,0.0870208889245987,-0.606187164783478,0.43725112080574,0.664340734481812,-0.655044674873352,0.396467596292496,0.643218457698822,0.0353268533945084,0.0359235443174839,0.998730003833771,0.0102934567257762,0.0135775813832879,0.999854862689972,0.174105748534203,0.13741135597229,0.975092530250549,-0.461859703063965,0.592569172382355,0.659960091114044,-0.61568021774292,0.785898983478546,0.0574518293142319,-0.613766670227051,0.772228181362152,-0.164177075028419,-0.42807948589325,0.902420818805695,0.0488338395953178,-0.307285189628601,0.183649465441704,-0.933728456497192,-0.0502250157296658,-0.0578338280320168,-0.997062087059021,0.065677672624588,0.0708166509866714,-0.995324790477753,-0.320094913244247,0.197828754782677,-0.92650043964386,-0.120273925364017,0.435573905706406,-0.892081618309021,-0.0436582081019878,-0.106832087039948,-0.993318140506744,-0.423159629106522,-0.136215463280678,-0.89575731754303,-0.751694202423096,0.633949100971222,0.181836009025574,-0.927289485931396,0.369769841432571,0.0583497770130634,-0.720689535140991,0.276753008365631,0.63562136888504,-0.591507732868195,0.489110440015793,0.641006827354431,-0.484279841184616,0.655010521411896,-0.580029547214508,-0.518827795982361,-0.0487919598817825,-0.853485226631165,-0.291776925325394,0.164255604147911,-0.942277312278748,-0.757229685783386,0.629472196102142,-0.174264490604401,-0.932137608528137,0.259697526693344,-0.252342522144318,-0.950461745262146,0.262250542640686,-0.166874825954437,-0.829675257205963,0.55698561668396,-0.0374985821545124,-0.401319861412048,0.124209769070148,-0.907476961612701,-0.359409272670746,0.092812679708004,-0.928553104400635,-0.950461745262146,0.262250542640686,-0.166874825954437,-0.932137608528137,0.259697526693344,-0.252342522144318,-0.611176431179047,0.274782627820969,0.742265343666077,-0.829675257205963,0.55698561668396,-0.0374985821545124,-0.870382189750671,0.49139791727066,0.0310329869389534,-0.950461745262146,0.262250542640686,-0.166874825954437,-0.359409272670746,0.092812679708004,-0.928553104400635,
- -0.336982667446136,-0.0519627742469311,-0.940075874328613,-0.982771277427673,-0.0855037197470665,-0.163859412074089,-0.484279841184616,0.655010521411896,-0.580029547214508,-0.751694202423096,0.633949100971222,0.181836009025574,-0.781012177467346,0.618423223495483,0.0870208889245987,-0.606187164783478,0.43725112080574,0.664340734481812,-0.781012177467346,0.618423223495483,0.0870208889245987,-0.751694202423096,0.633949100971222,0.181836009025574,-0.930920481681824,-0.236235707998276,-0.278531700372696,0.500013530254364,-0.0856143087148666,-0.86177533864975,-0.861948609352112,0.00596045050770044,0.506960809230804,-0.423159629106522,-0.136215463280678,-0.89575731754303,-0.440767168998718,0.290698140859604,-0.849246084690094,-0.120273925364017,0.435573905706406,-0.892081618309021,-0.822602212429047,-0.174827352166176,-0.541073977947235,-0.440767168998718,0.290698140859604,-0.849246084690094,-0.423159629106522,-0.136215463280678,-0.89575731754303,-0.975524485111237,0.113253325223923,-0.188482493162155,-0.197462201118469,0.715113639831543,-0.670537948608398,-0.175345778465271,-0.33049938082695,-0.927374839782715,0.222141578793526,-0.303894519805908,0.926445543766022,-0.992229282855988,0.0467153862118721,-0.115320138633251,-0.320094913244247,0.197828754782677,-0.92650043964386,-0.440767168998718,0.290698140859604,-0.849246084690094,-0.822602212429047,-0.174827352166176,-0.541073977947235,-0.320094913244247,0.197828754782677,-0.92650043964386,0.065677672624588,0.0708166509866714,-0.995324790477753,-0.120273925364017,0.435573905706406,-0.892081618309021,0.500013530254364,-0.0856143087148666,-0.86177533864975,-0.578137040138245,0.814776301383972,0.0435564406216145,-0.229546070098877,0.817771434783936,0.527786374092102,-0.613766670227051,0.772228181362152,-0.164177075028419,-0.371212869882584,0.443200796842575,-0.81594979763031,-0.307285189628601,0.183649465441704,-0.933728456497192,-0.336982667446136,-0.0519627742469311,-0.940075874328613,0.00572559796273708,0.0586294457316399,-0.998263359069824,0.182496458292007,0.205626502633095,-0.961463928222656,
- -0.171839654445648,0.156821236014366,-0.972562789916992,0.291401028633118,0.0621191710233688,-0.954581916332245,0.00762315653264523,0.152659296989441,-0.988249540328979,-0.132510766386986,0.316666752099991,-0.939235389232636,-0.135127797722816,-0.093363530933857,-0.986419677734375,0.0102619286626577,0.0378921739757061,-0.99922913312912,-0.291776925325394,0.164255604147911,-0.942277312278748,-0.518827795982361,-0.0487919598817825,-0.853485226631165,0.0102619286626577,0.0378921739757061,-0.99922913312912,-0.0646310821175575,-0.157916307449341,-0.985335171222687,-0.203909009695053,0.349211037158966,-0.914588809013367,-0.291776925325394,0.164255604147911,-0.942277312278748,0.00762315653264523,0.152659296989441,-0.988249540328979,0.00572559796273708,0.0586294457316399,-0.998263359069824,-0.336982667446136,-0.0519627742469311,-0.940075874328613,-0.359409272670746,0.092812679708004,-0.928553104400635,0.00762315653264523,0.152659296989441,-0.988249540328979,-0.359409272670746,0.092812679708004,-0.928553104400635,-0.132510766386986,0.316666752099991,-0.939235389232636,-8.01587702881079e-006,-6.81265191815328e-006,1,0.0114982044324279,0.0013264361768961,0.999933063983917,0.00664491578936577,-0.00744564831256866,0.999950230121613,0.00664491578936577,-0.00744564831256866,0.999950230121613,0.0114982044324279,0.0013264361768961,0.999933063983917,0.0237973257899284,0.0216109249740839,0.999483227729797,0.00766030233353376,-0.00652058375999331,0.99994945526123,-0.0529928244650364,0.338841885328293,0.939349830150604,-0.132228672504425,0.288381814956665,0.948341488838196,-0.415947049856186,0.89553290605545,0.15814234316349,-0.195280283689499,0.967869937419891,0.158409118652344,-0.763929963111877,0.641703069210052,-0.0680324509739876,-0.195280283689499,0.967869937419891,0.158409118652344,-0.415947049856186,0.89553290605545,0.15814234316349,-0.424647480249405,0.904321134090424,-0.043334037065506,0.00471160560846329,0.989431381225586,0.144925653934479,-0.350749284029007,0.425817936658859,0.83405876159668,-0.0617672577500343,0.0780737549066544,0.99503231048584,
- -0.0476094856858253,0.345919966697693,0.937055349349976,-0.611251711845398,0.790958762168884,0.0274866931140423,-0.49759179353714,0.866650402545929,-0.0363268405199051,-0.840261518955231,0.51642519235611,0.165123254060745,-0.267236560583115,0.954958200454712,0.128994181752205,-0.361457407474518,0.403042256832123,0.840776801109314,-0.355700433254242,0.934433162212372,-0.0176577102392912,-0.217595130205154,0.643372654914856,-0.733978271484375,-0.567205131053925,0.60204416513443,-0.5619797706604,-0.265764206647873,0.61153781414032,-0.745245575904846,-0.49759179353714,0.866650402545929,-0.0363268405199051,-0.611251711845398,0.790958762168884,0.0274866931140423,-0.265764206647873,0.61153781414032,-0.745245575904846,-0.217595130205154,0.643372654914856,-0.733978271484375,-0.355700433254242,0.934433162212372,-0.0176577102392912,-0.49759179353714,0.866650402545929,-0.0363268405199051,-0.148092612624168,0.342616558074951,-0.927729845046997,-0.66179496049881,0.261419326066971,-0.702628910541534,-0.763929963111877,0.641703069210052,-0.0680324509739876,-0.424647480249405,0.904321134090424,-0.043334037065506,-0.112115450203419,0.984829068183899,0.132445752620697,-0.264347016811371,0.96185702085495,0.0703684464097023,-0.677640020847321,0.733660757541656,-0.0504562929272652,-0.600472629070282,0.79902571439743,-0.0314746722579002,-0.567205131053925,0.60204416513443,-0.5619797706604,-0.611251711845398,0.790958762168884,0.0274866931140423,-0.763929963111877,0.641703069210052,-0.0680324509739876,-0.66179496049881,0.261419326066971,-0.702628910541534,-0.350749284029007,0.425817936658859,0.83405876159668,0.00471160560846329,0.989431381225586,0.144925653934479,-0.355700433254242,0.934433162212372,-0.0176577102392912,-0.361457407474518,0.403042256832123,0.840776801109314,-0.600472629070282,0.79902571439743,-0.0314746722579002,-0.677640020847321,0.733660757541656,-0.0504562929272652,-0.990773320198059,0.130303114652634,-0.037276353687048,-0.840261518955231,0.51642519235611,0.165123254060745,0.00471160560846329,0.989431381225586,0.144925653934479,
- -0.0476094856858253,0.345919966697693,0.937055349349976,-0.322383165359497,0.149911373853683,0.934663414955139,-0.0728865414857864,0.995431780815125,0.0616694502532482,-0.264347016811371,0.96185702085495,0.0703684464097023,-0.112115450203419,0.984829068183899,0.132445752620697,0.81231826543808,0.558187305927277,0.169014975428581,0.0401128903031349,0.0943699553608894,0.994728803634644,-0.0241609551012516,0.492135107517242,0.87018358707428,-0.322383165359497,0.149911373853683,0.934663414955139,0.0133554534986615,0.0126021830365062,0.999831438064575,-0.042846754193306,-0.0171424336731434,0.998934626579285,-0.0529928244650364,0.338841885328293,0.939349830150604,-0.0241609551012516,0.492135107517242,0.87018358707428,0.0401128903031349,0.0943699553608894,0.994728803634644,-0.195280283689499,0.967869937419891,0.158409118652344,-0.267236560583115,0.954958200454712,0.128994181752205,-0.0241609551012516,0.492135107517242,0.87018358707428,-0.0529928244650364,0.338841885328293,0.939349830150604,-0.0241609551012516,0.492135107517242,0.87018358707428,-0.267236560583115,0.954958200454712,0.128994181752205,-0.840261518955231,0.51642519235611,0.165123254060745,-0.322383165359497,0.149911373853683,0.934663414955139,-0.840261518955231,0.51642519235611,0.165123254060745,-0.49759179353714,0.866650402545929,-0.0363268405199051,-0.355700433254242,0.934433162212372,-0.0176577102392912,0.00471160560846329,0.989431381225586,0.144925653934479,-0.267236560583115,0.954958200454712,0.128994181752205,-0.195280283689499,0.967869937419891,0.158409118652344,-0.611251711845398,0.790958762168884,0.0274866931140423,-0.611251711845398,0.790958762168884,0.0274866931140423,-0.195280283689499,0.967869937419891,0.158409118652344,-0.763929963111877,0.641703069210052,-0.0680324509739876,0.0465727858245373,0.0286392867565155,0.998504340648651,-0.0476094856858253,0.345919966697693,0.937055349349976,-0.0617672577500343,0.0780737549066544,0.99503231048584,0.105761677026749,-0.112083561718464,0.988054513931274,-0.00489726709201932,-0.00308700534515083,0.999983310699463,
- -0.132228672504425,0.288381814956665,0.948341488838196,-0.0529928244650364,0.338841885328293,0.939349830150604,-0.042846754193306,-0.0171424336731434,0.998934626579285,0.0133554534986615,0.0126021830365062,0.999831438064575,-0.322383165359497,0.149911373853683,0.934663414955139,-0.0476094856858253,0.345919966697693,0.937055349349976,0.0465727858245373,0.0286392867565155,0.998504340648651,0.845903396606445,0.53332644701004,-0.00324369454756379,-0.0598533377051353,0.998184204101563,-0.00678636413067579,-0.0728865414857864,0.995431780815125,0.0616694502532482,0.81231826543808,0.558187305927277,0.169014975428581,0.0102913547307253,0.0135757410898805,-0.999854922294617,-0.00140581966843456,0.00175000459421426,-0.999997496604919,-0.00610894337296486,0.00716371834278107,-0.999955654144287,0.0353191271424294,0.0359167158603668,-0.998730540275574,-0.306475937366486,0.177646458148956,0.935154736042023,0.291396647691727,0.0621131956577301,0.954583764076233,-0.0646378248929977,-0.15790967643261,0.98533570766449,-0.20391158759594,0.34918537735939,0.914598166942596,-0.982765913009644,-0.0855733528733253,0.163855224847794,-0.950457990169525,0.262261718511581,0.166879028081894,-0.870406925678253,0.491354256868362,-0.0310294944792986,-0.939915180206299,-0.340713769197464,-0.0217662118375301,-0.428088188171387,0.902416825294495,-0.0488322451710701,-0.976933240890503,0.207312703132629,-0.0512157492339611,-0.992229342460632,0.0467212349176407,0.115317672491074,-0.613766431808472,0.772228419780731,0.164177492260933,-0.982765913009644,-0.0855733528733253,0.163855224847794,-0.905012845993042,0.115151941776276,0.409502029418945,-0.17185066640377,0.156839638948441,0.972557842731476,-0.336992114782333,-0.051953949034214,0.940073013305664,-0.861943125724792,0.00597240123897791,-0.5069699883461,-0.976933240890503,0.207312703132629,-0.0512157492339611,-0.428088188171387,0.902416825294495,-0.0488322451710701,-0.267942011356354,0.819346487522125,-0.5068319439888,-0.307289808988571,0.183652266860008,0.93372631072998,-0.0502250269055367,-0.0578338243067265,0.997062087059021,
- 0.0553557351231575,-0.0690024867653847,0.996079564094543,-0.371208280324936,0.443199992179871,0.81595242023468,-0.992229342460632,0.0467212349176407,0.115317672491074,-0.320091754198074,0.197844788432121,0.926498174667358,-0.307289808988571,0.183652266860008,0.93372631072998,-0.613766431808472,0.772228419780731,0.164177492260933,-0.829631268978119,0.557051837444305,0.037488978356123,-0.870406925678253,0.491354256868362,-0.0310294944792986,-0.950457990169525,0.262261718511581,0.166879028081894,-0.423146337270737,-0.136203363537788,0.895765542984009,-0.276630789041519,0.18625907599926,0.942752838134766,-0.0340230390429497,-0.0537055395543575,0.997977077960968,-0.0436675660312176,-0.106832750141621,0.993317663669586,-0.788227498531342,0.586400866508484,0.186631664633751,-0.20391158759594,0.34918537735939,0.914598166942596,-0.291763693094254,0.164253994822502,0.942281663417816,-0.75727790594101,0.629412293434143,0.174271494150162,-0.927289724349976,0.369769215583801,-0.0583480186760426,-0.994577467441559,0.0956755578517914,-0.0407679602503777,-0.788227498531342,0.586400866508484,0.186631664633751,-0.75727790594101,0.629412293434143,0.174271494150162,-0.484192252159119,0.655062437057495,0.580044031143188,-0.88731449842453,0.426985323429108,0.174231350421906,-0.923396110534668,0.364471107721329,-0.120418027043343,-0.781020760536194,0.618410408496857,-0.0870361402630806,-0.927289724349976,0.369769215583801,-0.0583480186760426,-0.75727790594101,0.629412293434143,0.174271494150162,-0.751743257045746,0.6338951587677,-0.181821420788765,-0.751743257045746,0.6338951587677,-0.181821420788765,-0.606205761432648,0.437245786190033,-0.664327323436737,-0.591525733470917,0.48907807469368,-0.641014873981476,-0.923396110534668,0.364471107721329,-0.120418027043343,-0.975497841835022,0.216121435165405,-0.0411773137748241,-0.655044436454773,0.396494179964066,-0.643202245235443,-0.975532710552216,0.11318801343441,0.188479170203209,-0.88731449842453,0.426985323429108,0.174231350421906,-0.276630789041519,0.18625907599926,0.942752838134766,-0.423146337270737,-0.136203363537788,0.895765542984009,
- -0.975497841835022,0.216121435165405,-0.0411773137748241,-0.88731449842453,0.426985323429108,0.174231350421906,-0.975532710552216,0.11318801343441,0.188479170203209,-0.578163862228394,0.814757406711578,-0.0435548909008503,-0.741994857788086,0.204247936606407,-0.638534605503082,-0.975497841835022,0.216121435165405,-0.0411773137748241,-0.578163862228394,0.814757406711578,-0.0435548909008503,-0.229514256119728,0.817755520343781,-0.527824819087982,-0.992229342460632,0.0467212349176407,0.115317672491074,-0.976933240890503,0.207312703132629,-0.0512157492339611,-0.930897772312164,-0.236273139715195,0.278575718402863,0.00573371909558773,0.0586201436817646,0.998263955116272,-0.336992114782333,-0.051953949034214,0.940073013305664,-0.17185066640377,0.156839638948441,0.972557842731476,0.182503253221512,0.205631211400032,0.961461663246155,-0.88731449842453,0.426985323429108,0.174231350421906,-0.484192252159119,0.655062437057495,0.580044031143188,-0.518643200397491,-0.0486434027552605,0.853605985641479,-0.276630789041519,0.18625907599926,0.942752838134766,-0.975532710552216,0.11318801343441,0.188479170203209,-0.822542071342468,-0.174912258982658,0.541138052940369,-0.930897772312164,-0.236273139715195,0.278575718402863,-0.578163862228394,0.814757406711578,-0.0435548909008503,0.500067889690399,-0.0856431126594543,0.861740946769714,-0.578163862228394,0.814757406711578,-0.0435548909008503,-0.930897772312164,-0.236273139715195,0.278575718402863,-0.788227498531342,0.586400866508484,0.186631664633751,-0.932162523269653,0.259665191173553,0.25228363275528,-0.306475937366486,0.177646458148956,0.935154736042023,-0.20391158759594,0.34918537735939,0.914598166942596,-0.306475937366486,0.177646458148956,0.935154736042023,-0.359418392181396,0.0928050950169563,0.928550362586975,-0.0663510635495186,0.143871560692787,0.987369537353516,0.246408566832542,0.052523247897625,0.967741787433624,-0.655044436454773,0.396494179964066,-0.643202245235443,-0.975497841835022,0.216121435165405,-0.0411773137748241,-0.741994857788086,0.204247936606407,-0.638534605503082,
- -0.88731449842453,0.426985323429108,0.174231350421906,-0.975497841835022,0.216121435165405,-0.0411773137748241,-0.923396110534668,0.364471107721329,-0.120418027043343,-0.930897772312164,-0.236273139715195,0.278575718402863,-0.976933240890503,0.207312703132629,-0.0512157492339611,-0.861943125724792,0.00597240123897791,-0.5069699883461,-0.611389458179474,0.274894297122955,-0.742048621177673,-0.829631268978119,0.557051837444305,0.037488978356123,-0.902215838432312,-0.414567738771439,0.118912100791931,-0.930897772312164,-0.236273139715195,0.278575718402863,-0.822542071342468,-0.174912258982658,0.541138052940369,-0.992229342460632,0.0467212349176407,0.115317672491074,-0.939915180206299,-0.340713769197464,-0.0217662118375301,-0.903104782104492,-0.269926637411118,-0.333978176116943,-0.905012845993042,0.115151941776276,0.409502029418945,-0.982765913009644,-0.0855733528733253,0.163855224847794,-0.276630789041519,0.18625907599926,0.942752838134766,-0.518643200397491,-0.0486434027552605,0.853605985641479,-0.135149508714676,-0.0933678075671196,0.986416339874268,-0.0340230390429497,-0.0537055395543575,0.997977077960968,-0.484192252159119,0.655062437057495,0.580044031143188,-0.751743257045746,0.6338951587677,-0.181821420788765,-0.75727790594101,0.629412293434143,0.174271494150162,-0.613766431808472,0.772228419780731,0.164177492260933,-0.371208280324936,0.443199992179871,0.81595242023468,-0.615677773952484,0.785901188850403,-0.0574471205472946,-0.788227498531342,0.586400866508484,0.186631664633751,-0.994577467441559,0.0956755578517914,-0.0407679602503777,-0.829631268978119,0.557051837444305,0.037488978356123,-0.932162523269653,0.259665191173553,0.25228363275528,-0.461885035037994,0.592587530612946,-0.659925937652588,-0.267942011356354,0.819346487522125,-0.5068319439888,-0.428088188171387,0.902416825294495,-0.0488322451710701,-0.641364336013794,0.0607027262449265,-0.76483142375946,-0.939915180206299,-0.340713769197464,-0.0217662118375301,-0.870406925678253,0.491354256868362,-0.0310294944792986,-0.611389458179474,0.274894297122955,-0.742048621177673,
- -0.903104782104492,-0.269926637411118,-0.333978176116943,-0.939915180206299,-0.340713769197464,-0.0217662118375301,-0.641364336013794,0.0607027262449265,-0.76483142375946,-0.829631268978119,0.557051837444305,0.037488978356123,-0.994577467441559,0.0956755578517914,-0.0407679602503777,-0.665367722511292,0.269085347652435,-0.696332454681396,-0.902215838432312,-0.414567738771439,0.118912100791931,-0.720679461956024,0.276706993579865,-0.635652661323547,-0.665367722511292,0.269085347652435,-0.696332454681396,-0.994577467441559,0.0956755578517914,-0.0407679602503777,-0.927289724349976,0.369769215583801,-0.0583480186760426,-0.923396110534668,0.364471107721329,-0.120418027043343,-0.655044436454773,0.396494179964066,-0.643202245235443,-0.606205761432648,0.437245786190033,-0.664327323436737,-0.781020760536194,0.618410408496857,-0.0870361402630806,0.0353191271424294,0.0359167158603668,-0.998730540275574,0.174101948738098,0.137406870722771,-0.97509378194809,0.0102913547307253,0.0135757410898805,-0.999854922294617,-0.461885035037994,0.592587530612946,-0.659925937652588,-0.428088188171387,0.902416825294495,-0.0488322451710701,-0.613766431808472,0.772228419780731,0.164177492260933,-0.615677773952484,0.785901188850403,-0.0574471205472946,-0.307289808988571,0.183652266860008,0.93372631072998,-0.320091754198074,0.197844788432121,0.926498174667358,0.0656776577234268,0.0708166658878326,0.995324790477753,-0.0502250269055367,-0.0578338243067265,0.997062087059021,-0.120272919535637,0.435572952032089,0.892082273960114,-0.423146337270737,-0.136203363537788,0.895765542984009,-0.0436675660312176,-0.106832750141621,0.993317663669586,-0.751743257045746,0.6338951587677,-0.181821420788765,-0.591525733470917,0.48907807469368,-0.641014873981476,-0.720679461956024,0.276706993579865,-0.635652661323547,-0.927289724349976,0.369769215583801,-0.0583480186760426,-0.484192252159119,0.655062437057495,0.580044031143188,-0.75727790594101,0.629412293434143,0.174271494150162,-0.291763693094254,0.164253994822502,0.942281663417816,-0.518643200397491,-0.0486434027552605,0.853605985641479,
- -0.932162523269653,0.259665191173553,0.25228363275528,-0.829631268978119,0.557051837444305,0.037488978356123,-0.950457990169525,0.262261718511581,0.166879028081894,-0.306475937366486,0.177646458148956,0.935154736042023,-0.932162523269653,0.259665191173553,0.25228363275528,-0.950457990169525,0.262261718511581,0.166879028081894,-0.359418392181396,0.0928050950169563,0.928550362586975,-0.611389458179474,0.274894297122955,-0.742048621177673,-0.870406925678253,0.491354256868362,-0.0310294944792986,-0.829631268978119,0.557051837444305,0.037488978356123,-0.950457990169525,0.262261718511581,0.166879028081894,-0.982765913009644,-0.0855733528733253,0.163855224847794,-0.336992114782333,-0.051953949034214,0.940073013305664,-0.359418392181396,0.0928050950169563,0.928550362586975,-0.484192252159119,0.655062437057495,0.580044031143188,-0.781020760536194,0.618410408496857,-0.0870361402630806,-0.751743257045746,0.6338951587677,-0.181821420788765,-0.606205761432648,0.437245786190033,-0.664327323436737,-0.751743257045746,0.6338951587677,-0.181821420788765,-0.781020760536194,0.618410408496857,-0.0870361402630806,-0.930897772312164,-0.236273139715195,0.278575718402863,-0.861943125724792,0.00597240123897791,-0.5069699883461,0.500067889690399,-0.0856431126594543,0.861740946769714,-0.423146337270737,-0.136203363537788,0.895765542984009,-0.120272919535637,0.435572952032089,0.892082273960114,-0.440745443105698,0.290589839220047,0.849294364452362,-0.822542071342468,-0.174912258982658,0.541138052940369,-0.975532710552216,0.11318801343441,0.188479170203209,-0.423146337270737,-0.136203363537788,0.895765542984009,-0.440745443105698,0.290589839220047,0.849294364452362,-0.197397798299789,0.714882433414459,0.670803487300873,0.222099512815475,-0.303948849439621,-0.926437854766846,-0.175407126545906,-0.330396324396133,0.927399873733521,-0.992229342460632,0.0467212349176407,0.115317672491074,-0.822542071342468,-0.174912258982658,0.541138052940369,-0.440745443105698,0.290589839220047,0.849294364452362,-0.320091754198074,0.197844788432121,0.926498174667358,
- -0.320091754198074,0.197844788432121,0.926498174667358,-0.120272919535637,0.435572952032089,0.892082273960114,0.0656776577234268,0.0708166658878326,0.995324790477753,0.500067889690399,-0.0856431126594543,0.861740946769714,-0.229514256119728,0.817755520343781,-0.527824819087982,-0.578163862228394,0.814757406711578,-0.0435548909008503,-0.613766431808472,0.772228419780731,0.164177492260933,-0.307289808988571,0.183652266860008,0.93372631072998,-0.371208280324936,0.443199992179871,0.81595242023468,0.291396647691727,0.0621131956577301,0.954583764076233,-0.0663510635495186,0.143871560692787,0.987369537353516,0.0076321680098772,0.152652680873871,0.988250494003296,-0.135149508714676,-0.0933678075671196,0.986416339874268,-0.518643200397491,-0.0486434027552605,0.853605985641479,-0.291763693094254,0.164253994822502,0.942281663417816,0.01024573110044,0.0378663651645184,0.999230325222015,0.01024573110044,0.0378663651645184,0.999230325222015,-0.291763693094254,0.164253994822502,0.942281663417816,-0.20391158759594,0.34918537735939,0.914598166942596,-0.0646378248929977,-0.15790967643261,0.98533570766449,0.0076321680098772,0.152652680873871,0.988250494003296,-0.359418392181396,0.0928050950169563,0.928550362586975,-0.336992114782333,-0.051953949034214,0.940073013305664,0.00573371909558773,0.0586201436817646,0.998263955116272,0.0076321680098772,0.152652680873871,0.988250494003296,-0.0663510635495186,0.143871560692787,0.987369537353516,-0.359418392181396,0.0928050950169563,0.928550362586975,0.0507805645465851,0.165919587016106,0.984830975532532,0.414367645978928,-0.331311345100403,0.847662806510925,-0.330226182937622,-0.118140831589699,0.936479270458221,-0.449008822441101,0.127182185649872,0.884429633617401,-0.889824569225311,0.434655100107193,0.138878673315048,-0.0757741183042526,0.985546290874481,0.15151509642601,-0.291555106639862,0.955973207950592,-0.0333293601870537,-0.920266389846802,0.390443652868271,-0.0257592163980007,-0.281766176223755,0.149635076522827,0.94774329662323,-0.346233993768692,0.010710597038269,0.938087105751038,
- -0.846768736839294,0.497838646173477,0.187455281615257,-0.695054590702057,0.697121560573578,0.175842702388763,-0.889824569225311,0.434655100107193,0.138878673315048,-0.726103842258453,0.284879922866821,0.625792860984802,-0.34019947052002,0.663624107837677,0.666233718395233,-0.0849689915776253,0.332332044839859,0.939327299594879,-0.0346408858895302,-0.00803798157721758,-0.999367475509644,-0.185800448060036,-0.139721557497978,-0.972602725028992,-0.000228189222980291,-0.000217417618841864,-1,-0.0149972084909678,-0.017518550157547,-0.999734044075012,0.176255241036415,0.121234565973282,-0.976850211620331,-0.0206155553460121,0.0310423672199249,-0.999305486679077,-0.0719807520508766,-0.00141491193789989,-0.997405052185059,0.100385338068008,0.0374536663293839,-0.994243502616882,0.182351142168045,0.0948337465524673,-0.978649377822876,0.259592235088348,0.885130167007446,0.386207669973373,-0.291555106639862,0.955973207950592,-0.0333293601870537,-0.0757741183042526,0.985546290874481,0.15151509642601,-0.942357063293457,0.326163053512573,-0.0747059881687164,-0.695054590702057,0.697121560573578,0.175842702388763,-0.846768736839294,0.497838646173477,0.187455281615257,-0.73248291015625,0.679153442382813,-0.0471100583672524,-0.302069067955017,0.231553301215172,0.924736380577087,0.0445126891136169,0.317845523357391,0.94709712266922,-0.0715673267841339,-0.0189088527113199,0.997256517410278,-0.133334845304489,-0.0505881868302822,0.989779055118561,-0.270264387130737,0.937989354133606,0.21710179746151,-0.449008822441101,0.127182185649872,0.884429633617401,-0.0597521513700485,0.299737066030502,0.952148795127869,-0.346145212650299,0.91102796792984,0.224079504609108,-0.339657217264175,0.938511550426483,-0.0618795938789845,-0.288659572601318,0.957170784473419,-0.0223557204008102,-0.270264387130737,0.937989354133606,0.21710179746151,-0.346145212650299,0.91102796792984,0.224079504609108,0.235189333558083,0.792614459991455,0.562537372112274,-0.0282112658023834,0.977904915809631,0.207137763500214,-0.487576514482498,0.841309309005737,-0.233383804559708,
- -0.484522849321365,0.777846872806549,-0.400239855051041,-0.339657217264175,0.938511550426483,-0.0618795938789845,-0.346145212650299,0.91102796792984,0.224079504609108,-0.177677676081657,0.967500150203705,-0.179928123950958,-0.23511990904808,0.958411514759064,0.161759242415428,-0.323244005441666,0.719783782958984,0.614349007606506,0.00463478686287999,0.0940895900130272,0.995553016662598,-0.0255331099033356,0.386487424373627,0.921941161155701,-0.912434458732605,0.157841593027115,-0.377557218074799,-0.731268048286438,0.680997133255005,-0.0385999865829945,-0.943075180053711,0.275911897420883,0.185693368315697,-0.177677676081657,0.967500150203705,-0.179928123950958,-0.355182468891144,0.224070891737938,-0.907544851303101,-0.0719807520508766,-0.00141491193789989,-0.997405052185059,-0.487576514482498,0.841309309005737,-0.233383804559708,-0.449490994215012,0.89227306842804,-0.0425044745206833,0.283952713012695,0.0844477191567421,-0.955112278461456,-0.617840886116028,0.759012579917908,0.205359444022179,-0.0282112658023834,0.977904915809631,0.207137763500214,0.0445126891136169,0.317845523357391,0.94709712266922,-0.302069067955017,0.231553301215172,0.924736380577087,-0.0748870149254799,0.45543846487999,-0.887112140655518,-0.725539147853851,0.687605023384094,-0.0281473603099585,0.0379288978874683,0.0971701443195343,-0.994544863700867,-0.449490994215012,0.89227306842804,-0.0425044745206833,-0.0282112658023834,0.977904915809631,0.207137763500214,-0.617840886116028,0.759012579917908,0.205359444022179,0.0239739250391722,0.99876880645752,-0.0434297062456608,0.0404531508684158,0.00921257119625807,-0.999138951301575,-0.449490994215012,0.89227306842804,-0.0425044745206833,0.0239739250391722,0.99876880645752,-0.0434297062456608,-0.00963510852307081,-0.00354918232187629,-0.999947309494019,0.213586255908012,0.136824235320091,0.967295289039612,-0.0849689915776253,0.332332044839859,0.939327299594879,-0.34019947052002,0.663624107837677,0.666233718395233,-0.0282112658023834,0.977904915809631,0.207137763500214,0.235189333558083,0.792614459991455,0.562537372112274,
- -0.245744377374649,0.329194754362106,0.911723971366882,0.0445126891136169,0.317845523357391,0.94709712266922,0.030178714543581,0.0313936918973923,-0.999051451683044,-0.183411434292793,-0.161730051040649,-0.969641089439392,0.00487069552764297,0.0146637503057718,-0.999880611896515,-0.0594388693571091,-0.146522358059883,-0.987420082092285,-0.617840886116028,0.759012579917908,0.205359444022179,-0.483481496572495,0.675090253353119,0.557224214076996,-0.338188081979752,0.929437220096588,0.147564366459847,0.0239739250391722,0.99876880645752,-0.0434297062456608,-0.0755529850721359,0.0687215477228165,-0.994770884513855,0.0239739250391722,0.99876880645752,-0.0434297062456608,-0.338188081979752,0.929437220096588,0.147564366459847,-0.270264387130737,0.937989354133606,0.21710179746151,0.0054444819688797,0.688233256340027,0.72546911239624,0.0507805645465851,0.165919587016106,0.984830975532532,-0.449008822441101,0.127182185649872,0.884429633617401,0.0507805645465851,0.165919587016106,0.984830975532532,-0.0849814787507057,0.363926082849503,0.927542924880981,0.140897616744041,0.214939072728157,0.966410398483276,-0.0773390531539917,0.0463890098035336,0.995925068855286,0.283952713012695,0.0844477191567421,-0.955112278461456,-0.449490994215012,0.89227306842804,-0.0425044745206833,0.0404531508684158,0.00921257119625807,-0.999138951301575,-0.943075180053711,0.275911897420883,0.185693368315697,-0.875053226947784,0.46229612827301,0.143401935696602,-0.912434458732605,0.157841593027115,-0.377557218074799,-0.0282112658023834,0.977904915809631,0.207137763500214,-0.449490994215012,0.89227306842804,-0.0425044745206833,-0.487576514482498,0.841309309005737,-0.233383804559708,-0.0458047688007355,-0.0221377518028021,-0.998705148696899,-0.731268048286438,0.680997133255005,-0.0385999865829945,-0.0126215638592839,0.0383207872509956,-0.999185860157013,0.0379288978874683,0.0971701443195343,-0.994544863700867,-0.725539147853851,0.687605023384094,-0.0281473603099585,-0.731268048286438,0.680997133255005,-0.0385999865829945,-0.0458047688007355,-0.0221377518028021,-0.998705148696899,
- -0.231993645429611,-0.148623570799828,-0.961296081542969,0.259592235088348,0.885130167007446,0.386207669973373,0.390267312526703,-0.031014159321785,-0.920179128646851,0.138719618320465,0.103244639933109,-0.984935283660889,-0.140992432832718,-0.116232186555862,0.983163893222809,-0.0508918352425098,0.328980952501297,0.942964255809784,-0.920266389846802,0.390443652868271,-0.0257592163980007,-0.92668741941452,0.37326979637146,0.0438204631209373,-0.726103842258453,0.284879922866821,0.625792860984802,-0.889824569225311,0.434655100107193,0.138878673315048,0.0445126891136169,0.317845523357391,0.94709712266922,-0.245744377374649,0.329194754362106,0.911723971366882,-0.105147115886211,0.0108518861234188,0.994397461414337,-0.0715673267841339,-0.0189088527113199,0.997256517410278,-0.0346408858895302,-0.00803798157721758,-0.999367475509644,-0.942357063293457,0.326163053512573,-0.0747059881687164,-0.73248291015625,0.679153442382813,-0.0471100583672524,-0.185800448060036,-0.139721557497978,-0.972602725028992,-0.726103842258453,0.284879922866821,0.625792860984802,-0.92668741941452,0.37326979637146,0.0438204631209373,-0.73248291015625,0.679153442382813,-0.0471100583672524,-0.846768736839294,0.497838646173477,0.187455281615257,0.235189333558083,0.792614459991455,0.562537372112274,-0.177677676081657,0.967500150203705,-0.179928123950958,-0.346145212650299,0.91102796792984,0.224079504609108,-0.912434458732605,0.157841593027115,-0.377557218074799,-0.942357063293457,0.326163053512573,-0.0747059881687164,-0.0126215638592839,0.0383207872509956,-0.999185860157013,-0.270264387130737,0.937989354133606,0.21710179746151,-0.288659572601318,0.957170784473419,-0.0223557204008102,0.259592235088348,0.885130167007446,0.386207669973373,0.0054444819688797,0.688233256340027,0.72546911239624,-0.23511990904808,0.958411514759064,0.161759242415428,-0.725539147853851,0.687605023384094,-0.0281473603099585,-0.0748870149254799,0.45543846487999,-0.887112140655518,-0.323244005441666,0.719783782958984,0.614349007606506,0.030178714543581,0.0313936918973923,-0.999051451683044,
- -0.920266389846802,0.390443652868271,-0.0257592163980007,-0.291555106639862,0.955973207950592,-0.0333293601870537,-0.231993645429611,-0.148623570799828,-0.961296081542969,-0.92668741941452,0.37326979637146,0.0438204631209373,-0.920266389846802,0.390443652868271,-0.0257592163980007,0.030178714543581,0.0313936918973923,-0.999051451683044,-0.0458047688007355,-0.0221377518028021,-0.998705148696899,-0.0126215638592839,0.0383207872509956,-0.999185860157013,-0.000450818333774805,0.120084092020988,-0.992763698101044,-0.0104133691638708,-0.014159606769681,-0.999845623970032,-0.73248291015625,0.679153442382813,-0.0471100583672524,-0.92668741941452,0.37326979637146,0.0438204631209373,-0.185800448060036,-0.139721557497978,-0.972602725028992,-0.943075180053711,0.275911897420883,0.185693368315697,-0.23511990904808,0.958411514759064,0.161759242415428,-0.0255331099033356,0.386487424373627,0.921941161155701,-0.368959069252014,-0.0320524126291275,0.92889279127121,-0.0458047688007355,-0.0221377518028021,-0.998705148696899,-0.0104133691638708,-0.014159606769681,-0.999845623970032,0.0364209562540054,0.0505832806229591,-0.998055577278137,0.0379288978874683,0.0971701443195343,-0.994544863700867,0.259592235088348,0.885130167007446,0.386207669973373,-0.288659572601318,0.957170784473419,-0.0223557204008102,0.176255241036415,0.121234565973282,-0.976850211620331,0.390267312526703,-0.031014159321785,-0.920179128646851,-0.0206155553460121,0.0310423672199249,-0.999305486679077,0.176255241036415,0.121234565973282,-0.976850211620331,-0.288659572601318,0.957170784473419,-0.0223557204008102,-0.339657217264175,0.938511550426483,-0.0618795938789845,-0.487576514482498,0.841309309005737,-0.233383804559708,0.283952713012695,0.0844477191567421,-0.955112278461456,-0.355182468891144,0.224070891737938,-0.907544851303101,-0.484522849321365,0.777846872806549,-0.400239855051041,-0.0755529850721359,0.0687215477228165,-0.994770884513855,0.0389711186289787,-0.0323265753686428,-0.998717308044434,0.264999091625214,0.0687628164887428,-0.961793780326843,-0.00963510852307081,-0.00354918232187629,-0.999947309494019,
- -0.0187505353242159,-0.0708784982562065,0.997308731079102,-0.302069067955017,0.231553301215172,0.924736380577087,-0.133334845304489,-0.0505881868302822,0.989779055118561,-0.177677676081657,0.967500150203705,-0.179928123950958,-0.0719807520508766,-0.00141491193789989,-0.997405052185059,-0.0206155553460121,0.0310423672199249,-0.999305486679077,-0.339657217264175,0.938511550426483,-0.0618795938789845,0.235189333558083,0.792614459991455,0.562537372112274,-0.346145212650299,0.91102796792984,0.224079504609108,-0.0597521513700485,0.299737066030502,0.952148795127869,-0.245744377374649,0.329194754362106,0.911723971366882,0.0054444819688797,0.688233256340027,0.72546911239624,0.259592235088348,0.885130167007446,0.386207669973373,-0.0757741183042526,0.985546290874481,0.15151509642601,-0.660053014755249,0.517374336719513,0.544659435749054,0.543025016784668,0.198601439595222,0.815893054008484,-0.0757741183042526,0.985546290874481,0.15151509642601,-0.281450361013412,-0.569642007350922,-0.772200465202332,0.954862236976624,-0.245923563838005,0.166612967848778,0.977516949176788,-0.110213398933411,-0.179760232567787,0.176255241036415,0.121234565973282,-0.976850211620331,0.286976307630539,0.149247601628304,0.946239769458771,-0.231993645429611,-0.148623570799828,-0.961296081542969,-0.291555106639862,0.955973207950592,-0.0333293601870537,0.259592235088348,0.885130167007446,0.386207669973373,-0.0757741183042526,0.985546290874481,0.15151509642601,-0.889824569225311,0.434655100107193,0.138878673315048,-0.0849689915776253,0.332332044839859,0.939327299594879,-0.0849814787507057,0.363926082849503,0.927542924880981,-0.34019947052002,0.663624107837677,0.666233718395233,-0.726103842258453,0.284879922866821,0.625792860984802,-0.846768736839294,0.497838646173477,0.187455281615257,-0.346233993768692,0.010710597038269,0.938087105751038,0.235189333558083,0.792614459991455,0.562537372112274,-0.484522849321365,0.777846872806549,-0.400239855051041,-0.177677676081657,0.967500150203705,-0.179928123950958,-0.355182468891144,0.224070891737938,-0.907544851303101,
- -0.177677676081657,0.967500150203705,-0.179928123950958,-0.484522849321365,0.777846872806549,-0.400239855051041,0.954773128032684,0.288755923509598,-0.0709104612469673,-0.0696803033351898,-0.0659705623984337,0.995385646820068,-0.0239610429853201,-0.0524312816560268,0.998337090015411,-0.185800448060036,-0.139721557497978,-0.972602725028992,-0.92668741941452,0.37326979637146,0.0438204631209373,-0.0594388693571091,-0.146522358059883,-0.987420082092285,-0.302069067955017,0.231553301215172,0.924736380577087,-0.0187505353242159,-0.0708784982562065,0.997308731079102,-0.126094862818718,0.345387637615204,0.929950356483459,-0.483481496572495,0.675090253353119,0.557224214076996,-0.617840886116028,0.759012579917908,0.205359444022179,-0.302069067955017,0.231553301215172,0.924736380577087,-0.126094862818718,0.345387637615204,0.929950356483459,-0.0755529850721359,0.0687215477228165,-0.994770884513855,-0.00963510852307081,-0.00354918232187629,-0.999947309494019,0.0239739250391722,0.99876880645752,-0.0434297062456608,-0.181715607643127,0.377457559108734,0.90802276134491,-0.368959069252014,-0.0320524126291275,0.92889279127121,0.022795744240284,0.0261120796203613,0.999399065971375,-0.281766176223755,0.149635076522827,0.94774329662323,-0.181715607643127,0.377457559108734,0.90802276134491,0.022795744240284,0.0261120796203613,0.999399065971375,-0.035722654312849,-0.0352773144841194,0.998738884925842,-0.695054590702057,0.697121560573578,0.175842702388763,-0.875053226947784,0.46229612827301,0.143401935696602,-0.181715607643127,0.377457559108734,0.90802276134491,-0.281766176223755,0.149635076522827,0.94774329662323,-0.875053226947784,0.46229612827301,0.143401935696602,-0.943075180053711,0.275911897420883,0.185693368315697,-0.368959069252014,-0.0320524126291275,0.92889279127121,-0.181715607643127,0.377457559108734,0.90802276134491,-0.731268048286438,0.680997133255005,-0.0385999865829945,-0.725539147853851,0.687605023384094,-0.0281473603099585,-0.23511990904808,0.958411514759064,0.161759242415428,-0.943075180053711,0.275911897420883,0.185693368315697,
- -0.875053226947784,0.46229612827301,0.143401935696602,-0.695054590702057,0.697121560573578,0.175842702388763,-0.942357063293457,0.326163053512573,-0.0747059881687164,-0.912434458732605,0.157841593027115,-0.377557218074799,0.259678304195404,-0.964926898479462,0.0385133735835552,-0.608915567398071,-0.489875167608261,-0.623894333839417,0.0666318610310555,0.967138826847076,0.245362490415573,-0.942357063293457,0.326163053512573,-0.0747059881687164,-0.0346408858895302,-0.00803798157721758,-0.999367475509644,-0.0126215638592839,0.0383207872509956,-0.999185860157013,-0.183411434292793,-0.161730051040649,-0.969641089439392,0.030178714543581,0.0313936918973923,-0.999051451683044,-0.231993645429611,-0.148623570799828,-0.961296081542969,0.224025174975395,0.133484378457069,-0.965398788452148,0.224025174975395,0.133484378457069,-0.965398788452148,-0.231993645429611,-0.148623570799828,-0.961296081542969,0.390267312526703,-0.031014159321785,-0.920179128646851,0.954864919185638,-0.245923280715942,-0.166597500443459,0.0146425925195217,0.0082219960168004,-0.999858975410461,-0.0748870149254799,0.45543846487999,-0.887112140655518,0.0379288978874683,0.0971701443195343,-0.994544863700867,0.0364209562540054,0.0505832806229591,-0.998055577278137,-0.000228189222980291,-0.000217417618841864,-1,-0.185800448060036,-0.139721557497978,-0.972602725028992,-0.0594388693571091,-0.146522358059883,-0.987420082092285,0.00487069552764297,0.0146637503057718,-0.999880611896515,0.0707220882177353,0.0775821506977081,0.994474530220032,-0.0255331099033356,0.386487424373627,0.921941161155701,0.00463478686287999,0.0940895900130272,0.995553016662598,0.0816050618886948,-0.0179809760302305,0.996502637863159,-0.346233993768692,0.010710597038269,0.938087105751038,-0.281766176223755,0.149635076522827,0.94774329662323,-0.035722654312849,-0.0352773144841194,0.998738884925842,-0.0161932650953531,-0.0287762135267258,0.99945467710495,0.133082523941994,0.0834332183003426,0.987587034702301,0.213586255908012,0.136824235320091,0.967295289039612,-0.179009974002838,0.763235807418823,0.620827317237854,
- -0.000450818333774805,0.120084092020988,-0.992763698101044,-0.0126215638592839,0.0383207872509956,-0.999185860157013,-0.0346408858895302,-0.00803798157721758,-0.999367475509644,-0.0149972084909678,-0.017518550157547,-0.999734044075012,0.100385338068008,0.0374536663293839,-0.994243502616882,-0.0719807520508766,-0.00141491193789989,-0.997405052185059,-0.355182468891144,0.224070891737938,-0.907544851303101,-0.139983117580414,0.0617860928177834,-0.988224387168884,0.414367645978928,-0.331311345100403,0.847662806510925,0.140897616744041,0.214939072728157,0.966410398483276,0.0965606048703194,0.0596777647733688,0.993536472320557,-0.105147115886211,0.0108518861234188,0.994397461414337,-0.245744377374649,0.329194754362106,0.911723971366882,-0.0597521513700485,0.299737066030502,0.952148795127869,0.0414160154759884,0.0159771889448166,0.999014258384705,0.022795744240284,0.0261120796203613,0.999399065971375,-0.368959069252014,-0.0320524126291275,0.92889279127121,-0.0141383092850447,-0.0230584442615509,0.999634146690369,-0.0141383092850447,-0.0230584442615509,0.999634146690369,-0.368959069252014,-0.0320524126291275,0.92889279127121,-0.0255331099033356,0.386487424373627,0.921941161155701,0.0707220882177353,0.0775821506977081,0.994474530220032,-0.139983117580414,0.0617860928177834,-0.988224387168884,-0.355182468891144,0.224070891737938,-0.907544851303101,0.283952713012695,0.0844477191567421,-0.955112278461456,0.021753016859293,0.00785734038800001,-0.999732494354248,0.021753016859293,0.00785734038800001,-0.999732494354248,0.283952713012695,0.0844477191567421,-0.955112278461456,0.0404531508684158,0.00921257119625807,-0.999138951301575,-0.00963510852307081,-0.00354918232187629,-0.999947309494019,0.264999091625214,0.0687628164887428,-0.961793780326843,0.0414160154759884,0.0159771889448166,0.999014258384705,-0.0597521513700485,0.299737066030502,0.952148795127869,-0.449008822441101,0.127182185649872,0.884429633617401,-0.330226182937622,-0.118140831589699,0.936479270458221,-0.179009974002838,0.763235807418823,0.620827317237854,-0.34019947052002,0.663624107837677,0.666233718395233,
- -0.346233993768692,0.010710597038269,0.938087105751038,-0.0161932650953531,-0.0287762135267258,0.99945467710495,0.0965606048703194,0.0596777647733688,0.993536472320557,-0.0849814787507057,0.363926082849503,0.927542924880981,-0.0849689915776253,0.332332044839859,0.939327299594879,0.213586255908012,0.136824235320091,0.967295289039612,0.133082523941994,0.0834332183003426,0.987587034702301,0.0965606048703194,0.0596777647733688,0.993536472320557,0.140897616744041,0.214939072728157,0.966410398483276,-0.0849814787507057,0.363926082849503,0.927542924880981,-0.24093034863472,0.103435501456261,0.965014815330505,-0.139245122671127,-0.0551935583353043,0.988718628883362,-0.0180202759802341,-0.135745525360107,0.990579843521118,-0.270124822854996,0.154835924506187,0.950293838977814,-0.583577156066895,0.810616314411163,-0.0483634285628796,-0.994687259197235,-0.087555930018425,-0.0541411377489567,-0.961246252059937,-0.240634396672249,0.134539738297462,-0.699506461620331,0.69418203830719,0.169711872935295,0.00445177080109715,0.158645465970039,-0.987325668334961,-0.994687259197235,-0.087555930018425,-0.0541411377489567,-0.583577156066895,0.810616314411163,-0.0483634285628796,-0.129989609122276,-0.136520534753799,-0.982071697711945,-0.316871762275696,0.0751100555062294,0.945489704608917,-0.0356574542820454,-0.0724403634667397,0.996735215187073,0.0128805795684457,-0.0414558462798595,0.999057352542877,-0.125786110758781,0.429881930351257,0.894080281257629,-0.961246252059937,-0.240634396672249,0.134539738297462,-0.337881028652191,0.0714098662137985,0.938475906848907,-0.316871762275696,0.0751100555062294,0.945489704608917,-0.699506461620331,0.69418203830719,0.169711872935295,-0.027367364615202,0.146944403648376,-0.988766193389893,-0.038362443447113,-0.0031808780040592,-0.999258875846863,-0.0337518304586411,-0.0769592002034187,-0.996462821960449,0.0103666037321091,0.106805637478828,-0.994225919246674,-0.00418942235410213,-0.133543759584427,-0.991034030914307,-0.342887222766876,-0.227173775434494,0.911493599414825,-0.293431103229523,0.0780687108635902,0.952787280082703,
- -0.0176283102482557,-0.068322017788887,0.997507572174072,-0.0125125106424093,-0.12324071675539,0.992298007011414,-0.919737935066223,0.323431074619293,0.222428575158119,-0.270124822854996,0.154835924506187,0.950293838977814,-0.289015293121338,0.104087486863136,0.951649129390717,-0.879770636558533,0.429290443658829,0.204238444566727,-0.987542271614075,0.144733384251595,-0.0617454573512077,-0.997480988502502,-0.0573215931653976,-0.0417842082679272,-0.919737935066223,0.323431074619293,0.222428575158119,-0.879770636558533,0.429290443658829,0.204238444566727,-0.616554081439972,0.500620603561401,0.607651352882385,-0.967335343360901,0.160747498273849,0.19601733982563,-0.983363270759583,0.127189069986343,-0.129690364003181,-0.91788911819458,0.37945568561554,-0.116159193217754,-0.987542271614075,0.144733384251595,-0.0617454573512077,-0.879770636558533,0.429290443658829,0.204238444566727,-0.893339157104492,0.404222071170807,-0.19634085893631,-0.893339157104492,0.404222071170807,-0.19634085893631,-0.114555440843105,-0.0508157014846802,-0.992116332054138,-0.0337518304586411,-0.0769592002034187,-0.996462821960449,-0.983363270759583,0.127189069986343,-0.129690364003181,-0.998141407966614,-0.0419017523527145,-0.0442487336695194,0.0526521354913712,0.282158076763153,-0.957922101020813,-0.967409670352936,-0.141113817691803,0.210250660777092,-0.967335343360901,0.160747498273849,0.19601733982563,-0.293431103229523,0.0780687108635902,0.952787280082703,-0.342887222766876,-0.227173775434494,0.911493599414825,-0.129989609122276,-0.136520534753799,-0.982071697711945,-0.252053260803223,0.301771700382233,-0.919458031654358,-0.0314158201217651,0.00854073464870453,-0.999469935894012,-0.0644404366612434,-0.124493718147278,-0.990125715732574,-0.998141407966614,-0.0419017523527145,-0.0442487336695194,-0.967335343360901,0.160747498273849,0.19601733982563,-0.967409670352936,-0.141113817691803,0.210250660777092,-0.880323827266693,0.472431510686874,-0.042878620326519,-0.00328782573342323,0.0406088829040527,-0.999169766902924,-0.998141407966614,-0.0419017523527145,-0.0442487336695194,
- -0.880323827266693,0.472431510686874,-0.042878620326519,0.0177848227322102,0.140498384833336,-0.989921271800995,-0.961246252059937,-0.240634396672249,0.134539738297462,-0.994687259197235,-0.087555930018425,-0.0541411377489567,-0.818896055221558,-0.490862488746643,0.297427952289581,-0.967335343360901,0.160747498273849,0.19601733982563,-0.616554081439972,0.500620603561401,0.607651352882385,-0.403121381998062,-0.103156484663486,0.909314095973969,-0.293431103229523,0.0780687108635902,0.952787280082703,-0.967409670352936,-0.141113817691803,0.210250660777092,-0.730740606784821,-0.376422971487045,0.569494545459747,-0.818896055221558,-0.490862488746643,0.297427952289581,-0.880323827266693,0.472431510686874,-0.042878620326519,-0.0563526079058647,0.0613426938652992,-0.996524691581726,-0.880323827266693,0.472431510686874,-0.042878620326519,-0.818896055221558,-0.490862488746643,0.297427952289581,-0.919737935066223,0.323431074619293,0.222428575158119,-0.700317203998566,0.507066071033478,0.502434015274048,-0.24093034863472,0.103435501456261,0.965014815330505,-0.270124822854996,0.154835924506187,0.950293838977814,0.0526521354913712,0.282158076763153,-0.957922101020813,-0.998141407966614,-0.0419017523527145,-0.0442487336695194,-0.00328782573342323,0.0406088829040527,-0.999169766902924,-0.967335343360901,0.160747498273849,0.19601733982563,-0.998141407966614,-0.0419017523527145,-0.0442487336695194,-0.983363270759583,0.127189069986343,-0.129690364003181,-0.818896055221558,-0.490862488746643,0.297427952289581,-0.994687259197235,-0.087555930018425,-0.0541411377489567,0.00445177080109715,0.158645465970039,-0.987325668334961,-0.818896055221558,-0.490862488746643,0.297427952289581,-0.730740606784821,-0.376422971487045,0.569494545459747,-0.961246252059937,-0.240634396672249,0.134539738297462,-0.293431103229523,0.0780687108635902,0.952787280082703,-0.403121381998062,-0.103156484663486,0.909314095973969,-0.0640863254666328,-0.0982904061675072,0.993092179298401,-0.0176283102482557,-0.068322017788887,0.997507572174072,-0.616554081439972,0.500620603561401,0.607651352882385,
- -0.893339157104492,0.404222071170807,-0.19634085893631,-0.879770636558533,0.429290443658829,0.204238444566727,-0.699506461620331,0.69418203830719,0.169711872935295,-0.125786110758781,0.429881930351257,0.894080281257629,-0.394581973552704,0.879988491535187,-0.264434248209,-0.919737935066223,0.323431074619293,0.222428575158119,-0.997480988502502,-0.0573215931653976,-0.0417842082679272,-0.999273896217346,-0.0117367692291737,-0.0362508557736874,-0.700317203998566,0.507066071033478,0.502434015274048,-0.252053260803223,0.301771700382233,-0.919458031654358,-0.129989609122276,-0.136520534753799,-0.982071697711945,-0.583577156066895,0.810616314411163,-0.0483634285628796,-0.999273896217346,-0.0117367692291737,-0.0362508557736874,-0.997480988502502,-0.0573215931653976,-0.0417842082679272,-0.027367364615202,0.146944403648376,-0.988766193389893,0.0027903039008379,-0.0755490958690643,-0.997138202190399,-0.038362443447113,-0.0031808780040592,-0.999258875846863,-0.027367364615202,0.146944403648376,-0.988766193389893,-0.997480988502502,-0.0573215931653976,-0.0417842082679272,-0.987542271614075,0.144733384251595,-0.0617454573512077,-0.983363270759583,0.127189069986343,-0.129690364003181,0.0526521354913712,0.282158076763153,-0.957922101020813,-0.114555440843105,-0.0508157014846802,-0.992116332054138,-0.91788911819458,0.37945568561554,-0.116159193217754,-0.0563526079058647,0.0613426938652992,-0.996524691581726,-0.10466343909502,0.166599482297897,-0.980454087257385,0.0656459331512451,0.258685767650604,-0.963728308677673,0.0177848227322102,0.140498384833336,-0.989921271800995,0.00445177080109715,0.158645465970039,-0.987325668334961,-0.129989609122276,-0.136520534753799,-0.982071697711945,-0.0644404366612434,-0.124493718147278,-0.990125715732574,-0.0805627778172493,-0.232008039951324,-0.969371974468231,-0.252053260803223,0.301771700382233,-0.919458031654358,-0.583577156066895,0.810616314411163,-0.0483634285628796,-0.699506461620331,0.69418203830719,0.169711872935295,-0.394581973552704,0.879988491535187,-0.264434248209,-0.316871762275696,0.0751100555062294,0.945489704608917,
- -0.337881028652191,0.0714098662137985,0.938475906848907,0.0393105298280716,0.0953530669212341,0.994667053222656,-0.0356574542820454,-0.0724403634667397,0.996735215187073,-0.202865704894066,0.365565806627274,0.908409178256989,-0.342887222766876,-0.227173775434494,0.911493599414825,-0.0125125106424093,-0.12324071675539,0.992298007011414,-0.893339157104492,0.404222071170807,-0.19634085893631,-0.0337518304586411,-0.0769592002034187,-0.996462821960449,-0.038362443447113,-0.0031808780040592,-0.999258875846863,-0.987542271614075,0.144733384251595,-0.0617454573512077,-0.616554081439972,0.500620603561401,0.607651352882385,-0.879770636558533,0.429290443658829,0.204238444566727,-0.289015293121338,0.104087486863136,0.951649129390717,-0.403121381998062,-0.103156484663486,0.909314095973969,0.0264331586658955,-0.0602947995066643,-0.997830629348755,0.0027903039008379,-0.0755490958690643,-0.997138202190399,-0.027367364615202,0.146944403648376,-0.988766193389893,-0.00418942235410213,-0.133543759584427,-0.991034030914307,-0.616554081439972,0.500620603561401,0.607651352882385,-0.91788911819458,0.37945568561554,-0.116159193217754,-0.893339157104492,0.404222071170807,-0.19634085893631,-0.114555440843105,-0.0508157014846802,-0.992116332054138,-0.893339157104492,0.404222071170807,-0.19634085893631,-0.91788911819458,0.37945568561554,-0.116159193217754,-0.818896055221558,-0.490862488746643,0.297427952289581,0.00445177080109715,0.158645465970039,-0.987325668334961,-0.0563526079058647,0.0613426938652992,-0.996524691581726,-0.10466343909502,0.166599482297897,-0.980454087257385,-0.0563526079058647,0.0613426938652992,-0.996524691581726,0.00445177080109715,0.158645465970039,-0.987325668334961,-0.0805627778172493,-0.232008039951324,-0.969371974468231,-0.342887222766876,-0.227173775434494,0.911493599414825,-0.202865704894066,0.365565806627274,0.908409178256989,-0.503851115703583,0.207080766558647,0.838600993156433,-0.730740606784821,-0.376422971487045,0.569494545459747,-0.967409670352936,-0.141113817691803,0.210250660777092,-0.342887222766876,-0.227173775434494,0.911493599414825,
- -0.503851115703583,0.207080766558647,0.838600993156433,-0.432049453258514,0.760243952274323,0.485141694545746,0.298998177051544,-0.156762078404427,-0.941289484500885,-0.105698242783546,-0.316598504781723,0.94265228509903,-0.961246252059937,-0.240634396672249,0.134539738297462,-0.730740606784821,-0.376422971487045,0.569494545459747,-0.503851115703583,0.207080766558647,0.838600993156433,-0.337881028652191,0.0714098662137985,0.938475906848907,-0.337881028652191,0.0714098662137985,0.938475906848907,-0.202865704894066,0.365565806627274,0.908409178256989,0.0393105298280716,0.0953530669212341,0.994667053222656,-0.108413800597191,0.162796661257744,-0.980685353279114,0.149200186133385,0.600905179977417,0.785272121429443,-0.0800648704171181,-0.996011316776276,0.0393854379653931,-0.699506461620331,0.69418203830719,0.169711872935295,-0.316871762275696,0.0751100555062294,0.945489704608917,-0.125786110758781,0.429881930351257,0.894080281257629,0.0103666037321091,0.106805637478828,-0.994225919246674,-0.0337518304586411,-0.0769592002034187,-0.996462821960449,-0.114555440843105,-0.0508157014846802,-0.992116332054138,-0.0362738445401192,-0.0508419722318649,-0.998047828674316,-0.0640863254666328,-0.0982904061675072,0.993092179298401,-0.403121381998062,-0.103156484663486,0.909314095973969,-0.289015293121338,0.104087486863136,0.951649129390717,0.0055374950170517,0.0440264157950878,0.999015092849731,-0.0362738445401192,-0.0508419722318649,-0.998047828674316,-0.114555440843105,-0.0508157014846802,-0.992116332054138,0.0526521354913712,0.282158076763153,-0.957922101020813,0.00437623960897326,0.0222094636410475,-0.999743759632111,0.00437623960897326,0.0222094636410475,-0.999743759632111,0.0526521354913712,0.282158076763153,-0.957922101020813,-0.00328782573342323,0.0406088829040527,-0.999169766902924,0.0177848227322102,0.140498384833336,-0.989921271800995,0.0656459331512451,0.258685767650604,-0.963728308677673,0.0055374950170517,0.0440264157950878,0.999015092849731,-0.289015293121338,0.104087486863136,0.951649129390717,-0.270124822854996,0.154835924506187,0.950293838977814,
- -0.0180202759802341,-0.135745525360107,0.990579843521118,5.34996433998458e-006,1.03038610177464e-006,-1,-2.29199213208631e-006,1.01550074305123e-006,-1,-1.19212609206443e-005,9.96744688563922e-007,-1,-9.69508346315706e-006,1.00108070455462e-006,-1,-8.48128081543109e-007,1.01831324172963e-006,-1,2.93749849333835e-006,1.02568697002425e-006,-1,2.05969877242751e-006,1.0239773473586e-006,-1,6.00303610553965e-006,1.03165814380191e-006,-1,2.69638303507236e-006,1.02521732969763e-006,-1,5.0087310228264e-006,1.02972148852132e-006,-1,8.64711182657629e-006,1.03680838492437e-006,-1,2.0321595002315e-005,1.93087839761574e-006,-1,3.24326970257971e-006,1.96898736248841e-006,-1,-3.17455032927683e-006,1.9833084934362e-006,-1,6.07705896982225e-006,1.96266410057433e-006,-1,3.05457007243604e-007,1.97554322767246e-006,-1,-5.59809450351167e-006,1.98871634893294e-006,-1,3.888877472491e-006,1.96754717762815e-006,-1,1.81185369001469e-005,1.9357944438525e-006,-1,-0.314709573984146,0.949170708656311,-0.00573691911995411,-0.313054621219635,0.949714720249176,-0.00622905138880014,-0.313054651021957,0.949714779853821,-0.00622244644910097,-0.3154316842556,0.948925614356995,-0.00656838994473219,-0.314709573984146,0.949170708656311,-0.00573691911995411,-0.3154316842556,0.948925614356995,-0.00656838994473219,-0.346806704998016,0.937907934188843,-0.00733314547687769,-0.347478330135345,0.937667608261108,-0.00620117271319032,-0.347478330135345,0.937667608261108,-0.00620117271319032,-0.372021555900574,0.928209006786346,-0.00528646586462855,-0.314709573984146,0.949170708656311,-0.00573691911995411,-0.677873432636261,0.733542859554291,0.0490160323679447,-0.9924196600914,0.122150331735611,0.0135168824344873,-0.990773320198059,0.130303114652634,-0.037276353687048,-0.677640020847321,0.733660757541656,-0.0504562929272652,-0.0232418309897184,-0.0110445050522685,-0.999668836593628,-0.00933830067515373,-0.00410533230751753,-0.999948024749756,-0.00904987193644047,-0.00397853134199977,-0.999951183795929,-0.0440842881798744,-0.0215499196201563,-0.998795449733734,0.00407161470502615,-0.0244890004396439,-0.999691843986511,
- 0.0031749289482832,-0.0251385271549225,-0.99967896938324,-0.0096644377335906,-0.00189505633898079,-0.999951601028442,-0.0097389779984951,-0.00652724551036954,-0.999931335449219,-0.0859548076987267,-0.0357455238699913,0.995657622814178,-0.078436866402626,-0.065924696624279,0.994736909866333,-0.0792266353964806,-0.0627716332674026,0.99487841129303,-0.0096644377335906,-0.00189505633898079,-0.999951601028442,-0.0145301865413785,-0.00103242264594883,-0.9998939037323,-0.0368456020951271,-0.0160964876413345,-0.999191403388977,-0.0097389779984951,-0.00652724551036954,-0.999931335449219,-0.0232418309897184,-0.0110445050522685,-0.999668836593628,-0.0440842881798744,-0.0215499196201563,-0.998795449733734,-0.0546724274754524,-0.0717305317521095,-0.995924592018127,-0.0546724274754524,-0.0717305317521095,-0.995924592018127,-0.0440842881798744,-0.0215499196201563,-0.998795449733734,-0.0368456020951271,-0.0160964876413345,-0.999191403388977,-0.0440842881798744,-0.0215499196201563,-0.998795449733734,-0.00851691607385874,-0.065545067191124,-0.99781334400177,-0.0368456020951271,-0.0160964876413345,-0.999191403388977,-0.00851691607385874,-0.065545067191124,-0.99781334400177,-0.0097389779984951,-0.00652724551036954,-0.999931335449219,-0.0368456020951271,-0.0160964876413345,-0.999191403388977,0.970740795135498,0.240055456757545,0.00598283158615232,0.937527179718018,0.347885102033615,0.00435162195935845,0.937534511089325,0.347877472639084,0.00321459444239736,0.970748782157898,0.240041151642799,0.00520745245739818,0.937527179718018,0.347885102033615,0.00435162195935845,0.286844342947006,0.957967519760132,0.00432476960122585,0.286886990070343,0.957955181598663,0.00423535192385316,0.937534511089325,0.347877472639084,0.00321459444239736,0.000235846324358135,-0.00126852747052908,-0.999999225139618,0.00023013589088805,-0.00123749405611306,-0.999999284744263,0.000236803229199722,-0.00127372785937041,-0.999999165534973,0.000233579790801741,-0.00125621003098786,-0.999999225139618,0.000235865998547524,-0.00126863433979452,-0.999999165534973,0.000226638425374404,-0.00121848681010306,-0.999999284744263,
- 0.000223483846639283,-0.00120134325698018,-0.999999284744263,0.000233529543038458,-0.00125593680422753,-0.999999165534973,0.000241515022935346,-0.0012993342243135,-0.999999105930328,0.000235239553148858,-0.00126523000653833,-0.999999165534973,0.000230661622481421,-0.00124035123735666,-0.999999284744263
- }
- BinormalsW: *1896 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *5688 {
- a: -0.826868832111359,0.441640943288803,0.348197162151337,-0.82732754945755,-0.433103829622269,0.357701271772385,-0.883819222450256,-0.309607893228531,0.350722759962082,-0.674449920654297,0.513709604740143,-0.530301570892334,-0.451690256595612,-0.882323443889618,0.132216036319733,-0.390392363071442,-0.920638799667358,0.00425813207402825,-0.956558883190155,-0.291497498750687,-0.00492080254480243,-0.988063216209412,-0.0946333557367325,-0.121555119752884,-0.695369124412537,-0.712445974349976,0.094246469438076,-0.712125957012177,-0.701206803321838,0.0344333574175835,-0.503658056259155,-0.863703370094299,-0.0185811948031187,-0.549553513526917,-0.812742173671722,0.193497091531754,-0.451690256595612,-0.882323443889618,0.132216036319733,-0.83435320854187,-0.539039790630341,-0.115285985171795,0.092176765203476,-0.681557476520538,-0.725935876369476,0.0332707166671753,-0.894548773765564,-0.445730477571487,-0.64797306060791,-0.761126816272736,-0.0285809207707644,-0.650129199028015,-0.75947368144989,-0.0230596009641886,-0.722372710704803,-0.691503822803497,-0.000315615296131,-0.694286704063416,-0.681765913963318,-0.230567425489426,-0.885948717594147,-0.431223630905151,0.170707225799561,-0.839497268199921,-0.436593949794769,0.323466002941132,-0.932969868183136,-0.348096996545792,0.0916291624307632,-0.925318777561188,-0.373690813779831,-0.0643457770347595,-0.906480133533478,-0.422148823738098,0.00916849169880152,-0.846536874771118,0.401029109954834,0.350072860717773,-0.988063216209412,-0.0946333557367325,-0.121555119752884,-0.956558883190155,-0.291497498750687,-0.00492080254480243,-0.327628791332245,-0.944773256778717,-0.00792801659554243,-0.680961966514587,-0.730013847351074,-0.0580556951463223,-0.503658056259155,-0.863703370094299,-0.0185811948031187,-0.712125957012177,-0.701206803321838,0.0344333574175835,-0.90249490737915,-0.381865948438644,0.199201673269272,-0.9280024766922,-0.34418597817421,0.14264389872551,-0.96811830997467,-0.239310130476952,0.0740115493535995,-0.980062425136566,-0.169865921139717,-0.103069230914116,
- -0.962199330329895,-0.270989298820496,0.0271517671644688,-0.931373357772827,-0.362410098314285,-0.0346795469522476,-0.90744823217392,-0.413718611001968,-0.0733124166727066,-0.82732754945755,-0.433103829622269,0.357701271772385,-0.94048285484314,-0.339677035808563,-0.010564929805696,-0.931373357772827,-0.362410098314285,-0.0346795469522476,-0.962199330329895,-0.270989298820496,0.0271517671644688,-0.954754948616028,-0.28952357172966,0.0679629519581795,-0.885654151439667,0.413154065608978,0.211944460868835,-0.520151257514954,-0.623921036720276,0.583236873149872,-0.753440678119659,-0.540533661842346,0.374366790056229,-0.999563753604889,-0.0294113829731941,-0.00268882396630943,-0.94048285484314,-0.339677035808563,-0.010564929805696,-0.972627401351929,-0.14482444524765,-0.181719318032265,-0.931373357772827,-0.362410098314285,-0.0346795469522476,-0.962884783744812,-0.251952260732651,-0.0968137606978416,-0.699389576911926,-0.694412887096405,-0.169248193502426,-0.964219152927399,0.264792948961258,0.0128889735788107,-0.936706840991974,0.119829602539539,0.328969985246658,0.060516469180584,-0.860390305519104,0.506029903888702,-0.290984332561493,-0.956463992595673,0.0224669128656387,-0.681767165660858,-0.731488227844238,-0.010888883844018,-0.972627401351929,-0.14482444524765,-0.181719318032265,-0.925318777561188,-0.373690813779831,-0.0643457770347595,-0.83749794960022,0.355171740055084,-0.41527134180069,-0.753440678119659,-0.540533661842346,0.374366790056229,-0.900081157684326,-0.319880306720734,0.295855641365051,-0.893121480941772,-0.449808061122894,-0.00255009741522372,-0.779673516750336,-0.62521356344223,0.0348894707858562,-0.90249490737915,-0.381865948438644,0.199201673269272,-0.980062425136566,-0.169865921139717,-0.103069230914116,-0.999563753604889,-0.0294113829731941,-0.00268882396630943,-0.895874679088593,-0.368630677461624,0.248032078146935,-0.59065717458725,-0.801289498806,0.0951806902885437,-0.84296053647995,-0.53596693277359,0.0464425906538963,-0.893121480941772,-0.449808061122894,-0.00255009741522372,-0.999333620071411,0.0251190774142742,-0.0264845825731754,
- -0.779673516750336,-0.62521356344223,0.0348894707858562,-0.999563753604889,-0.0294113829731941,-0.00268882396630943,-0.952781200408936,-0.300828576087952,0.0413542240858078,-0.959829270839691,-0.280398935079575,-0.0102065037935972,-0.999333620071411,0.0251190774142742,-0.0264845825731754,-0.893121480941772,-0.449808061122894,-0.00255009741522372,-0.798474967479706,-0.546010375022888,-0.253594994544983,0.092176765203476,-0.681557476520538,-0.725935876369476,-0.83435320854187,-0.539039790630341,-0.115285985171795,-0.999563753604889,-0.0294113829731941,-0.00268882396630943,-0.980062425136566,-0.169865921139717,-0.103069230914116,-0.950446665287018,0.103258058428764,0.293238639831543,-0.885654151439667,0.413154065608978,0.211944460868835,-0.751684427261353,-0.658093392848969,0.0433992221951485,-0.381902307271957,-0.910581290721893,-0.15808929502964,-0.315190881490707,-0.948902487754822,0.0154512701556087,-0.727278053760529,-0.641302883625031,-0.244534492492676,-0.779673516750336,-0.62521356344223,0.0348894707858562,-0.999333620071411,0.0251190774142742,-0.0264845825731754,-0.580782532691956,-0.329518347978592,-0.744385123252869,-0.369059205055237,-0.73443329334259,-0.569563984870911,-0.762764513492584,0.638573229312897,-0.102051340043545,-0.580782532691956,-0.329518347978592,-0.744385123252869,-0.999333620071411,0.0251190774142742,-0.0264845825731754,-0.962199330329895,-0.270989298820496,0.0271517671644688,-0.82732754945755,-0.433103829622269,0.357701271772385,-0.826868832111359,0.441640943288803,0.348197162151337,-0.790672123432159,0.44711297750473,0.418243438005447,0.772595047950745,-0.375219702720642,-0.512159287929535,0.787719190120697,-0.609482944011688,-0.0896047204732895,-0.555779218673706,-0.797022700309753,-0.236356288194656,-0.819683134555817,-0.554790258407593,-0.142573729157448,-0.900081157684326,-0.319880306720734,0.295855641365051,-0.952781200408936,-0.300828576087952,0.0413542240858078,-0.893121480941772,-0.449808061122894,-0.00255009741522372,-0.290984332561493,-0.956463992595673,0.0224669128656387,0.060516469180584,-0.860390305519104,0.506029903888702,
- -0.482793599367142,-0.810315489768982,0.332113087177277,-0.999563753604889,-0.0294113829731941,-0.00268882396630943,-0.753440678119659,-0.540533661842346,0.374366790056229,-0.893121480941772,-0.449808061122894,-0.00255009741522372,-0.588371694087982,-0.807334244251251,-0.0450560711324215,-0.0655491575598717,-0.997163772583008,0.0369830653071404,-0.681767165660858,-0.731488227844238,-0.010888883844018,-0.59065717458725,-0.801289498806,0.0951806902885437,-0.588371694087982,-0.807334244251251,-0.0450560711324215,-0.681767165660858,-0.731488227844238,-0.010888883844018,-0.84296053647995,-0.53596693277359,0.0464425906538963,-0.807077467441559,-0.522201418876648,-0.275557041168213,-0.913515210151672,0.11155503988266,0.39121025800705,-0.846536874771118,0.401029109954834,0.350072860717773,-0.814827501773834,-0.553343057632446,0.172823190689087,-0.25466251373291,0.908692300319672,0.330795258283615,-0.322983890771866,0.944153487682343,-0.0652352944016457,-0.390392363071442,-0.920638799667358,0.00425813207402825,-0.451690256595612,-0.882323443889618,0.132216036319733,0.0332707166671753,-0.894548773765564,-0.445730477571487,-0.370665341615677,-0.926907122135162,-0.0587414018809795,-0.980062425136566,-0.169865921139717,-0.103069230914116,-0.96811830997467,-0.239310130476952,0.0740115493535995,-0.97087150812149,0.215363070368767,0.105011142790318,-0.950446665287018,0.103258058428764,0.293238639831543,-0.64797306060791,-0.761126816272736,-0.0285809207707644,-0.694286704063416,-0.681765913963318,-0.230567425489426,-0.680961966514587,-0.730013847351074,-0.0580556951463223,-0.327628791332245,-0.944773256778717,-0.00792801659554243,0.0332707166671753,-0.894548773765564,-0.445730477571487,-0.503658056259155,-0.863703370094299,-0.0185811948031187,-0.680961966514587,-0.730013847351074,-0.0580556951463223,-0.370665341615677,-0.926907122135162,-0.0587414018809795,-0.885654151439667,0.413154065608978,0.211944460868835,-0.931373357772827,-0.362410098314285,-0.0346795469522476,-0.972627401351929,-0.14482444524765,-0.181719318032265,0.060516469180584,-0.860390305519104,0.506029903888702,
- -0.0655491575598717,-0.997163772583008,0.0369830653071404,-0.327628791332245,-0.944773256778717,-0.00792801659554243,-0.962199330329895,-0.270989298820496,0.0271517671644688,-0.790672123432159,0.44711297750473,0.418243438005447,-0.846536874771118,0.401029109954834,0.350072860717773,-0.954754948616028,-0.28952357172966,0.0679629519581795,-0.962884783744812,-0.251952260732651,-0.0968137606978416,-0.936706840991974,0.119829602539539,0.328969985246658,-0.895874679088593,-0.368630677461624,0.248032078146935,-0.84296053647995,-0.53596693277359,0.0464425906538963,-0.751684427261353,-0.658093392848969,0.0433992221951485,-0.807077467441559,-0.522201418876648,-0.275557041168213,-0.956558883190155,-0.291497498750687,-0.00492080254480243,-0.390392363071442,-0.920638799667358,0.00425813207402825,-0.370665341615677,-0.926907122135162,-0.0587414018809795,-0.751684427261353,-0.658093392848969,0.0433992221951485,-0.390392363071442,-0.920638799667358,0.00425813207402825,-0.588371694087982,-0.807334244251251,-0.0450560711324215,-0.592366933822632,-0.805472612380981,-0.0177535265684128,0.00372861768119037,-0.992756724357605,0.120084173977375,-0.0655491575598717,-0.997163772583008,0.0369830653071404,-0.680961966514587,-0.730013847351074,-0.0580556951463223,-0.694286704063416,-0.681765913963318,-0.230567425489426,-0.370665341615677,-0.926907122135162,-0.0587414018809795,-0.290984332561493,-0.956463992595673,0.0224669128656387,-0.476533621549606,-0.854446291923523,0.206971690058708,-0.699389576911926,-0.694412887096405,-0.169248193502426,-0.962884783744812,-0.251952260732651,-0.0968137606978416,-0.588371694087982,-0.807334244251251,-0.0450560711324215,-0.59065717458725,-0.801289498806,0.0951806902885437,-0.583663284778595,-0.810416221618652,0.0506241321563721,-0.592366933822632,-0.805472612380981,-0.0177535265684128,-0.846536874771118,0.401029109954834,0.350072860717773,-0.913515210151672,0.11155503988266,0.39121025800705,-0.885948717594147,-0.431223630905151,0.170707225799561,-0.954754948616028,-0.28952357172966,0.0679629519581795,-0.906480133533478,-0.422148823738098,0.00916849169880152,
- -0.94048285484314,-0.339677035808563,-0.010564929805696,-0.954754948616028,-0.28952357172966,0.0679629519581795,-0.885948717594147,-0.431223630905151,0.170707225799561,-0.753440678119659,-0.540533661842346,0.374366790056229,-0.520151257514954,-0.623921036720276,0.583236873149872,-0.83749794960022,0.355171740055084,-0.41527134180069,-0.900081157684326,-0.319880306720734,0.295855641365051,-0.762764513492584,0.638573229312897,-0.102051340043545,-0.959829270839691,-0.280398935079575,-0.0102065037935972,-0.930978894233704,-0.241576984524727,0.273713320493698,-0.768659710884094,0.637650787830353,0.0506338514387608,-0.286252558231354,-0.955346524715424,0.0732973739504814,-0.9280024766922,-0.34418597817421,0.14264389872551,-0.90249490737915,-0.381865948438644,0.199201673269272,-0.972627401351929,-0.14482444524765,-0.181719318032265,-0.94048285484314,-0.339677035808563,-0.010564929805696,-0.906480133533478,-0.422148823738098,0.00916849169880152,-0.925318777561188,-0.373690813779831,-0.0643457770347595,-0.885654151439667,0.413154065608978,0.211944460868835,-0.950446665287018,0.103258058428764,0.293238639831543,-0.90744823217392,-0.413718611001968,-0.0733124166727066,-0.931373357772827,-0.362410098314285,-0.0346795469522476,-0.790672123432159,0.44711297750473,0.418243438005447,-0.988063216209412,-0.0946333557367325,-0.121555119752884,-0.846536874771118,0.401029109954834,0.350072860717773,0.772595047950745,-0.375219702720642,-0.512159287929535,-0.774521946907043,-0.340209752321243,-0.533266365528107,-0.988063216209412,-0.0946333557367325,-0.121555119752884,0.574623107910156,-0.796366512775421,0.188702508807182,-0.161332190036774,0.0415530726313591,-0.986025035381317,-0.868250608444214,-0.451548099517822,-0.205536812543869,-0.885948717594147,-0.431223630905151,0.170707225799561,0.177026569843292,-0.0355115458369255,-0.983565270900726,-0.807077467441559,-0.522201418876648,-0.275557041168213,-0.846536874771118,0.401029109954834,0.350072860717773,-0.956558883190155,-0.291497498750687,-0.00492080254480243,-0.988063216209412,-0.0946333557367325,-0.121555119752884,
- -0.819683134555817,-0.554790258407593,-0.142573729157448,-0.83435320854187,-0.539039790630341,-0.115285985171795,-0.451690256595612,-0.882323443889618,0.132216036319733,0.092176765203476,-0.681557476520538,-0.725935876369476,-0.549553513526917,-0.812742173671722,0.193497091531754,-0.503658056259155,-0.863703370094299,-0.0185811948031187,0.0332707166671753,-0.894548773765564,-0.445730477571487,-0.885654151439667,0.413154065608978,0.211944460868835,-0.972627401351929,-0.14482444524765,-0.181719318032265,-0.520151257514954,-0.623921036720276,0.583236873149872,-0.83749794960022,0.355171740055084,-0.41527134180069,-0.520151257514954,-0.623921036720276,0.583236873149872,-0.972627401351929,-0.14482444524765,-0.181719318032265,0.290718704462051,-0.95663183927536,-0.0183889996260405,-0.385756701231003,-0.920800089836121,0.0576105006039143,-0.749056458473206,-0.655530989170074,0.0958830863237381,-0.694286704063416,-0.681765913963318,-0.230567425489426,-0.381902307271957,-0.910581290721893,-0.15808929502964,-0.370665341615677,-0.926907122135162,-0.0587414018809795,-0.90249490737915,-0.381865948438644,0.199201673269272,-0.24213220179081,-0.919793248176575,-0.308791875839233,-0.286252558231354,-0.955346524715424,0.0732973739504814,-0.369059205055237,-0.73443329334259,-0.569563984870911,-0.24213220179081,-0.919793248176575,-0.308791875839233,-0.90249490737915,-0.381865948438644,0.199201673269272,-0.779673516750336,-0.62521356344223,0.0348894707858562,-0.762764513492584,0.638573229312897,-0.102051340043545,-0.999333620071411,0.0251190774142742,-0.0264845825731754,-0.959829270839691,-0.280398935079575,-0.0102065037935972,-0.530256569385529,-0.815246522426605,-0.232811018824577,-0.533562183380127,-0.845067024230957,-0.0342520475387573,-0.476533621549606,-0.854446291923523,0.206971690058708,-0.695369124412537,-0.712445974349976,0.094246469438076,-0.723611176013947,-0.688380181789398,0.0501967929303646,-0.533562183380127,-0.845067024230957,-0.0342520475387573,-0.530256569385529,-0.815246522426605,-0.232811018824577,-0.712125957012177,-0.701206803321838,0.0344333574175835,
- -0.695369124412537,-0.712445974349976,0.094246469438076,-0.530256569385529,-0.815246522426605,-0.232811018824577,-0.482793599367142,-0.810315489768982,0.332113087177277,-0.482793599367142,-0.810315489768982,0.332113087177277,-0.530256569385529,-0.815246522426605,-0.232811018824577,-0.476533621549606,-0.854446291923523,0.206971690058708,-0.290984332561493,-0.956463992595673,0.0224669128656387,-0.681767165660858,-0.731488227844238,-0.010888883844018,-0.290984332561493,-0.956463992595673,0.0224669128656387,-0.962884783744812,-0.251952260732651,-0.0968137606978416,-0.84296053647995,-0.53596693277359,0.0464425906538963,-0.482793599367142,-0.810315489768982,0.332113087177277,0.060516469180584,-0.860390305519104,0.506029903888702,-0.327628791332245,-0.944773256778717,-0.00792801659554243,-0.712125957012177,-0.701206803321838,0.0344333574175835,-0.965495347976685,-0.260179907083511,0.0111870309337974,-0.00136504601687193,-0.245840206742287,-0.969309389591217,-0.682223498821259,0.724705517292023,-0.0968144536018372,-0.327628791332245,-0.944773256778717,-0.00792801659554243,-0.0655491575598717,-0.997163772583008,0.0369830653071404,-0.64797306060791,-0.761126816272736,-0.0285809207707644,-0.727278053760529,-0.641302883625031,-0.244534492492676,-0.829339265823364,-0.494158267974854,0.260775923728943,-0.807077467441559,-0.522201418876648,-0.275557041168213,-0.751684427261353,-0.658093392848969,0.0433992221951485,-0.829339265823364,-0.494158267974854,0.260775923728943,-0.161348551511765,0.041551448404789,0.986022353172302,-0.913515210151672,0.11155503988266,0.39121025800705,-0.807077467441559,-0.522201418876648,-0.275557041168213,-0.874910235404968,-0.483993887901306,0.0168005283921957,-0.583663284778595,-0.810416221618652,0.0506241321563721,-0.59065717458725,-0.801289498806,0.0951806902885437,-0.895874679088593,-0.368630677461624,0.248032078146935,-0.722372710704803,-0.691503822803497,-0.000315615296131,-0.315190881490707,-0.948902487754822,0.0154512701556087,-0.381902307271957,-0.910581290721893,-0.15808929502964,-0.694286704063416,-0.681765913963318,-0.230567425489426,
- -0.689697921276093,-0.715821862220764,-0.109160400927067,-0.957364737987518,0.268988698720932,-0.105346336960793,-0.964219152927399,0.264792948961258,0.0128889735788107,-0.699389576911926,-0.694412887096405,-0.169248193502426,-0.549553513526917,-0.812742173671722,0.193497091531754,-0.595617413520813,-0.802600264549255,0.0327535271644592,-0.723611176013947,-0.688380181789398,0.0501967929303646,-0.695369124412537,-0.712445974349976,0.094246469438076,-0.806317985057831,-0.57030463218689,-0.156856238842011,0.188212439417839,-0.592874348163605,-0.782991707324982,-0.798474967479706,-0.546010375022888,-0.253594994544983,0.00372861768119037,-0.992756724357605,0.120084173977375,-0.650129199028015,-0.75947368144989,-0.0230596009641886,-0.64797306060791,-0.761126816272736,-0.0285809207707644,-0.0655491575598717,-0.997163772583008,0.0369830653071404,-0.932969868183136,-0.348096996545792,0.0916291624307632,-0.904075145721436,0.399042934179306,-0.15301226079464,-0.83749794960022,0.355171740055084,-0.41527134180069,-0.925318777561188,-0.373690813779831,-0.0643457770347595,-0.674449920654297,0.513709604740143,-0.530301570892334,-0.80442476272583,-0.583168566226959,-0.113204516470432,-0.549856662750244,-0.787988603115082,-0.277004718780518,-0.97087150812149,0.215363070368767,0.105011142790318,-0.8986736536026,-0.436384350061417,-0.0442073084414005,-0.90744823217392,-0.413718611001968,-0.0733124166727066,-0.950446665287018,0.103258058428764,0.293238639831543,-0.533562183380127,-0.845067024230957,-0.0342520475387573,-0.546089231967926,-0.83713835477829,0.0313995778560638,-0.476533621549606,-0.854446291923523,0.206971690058708,-0.546089231967926,-0.83713835477829,0.0313995778560638,-0.689697921276093,-0.715821862220764,-0.109160400927067,-0.699389576911926,-0.694412887096405,-0.169248193502426,-0.476533621549606,-0.854446291923523,0.206971690058708,-0.904075145721436,0.399042934179306,-0.15301226079464,-0.940253913402557,-0.339688241481781,0.0231152661144733,-0.900081157684326,-0.319880306720734,0.295855641365051,-0.83749794960022,0.355171740055084,-0.41527134180069,
- -0.940253913402557,-0.339688241481781,0.0231152661144733,-0.930978894233704,-0.241576984524727,0.273713320493698,-0.959829270839691,-0.280398935079575,-0.0102065037935972,-0.952781200408936,-0.300828576087952,0.0413542240858078,-0.900081157684326,-0.319880306720734,0.295855641365051,-0.8986736536026,-0.436384350061417,-0.0442073084414005,-0.883819222450256,-0.309607893228531,0.350722759962082,-0.82732754945755,-0.433103829622269,0.357701271772385,-0.90744823217392,-0.413718611001968,-0.0733124166727066,0.188212439417839,-0.592874348163605,-0.782991707324982,-0.595617413520813,-0.802600264549255,0.0327535271644592,-0.549553513526917,-0.812742173671722,0.193497091531754,0.092176765203476,-0.681557476520538,-0.725935876369476,-0.80442476272583,-0.583168566226959,-0.113204516470432,-0.806317985057831,-0.57030463218689,-0.156856238842011,-0.798474967479706,-0.546010375022888,-0.253594994544983,-0.83435320854187,-0.539039790630341,-0.115285985171795,-0.819683134555817,-0.554790258407593,-0.142573729157448,-0.80442476272583,-0.583168566226959,-0.113204516470432,-0.819683134555817,-0.554790258407593,-0.142573729157448,-0.549856662750244,-0.787988603115082,-0.277004718780518,-0.865071892738342,-0.473660558462143,0.165215864777565,-0.169618025422096,-0.979202568531036,-0.111319191753864,-0.149078711867332,-0.979300916194916,0.136913031339645,-0.89468115568161,-0.420945942401886,0.149499356746674,-0.78499037027359,-0.619478046894073,0.0060810106806457,-0.669839978218079,-0.737094700336456,-0.0894760265946388,0.222073510289192,-0.965019762516022,0.139356210827827,0.0874368771910667,-0.996159553527832,-0.00457897549495101,-0.360298693180084,-0.920767068862915,0.149575188755989,-0.423247933387756,-0.880800187587738,-0.212254881858826,-0.78499037027359,-0.619478046894073,0.0060810106806457,0.0874368771910667,-0.996159553527832,-0.00457897549495101,-0.401015430688858,-0.915865659713745,-0.0194046776741743,0.0497456640005112,-0.92621248960495,-0.373705565929413,0.0798849761486053,-0.982003927230835,0.171133667230606,-0.391603797674179,-0.919760048389435,-0.0262252893298864,
- 0.222073510289192,-0.965019762516022,0.139356210827827,-0.669839978218079,-0.737094700336456,-0.0894760265946388,-0.401015430688858,-0.915865659713745,-0.0194046776741743,-0.398976624011993,-0.913963913917542,0.0740780532360077,-0.0434612296521664,-0.991920650005341,0.119182482361794,-0.030371306464076,-0.967664837837219,-0.250404685735703,-0.0961814597249031,-0.991151750087738,0.0914728567004204,-0.0794133543968201,-0.993675589561462,-0.0793875008821487,-0.0600510276854038,-0.998155415058136,0.00892210192978382,-0.0399624444544315,-0.965909957885742,0.2557752430439,-0.124986805021763,-0.984399616718292,0.123837031424046,-0.287589251995087,-0.955155968666077,0.0704947859048843,-0.276374042034149,-0.961028933525085,0.00638392753899097,-0.326291531324387,-0.944943010807037,-0.0248289089649916,-0.415854066610336,-0.90314108133316,-0.106778249144554,-0.0696665644645691,-0.993726968765259,-0.0874838009476662,-0.169618025422096,-0.979202568531036,-0.111319191753864,-0.145649552345276,-0.989275872707367,-0.0109328301623464,-0.415854066610336,-0.90314108133316,-0.106778249144554,-0.326291531324387,-0.944943010807037,-0.0248289089649916,0.0586931370198727,-0.997755944728851,0.0322237424552441,-0.71842348575592,-0.673455357551575,0.174142777919769,-0.27607199549675,-0.82085782289505,0.499976694583893,-0.0589213259518147,-0.898704946041107,0.434577405452728,-0.176386162638664,-0.982178330421448,0.0649135336279869,-0.145649552345276,-0.989275872707367,-0.0109328301623464,-0.435087382793427,-0.887332379817963,-0.152775228023529,-0.415854066610336,-0.90314108133316,-0.106778249144554,-0.435087382793427,-0.887332379817963,-0.152775228023529,-0.0794133543968201,-0.993675589561462,-0.0793875008821487,-0.625932097434998,-0.771817207336426,-0.111835412681103,-0.0589213259518147,-0.898704946041107,0.434577405452728,-0.186140969395638,-0.939671277999878,0.287000566720963,0.0419062785804272,-0.999120950698853,-0.00103079271502793,0.140118077397347,-0.989938795566559,0.0197007190436125,-0.0399624444544315,-0.965909957885742,0.2557752430439,
- -0.276374042034149,-0.961028933525085,0.00638392753899097,-0.176386162638664,-0.982178330421448,0.0649135336279869,-0.423247933387756,-0.880800187587738,-0.212254881858826,-0.454037815332413,-0.879851996898651,-0.140392974019051,-0.985632598400116,0.165760904550552,-0.0324303023517132,-0.914642095565796,0.143044874072075,-0.378111153841019,0.0419062785804272,-0.999120950698853,-0.00103079271502793,-0.473643839359283,-0.880383908748627,-0.024197731167078,0.140118077397347,-0.989938795566559,0.0197007190436125,-0.176386162638664,-0.982178330421448,0.0649135336279869,-0.208734795451164,-0.977193176746368,0.039028987288475,-0.22316874563694,-0.964541912078857,0.140906274318695,-0.473643839359283,-0.880383908748627,-0.024197731167078,0.0419062785804272,-0.999120950698853,-0.00103079271502793,0.222073510289192,-0.965019762516022,0.139356210827827,0.566603243350983,-0.774008691310883,-0.282615453004837,0.0874368771910667,-0.996159553527832,-0.00457897549495101,-0.176386162638664,-0.982178330421448,0.0649135336279869,-0.276374042034149,-0.961028933525085,0.00638392753899097,-0.506985604763031,-0.801964044570923,0.315941780805588,-0.71842348575592,-0.673455357551575,0.174142777919769,0.140118077397347,-0.989938795566559,0.0197007190436125,-0.473643839359283,-0.880383908748627,-0.024197731167078,0.566603243350983,-0.774008691310883,-0.282615453004837,0.580551862716675,-0.781547427177429,-0.228348419070244,0.456208109855652,-0.886237859725952,0.0803520232439041,0.566603243350983,-0.774008691310883,-0.282615453004837,-0.473643839359283,-0.880383908748627,-0.024197731167078,-0.326291531324387,-0.944943010807037,-0.0248289089649916,-0.169618025422096,-0.979202568531036,-0.111319191753864,-0.865071892738342,-0.473660558462143,0.165215864777565,-0.701937258243561,-0.617134928703308,0.355568140745163,-0.186140969395638,-0.939671277999878,0.287000566720963,-0.208734795451164,-0.977193176746368,0.039028987288475,0.0419062785804272,-0.999120950698853,-0.00103079271502793,-0.176386162638664,-0.982178330421448,0.0649135336279869,-0.0589213259518147,-0.898704946041107,0.434577405452728,
- 0.0419062785804272,-0.999120950698853,-0.00103079271502793,0.566603243350983,-0.774008691310883,-0.282615453004837,-0.360298693180084,-0.920767068862915,0.149575188755989,0.0874368771910667,-0.996159553527832,-0.00457897549495101,0.566603243350983,-0.774008691310883,-0.282615453004837,0.222073510289192,-0.965019762516022,0.139356210827827,0.580551862716675,-0.781547427177429,-0.228348419070244,-0.276374042034149,-0.961028933525085,0.00638392753899097,-0.287589251995087,-0.955155968666077,0.0704947859048843,-0.628128528594971,-0.769323825836182,0.116599835455418,-0.506985604763031,-0.801964044570923,0.315941780805588,-0.71842348575592,-0.673455357551575,0.174142777919769,-0.415854066610336,-0.90314108133316,-0.106778249144554,-0.435087382793427,-0.887332379817963,-0.152775228023529,-0.669839978218079,-0.737094700336456,-0.0894760265946388,-0.752470314502716,-0.145163774490356,-0.64242959022522,0.0497456640005112,-0.92621248960495,-0.373705565929413,-0.326291531324387,-0.944943010807037,-0.0248289089649916,-0.701937258243561,-0.617134928703308,0.355568140745163,0.0302465222775936,-0.82332718372345,0.56676059961319,0.0586931370198727,-0.997755944728851,0.0322237424552441,-0.914642095565796,0.143044874072075,-0.378111153841019,-0.78499037027359,-0.619478046894073,0.0060810106806457,-0.423247933387756,-0.880800187587738,-0.212254881858826,0.0302465222775936,-0.82332718372345,0.56676059961319,0.419721782207489,-0.90496951341629,-0.0697403028607368,-0.0434612296521664,-0.991920650005341,0.119182482361794,0.0586931370198727,-0.997755944728851,0.0322237424552441,-0.0600510276854038,-0.998155415058136,0.00892210192978382,-0.145649552345276,-0.989275872707367,-0.0109328301623464,0.0586931370198727,-0.997755944728851,0.0322237424552441,-0.0434612296521664,-0.991920650005341,0.119182482361794,-0.0589213259518147,-0.898704946041107,0.434577405452728,-0.27607199549675,-0.82085782289505,0.499976694583893,-0.625932097434998,-0.771817207336426,-0.111835412681103,-0.186140969395638,-0.939671277999878,0.287000566720963,0.456208109855652,-0.886237859725952,0.0803520232439041,
- -0.22316874563694,-0.964541912078857,0.140906274318695,-0.2370485663414,-0.934119999408722,0.266885310411453,0.521568953990936,-0.830214440822601,0.196748033165932,-0.360298693180084,-0.920767068862915,0.149575188755989,-0.317980885505676,-0.915734648704529,-0.245597422122955,-0.454037815332413,-0.879851996898651,-0.140392974019051,-0.423247933387756,-0.880800187587738,-0.212254881858826,-0.914642095565796,0.143044874072075,-0.378111153841019,-0.752470314502716,-0.145163774490356,-0.64242959022522,-0.669839978218079,-0.737094700336456,-0.0894760265946388,-0.78499037027359,-0.619478046894073,0.0060810106806457,-0.401015430688858,-0.915865659713745,-0.0194046776741743,-0.391603797674179,-0.919760048389435,-0.0262252893298864,-0.424361228942871,-0.899613499641418,-0.103020466864109,-0.398976624011993,-0.913963913917542,0.0740780532360077,0.453942239284515,-0.786892116069794,-0.418015897274017,-0.124986805021763,-0.984399616718292,0.123837031424046,-0.0399624444544315,-0.965909957885742,0.2557752430439,-0.435087382793427,-0.887332379817963,-0.152775228023529,-0.145649552345276,-0.989275872707367,-0.0109328301623464,-0.0600510276854038,-0.998155415058136,0.00892210192978382,-0.0794133543968201,-0.993675589561462,-0.0793875008821487,-0.71842348575592,-0.673455357551575,0.174142777919769,-0.506985604763031,-0.801964044570923,0.315941780805588,-0.0696665644645691,-0.993726968765259,-0.0874838009476662,-0.415854066610336,-0.90314108133316,-0.106778249144554,0.400638461112976,-0.913867950439453,-0.0658344402909279,-0.030371306464076,-0.967664837837219,-0.250404685735703,-0.0434612296521664,-0.991920650005341,0.119182482361794,0.419721782207489,-0.90496951341629,-0.0697403028607368,-0.71842348575592,-0.673455357551575,0.174142777919769,-0.435087382793427,-0.887332379817963,-0.152775228023529,-0.27607199549675,-0.82085782289505,0.499976694583893,-0.625932097434998,-0.771817207336426,-0.111835412681103,-0.27607199549675,-0.82085782289505,0.499976694583893,-0.435087382793427,-0.887332379817963,-0.152775228023529,0.566603243350983,-0.774008691310883,-0.282615453004837,
- 0.456208109855652,-0.886237859725952,0.0803520232439041,-0.360298693180084,-0.920767068862915,0.149575188755989,0.521568953990936,-0.830214440822601,0.196748033165932,-0.317980885505676,-0.915734648704529,-0.245597422122955,-0.360298693180084,-0.920767068862915,0.149575188755989,0.456208109855652,-0.886237859725952,0.0803520232439041,-0.0399624444544315,-0.965909957885742,0.2557752430439,0.455990970134735,-0.760778307914734,-0.461831778287888,0.453942239284515,-0.786892116069794,-0.418015897274017,0.580551862716675,-0.781547427177429,-0.228348419070244,0.455990970134735,-0.760778307914734,-0.461831778287888,-0.0399624444544315,-0.965909957885742,0.2557752430439,0.140118077397347,-0.989938795566559,0.0197007190436125,-0.246294438838959,0.418776631355286,0.874051153659821,-0.671304821968079,0.722010135650635,-0.167484924197197,-0.428918838500977,-0.903229773044586,-0.0143046546727419,0.222073510289192,-0.965019762516022,0.139356210827827,-0.398976624011993,-0.913963913917542,0.0740780532360077,0.455990970134735,-0.760778307914734,-0.461831778287888,0.580551862716675,-0.781547427177429,-0.228348419070244,-0.398976624011993,-0.913963913917542,0.0740780532360077,-0.424361228942871,-0.899613499641418,-0.103020466864109,0.453942239284515,-0.786892116069794,-0.418015897274017,-0.446707785129547,0.873314380645752,-0.194355741143227,-0.996442198753357,0.0789312124252319,0.0295442510396242,-0.166912719607353,-0.767447054386139,-0.619003355503082,-0.669839978218079,-0.737094700336456,-0.0894760265946388,0.0497456640005112,-0.92621248960495,-0.373705565929413,-0.401015430688858,-0.915865659713745,-0.0194046776741743,-0.0961814597249031,-0.991151750087738,0.0914728567004204,-0.579703092575073,-0.812429964542389,-0.0624643862247467,-0.625932097434998,-0.771817207336426,-0.111835412681103,-0.0794133543968201,-0.993675589561462,-0.0793875008821487,-0.628128528594971,-0.769323825836182,0.116599835455418,-0.0370409078896046,-0.998335123062134,-0.0442141816020012,-0.0696665644645691,-0.993726968765259,-0.0874838009476662,-0.506985604763031,-0.801964044570923,0.315941780805588,
- -0.579703092575073,-0.812429964542389,-0.0624643862247467,-0.193264991044998,-0.980885624885559,0.0226288679987192,-0.186140969395638,-0.939671277999878,0.287000566720963,-0.625932097434998,-0.771817207336426,-0.111835412681103,-0.193264991044998,-0.980885624885559,0.0226288679987192,-0.2370485663414,-0.934119999408722,0.266885310411453,-0.22316874563694,-0.964541912078857,0.140906274318695,-0.208734795451164,-0.977193176746368,0.039028987288475,-0.186140969395638,-0.939671277999878,0.287000566720963,-0.0370409078896046,-0.998335123062134,-0.0442141816020012,-0.149078711867332,-0.979300916194916,0.136913031339645,-0.169618025422096,-0.979202568531036,-0.111319191753864,-0.0696665644645691,-0.993726968765259,-0.0874838009476662,-0.686346530914307,0.727274656295776,-4.30108542559537e-007,-0.665757596492767,0.746101379394531,-0.00997953861951828,-0.690133512020111,0.723648369312286,-0.00697583425790071,-0.672571957111359,0.740031719207764,-1.27917146528489e-005,-0.690133512020111,0.723648369312286,-0.00697583425790071,-0.665757596492767,0.746101379394531,-0.00997953861951828,-0.669153332710266,0.743057608604431,-0.00997154787182808,-0.932640016078949,-0.352987617254257,-0.0747143775224686,-0.979981958866119,-0.198970288038254,-0.00679901940748096,-0.901651322841644,-0.428761124610901,-0.0564693994820118,-0.860497832298279,-0.508279263973236,-0.0345780290663242,-0.643981277942657,-0.76485151052475,-0.0170399751514196,-0.904855668544769,-0.422330319881439,-0.0536049976944923,-0.901651322841644,-0.428761124610901,-0.0564693994820118,-0.979981958866119,-0.198970288038254,-0.00679901940748096,-0.997278392314911,-0.00598572893068194,-0.0734844654798508,-0.860344290733337,-0.490812093019485,-0.137517780065537,-0.687460064888,0.719425559043884,0.0991240367293358,-0.574371218681335,0.60565584897995,0.550707519054413,-0.526672303676605,-0.849776864051819,0.0222620945423841,-0.867380142211914,-0.497128993272781,-0.022681238129735,-0.738531768321991,-0.582588315010071,-0.33935472369194,-0.932726263999939,-0.290005385875702,-0.214286461472511,
- -0.563226759433746,0.624349534511566,0.541260778903961,-0.871269524097443,-0.466967940330505,0.151097178459167,-0.933286845684052,-0.356092602014542,0.0466236732900143,-0.867380142211914,-0.497128993272781,-0.022681238129735,-0.871342897415161,-0.483145743608475,0.0856263861060143,-0.620421946048737,-0.761161923408508,0.188968777656555,-0.738531768321991,-0.582588315010071,-0.33935472369194,-0.933286845684052,-0.356092602014542,0.0466236732900143,-0.871269524097443,-0.466967940330505,0.151097178459167,-0.871342897415161,-0.483145743608475,0.0856263861060143,-0.867380142211914,-0.497128993272781,-0.022681238129735,-0.643981277942657,-0.76485151052475,-0.0170399751514196,-0.652533650398254,-0.662271022796631,-0.368234872817993,-0.982727587223053,0.0542665347456932,-0.176923185586929,-0.904855668544769,-0.422330319881439,-0.0536049976944923,-0.158296793699265,-0.0805247873067856,-0.984102547168732,-0.323269218206406,-0.168811172246933,-0.931128323078156,-0.98327648639679,-0.152434051036835,-0.0996558293700218,-0.758156895637512,-0.648997604846954,-0.0632468238472939,-0.643981277942657,-0.76485151052475,-0.0170399751514196,-0.738531768321991,-0.582588315010071,-0.33935472369194,-0.620421946048737,-0.761161923408508,0.188968777656555,-0.652533650398254,-0.662271022796631,-0.368234872817993,-0.933286845684052,-0.356092602014542,0.0466236732900143,-0.997278392314911,-0.00598572893068194,-0.0734844654798508,-0.574371218681335,0.60565584897995,0.550707519054413,-0.563226759433746,0.624349534511566,0.541260778903961,-0.758156895637512,-0.648997604846954,-0.0632468238472939,-0.0528252571821213,-0.324683576822281,-0.944346308708191,-0.158296793699265,-0.0805247873067856,-0.984102547168732,-0.526672303676605,-0.849776864051819,0.0222620945423841,-0.700895488262177,-0.701468050479889,0.129182502627373,-0.860344290733337,-0.490812093019485,-0.137517780065537,-0.997278392314911,-0.00598572893068194,-0.0734844654798508,-0.0786867141723633,-0.0802639350295067,-0.993662893772125,-0.318502157926559,0.169356510043144,-0.932670772075653,
- -0.98327648639679,-0.152434051036835,-0.0996558293700218,-0.323269218206406,-0.168811172246933,-0.931128323078156,-0.700895488262177,-0.701468050479889,0.129182502627373,-0.505488514900208,-0.756996512413025,-0.414050251245499,-0.389151126146317,-0.915450692176819,-0.102525278925896,-0.727216839790344,-0.686162352561951,-0.0183570273220539,-0.505488514900208,-0.756996512413025,-0.414050251245499,-0.932640016078949,-0.352987617254257,-0.0747143775224686,-0.927463233470917,-0.371055632829666,0.0461482033133507,-0.389151126146317,-0.915450692176819,-0.102525278925896,-0.979981958866119,-0.198970288038254,-0.00679901940748096,-0.932640016078949,-0.352987617254257,-0.0747143775224686,-0.505488514900208,-0.756996512413025,-0.414050251245499,-0.932726263999939,-0.290005385875702,-0.214286461472511,-0.526672303676605,-0.849776864051819,0.0222620945423841,-0.932726263999939,-0.290005385875702,-0.214286461472511,-0.505488514900208,-0.756996512413025,-0.414050251245499,-0.700895488262177,-0.701468050479889,0.129182502627373,-0.933286845684052,-0.356092602014542,0.0466236732900143,-0.867380142211914,-0.497128993272781,-0.022681238129735,-0.526672303676605,-0.849776864051819,0.0222620945423841,-0.997278392314911,-0.00598572893068194,-0.0734844654798508,-0.932726263999939,-0.290005385875702,-0.214286461472511,-0.738531768321991,-0.582588315010071,-0.33935472369194,-0.979981958866119,-0.198970288038254,-0.00679901940748096,-0.979981958866119,-0.198970288038254,-0.00679901940748096,-0.738531768321991,-0.582588315010071,-0.33935472369194,-0.643981277942657,-0.76485151052475,-0.0170399751514196,-0.850550353527069,-0.523044645786285,-0.0546660907566547,-0.678147673606873,0.718589186668396,-0.15409517288208,-0.687460064888,0.719425559043884,0.0991240367293358,-0.860344290733337,-0.490812093019485,-0.137517780065537,-0.932640016078949,-0.352987617254257,-0.0747143775224686,-0.860497832298279,-0.508279263973236,-0.0345780290663242,-0.845893681049347,-0.533320248126984,0.00578919611871243,-0.927463233470917,-0.371055632829666,0.0461482033133507,
- -0.727216839790344,-0.686162352561951,-0.0183570273220539,-0.850550353527069,-0.523044645786285,-0.0546660907566547,-0.860344290733337,-0.490812093019485,-0.137517780065537,-0.700895488262177,-0.701468050479889,0.129182502627373,-0.0786867141723633,-0.0802639350295067,-0.993662893772125,0.000411306013120338,-0.00677389046177268,-0.999977052211761,-0.00274358154274523,-0.00173040828667581,-0.999994695186615,-0.318502157926559,0.169356510043144,-0.932670772075653,-0.624101340770721,0.7813321352005,-0.00418504793196917,-0.64912748336792,0.760666966438293,-0.00439980952069163,-0.648713946342468,0.760974109172821,-0.00941480230540037,-0.625739216804504,0.780029118061066,-0.00224481057375669,-0.823103785514832,-0.483529657125473,0.297824412584305,-0.427957981824875,-0.872023224830627,-0.237544611096382,-0.373247474431992,-0.911905407905579,0.170630395412445,-0.933606445789337,-0.199011832475662,-0.297948569059372,0.0756773203611374,-0.9949911236763,0.0653118044137955,0.340998530387878,-0.940041542053223,0.00647673429921269,-0.491639614105225,-0.870798766613007,-0.000182984513230622,-0.256272375583649,-0.964934647083282,-0.0567944645881653,-0.903470098972321,-0.428649097681046,0.00132748414762318,-0.777268648147583,-0.627502202987671,-0.0457634218037128,-0.0612931549549103,-0.99009758234024,0.126292511820793,-0.207835614681244,-0.978151381015778,-0.00491236057132483,0.0756773203611374,-0.9949911236763,0.0653118044137955,-0.064185693860054,-0.9948850274086,0.0780005678534508,-0.678304314613342,-0.73477977514267,0.00136804801877588,-0.371312171220779,-0.683874070644379,0.628047347068787,-0.162839829921722,-0.950205504894257,-0.265692919492722,-0.858573853969574,-0.441738933324814,0.260225981473923,-0.903470098972321,-0.428649097681046,0.00132748414762318,-0.207835614681244,-0.978151381015778,-0.00491236057132483,-0.639347910881042,-0.766602098941803,0.059627715498209,0.501806139945984,-0.643612861633301,-0.577886819839478,0.62328827381134,-0.776973068714142,0.0884575173258781,-0.653766989707947,-0.752808928489685,0.0765983164310455,
- -0.0612931549549103,-0.99009758234024,0.126292511820793,-0.777268648147583,-0.627502202987671,-0.0457634218037128,-0.639347910881042,-0.766602098941803,0.059627715498209,-0.657061040401459,-0.750882804393768,0.0666763931512833,-0.55624395608902,-0.819147527217865,0.139964237809181,-0.256272375583649,-0.964934647083282,-0.0567944645881653,-0.491639614105225,-0.870798766613007,-0.000182984513230622,-0.274991482496262,-0.922692596912384,0.27021861076355,-0.375798970460892,-0.919486820697784,0.115408547222614,-0.534013986587524,-0.84308272600174,0.0635666847229004,-0.529070973396301,-0.848487854003906,-0.0123403072357178,-0.591608345508575,-0.80558443069458,-0.0321449525654316,-0.623132050037384,-0.776195466518402,-0.0960574448108673,-0.291781276464462,-0.953472256660461,-0.0758567824959755,-0.427957981824875,-0.872023224830627,-0.237544611096382,-0.370946407318115,-0.928595781326294,-0.0104194423183799,-0.623132050037384,-0.776195466518402,-0.0960574448108673,-0.591608345508575,-0.80558443069458,-0.0321449525654316,-0.0945533886551857,-0.995203495025635,0.0250921510159969,-0.860661268234253,-0.475827068090439,0.181247934699059,-0.5121049284935,-0.713937997817993,0.477536410093308,-0.289271861314774,-0.866905152797699,0.405952215194702,-0.442108958959579,-0.895020544528961,0.058973491191864,-0.370946407318115,-0.928595781326294,-0.0104194423183799,-0.657797634601593,-0.740546226501465,-0.137453749775887,-0.623132050037384,-0.776195466518402,-0.0960574448108673,-0.657797634601593,-0.740546226501465,-0.137453749775887,-0.738331913948059,-0.64804071187973,-0.186839789152145,-0.648022174835205,-0.755818605422974,-0.0938376635313034,-0.289271861314774,-0.866905152797699,0.405952215194702,-0.0251824520528317,-0.862261891365051,0.505836308002472,-0.216321244835854,-0.976321756839752,-0.000971044937614352,-0.118294984102249,-0.992854654788971,0.0156808234751225,-0.274991482496262,-0.922692596912384,0.27021861076355,-0.529070973396301,-0.848487854003906,-0.0123403072357178,-0.442108958959579,-0.895020544528961,0.058973491191864,
- -0.216321244835854,-0.976321756839752,-0.000971044937614352,-0.815832793712616,-0.578101456165314,-0.0146879022940993,-0.118294984102249,-0.992854654788971,0.0156808234751225,-0.442108958959579,-0.895020544528961,0.058973491191864,-0.300522565841675,-0.952730715274811,-0.0446120090782642,-0.840575218200684,-0.439931035041809,0.316060245037079,-0.815832793712616,-0.578101456165314,-0.0146879022940993,-0.216321244835854,-0.976321756839752,-0.000971044937614352,-0.0612931549549103,-0.99009758234024,0.126292511820793,0.311851978302002,-0.91109561920166,-0.269542247056961,-0.207835614681244,-0.978151381015778,-0.00491236057132483,-0.442108958959579,-0.895020544528961,0.058973491191864,-0.529070973396301,-0.848487854003906,-0.0123403072357178,-0.642565369606018,-0.636235058307648,0.426983296871185,-0.860661268234253,-0.475827068090439,0.181247934699059,-0.118294984102249,-0.992854654788971,0.0156808234751225,-0.815832793712616,-0.578101456165314,-0.0146879022940993,0.311851978302002,-0.91109561920166,-0.269542247056961,0.342052966356277,-0.91228187084198,-0.225258871912956,-0.300410449504852,0.916165411472321,-0.265319913625717,0.311851978302002,-0.91109561920166,-0.269542247056961,-0.815832793712616,-0.578101456165314,-0.0146879022940993,-0.591608345508575,-0.80558443069458,-0.0321449525654316,-0.427957981824875,-0.872023224830627,-0.237544611096382,-0.823103785514832,-0.483529657125473,0.297824412584305,-0.35127118229866,-0.817703366279602,0.456037014722824,0.825716614723206,0.202927246689796,0.526319801807404,0.946479380130768,0.201756119728088,0.251935124397278,0.360086560249329,-0.93232786655426,0.033202551305294,-0.0499901957809925,-0.995527863502502,-0.0801576897501946,-0.0251824520528317,-0.862261891365051,0.505836308002472,-0.300522565841675,-0.952730715274811,-0.0446120090782642,-0.216321244835854,-0.976321756839752,-0.000971044937614352,-0.442108958959579,-0.895020544528961,0.058973491191864,-0.289271861314774,-0.866905152797699,0.405952215194702,-0.216321244835854,-0.976321756839752,-0.000971044937614352,0.311851978302002,-0.91109561920166,-0.269542247056961,
- -0.162839829921722,-0.950205504894257,-0.265692919492722,-0.207835614681244,-0.978151381015778,-0.00491236057132483,-0.355306267738342,-0.933250308036804,0.0529273822903633,0.30806228518486,-0.426416993141174,-0.850450575351715,-0.55624395608902,-0.819147527217865,0.139964237809181,0.311851978302002,-0.91109561920166,-0.269542247056961,-0.0612931549549103,-0.99009758234024,0.126292511820793,0.342052966356277,-0.91228187084198,-0.225258871912956,0.340998530387878,-0.940041542053223,0.00647673429921269,0.0756773203611374,-0.9949911236763,0.0653118044137955,-0.371312171220779,-0.683874070644379,0.628047347068787,0.429476767778397,-0.562733769416809,0.706314623355865,-0.529070973396301,-0.848487854003906,-0.0123403072357178,-0.534013986587524,-0.84308272600174,0.0635666847229004,-0.811565816402435,-0.560700118541718,0.164244532585144,-0.642565369606018,-0.636235058307648,0.426983296871185,-0.860661268234253,-0.475827068090439,0.181247934699059,-0.623132050037384,-0.776195466518402,-0.0960574448108673,-0.657797634601593,-0.740546226501465,-0.137453749775887,-0.777268648147583,-0.627502202987671,-0.0457634218037128,-0.209426194429398,-0.092907503247261,-0.9734006524086,0.501806139945984,-0.643612861633301,-0.577886819839478,-0.591608345508575,-0.80558443069458,-0.0321449525654316,-0.35127118229866,-0.817703366279602,0.456037014722824,-0.55624395608902,-0.819147527217865,0.139964237809181,-0.0945533886551857,-0.995203495025635,0.0250921510159969,-0.457493156194687,0.478295415639877,-0.749622285366058,-0.903470098972321,-0.428649097681046,0.00132748414762318,-0.858573853969574,-0.441738933324814,0.260225981473923,-0.0503505915403366,-0.998038649559021,0.0371978916227818,-0.355306267738342,-0.933250308036804,0.0529273822903633,-0.491639614105225,-0.870798766613007,-0.000182984513230622,0.340998530387878,-0.940041542053223,0.00647673429921269,0.429476767778397,-0.562733769416809,0.706314623355865,-0.0503505915403366,-0.998038649559021,0.0371978916227818,0.340998530387878,-0.940041542053223,0.00647673429921269,-0.55624395608902,-0.819147527217865,0.139964237809181,
- 0.30806228518486,-0.426416993141174,-0.850450575351715,-0.195024192333221,-0.963062107563019,0.185679599642754,-0.0945533886551857,-0.995203495025635,0.0250921510159969,-0.430908352136612,-0.897059142589569,-0.0979943722486496,-0.370946407318115,-0.928595781326294,-0.0104194423183799,-0.0945533886551857,-0.995203495025635,0.0250921510159969,-0.195024192333221,-0.963062107563019,0.185679599642754,-0.289271861314774,-0.866905152797699,0.405952215194702,-0.5121049284935,-0.713937997817993,0.477536410093308,-0.648022174835205,-0.755818605422974,-0.0938376635313034,-0.0251824520528317,-0.862261891365051,0.505836308002472,-0.64912748336792,0.760666966438293,-0.00439980952069163,-0.624101340770721,0.7813321352005,-0.00418504793196917,-0.626584947109222,0.779350578784943,0.0020515313372016,-0.457493156194687,0.478295415639877,-0.749622285366058,-0.209426194429398,-0.092907503247261,-0.9734006524086,-0.777268648147583,-0.627502202987671,-0.0457634218037128,-0.903470098972321,-0.428649097681046,0.00132748414762318,-0.639347910881042,-0.766602098941803,0.059627715498209,-0.653766989707947,-0.752808928489685,0.0765983164310455,-0.676823318004608,-0.729781866073608,-0.0965844467282295,-0.657061040401459,-0.750882804393768,0.0666763931512833,0.237441584467888,-0.859901785850525,-0.451874375343323,-0.375798970460892,-0.919486820697784,0.115408547222614,-0.274991482496262,-0.922692596912384,0.27021861076355,-0.657797634601593,-0.740546226501465,-0.137453749775887,-0.370946407318115,-0.928595781326294,-0.0104194423183799,-0.430908352136612,-0.897059142589569,-0.0979943722486496,-0.738331913948059,-0.64804071187973,-0.186839789152145,-0.860661268234253,-0.475827068090439,0.181247934699059,-0.642565369606018,-0.636235058307648,0.426983296871185,-0.291781276464462,-0.953472256660461,-0.0758567824959755,-0.623132050037384,-0.776195466518402,-0.0960574448108673,-0.35127118229866,-0.817703366279602,0.456037014722824,-0.256272375583649,-0.964934647083282,-0.0567944645881653,-0.55624395608902,-0.819147527217865,0.139964237809181,-0.823103785514832,-0.483529657125473,0.297824412584305,
- -0.0499901957809925,-0.995527863502502,-0.0801576897501946,-0.256272375583649,-0.964934647083282,-0.0567944645881653,-0.35127118229866,-0.817703366279602,0.456037014722824,-0.355306267738342,-0.933250308036804,0.0529273822903633,-0.55624395608902,-0.819147527217865,0.139964237809181,-0.491639614105225,-0.870798766613007,-0.000182984513230622,-0.256272375583649,-0.964934647083282,-0.0567944645881653,-0.0499901957809925,-0.995527863502502,-0.0801576897501946,-0.064185693860054,-0.9948850274086,0.0780005678534508,0.0756773203611374,-0.9949911236763,0.0653118044137955,-0.860661268234253,-0.475827068090439,0.181247934699059,-0.657797634601593,-0.740546226501465,-0.137453749775887,-0.5121049284935,-0.713937997817993,0.477536410093308,-0.648022174835205,-0.755818605422974,-0.0938376635313034,-0.5121049284935,-0.713937997817993,0.477536410093308,-0.657797634601593,-0.740546226501465,-0.137453749775887,0.311851978302002,-0.91109561920166,-0.269542247056961,-0.300410449504852,0.916165411472321,-0.265319913625717,-0.162839829921722,-0.950205504894257,-0.265692919492722,-0.274991482496262,-0.922692596912384,0.27021861076355,0.255675047636032,-0.866257131099701,-0.429218918085098,0.237441584467888,-0.859901785850525,-0.451874375343323,0.342052966356277,-0.91228187084198,-0.225258871912956,0.255675047636032,-0.866257131099701,-0.429218918085098,-0.274991482496262,-0.922692596912384,0.27021861076355,-0.118294984102249,-0.992854654788971,0.0156808234751225,-0.178474128246307,0.646349847316742,0.741875231266022,-0.47843399643898,0.851866841316223,-0.213128581643105,-0.696306765079498,-0.714569389820099,-0.067435197532177,-0.0612931549549103,-0.99009758234024,0.126292511820793,-0.657061040401459,-0.750882804393768,0.0666763931512833,0.255675047636032,-0.866257131099701,-0.429218918085098,0.342052966356277,-0.91228187084198,-0.225258871912956,-0.657061040401459,-0.750882804393768,0.0666763931512833,-0.676823318004608,-0.729781866073608,-0.0965844467282295,0.237441584467888,-0.859901785850525,-0.451874375343323,-0.300410449504852,0.916165411472321,-0.265319913625717,
- -0.815832793712616,-0.578101456165314,-0.0146879022940993,-0.840575218200684,-0.439931035041809,0.316060245037079,-0.777268648147583,-0.627502202987671,-0.0457634218037128,0.501806139945984,-0.643612861633301,-0.577886819839478,-0.639347910881042,-0.766602098941803,0.059627715498209,-0.064185693860054,-0.9948850274086,0.0780005678534508,-0.0971022397279739,-0.993529558181763,-0.058908361941576,-0.638212263584137,-0.719095230102539,-0.274931281805038,-0.678304314613342,-0.73477977514267,0.00136804801877588,-0.933606445789337,-0.199011832475662,-0.297948569059372,-0.0493184067308903,-0.98701810836792,-0.152849495410919,0.334826529026031,-0.87758731842041,-0.34312042593956,-0.811565816402435,-0.560700118541718,0.164244532585144,-0.261091887950897,-0.964515328407288,-0.0392571501433849,-0.291781276464462,-0.953472256660461,-0.0758567824959755,-0.642565369606018,-0.636235058307648,0.426983296871185,-0.261091887950897,-0.964515328407288,-0.0392571501433849,-0.373247474431992,-0.911905407905579,0.170630395412445,-0.427957981824875,-0.872023224830627,-0.237544611096382,-0.291781276464462,-0.953472256660461,-0.0758567824959755,-0.0493184067308903,-0.98701810836792,-0.152849495410919,-0.0971022397279739,-0.993529558181763,-0.058908361941576,-0.064185693860054,-0.9948850274086,0.0780005678534508,-0.0499901957809925,-0.995527863502502,-0.0801576897501946,-0.0493184067308903,-0.98701810836792,-0.152849495410919,-0.0499901957809925,-0.995527863502502,-0.0801576897501946,0.334826529026031,-0.87758731842041,-0.34312042593956,-0.686346530914307,0.727274656295776,-5.47000297501654e-007,-0.690136551856995,0.723645508289337,0.00697592878714204,-0.665757596492767,0.746101379394531,0.00997960846871138,-0.665757596492767,0.746101379394531,0.00997960846871138,-0.690136551856995,0.723645508289337,0.00697592878714204,-0.672568500041962,0.740034878253937,1.24999114632374e-005,-0.669148743152618,0.743061721324921,0.00997158233076334,-0.932642459869385,-0.352981358766556,0.0747128576040268,-0.860499501228333,-0.508276283740997,0.034581333398819,
- -0.901651203632355,-0.428761184215546,0.0564717836678028,-0.980007112026215,-0.198845371603966,0.00682020792737603,-0.643989205360413,-0.764844715595245,0.0170416850596666,-0.980007112026215,-0.198845371603966,0.00682020792737603,-0.901651203632355,-0.428761184215546,0.0564717836678028,-0.904855847358704,-0.422329872846603,0.0536052212119102,-0.997278451919556,-0.00601406395435333,0.0734810307621956,-0.574360191822052,0.605638265609741,-0.550738275051117,-0.687463045120239,0.71942275762558,-0.0991231501102448,-0.860343337059021,-0.490824699401855,0.1374791264534,-0.73856508731842,-0.582554399967194,0.339340686798096,-0.867409884929657,-0.497077256441116,0.0226790923625231,-0.526655077934265,-0.849787414073944,-0.0222641732543707,-0.932740747928619,-0.289963781833649,0.214279800653458,-0.563175857067108,0.624291837215424,-0.541380405426025,-0.933269441127777,-0.356138437986374,-0.046621810644865,-0.871263861656189,-0.466993510723114,-0.151050895452499,-0.620559871196747,-0.761048018932343,-0.188974320888519,-0.87136709690094,-0.483092725276947,-0.0856781601905823,-0.867409884929657,-0.497077256441116,0.0226790923625231,-0.73856508731842,-0.582554399967194,0.339340686798096,-0.87136709690094,-0.483092725276947,-0.0856781601905823,-0.871263861656189,-0.466993510723114,-0.151050895452499,-0.933269441127777,-0.356138437986374,-0.046621810644865,-0.867409884929657,-0.497077256441116,0.0226790923625231,-0.982726335525513,0.0542920269072056,0.176922053098679,-0.652544021606445,-0.662270605564117,0.368217170238495,-0.643989205360413,-0.764844715595245,0.0170416850596666,-0.904855847358704,-0.422329872846603,0.0536052212119102,0.986618936061859,0.126202046871185,-0.10322879999876,0.326402813196182,0.157885819673538,-0.931951344013214,0.159334316849709,0.0794936269521713,-0.984018921852112,0.799075722694397,0.598094582557678,-0.0613252632319927,-0.620559871196747,-0.761048018932343,-0.188974320888519,-0.73856508731842,-0.582554399967194,0.339340686798096,-0.643989205360413,-0.764844715595245,0.0170416850596666,-0.652544021606445,-0.662270605564117,0.368217170238495,
- -0.574360191822052,0.605638265609741,-0.550738275051117,-0.997278451919556,-0.00601406395435333,0.0734810307621956,-0.933269441127777,-0.356138437986374,-0.046621810644865,-0.563175857067108,0.624291837215424,-0.541380405426025,0.799075722694397,0.598094582557678,-0.0613252632319927,0.159334316849709,0.0794936269521713,-0.984018921852112,0.0777868404984474,0.321488440036774,-0.943713068962097,-0.526655077934265,-0.849787414073944,-0.0222641732543707,-0.997278451919556,-0.00601406395435333,0.0734810307621956,-0.860343337059021,-0.490824699401855,0.1374791264534,-0.700874269008636,-0.701479732990265,-0.129233986139297,0.0796509236097336,0.0674462392926216,-0.994538545608521,0.326402813196182,0.157885819673538,-0.931951344013214,0.986618936061859,0.126202046871185,-0.10322879999876,0.313181906938553,-0.173019513487816,-0.933799386024475,-0.389151006937027,-0.91544896364212,0.102541364729404,-0.505402505397797,-0.757024109363556,0.414104759693146,-0.700874269008636,-0.701479732990265,-0.129233986139297,-0.727216780185699,-0.686162173748016,0.0183625463396311,-0.927463233470917,-0.371055603027344,-0.0461487509310246,-0.932642459869385,-0.352981358766556,0.0747128576040268,-0.505402505397797,-0.757024109363556,0.414104759693146,-0.389151006937027,-0.91544896364212,0.102541364729404,-0.980007112026215,-0.198845371603966,0.00682020792737603,-0.932740747928619,-0.289963781833649,0.214279800653458,-0.505402505397797,-0.757024109363556,0.414104759693146,-0.932642459869385,-0.352981358766556,0.0747128576040268,-0.505402505397797,-0.757024109363556,0.414104759693146,-0.932740747928619,-0.289963781833649,0.214279800653458,-0.526655077934265,-0.849787414073944,-0.0222641732543707,-0.700874269008636,-0.701479732990265,-0.129233986139297,-0.526655077934265,-0.849787414073944,-0.0222641732543707,-0.867409884929657,-0.497077256441116,0.0226790923625231,-0.933269441127777,-0.356138437986374,-0.046621810644865,-0.997278451919556,-0.00601406395435333,0.0734810307621956,-0.932740747928619,-0.289963781833649,0.214279800653458,-0.980007112026215,-0.198845371603966,0.00682020792737603,
- -0.73856508731842,-0.582554399967194,0.339340686798096,-0.73856508731842,-0.582554399967194,0.339340686798096,-0.980007112026215,-0.198845371603966,0.00682020792737603,-0.643989205360413,-0.764844715595245,0.0170416850596666,-0.850549936294556,-0.523044466972351,0.0546738728880882,-0.860343337059021,-0.490824699401855,0.1374791264534,-0.687463045120239,0.71942275762558,-0.0991231501102448,-0.678148984909058,0.718585908412933,0.154104694724083,-0.845893681049347,-0.533320248126984,-0.00578902661800385,-0.860499501228333,-0.508276283740997,0.034581333398819,-0.932642459869385,-0.352981358766556,0.0747128576040268,-0.927463233470917,-0.371055603027344,-0.0461487509310246,-0.727216780185699,-0.686162173748016,0.0183625463396311,-0.700874269008636,-0.701479732990265,-0.129233986139297,-0.860343337059021,-0.490824699401855,0.1374791264534,-0.850549936294556,-0.523044466972351,0.0546738728880882,-0.00274358154274523,-0.00173040828667581,-0.999994695186615,0.000411306013120338,-0.00677389046177268,-0.999977052211761,0.0796509236097336,0.0674462392926216,-0.994538545608521,0.313181906938553,-0.173019513487816,-0.933799386024475,-0.624100148677826,0.781333088874817,0.00418494641780853,-0.625739216804504,0.780029118061066,0.00224473676644266,-0.648713946342468,0.760974109172821,0.00941477902233601,-0.64912623167038,0.760668039321899,0.004399708006531,-0.862927734851837,-0.466529130935669,-0.194181084632874,-0.933607757091522,-0.199013710021973,0.297943025827408,-0.373246282339096,-0.911906540393829,-0.170626819133759,-0.427948355674744,-0.872033953666687,0.237522765994072,0.0757454559206963,-0.994985044002533,-0.0653268843889236,-0.256283432245255,-0.964931666851044,0.0567956492304802,-0.491596013307571,-0.870823383331299,0.000187068872037344,0.340919941663742,-0.940069973468781,-0.00648031057789922,-0.903466045856476,-0.428657442331314,-0.00132142729125917,-0.207828938961029,-0.978152811527252,0.00491057522594929,-0.061298418790102,-0.990097641944885,-0.126290321350098,-0.777268946170807,-0.627501904964447,0.0457624308764935,
- 0.0757454559206963,-0.994985044002533,-0.0653268843889236,-0.371200948953629,-0.683938562870026,-0.628042757511139,-0.678308546543121,-0.73477578163147,-0.00136322190519422,-0.0641942322254181,-0.994884848594666,-0.077995166182518,-0.162860453128815,-0.950200140476227,0.265699118375778,-0.207828938961029,-0.978152811527252,0.00491057522594929,-0.903466045856476,-0.428657442331314,-0.00132142729125917,-0.858572244644165,-0.441741287708282,-0.26022744178772,-0.639348149299622,-0.766601860523224,-0.0596288219094276,-0.653766989707947,-0.752808928489685,-0.0765983238816261,0.623287737369537,-0.776972949504852,-0.0884624272584915,0.501808166503906,-0.64361447095871,0.577883303165436,-0.061298418790102,-0.990097641944885,-0.126290321350098,-0.657066941261292,-0.750878870487213,-0.0666641741991043,-0.639348149299622,-0.766601860523224,-0.0596288219094276,-0.777268946170807,-0.627501904964447,0.0457624308764935,-0.55630898475647,-0.819106876850128,-0.139943510293961,-0.491596013307571,-0.870823383331299,0.000187068872037344,-0.256283432245255,-0.964931666851044,0.0567956492304802,-0.275003641843796,-0.922692835330963,-0.270205348730087,-0.52908730506897,-0.848477065563202,0.0123836351558566,-0.534013092517853,-0.843082547187805,-0.0635755583643913,-0.375797867774963,-0.91948676109314,-0.115412704646587,-0.591666638851166,-0.805541098117828,0.0321601033210754,-0.427948355674744,-0.872033953666687,0.237522765994072,-0.291783690452576,-0.953471481800079,0.075858011841774,-0.623074054718018,-0.776244044303894,0.0960418730974197,-0.3709457218647,-0.928596138954163,0.0104184001684189,-0.0947055220603943,-0.995188891887665,-0.0251002013683319,-0.591666638851166,-0.805541098117828,0.0321601033210754,-0.623074054718018,-0.776244044303894,0.0960418730974197,-0.860718429088593,-0.475731998682022,-0.18122598528862,-0.442237943410873,-0.894958794116974,-0.0589438453316689,-0.289233952760696,-0.866909742355347,-0.405969560146332,-0.512083292007446,-0.713945925235748,-0.477547764778137,-0.3709457218647,-0.928596138954163,0.0104184001684189,
- -0.623074054718018,-0.776244044303894,0.0960418730974197,-0.657742023468018,-0.740592420101166,0.137470975518227,-0.657742023468018,-0.740592420101166,0.137470975518227,-0.647993087768555,-0.755845844745636,0.093819297850132,-0.73831844329834,-0.64804607629776,0.186874344944954,-0.289233952760696,-0.866909742355347,-0.405969560146332,-0.216343730688095,-0.976316809654236,0.000968133099377155,-0.0251789819449186,-0.862239539623261,-0.505874514579773,-0.118230305612087,-0.992862224578857,-0.015691002830863,-0.442237943410873,-0.894958794116974,-0.0589438453316689,-0.52908730506897,-0.848477065563202,0.0123836351558566,-0.275003641843796,-0.922692835330963,-0.270205348730087,-0.216343730688095,-0.976316809654236,0.000968133099377155,-0.442237943410873,-0.894958794116974,-0.0589438453316689,-0.118230305612087,-0.992862224578857,-0.015691002830863,-0.815813720226288,-0.578128218650818,0.0146887823939323,-0.300624758005142,-0.952699303627014,0.0445945598185062,-0.216343730688095,-0.976316809654236,0.000968133099377155,-0.815813720226288,-0.578128218650818,0.0146887823939323,-0.84056282043457,-0.4399354159832,-0.316086828708649,-0.061298418790102,-0.990097641944885,-0.126290321350098,-0.207828938961029,-0.978152811527252,0.00491057522594929,0.311908543109894,-0.911070346832275,0.269562393426895,-0.0971017554402351,-0.993530094623566,0.0588998831808567,-0.0641942322254181,-0.994884848594666,-0.077995166182518,-0.678308546543121,-0.73477578163147,-0.00136322190519422,-0.638210296630859,-0.719093859195709,0.274939298629761,-0.442237943410873,-0.894958794116974,-0.0589438453316689,-0.860718429088593,-0.475731998682022,-0.18122598528862,-0.642693758010864,-0.636260092258453,-0.426752626895905,-0.52908730506897,-0.848477065563202,0.0123836351558566,-0.118230305612087,-0.992862224578857,-0.015691002830863,0.342163771390915,-0.91224730014801,0.225230619311333,0.311908543109894,-0.911070346832275,0.269562393426895,-0.815813720226288,-0.578128218650818,0.0146887823939323,-0.300270646810532,0.916215837001801,0.26530396938324,-0.815813720226288,-0.578128218650818,0.0146887823939323,
- 0.311908543109894,-0.911070346832275,0.269562393426895,-0.591666638851166,-0.805541098117828,0.0321601033210754,-0.351214408874512,-0.8177130818367,-0.456063270568848,-0.862927734851837,-0.466529130935669,-0.194181084632874,-0.427948355674744,-0.872033953666687,0.237522765994072,-0.862927734851837,-0.466529130935669,-0.194181084632874,-0.0499976314604282,-0.995528399944305,0.0801464766263962,0.353951305150986,-0.921803534030914,0.158103287220001,0.946476876735687,0.201756924390793,-0.251944214105606,-0.0251789819449186,-0.862239539623261,-0.505874514579773,-0.216343730688095,-0.976316809654236,0.000968133099377155,-0.300624758005142,-0.952699303627014,0.0445945598185062,-0.442237943410873,-0.894958794116974,-0.0589438453316689,-0.216343730688095,-0.976316809654236,0.000968133099377155,-0.289233952760696,-0.866909742355347,-0.405969560146332,0.311908543109894,-0.911070346832275,0.269562393426895,-0.207828938961029,-0.978152811527252,0.00491057522594929,-0.162860453128815,-0.950200140476227,0.265699118375778,-0.355313897132874,-0.93324488401413,-0.0529729872941971,-0.55630898475647,-0.819106876850128,-0.139943510293961,0.308054029941559,-0.426482498645782,0.850420773029327,0.311908543109894,-0.911070346832275,0.269562393426895,0.342163771390915,-0.91224730014801,0.225230619311333,-0.061298418790102,-0.990097641944885,-0.126290321350098,0.340919941663742,-0.940069973468781,-0.00648031057789922,0.429411947727203,-0.562804758548737,-0.70629757642746,-0.371200948953629,-0.683938562870026,-0.628042757511139,0.0757454559206963,-0.994985044002533,-0.0653268843889236,-0.52908730506897,-0.848477065563202,0.0123836351558566,-0.642693758010864,-0.636260092258453,-0.426752626895905,-0.811562240123749,-0.560699462890625,-0.164264842867851,-0.534013092517853,-0.843082547187805,-0.0635755583643913,-0.860718429088593,-0.475731998682022,-0.18122598528862,-0.657742023468018,-0.740592420101166,0.137470975518227,-0.623074054718018,-0.776244044303894,0.0960418730974197,-0.777268946170807,-0.627501904964447,0.0457624308764935,0.501808166503906,-0.64361447095871,0.577883303165436,
- -0.209419369697571,-0.0929069817066193,0.973402202129364,-0.591666638851166,-0.805541098117828,0.0321601033210754,-0.0947055220603943,-0.995188891887665,-0.0251002013683319,-0.55630898475647,-0.819106876850128,-0.139943510293961,-0.351214408874512,-0.8177130818367,-0.456063270568848,-0.457465052604675,0.478274017572403,0.749653041362762,-0.858572244644165,-0.441741287708282,-0.26022744178772,-0.903466045856476,-0.428657442331314,-0.00132142729125917,-0.0502572432160378,-0.998048186302185,-0.037068348377943,0.340919941663742,-0.940069973468781,-0.00648031057789922,-0.491596013307571,-0.870823383331299,0.000187068872037344,-0.355313897132874,-0.93324488401413,-0.0529729872941971,0.429411947727203,-0.562804758548737,-0.70629757642746,0.340919941663742,-0.940069973468781,-0.00648031057789922,-0.0502572432160378,-0.998048186302185,-0.037068348377943,-0.55630898475647,-0.819106876850128,-0.139943510293961,-0.0947055220603943,-0.995188891887665,-0.0251002013683319,-0.195073381066322,-0.963038504123688,-0.185750365257263,0.308054029941559,-0.426482498645782,0.850420773029327,-0.430896788835526,-0.89706027507782,0.09803406894207,-0.195073381066322,-0.963038504123688,-0.185750365257263,-0.0947055220603943,-0.995188891887665,-0.0251002013683319,-0.3709457218647,-0.928596138954163,0.0104184001684189,-0.289233952760696,-0.866909742355347,-0.405969560146332,-0.0251789819449186,-0.862239539623261,-0.505874514579773,-0.647993087768555,-0.755845844745636,0.093819297850132,-0.512083292007446,-0.713945925235748,-0.477547764778137,-0.64912623167038,0.760668039321899,0.004399708006531,-0.626581251621246,0.779353380203247,-0.0020516172517091,-0.624100148677826,0.781333088874817,0.00418494641780853,-0.457465052604675,0.478274017572403,0.749653041362762,-0.903466045856476,-0.428657442331314,-0.00132142729125917,-0.777268946170807,-0.627501904964447,0.0457624308764935,-0.209419369697571,-0.0929069817066193,0.973402202129364,-0.639348149299622,-0.766601860523224,-0.0596288219094276,-0.657066941261292,-0.750878870487213,-0.0666641741991043,
- -0.676823318004608,-0.729781866073608,0.0965844467282295,-0.653766989707947,-0.752808928489685,-0.0765983238816261,0.237442091107368,-0.859902262687683,0.451873123645782,-0.275003641843796,-0.922692835330963,-0.270205348730087,-0.375797867774963,-0.91948676109314,-0.115412704646587,-0.657742023468018,-0.740592420101166,0.137470975518227,-0.73831844329834,-0.64804607629776,0.186874344944954,-0.430896788835526,-0.89706027507782,0.09803406894207,-0.3709457218647,-0.928596138954163,0.0104184001684189,-0.860718429088593,-0.475731998682022,-0.18122598528862,-0.623074054718018,-0.776244044303894,0.0960418730974197,-0.291783690452576,-0.953471481800079,0.075858011841774,-0.642693758010864,-0.636260092258453,-0.426752626895905,-0.351214408874512,-0.8177130818367,-0.456063270568848,-0.55630898475647,-0.819106876850128,-0.139943510293961,-0.256283432245255,-0.964931666851044,0.0567956492304802,-0.862927734851837,-0.466529130935669,-0.194181084632874,-0.351214408874512,-0.8177130818367,-0.456063270568848,-0.256283432245255,-0.964931666851044,0.0567956492304802,-0.0499976314604282,-0.995528399944305,0.0801464766263962,-0.355313897132874,-0.93324488401413,-0.0529729872941971,-0.491596013307571,-0.870823383331299,0.000187068872037344,-0.55630898475647,-0.819106876850128,-0.139943510293961,-0.256283432245255,-0.964931666851044,0.0567956492304802,0.0757454559206963,-0.994985044002533,-0.0653268843889236,-0.0641942322254181,-0.994884848594666,-0.077995166182518,-0.0499976314604282,-0.995528399944305,0.0801464766263962,-0.860718429088593,-0.475731998682022,-0.18122598528862,-0.512083292007446,-0.713945925235748,-0.477547764778137,-0.657742023468018,-0.740592420101166,0.137470975518227,-0.647993087768555,-0.755845844745636,0.093819297850132,-0.657742023468018,-0.740592420101166,0.137470975518227,-0.512083292007446,-0.713945925235748,-0.477547764778137,0.311908543109894,-0.911070346832275,0.269562393426895,-0.162860453128815,-0.950200140476227,0.265699118375778,-0.300270646810532,0.916215837001801,0.26530396938324,-0.275003641843796,-0.922692835330963,-0.270205348730087,
- 0.237442091107368,-0.859902262687683,0.451873123645782,0.255734592676163,-0.866288900375366,0.429119318723679,0.342163771390915,-0.91224730014801,0.225230619311333,-0.118230305612087,-0.992862224578857,-0.015691002830863,-0.275003641843796,-0.922692835330963,-0.270205348730087,0.255734592676163,-0.866288900375366,0.429119318723679,-0.178545370697975,0.646605610847473,-0.741635203361511,-0.696324229240417,-0.71454644203186,0.0674975886940956,-0.478423267602921,0.85190224647522,0.213011145591736,-0.061298418790102,-0.990097641944885,-0.126290321350098,0.342163771390915,-0.91224730014801,0.225230619311333,0.255734592676163,-0.866288900375366,0.429119318723679,-0.657066941261292,-0.750878870487213,-0.0666641741991043,-0.657066941261292,-0.750878870487213,-0.0666641741991043,0.237442091107368,-0.859902262687683,0.451873123645782,-0.676823318004608,-0.729781866073608,0.0965844467282295,-0.300270646810532,0.916215837001801,0.26530396938324,-0.84056282043457,-0.4399354159832,-0.316086828708649,-0.815813720226288,-0.578128218650818,0.0146887823939323,-0.777268946170807,-0.627501904964447,0.0457624308764935,-0.639348149299622,-0.766601860523224,-0.0596288219094276,0.501808166503906,-0.64361447095871,0.577883303165436,-0.933607757091522,-0.199013710021973,0.297943025827408,0.353951305150986,-0.921803534030914,0.158103287220001,-0.0493170209228992,-0.987019121646881,0.152843356132507,-0.811562240123749,-0.560699462890625,-0.164264842867851,-0.642693758010864,-0.636260092258453,-0.426752626895905,-0.291783690452576,-0.953471481800079,0.075858011841774,-0.261092573404312,-0.964516460895538,0.0392280109226704,-0.261092573404312,-0.964516460895538,0.0392280109226704,-0.291783690452576,-0.953471481800079,0.075858011841774,-0.427948355674744,-0.872033953666687,0.237522765994072,-0.373246282339096,-0.911906540393829,-0.170626819133759,-0.0493170209228992,-0.987019121646881,0.152843356132507,-0.0499976314604282,-0.995528399944305,0.0801464766263962,-0.0641942322254181,-0.994884848594666,-0.077995166182518,-0.0971017554402351,-0.993530094623566,0.0588998831808567,
- -0.0493170209228992,-0.987019121646881,0.152843356132507,0.353951305150986,-0.921803534030914,0.158103287220001,-0.0499976314604282,-0.995528399944305,0.0801464766263962,-0.853542387485504,0.519207358360291,-0.0434625893831253,-0.674393117427826,0.513651907444,0.530429542064667,-0.883823037147522,-0.309604525566101,-0.350716173648834,-0.827313661575317,-0.433105945587158,-0.357730865478516,-0.451640009880066,-0.882347822189331,-0.132226034998894,-0.988061368465424,-0.0946546867489815,0.121552899479866,-0.956540942192078,-0.291556626558304,0.00492285983636975,-0.390468627214432,-0.920606434345245,-0.00426206458359957,-0.695365726947784,-0.712449073791504,-0.0942482799291611,-0.549529016017914,-0.812747657299042,-0.193543463945389,-0.503673493862152,-0.86369389295578,0.0185924749821424,-0.712066233158112,-0.701266884803772,-0.0344437286257744,-0.451640009880066,-0.882347822189331,-0.132226034998894,0.0332205519080162,-0.894533574581146,0.445764422416687,0.092212587594986,-0.681535184383392,0.725952208042145,-0.834352970123291,-0.539049863815308,0.115241415798664,-0.647972643375397,-0.761127114295959,0.0285823531448841,-0.694285333156586,-0.681765377521515,0.230572909116745,-0.722372651100159,-0.691503822803497,0.000315182784106582,-0.650129199028015,-0.75947368144989,0.0230611339211464,-0.879366755485535,-0.426542282104492,-0.211603239178658,-0.906274139881134,-0.42265373468399,0.00556703982874751,-0.925110936164856,-0.373685956001282,0.0672935396432877,-0.931517720222473,-0.347555458545685,-0.107144728302956,-0.868250608444214,-0.451548099517822,-0.205536812543869,-0.846512615680695,0.401035577058792,-0.350124001502991,-0.956540942192078,-0.291556626558304,0.00492285983636975,-0.988061368465424,-0.0946546867489815,0.121552899479866,-0.327628582715988,-0.944773316383362,0.00793697591871023,-0.712066233158112,-0.701266884803772,-0.0344437286257744,-0.503673493862152,-0.86369389295578,0.0185924749821424,-0.680766701698303,-0.730193912982941,0.0580823644995689,-0.902499794960022,-0.38186177611351,-0.199187502264977,-0.980063378810883,-0.169861391186714,0.103067509829998,
- -0.968118786811829,-0.239307194948196,-0.0740137547254562,-0.928008556365967,-0.34418597817421,-0.142605185508728,-0.962207913398743,-0.270959556102753,-0.0271455999463797,-0.827313661575317,-0.433105945587158,-0.357730865478516,-0.907448291778564,-0.413721680641174,0.0732928812503815,-0.931374311447144,-0.36240690946579,0.0346842743456364,-0.940483808517456,-0.339673817157745,0.0105741759762168,-0.954756498336792,-0.289518803358078,-0.0679615363478661,-0.962207913398743,-0.270959556102753,-0.0271455999463797,-0.931374311447144,-0.36240690946579,0.0346842743456364,-0.885631501674652,0.413206607103348,-0.21193690598011,-0.999563932418823,-0.0294056590646505,0.00268891453742981,-0.753448784351349,-0.540512681007385,-0.374380677938461,-0.520060181617737,-0.624031484127045,-0.583200037479401,-0.940483808517456,-0.339673817157745,0.0105741759762168,-0.931374311447144,-0.36240690946579,0.0346842743456364,-0.97262716293335,-0.144824355840683,0.181720092892647,-0.963033974170685,-0.252221256494522,0.0946053862571716,-0.891801118850708,-0.0145382527261972,-0.452194064855576,-0.962187230587006,0.271563649177551,-0.0211859922856092,-0.700127840042114,-0.66520369052887,0.259470403194427,0.0605526901781559,-0.860387682914734,-0.506030142307281,-0.681772291660309,-0.731483340263367,0.0108871217817068,-0.284227073192596,-0.958564400672913,-0.0192155353724957,-0.97262716293335,-0.144824355840683,0.181720092892647,-0.837426722049713,0.355156421661377,0.415427953004837,-0.925110936164856,-0.373685956001282,0.0672935396432877,-0.753448784351349,-0.540512681007385,-0.374380677938461,-0.893126010894775,-0.449799239635468,0.00254940777085721,-0.900074243545532,-0.31988337635994,-0.295873016119003,-0.77967095375061,-0.625216782093048,-0.0348907113075256,-0.999563932418823,-0.0294056590646505,0.00268891453742981,-0.980063378810883,-0.169861391186714,0.103067509829998,-0.902499794960022,-0.38186177611351,-0.199187502264977,-0.60570764541626,-0.727468848228455,-0.322346687316895,-0.686716139316559,-0.726056218147278,-0.0355449616909027,-0.576176226139069,-0.811034262180328,-0.101214177906513,
- -0.893126010894775,-0.449799239635468,0.00254940777085721,-0.999563932418823,-0.0294056590646505,0.00268891453742981,-0.77967095375061,-0.625216782093048,-0.0348907113075256,-0.999333083629608,0.0251391120254993,0.0264847576618195,-0.952780961990356,-0.300830096006393,-0.0413500107824802,-0.893126010894775,-0.449799239635468,0.00254940777085721,-0.999333083629608,0.0251391120254993,0.0264847576618195,-0.959828913211823,-0.280398845672607,0.0102437818422914,-0.798489391803741,-0.546011924743652,0.253546178340912,-0.834352970123291,-0.539049863815308,0.115241415798664,0.092212587594986,-0.681535184383392,0.725952208042145,-0.999563932418823,-0.0294056590646505,0.00268891453742981,-0.885631501674652,0.413206607103348,-0.21193690598011,-0.950395524501801,0.103192336857319,-0.293427318334579,-0.980063378810883,-0.169861391186714,0.103067509829998,-0.751680672168732,-0.658098638057709,-0.0433860570192337,-0.727278530597687,-0.64130300283432,0.24453292787075,-0.315190851688385,-0.948902487754822,-0.0154515122994781,-0.381919890642166,-0.910570502281189,0.158108830451965,-0.77967095375061,-0.625216782093048,-0.0348907113075256,-0.369064748287201,-0.73443329334259,0.569560289382935,-0.580783009529114,-0.329510241746902,0.744388401508331,-0.999333083629608,0.0251391120254993,0.0264847576618195,-0.762664020061493,0.638693928718567,0.102047190070152,-0.999333083629608,0.0251391120254993,0.0264847576618195,-0.580783009529114,-0.329510241746902,0.744388401508331,-0.962207913398743,-0.270959556102753,-0.0271455999463797,-0.790624976158142,0.447163462638855,-0.418278634548187,-0.853542387485504,0.519207358360291,-0.0434625893831253,-0.827313661575317,-0.433105945587158,-0.357730865478516,-0.853542387485504,0.519207358360291,-0.0434625893831253,-0.819684445858002,-0.55478823184967,0.142574444413185,-0.552861094474792,-0.792681992053986,0.256904453039169,0.787734687328339,-0.609469473361969,0.08956029266119,-0.900074243545532,-0.31988337635994,-0.295873016119003,-0.893126010894775,-0.449799239635468,0.00254940777085721,-0.952780961990356,-0.300830096006393,-0.0413500107824802,
- -0.284227073192596,-0.958564400672913,-0.0192155353724957,-0.482579261064529,-0.810372650623322,-0.332285523414612,0.0605526901781559,-0.860387682914734,-0.506030142307281,-0.999563932418823,-0.0294056590646505,0.00268891453742981,-0.893126010894775,-0.449799239635468,0.00254940777085721,-0.753448784351349,-0.540512681007385,-0.374380677938461,-0.588384747505188,-0.80733460187912,0.0448815152049065,-0.681772291660309,-0.731483340263367,0.0108871217817068,-0.0654390379786491,-0.997154891490936,-0.0374162793159485,-0.576176226139069,-0.811034262180328,-0.101214177906513,-0.686716139316559,-0.726056218147278,-0.0355449616909027,-0.681772291660309,-0.731483340263367,0.0108871217817068,-0.588384747505188,-0.80733460187912,0.0448815152049065,-0.807084500789642,-0.522212564945221,0.275515079498291,-0.846512615680695,0.401035577058792,-0.350124001502991,-0.913518249988556,0.111558005213737,-0.391202300786972,-0.814838171005249,-0.55334484577179,-0.172766596078873,-0.323047935962677,0.944127798080444,0.0652899518609047,-0.254735618829727,0.908681571483612,-0.330768525600433,-0.390468627214432,-0.920606434345245,-0.00426206458359957,-0.370594888925552,-0.926937818527222,0.0587001740932465,0.0332205519080162,-0.894533574581146,0.445764422416687,-0.451640009880066,-0.882347822189331,-0.132226034998894,-0.980063378810883,-0.169861391186714,0.103067509829998,-0.950395524501801,0.103192336857319,-0.293427318334579,-0.970867693424225,0.215381324291229,-0.105009563267231,-0.968118786811829,-0.239307194948196,-0.0740137547254562,-0.647972643375397,-0.761127114295959,0.0285823531448841,-0.327628582715988,-0.944773316383362,0.00793697591871023,-0.680766701698303,-0.730193912982941,0.0580823644995689,-0.694285333156586,-0.681765377521515,0.230572909116745,0.0332205519080162,-0.894533574581146,0.445764422416687,-0.370594888925552,-0.926937818527222,0.0587001740932465,-0.680766701698303,-0.730193912982941,0.0580823644995689,-0.503673493862152,-0.86369389295578,0.0185924749821424,-0.885631501674652,0.413206607103348,-0.21193690598011,-0.97262716293335,-0.144824355840683,0.181720092892647,
- -0.931374311447144,-0.36240690946579,0.0346842743456364,0.0605526901781559,-0.860387682914734,-0.506030142307281,-0.327628582715988,-0.944773316383362,0.00793697591871023,-0.0654390379786491,-0.997154891490936,-0.0374162793159485,-0.962207913398743,-0.270959556102753,-0.0271455999463797,-0.954756498336792,-0.289518803358078,-0.0679615363478661,-0.846512615680695,0.401035577058792,-0.350124001502991,-0.790624976158142,0.447163462638855,-0.418278634548187,-0.963033974170685,-0.252221256494522,0.0946053862571716,-0.686716139316559,-0.726056218147278,-0.0355449616909027,-0.60570764541626,-0.727468848228455,-0.322346687316895,-0.891801118850708,-0.0145382527261972,-0.452194064855576,-0.751680672168732,-0.658098638057709,-0.0433860570192337,-0.390468627214432,-0.920606434345245,-0.00426206458359957,-0.956540942192078,-0.291556626558304,0.00492285983636975,-0.807084500789642,-0.522212564945221,0.275515079498291,-0.370594888925552,-0.926937818527222,0.0587001740932465,-0.390468627214432,-0.920606434345245,-0.00426206458359957,-0.751680672168732,-0.658098638057709,-0.0433860570192337,-0.588384747505188,-0.80733460187912,0.0448815152049065,-0.0654390379786491,-0.997154891490936,-0.0374162793159485,0.0037286626175046,-0.992756545543671,-0.120084919035435,-0.59236878156662,-0.805475175380707,0.0175764802843332,-0.680766701698303,-0.730193912982941,0.0580823644995689,-0.370594888925552,-0.926937818527222,0.0587001740932465,-0.694285333156586,-0.681765377521515,0.230572909116745,-0.284227073192596,-0.958564400672913,-0.0192155353724957,-0.963033974170685,-0.252221256494522,0.0946053862571716,-0.700127840042114,-0.66520369052887,0.259470403194427,-0.436080515384674,-0.876605689525604,-0.203460708260536,-0.588384747505188,-0.80733460187912,0.0448815152049065,-0.59236878156662,-0.805475175380707,0.0175764802843332,-0.583276987075806,-0.809878289699554,-0.0623310059309006,-0.576176226139069,-0.811034262180328,-0.101214177906513,-0.846512615680695,0.401035577058792,-0.350124001502991,-0.954756498336792,-0.289518803358078,-0.0679615363478661,
- -0.879366755485535,-0.426542282104492,-0.211603239178658,-0.913518249988556,0.111558005213737,-0.391202300786972,-0.906274139881134,-0.42265373468399,0.00556703982874751,-0.879366755485535,-0.426542282104492,-0.211603239178658,-0.954756498336792,-0.289518803358078,-0.0679615363478661,-0.940483808517456,-0.339673817157745,0.0105741759762168,-0.753448784351349,-0.540512681007385,-0.374380677938461,-0.900074243545532,-0.31988337635994,-0.295873016119003,-0.837426722049713,0.355156421661377,0.415427953004837,-0.520060181617737,-0.624031484127045,-0.583200037479401,-0.762664020061493,0.638693928718567,0.102047190070152,-0.768659591674805,0.637650907039642,-0.050633542239666,-0.930961668491364,-0.241573140025139,-0.273775160312653,-0.959828913211823,-0.280398845672607,0.0102437818422914,-0.286275535821915,-0.955341100692749,-0.0732781738042831,-0.902499794960022,-0.38186177611351,-0.199187502264977,-0.928008556365967,-0.34418597817421,-0.142605185508728,-0.97262716293335,-0.144824355840683,0.181720092892647,-0.925110936164856,-0.373685956001282,0.0672935396432877,-0.906274139881134,-0.42265373468399,0.00556703982874751,-0.940483808517456,-0.339673817157745,0.0105741759762168,-0.885631501674652,0.413206607103348,-0.21193690598011,-0.931374311447144,-0.36240690946579,0.0346842743456364,-0.907448291778564,-0.413721680641174,0.0732928812503815,-0.950395524501801,0.103192336857319,-0.293427318334579,-0.790624976158142,0.447163462638855,-0.418278634548187,-0.846512615680695,0.401035577058792,-0.350124001502991,-0.988061368465424,-0.0946546867489815,0.121552899479866,0.543546795845032,-0.171550616621971,0.821661293506622,0.574666261672974,-0.796352684497833,-0.188629329204559,-0.988061368465424,-0.0946546867489815,0.121552899479866,-0.774525761604309,-0.34020608663559,0.533263325691223,-0.161348551511765,0.041551448404789,0.986022353172302,0.176875308156013,-0.0354974567890167,0.983592987060547,-0.879366755485535,-0.426542282104492,-0.211603239178658,-0.839497268199921,-0.436593949794769,0.323466002941132,-0.807084500789642,-0.522212564945221,0.275515079498291,
- -0.956540942192078,-0.291556626558304,0.00492285983636975,-0.846512615680695,0.401035577058792,-0.350124001502991,-0.988061368465424,-0.0946546867489815,0.121552899479866,-0.451640009880066,-0.882347822189331,-0.132226034998894,-0.834352970123291,-0.539049863815308,0.115241415798664,-0.819684445858002,-0.55478823184967,0.142574444413185,0.092212587594986,-0.681535184383392,0.725952208042145,0.0332205519080162,-0.894533574581146,0.445764422416687,-0.503673493862152,-0.86369389295578,0.0185924749821424,-0.549529016017914,-0.812747657299042,-0.193543463945389,-0.885631501674652,0.413206607103348,-0.21193690598011,-0.520060181617737,-0.624031484127045,-0.583200037479401,-0.97262716293335,-0.144824355840683,0.181720092892647,-0.837426722049713,0.355156421661377,0.415427953004837,-0.97262716293335,-0.144824355840683,0.181720092892647,-0.520060181617737,-0.624031484127045,-0.583200037479401,0.290685921907425,-0.956642091274261,0.0183755680918694,-0.749052345752716,-0.655535757541656,-0.0958826914429665,-0.385773986577988,-0.920792400836945,-0.0576176829636097,-0.694285333156586,-0.681765377521515,0.230572909116745,-0.370594888925552,-0.926937818527222,0.0587001740932465,-0.381919890642166,-0.910570502281189,0.158108830451965,-0.902499794960022,-0.38186177611351,-0.199187502264977,-0.286275535821915,-0.955341100692749,-0.0732781738042831,-0.242122620344162,-0.919797480106354,0.308786660432816,-0.369064748287201,-0.73443329334259,0.569560289382935,-0.77967095375061,-0.625216782093048,-0.0348907113075256,-0.902499794960022,-0.38186177611351,-0.199187502264977,-0.242122620344162,-0.919797480106354,0.308786660432816,-0.762664020061493,0.638693928718567,0.102047190070152,-0.959828913211823,-0.280398845672607,0.0102437818422914,-0.999333083629608,0.0251391120254993,0.0264847576618195,-0.530241966247559,-0.815263509750366,0.232785075902939,-0.436080515384674,-0.876605689525604,-0.203460708260536,-0.533532857894897,-0.845085561275482,0.0342498011887074,-0.695365726947784,-0.712449073791504,-0.0942482799291611,-0.530241966247559,-0.815263509750366,0.232785075902939,
- -0.533532857894897,-0.845085561275482,0.0342498011887074,-0.723611176013947,-0.688380181789398,-0.050196822732687,-0.712066233158112,-0.701266884803772,-0.0344437286257744,-0.482579261064529,-0.810372650623322,-0.332285523414612,-0.530241966247559,-0.815263509750366,0.232785075902939,-0.695365726947784,-0.712449073791504,-0.0942482799291611,-0.482579261064529,-0.810372650623322,-0.332285523414612,-0.284227073192596,-0.958564400672913,-0.0192155353724957,-0.436080515384674,-0.876605689525604,-0.203460708260536,-0.530241966247559,-0.815263509750366,0.232785075902939,-0.681772291660309,-0.731483340263367,0.0108871217817068,-0.686716139316559,-0.726056218147278,-0.0355449616909027,-0.963033974170685,-0.252221256494522,0.0946053862571716,-0.284227073192596,-0.958564400672913,-0.0192155353724957,-0.482579261064529,-0.810372650623322,-0.332285523414612,-0.712066233158112,-0.701266884803772,-0.0344437286257744,-0.327628582715988,-0.944773316383362,0.00793697591871023,0.0605526901781559,-0.860387682914734,-0.506030142307281,-0.965470790863037,-0.260271281003952,-0.011189728975296,-0.682220697402954,0.724709033966064,0.0968078747391701,-0.00132999115157872,-0.245822682976723,0.96931391954422,-0.327628582715988,-0.944773316383362,0.00793697591871023,-0.647972643375397,-0.761127114295959,0.0285823531448841,-0.0654390379786491,-0.997154891490936,-0.0374162793159485,-0.727278530597687,-0.64130300283432,0.24453292787075,-0.751680672168732,-0.658098638057709,-0.0433860570192337,-0.807084500789642,-0.522212564945221,0.275515079498291,-0.829338610172272,-0.494157910346985,-0.260778337717056,-0.829338610172272,-0.494157910346985,-0.260778337717056,-0.807084500789642,-0.522212564945221,0.275515079498291,-0.913518249988556,0.111558005213737,-0.391202300786972,-0.161332190036774,0.0415530726313591,-0.986025035381317,-0.874912083148956,-0.4839908182621,-0.0167927201837301,-0.60570764541626,-0.727468848228455,-0.322346687316895,-0.576176226139069,-0.811034262180328,-0.101214177906513,-0.583276987075806,-0.809878289699554,-0.0623310059309006,
- -0.722372651100159,-0.691503822803497,0.000315182784106582,-0.694285333156586,-0.681765377521515,0.230572909116745,-0.381919890642166,-0.910570502281189,0.158108830451965,-0.315190851688385,-0.948902487754822,-0.0154515122994781,-0.685027897357941,-0.720916509628296,0.104956798255444,-0.700127840042114,-0.66520369052887,0.259470403194427,-0.962187230587006,0.271563649177551,-0.0211859922856092,-0.954791188240051,0.285356938838959,0.0833382606506348,-0.549529016017914,-0.812747657299042,-0.193543463945389,-0.695365726947784,-0.712449073791504,-0.0942482799291611,-0.723611176013947,-0.688380181789398,-0.050196822732687,-0.595609962940216,-0.802605628967285,-0.0327586866915226,-0.806322991847992,-0.570302903652191,0.156836524605751,-0.798489391803741,-0.546011924743652,0.253546178340912,0.188243716955185,-0.592791318893433,0.783047139644623,0.0037286626175046,-0.992756545543671,-0.120084919035435,-0.0654390379786491,-0.997154891490936,-0.0374162793159485,-0.647972643375397,-0.761127114295959,0.0285823531448841,-0.650129199028015,-0.75947368144989,0.0230611339211464,-0.931517720222473,-0.347555458545685,-0.107144728302956,-0.925110936164856,-0.373685956001282,0.0672935396432877,-0.837426722049713,0.355156421661377,0.415427953004837,-0.90407520532608,0.399042963981628,0.153012380003929,-0.674393117427826,0.513651907444,0.530429542064667,-0.552861094474792,-0.792681992053986,0.256904453039169,-0.804426074028015,-0.58316570520401,0.113209627568722,-0.970867693424225,0.215381324291229,-0.105009563267231,-0.950395524501801,0.103192336857319,-0.293427318334579,-0.907448291778564,-0.413721680641174,0.0732928812503815,-0.89867377281189,-0.436381310224533,0.0442352369427681,-0.533532857894897,-0.845085561275482,0.0342498011887074,-0.436080515384674,-0.876605689525604,-0.203460708260536,-0.503268420696259,-0.863706946372986,-0.027040995657444,-0.503268420696259,-0.863706946372986,-0.027040995657444,-0.436080515384674,-0.876605689525604,-0.203460708260536,-0.700127840042114,-0.66520369052887,0.259470403194427,-0.685027897357941,-0.720916509628296,0.104956798255444,
- -0.90407520532608,0.399042963981628,0.153012380003929,-0.837426722049713,0.355156421661377,0.415427953004837,-0.900074243545532,-0.31988337635994,-0.295873016119003,-0.940253734588623,-0.339688211679459,-0.0231285877525806,-0.940253734588623,-0.339688211679459,-0.0231285877525806,-0.900074243545532,-0.31988337635994,-0.295873016119003,-0.952780961990356,-0.300830096006393,-0.0413500107824802,-0.959828913211823,-0.280398845672607,0.0102437818422914,-0.930961668491364,-0.241573140025139,-0.273775160312653,-0.89867377281189,-0.436381310224533,0.0442352369427681,-0.907448291778564,-0.413721680641174,0.0732928812503815,-0.827313661575317,-0.433105945587158,-0.357730865478516,-0.883823037147522,-0.309604525566101,-0.350716173648834,0.188243716955185,-0.592791318893433,0.783047139644623,0.092212587594986,-0.681535184383392,0.725952208042145,-0.549529016017914,-0.812747657299042,-0.193543463945389,-0.595609962940216,-0.802605628967285,-0.0327586866915226,-0.804426074028015,-0.58316570520401,0.113209627568722,-0.819684445858002,-0.55478823184967,0.142574444413185,-0.834352970123291,-0.539049863815308,0.115241415798664,-0.798489391803741,-0.546011924743652,0.253546178340912,-0.806322991847992,-0.570302903652191,0.156836524605751,-0.804426074028015,-0.58316570520401,0.113209627568722,-0.552861094474792,-0.792681992053986,0.256904453039169,-0.819684445858002,-0.55478823184967,0.142574444413185,-0.865086197853088,-0.473634779453278,-0.165214940905571,-0.894693672657013,-0.420919179916382,-0.149500325322151,-0.149070829153061,-0.97930234670639,-0.136911943554878,-0.169615432620049,-0.979201555252075,0.111332125961781,-0.810974478721619,-0.584839344024658,-0.0168336816132069,0.0874362960457802,-0.996159553527832,0.00457895500585437,0.222073957324028,-0.965019464492798,-0.139357626438141,-0.689804911613464,-0.717940092086792,0.0934412479400635,-0.360298842191696,-0.92076700925827,-0.149575248360634,0.0874362960457802,-0.996159553527832,0.00457895500585437,-0.810974478721619,-0.584839344024658,-0.0168336816132069,-0.439047068357468,-0.880153179168701,0.18046598136425,
- -0.381864994764328,-0.922598779201508,-0.0546867810189724,-0.395746797323227,-0.914811968803406,-0.0806439220905304,-0.0644555687904358,-0.997096657752991,-0.0405434817075729,-0.129121661186218,-0.900666356086731,0.414882749319077,0.222073957324028,-0.965019464492798,-0.139357626438141,-0.398967146873474,-0.913966655731201,-0.0740958824753761,-0.381864994764328,-0.922598779201508,-0.0546867810189724,-0.689804911613464,-0.717940092086792,0.0934412479400635,-0.0442069582641125,-0.988346815109253,-0.145658507943153,-0.0595045164227486,-0.998213112354279,0.00546198105439544,-0.0794079676270485,-0.993672370910645,0.0794333666563034,-0.0960282012820244,-0.98957747220993,-0.10730754584074,-0.0310902707278728,-0.99054628610611,0.133609473705292,-0.0399679653346539,-0.965910732746124,-0.255771487951279,-0.276373416185379,-0.961029231548309,-0.00637104036286473,-0.287578493356705,-0.955158472061157,-0.0705035999417305,-0.124985978007317,-0.984399914741516,-0.123835816979408,-0.326289176940918,-0.944943726062775,0.0248332619667053,-0.169615432620049,-0.979201555252075,0.111332125961781,-0.0696787610650063,-0.993722140789032,0.0875278562307358,-0.415892124176025,-0.903121411800385,0.106795333325863,-0.145670995116234,-0.989272654056549,0.0109398448839784,0.0586871355772018,-0.997756242752075,-0.0322209671139717,-0.326289176940918,-0.944943726062775,0.0248332619667053,-0.415892124176025,-0.903121411800385,0.106795333325863,-0.718439638614655,-0.673437058925629,-0.174146547913551,-0.176369115710258,-0.982181012630463,-0.0649173632264137,-0.0589249134063721,-0.898703992366791,-0.434579133987427,-0.276082038879395,-0.820874989032745,-0.49994283914566,-0.145670995116234,-0.989272654056549,0.0109398448839784,-0.415892124176025,-0.903121411800385,0.106795333325863,-0.435083091259003,-0.887333631515503,0.152779772877693,-0.435083091259003,-0.887333631515503,0.152779772877693,-0.625905632972717,-0.771843194961548,0.111804075539112,-0.0794079676270485,-0.993672370910645,0.0794333666563034,-0.0589249134063721,-0.898703992366791,-0.434579133987427,
- 0.0418972298502922,-0.999121487140656,0.00103004684206098,-0.186146453022957,-0.939666569232941,-0.287012428045273,0.140118092298508,-0.989938795566559,-0.0197024401277304,-0.176369115710258,-0.982181012630463,-0.0649173632264137,-0.276373416185379,-0.961029231548309,-0.00637104036286473,-0.0399679653346539,-0.965910732746124,-0.255771487951279,-0.439047068357468,-0.880153179168701,0.18046598136425,-0.925587892532349,0.202102452516556,0.320064902305603,-0.985668241977692,0.165555402636528,0.0323967151343822,-0.454006522893906,-0.879901587963104,0.140182808041573,0.0418972298502922,-0.999121487140656,0.00103004684206098,-0.176369115710258,-0.982181012630463,-0.0649173632264137,0.140118092298508,-0.989938795566559,-0.0197024401277304,-0.473642736673355,-0.880384624004364,0.0241975039243698,-0.208740875124931,-0.977191925048828,-0.0390287712216377,0.0418972298502922,-0.999121487140656,0.00103004684206098,-0.473642736673355,-0.880384624004364,0.0241975039243698,-0.223174467682838,-0.964540600776672,-0.140905663371086,0.222073957324028,-0.965019464492798,-0.139357626438141,0.0874362960457802,-0.996159553527832,0.00457895500585437,0.566603600978851,-0.774008214473724,0.282615840435028,-0.176369115710258,-0.982181012630463,-0.0649173632264137,-0.718439638614655,-0.673437058925629,-0.174146547913551,-0.507090270519257,-0.801960229873657,-0.315783441066742,-0.276373416185379,-0.961029231548309,-0.00637104036286473,0.140118092298508,-0.989938795566559,-0.0197024401277304,0.580562770366669,-0.781534135341644,0.228366434574127,0.566603600978851,-0.774008214473724,0.282615840435028,-0.473642736673355,-0.880384624004364,0.0241975039243698,0.456208050251007,-0.886237859725952,-0.0803519785404205,-0.473642736673355,-0.880384624004364,0.0241975039243698,0.566603600978851,-0.774008214473724,0.282615840435028,-0.326289176940918,-0.944943726062775,0.0248332619667053,-0.701943039894104,-0.617105066776276,-0.355608433485031,-0.865086197853088,-0.473634779453278,-0.165214940905571,-0.169615432620049,-0.979201555252075,0.111332125961781,
- -0.186146453022957,-0.939666569232941,-0.287012428045273,0.0418972298502922,-0.999121487140656,0.00103004684206098,-0.208740875124931,-0.977191925048828,-0.0390287712216377,-0.176369115710258,-0.982181012630463,-0.0649173632264137,0.0418972298502922,-0.999121487140656,0.00103004684206098,-0.0589249134063721,-0.898703992366791,-0.434579133987427,0.566603600978851,-0.774008214473724,0.282615840435028,0.0874362960457802,-0.996159553527832,0.00457895500585437,-0.360298842191696,-0.92076700925827,-0.149575248360634,0.566603600978851,-0.774008214473724,0.282615840435028,0.580562770366669,-0.781534135341644,0.228366434574127,0.222073957324028,-0.965019464492798,-0.139357626438141,-0.276373416185379,-0.961029231548309,-0.00637104036286473,-0.507090270519257,-0.801960229873657,-0.315783441066742,-0.628142118453979,-0.769300997257233,-0.116676203906536,-0.287578493356705,-0.955158472061157,-0.0705035999417305,-0.718439638614655,-0.673437058925629,-0.174146547913551,-0.435083091259003,-0.887333631515503,0.152779772877693,-0.415892124176025,-0.903121411800385,0.106795333325863,-0.689804911613464,-0.717940092086792,0.0934412479400635,-0.129121661186218,-0.900666356086731,0.414882749319077,-0.75763726234436,-0.148754820227623,0.635497987270355,-0.326289176940918,-0.944943726062775,0.0248332619667053,0.0586871355772018,-0.997756242752075,-0.0322209671139717,0.0302326250821352,-0.823281049728394,-0.566828310489655,-0.701943039894104,-0.617105066776276,-0.355608433485031,-0.925587892532349,0.202102452516556,0.320064902305603,-0.439047068357468,-0.880153179168701,0.18046598136425,-0.810974478721619,-0.584839344024658,-0.0168336816132069,0.0302326250821352,-0.823281049728394,-0.566828310489655,0.0586871355772018,-0.997756242752075,-0.0322209671139717,-0.0442069582641125,-0.988346815109253,-0.145658507943153,0.419722676277161,-0.904969155788422,0.0697403401136398,-0.0595045164227486,-0.998213112354279,0.00546198105439544,-0.0442069582641125,-0.988346815109253,-0.145658507943153,0.0586871355772018,-0.997756242752075,-0.0322209671139717,
- -0.145670995116234,-0.989272654056549,0.0109398448839784,-0.0589249134063721,-0.898703992366791,-0.434579133987427,-0.186146453022957,-0.939666569232941,-0.287012428045273,-0.625905632972717,-0.771843194961548,0.111804075539112,-0.276082038879395,-0.820874989032745,-0.49994283914566,0.456208050251007,-0.886237859725952,-0.0803519785404205,0.521568894386292,-0.830214440822601,-0.196748122572899,-0.237048521637917,-0.934120059013367,-0.266885221004486,-0.223174467682838,-0.964540600776672,-0.140905663371086,-0.360298842191696,-0.92076700925827,-0.149575248360634,-0.439047068357468,-0.880153179168701,0.18046598136425,-0.454006522893906,-0.879901587963104,0.140182808041573,-0.317980885505676,-0.915734648704529,0.245597392320633,-0.925587892532349,0.202102452516556,0.320064902305603,-0.810974478721619,-0.584839344024658,-0.0168336816132069,-0.689804911613464,-0.717940092086792,0.0934412479400635,-0.75763726234436,-0.148754820227623,0.635497987270355,-0.381864994764328,-0.922598779201508,-0.0546867810189724,-0.398967146873474,-0.913966655731201,-0.0740958824753761,-0.424367517232895,-0.899611294269562,0.103012166917324,-0.395746797323227,-0.914811968803406,-0.0806439220905304,0.453871667385101,-0.786922574043274,0.41803514957428,-0.0399679653346539,-0.965910732746124,-0.255771487951279,-0.124985978007317,-0.984399914741516,-0.123835816979408,-0.435083091259003,-0.887333631515503,0.152779772877693,-0.0794079676270485,-0.993672370910645,0.0794333666563034,-0.0595045164227486,-0.998213112354279,0.00546198105439544,-0.145670995116234,-0.989272654056549,0.0109398448839784,-0.718439638614655,-0.673437058925629,-0.174146547913551,-0.415892124176025,-0.903121411800385,0.106795333325863,-0.0696787610650063,-0.993722140789032,0.0875278562307358,-0.507090270519257,-0.801960229873657,-0.315783441066742,0.400638461112976,-0.913867950439453,0.0658344402909279,0.419722676277161,-0.904969155788422,0.0697403401136398,-0.0442069582641125,-0.988346815109253,-0.145658507943153,-0.0310902707278728,-0.99054628610611,0.133609473705292,-0.718439638614655,-0.673437058925629,-0.174146547913551,
- -0.276082038879395,-0.820874989032745,-0.49994283914566,-0.435083091259003,-0.887333631515503,0.152779772877693,-0.625905632972717,-0.771843194961548,0.111804075539112,-0.435083091259003,-0.887333631515503,0.152779772877693,-0.276082038879395,-0.820874989032745,-0.49994283914566,0.566603600978851,-0.774008214473724,0.282615840435028,-0.360298842191696,-0.92076700925827,-0.149575248360634,0.456208050251007,-0.886237859725952,-0.0803519785404205,0.521568894386292,-0.830214440822601,-0.196748122572899,0.456208050251007,-0.886237859725952,-0.0803519785404205,-0.360298842191696,-0.92076700925827,-0.149575248360634,-0.317980885505676,-0.915734648704529,0.245597392320633,-0.0399679653346539,-0.965910732746124,-0.255771487951279,0.453871667385101,-0.786922574043274,0.41803514957428,0.456043124198914,-0.760733604431152,0.461853891611099,0.580562770366669,-0.781534135341644,0.228366434574127,0.140118092298508,-0.989938795566559,-0.0197024401277304,-0.0399679653346539,-0.965910732746124,-0.255771487951279,0.456043124198914,-0.760733604431152,0.461853891611099,-0.245941191911697,0.418228179216385,-0.874413013458252,-0.428880602121353,-0.903249800205231,0.0141941402107477,-0.671319544315338,0.722054481506348,0.167234614491463,0.222073957324028,-0.965019464492798,-0.139357626438141,0.580562770366669,-0.781534135341644,0.228366434574127,0.456043124198914,-0.760733604431152,0.461853891611099,-0.398967146873474,-0.913966655731201,-0.0740958824753761,-0.398967146873474,-0.913966655731201,-0.0740958824753761,0.453871667385101,-0.786922574043274,0.41803514957428,-0.424367517232895,-0.899611294269562,0.103012166917324,-0.446707665920258,0.873314440250397,0.194355860352516,-0.166920840740204,-0.767457842826843,0.61898797750473,-0.996442258358002,0.0789312198758125,-0.0295446030795574,-0.689804911613464,-0.717940092086792,0.0934412479400635,-0.381864994764328,-0.922598779201508,-0.0546867810189724,-0.129121661186218,-0.900666356086731,0.414882749319077,-0.0960282012820244,-0.98957747220993,-0.10730754584074,-0.0794079676270485,-0.993672370910645,0.0794333666563034,
- -0.625905632972717,-0.771843194961548,0.111804075539112,-0.579703748226166,-0.812430262565613,0.0624555610120296,-0.628142118453979,-0.769300997257233,-0.116676203906536,-0.507090270519257,-0.801960229873657,-0.315783441066742,-0.0696787610650063,-0.993722140789032,0.0875278562307358,-0.0370414517819881,-0.998335659503937,0.0442017950117588,-0.579703748226166,-0.812430262565613,0.0624555610120296,-0.625905632972717,-0.771843194961548,0.111804075539112,-0.186146453022957,-0.939666569232941,-0.287012428045273,-0.193264961242676,-0.98088550567627,-0.0226365141570568,-0.193264961242676,-0.98088550567627,-0.0226365141570568,-0.186146453022957,-0.939666569232941,-0.287012428045273,-0.208740875124931,-0.977191925048828,-0.0390287712216377,-0.223174467682838,-0.964540600776672,-0.140905663371086,-0.237048521637917,-0.934120059013367,-0.266885221004486,-0.0370414517819881,-0.998335659503937,0.0442017950117588,-0.0696787610650063,-0.993722140789032,0.0875278562307358,-0.169615432620049,-0.979201555252075,0.111332125961781,-0.149070829153061,-0.97930234670639,-0.136911943554878,-0.999998092651367,-0.00194783578626812,-5.35196113560232e-006,-0.999998092651367,-0.0019478372996673,2.29000966101012e-006,-0.999998092651367,-0.00194784021005034,1.19192964120884e-005,-0.999998092651367,-0.00194783555343747,9.69311531662242e-006,-0.999998092651367,-0.00194783543702215,8.46142938826233e-007,-0.999998092651367,-0.00194783508777618,-2.93949096885626e-006,-0.999998092651367,-0.00194783578626812,-2.06168942895602e-006,-0.999998092651367,-0.00194783566985279,-6.00503426539944e-006,-0.999998092651367,-0.00194783636834472,-2.69837505584292e-006,-0.999998092651367,-0.0019478346221149,-5.01072690894944e-006,-0.999998092651367,-0.00194783578626812,-8.6491145339096e-006,-0.999997496604919,0.0022314228117466,-2.03172348847147e-005,-0.999997496604919,0.00223142234608531,-3.2388679755968e-006,-0.999997556209564,0.00223142327740788,3.17896819979069e-006,-0.999997496604919,0.00223142025060952,-6.07266429142328e-006,-0.999997556209564,0.0022314207162708,-3.01048004303084e-007,
- -0.999997496604919,0.00223142025060952,5.60251783099375e-006,-0.999997556209564,0.00223142094910145,-3.88447733712383e-006,-0.999997496604919,0.00223142839968205,-1.81141713255784e-005,0.00190624629613012,-0.00541199836879969,-0.999983489513397,0.00194710528012365,-0.00591691397130489,-0.999980688095093,0.00194503739476204,-0.00591064058244228,-0.999980628490448,0.00188612774945796,-0.00629480741918087,-0.999978482723236,0.00190624629613012,-0.00541199836879969,-0.999983489513397,0.00188612774945796,-0.00629480741918087,-0.999978482723236,-3.90660206903704e-005,-0.00783282611519098,-0.99996942281723,-0.000148592167533934,-0.00666831946000457,-0.999977767467499,-0.000148592167533934,-0.00666831946000457,-0.999977767467499,0.0097941467538476,-0.00176961277611554,-0.999950468540192,0.00190624629613012,-0.00541199836879969,-0.999983489513397,-0.158296793699265,-0.0805247873067856,-0.984102547168732,-0.0528252571821213,-0.324683576822281,-0.944346308708191,0.0777868404984474,0.321488440036774,-0.943713068962097,0.159334316849709,0.0794936269521713,-0.984018921852112,0.902911841869354,0.429054975509644,-0.0257325451821089,0.915392875671387,0.402432501316071,-0.0102008627727628,0.915395736694336,0.402433753013611,-0.00988579168915749,0.902034282684326,0.428866803646088,-0.0490666888654232,0.809798717498779,0.586603343486786,-0.0110715525224805,0.809802711009979,0.586575865745544,-0.0121784983202815,0.808488607406616,0.588444173336029,-0.00892915483564138,0.820210814476013,0.571941316127777,-0.0117220208048821,-0.966883361339569,-0.238053426146507,-0.092017188668251,-0.807458221912384,-0.581009209156036,-0.102175109088421,-0.804655432701111,-0.585089564323425,-0.100994423031807,0.808488607406616,0.588444173336029,-0.00892915483564138,0.811128795146942,0.584736347198486,-0.0123908631503582,0.81502103805542,0.578092575073242,-0.0393670313060284,0.820210814476013,0.571941316127777,-0.0117220208048821,0.902911841869354,0.429054975509644,-0.0257325451821089,0.902034282684326,0.428866803646088,-0.0490666888654232,0.402079850435257,0.911393404006958,-0.0877148881554604,
- 0.402079850435257,0.911393404006958,-0.0877148881554604,0.902034282684326,0.428866803646088,-0.0490666888654232,0.81502103805542,0.578092575073242,-0.0393670313060284,0.902034282684326,0.428866803646088,-0.0490666888654232,0.391762346029282,0.917863011360168,-0.0636371523141861,0.81502103805542,0.578092575073242,-0.0393670313060284,0.391762346029282,0.917863011360168,-0.0636371523141861,0.820210814476013,0.571941316127777,-0.0117220208048821,0.81502103805542,0.578092575073242,-0.0393670313060284,0.00609038257971406,0.000293838354991749,-0.99998140335083,0.00444582058116794,0.000527475611306727,-0.999989926815033,0.00264704483561218,0.00210671848617494,-0.999994277954102,0.0047720717266202,0.00239498866721988,-0.999985814094543,0.00444582058116794,0.000527475611306727,-0.999989926815033,0.00352256093174219,0.00345971062779427,-0.999987840652466,-0.00106262182816863,0.00473942281678319,-0.999988198280334,0.00264704483561218,0.00210671848617494,-0.999994277954102,0.180969998240471,-0.983487784862518,0.00129026337526739,0.18096998333931,-0.983487784862518,0.00125870888587087,0.180969998240471,-0.983487844467163,0.00129555119201541,0.180969998240471,-0.983487904071808,0.00127773929852992,0.180969998240471,-0.983487784862518,0.00129037210717797,0.180969998240471,-0.983487844467163,0.00123938266187906,0.180970028042793,-0.983487963676453,0.00122195133008063,0.180970013141632,-0.983487904071808,0.00127746153157204,0.180969998240471,-0.983487844467163,0.00132158759515733,0.180969998240471,-0.983487844467163,0.00128691073041409,0.180969998240471,-0.983487904071808,0.00126161414664239
- }
- TangentsW: *1896 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *1160 {
- a: 0.529542446136475,0.579942762851715,0.524495005607605,0.578584730625153,0.52026891708374,0.446650683879852,0.524767875671387,0.450908571481705,0.680874824523926,0.638040661811829,0.68093740940094,0.768568992614746,0.539337694644928,0.769303917884827,0.534878015518188,0.635696053504944,0.84798002243042,0.579007744789124,0.847599029541016,0.634737610816956,0.700486421585083,0.636191725730896,0.69713294506073,0.578025817871094,0.682506442070007,0.577626347541809,0.689114093780518,0.579054355621338,0.690878510475159,0.630894660949707,0.849737167358398,0.782196521759033,0.848452091217041,0.947805941104889,0.700042247772217,0.946895003318787,0.698029756546021,0.777668356895447,0.523834943771362,0.777133107185364,0.519110321998596,0.945436000823975,0.357732266187668,0.942637026309967,0.360092282295227,0.794068098068237,0.402203857898712,0.773932695388794,0.53108412027359,0.758049726486206,0.846967458724976,0.769696354866028,0.696737408638,0.769860982894897,0.218175411224365,0.57901519536972,0.223250314593315,0.445015013217926,0.342844814062119,0.446316361427307,0.343740820884705,0.578398168087006,0.520409226417542,0.636120676994324,0.357558369636536,0.641105532646179,0.357202649116516,0.578386008739471,0.401715159416199,0.767936229705811,0.523991048336029,0.766417026519775,0.349264979362488,0.63633143901825,0.351780414581299,0.74884569644928,0.340633869171143,0.750577688217163,0.341976761817932,0.643275797367096,0.360315918922424,0.747380256652832,0.98418402671814,0.63189959526062,0.982916593551636,0.569972157478333,0.990196228027344,0.568484544754028,0.990195751190186,0.632427334785461,0.853760004043579,0.766026973724365,0.865612030029297,0.634292602539063,0.85960841178894,0.7731693983078,0.350628018379211,0.801164865493774,0.343418478965759,0.800689220428467,0.32027542591095,0.768803596496582,0.218632936477661,0.637579441070557,0.990195989608765,0.779026985168457,0.984014987945557,0.779432058334351,0.98314356803894,0.774855613708496,0.218010663986206,0.770910978317261,0.319965600967407,0.77398407459259,
- 0.218027830123901,0.775901198387146,0.209942817687988,0.758549809455872,0.681808114051819,0.49695697426796,0.35064685344696,0.578766167163849,0.681206822395325,0.774381041526794,0.689946413040161,0.778838038444519,0.686777949333191,0.947031915187836,0.679263830184937,0.946744859218597,0.208433389663696,0.638627350330353,0.208995342254639,0.792912006378174,0.52824878692627,0.631985068321228,0.533095598220825,0.482949405908585,0.535220742225647,0.578878819942474,0.857320785522461,0.633963108062744,0.859492778778076,0.781048893928528,0.854515552520752,0.781238436698914,0.536794543266296,0.774506688117981,0.529372990131378,0.7923583984375,0.69149523973465,0.441765606403351,0.689997673034668,0.764810562133789,0.351805061101913,0.44700014591217,0.861139893531799,0.947745680809021,0.855483591556549,0.947948932647705,0.861486911773682,0.578680455684662,0.980533123016357,0.948560357093811,0.218821227550507,0.94554477930069,0.212744146585464,0.945804834365845,0.212270930409431,0.440860360860825,0.530312895774841,0.945908427238464,0.208839416503906,0.580817818641663,0.853842735290527,0.578696548938751,0.856634259223938,0.44589164853096,0.848954379558563,0.446305155754089,0.537786900997162,0.945747971534729,0.990195989608765,0.948477923870087,0.982777774333954,0.445276021957397,0.990196228027344,0.443294703960419,0.705124199390411,0.445026248693466,0.671285331249237,0.448076128959656,0.351177096366882,0.942616045475006,0.553755342960358,0.445929646492004,0.356701403856277,0.447325110435486,0.865600049495697,0.447206825017929,0.343865901231766,0.942422986030579,0.529542446136475,0.579942762851715,0.524495005607605,0.578584730625153,0.52026891708374,0.446650683879852,0.524767875671387,0.450908571481705,0.0187580585479736,0.77262282371521,0.0175178050994873,0.639345407485962,0.198766946792603,0.640472412109375,0.202792167663574,0.763981461524963,0.201763391494751,0.779077291488647,0.0184597969055176,0.778164148330688,0.0180323123931885,0.572381019592285,0.00980401039123535,0.573256731033325,0.00980378687381744,0.443845629692078,
- 0.0208342131227255,0.445603847503662,0.200856447219849,0.578685939311981,0.523834943771362,0.777133107185364,0.519110321998596,0.945436000823975,0.357732266187668,0.942637026309967,0.360092282295227,0.794068098068237,0.402203857898712,0.773932695388794,0.218175411224365,0.57901519536972,0.223250314593315,0.445015013217926,0.342844814062119,0.446316361427307,0.343740820884705,0.578398168087006,0.520409226417542,0.636120676994324,0.357558369636536,0.641105532646179,0.357202649116516,0.578386008739471,0.401715159416199,0.767936229705811,0.523991048336029,0.766417026519775,0.349264979362488,0.63633143901825,0.351780414581299,0.74884569644928,0.340633869171143,0.750577688217163,0.341976761817932,0.643275797367096,0.360315918922424,0.747380256652832,0.350628018379211,0.801164865493774,0.343418478965759,0.800689220428467,0.32027542591095,0.768803596496582,0.218632936477661,0.637579441070557,0.0164199657738209,0.950805366039276,0.00980380736291409,0.950524091720581,0.00980401039123535,0.778807401657104,0.218010663986206,0.770910978317261,0.319965600967407,0.77398407459259,0.218027830123901,0.775901198387146,0.209942817687988,0.758549809455872,0.35064685344696,0.578766167163849,0.208433389663696,0.638627350330353,0.208995342254639,0.792912006378174,0.52824878692627,0.631985068321228,0.351805061101913,0.44700014591217,0.00980401039123535,0.638169229030609,0.53108412027359,0.758049726486206,0.529372990131378,0.7923583984375,0.218821227550507,0.94554477930069,0.212744146585464,0.945804834365845,0.20548489689827,0.945652484893799,0.201431006193161,0.443668574094772,0.212270930409431,0.440860360860825,0.530312895774841,0.945908427238464,0.208839416503906,0.580817818641663,0.351177096366882,0.942616045475006,0.356701403856277,0.447325110435486,0.343865901231766,0.942422986030579,0.224435433745384,0.0498131588101387,0.399090141057968,0.0498131737112999,0.398704290390015,0.218098521232605,0.264498054981232,0.217845559120178,0.225101605057716,0.177336931228638,0.84798002243042,0.579007744789124,0.847599029541016,0.634737610816956,0.700486421585083,
- 0.636191725730896,0.69713294506073,0.578025817871094,0.511475741863251,0.554332792758942,0.508132934570313,0.47854870557785,0.846967458724976,0.769696354866028,0.696737408638,0.769860982894897,0.98418402671814,0.63189959526062,0.982916593551636,0.569972157478333,0.990196228027344,0.568484544754028,0.990195751190186,0.632427334785461,0.853760004043579,0.766026973724365,0.865612030029297,0.634292602539063,0.85960841178894,0.7731693983078,0.990195989608765,0.779026985168457,0.984014987945557,0.779432058334351,0.98314356803894,0.774855613708496,0.857320785522461,0.633963108062744,0.859492778778076,0.781048893928528,0.854515552520752,0.781238436698914,0.514865458011627,0.478279799222946,0.516419410705566,0.55670553445816,0.849737167358398,0.782196521759033,0.698029756546021,0.777668356895447,0.861486911773682,0.578680455684662,0.853842735290527,0.578696548938751,0.856634259223938,0.44589164853096,0.848954379558563,0.446305155754089,0.982777774333954,0.445276021957397,0.990196228027344,0.443294703960419,0.705124199390411,0.445026248693466,0.865600049495697,0.447206825017929,0.0220425724983215,0.0642073452472687,0.195939153432846,0.0238827615976334,0.195939153432846,0.194728150963783,0.0228706318885088,0.194164708256722,0.529542446136475,0.579942762851715,0.524495005607605,0.578584730625153,0.52026891708374,0.446650683879852,0.524767875671387,0.450908571481705,0.680874824523926,0.638040661811829,0.68093740940094,0.768568992614746,0.539337694644928,0.769303917884827,0.534878015518188,0.635696053504944,0.0187580585479736,0.77262282371521,0.0175178050994873,0.639345407485962,0.198766946792603,0.640472412109375,0.202792167663574,0.763981461524963,0.682506442070007,0.577626347541809,0.689114093780518,0.579054355621338,0.690878510475159,0.630894660949707,0.201763391494751,0.779077291488647,0.0184597969055176,0.778164148330688,0.0180323123931885,0.572381019592285,0.00980401039123535,0.573256731033325,0.00980378687381744,0.443845629692078,0.0208342131227255,0.445603847503662,0.200856447219849,0.578685939311981,0.53108412027359,0.758049726486206,
- 0.218175411224365,0.57901519536972,0.223250314593315,0.445015013217926,0.342844814062119,0.446316361427307,0.343740820884705,0.578398168087006,0.520409226417542,0.636120676994324,0.357558369636536,0.641105532646179,0.357202649116516,0.578386008739471,0.401715159416199,0.767936229705811,0.523991048336029,0.766417026519775,0.349264979362488,0.63633143901825,0.351780414581299,0.74884569644928,0.340633869171143,0.750577688217163,0.341976761817932,0.643275797367096,0.360315918922424,0.747380256652832,0.360092282295227,0.794068098068237,0.350628018379211,0.801164865493774,0.343418478965759,0.800689220428467,0.32027542591095,0.768803596496582,0.218632936477661,0.637579441070557,0.218010663986206,0.770910978317261,0.319965600967407,0.77398407459259,0.218027830123901,0.775901198387146,0.209942817687988,0.758549809455872,0.35064685344696,0.578766167163849,0.208433389663696,0.638627350330353,0.208995342254639,0.792912006378174,0.52824878692627,0.631985068321228,0.533095598220825,0.482949405908585,0.535220742225647,0.578878819942474,0.536794543266296,0.774506688117981,0.529372990131378,0.7923583984375,0.689997673034668,0.764810562133789,0.351805061101913,0.44700014591217,0.00980401039123535,0.638169229030609,0.00980401039123535,0.778807401657104,0.681206822395325,0.774381041526794,0.523834943771362,0.777133107185364,0.402203857898712,0.773932695388794,0.0637268722057343,0.0238827615976334,0.201431006193161,0.443668574094772,0.212270930409431,0.440860360860825,0.208839416503906,0.580817818641663,0.683854579925537,0.446528166532516,0.69149523973465,0.441765606403351,0.553755342960358,0.445929646492004,0.356701403856277,0.447325110435486,0.224435433745384,0.0498131588101387,0.225101605057716,0.177336931228638,0.264498054981232,0.217845559120178,0.398704290390015,0.218098521232605,0.399090141057968,0.0498131737112999,0.84798002243042,0.579007744789124,0.69713294506073,0.578025817871094,0.700486421585083,0.636191725730896,0.847599029541016,0.634737610816956,0.512637138366699,0.558548450469971,0.495539724826813,0.462339252233505,0.846967458724976,
- 0.769696354866028,0.696737408638,0.769860982894897,0.98418402671814,0.63189959526062,0.990195751190186,0.632427334785461,0.990196228027344,0.568484544754028,0.982916593551636,0.569972157478333,0.853760004043579,0.766026973724365,0.85960841178894,0.7731693983078,0.865612030029297,0.634292602539063,0.990195989608765,0.779026985168457,0.98314356803894,0.774855613708496,0.984014987945557,0.779432058334351,0.857320785522461,0.633963108062744,0.859492778778076,0.781048893928528,0.854515552520752,0.781238436698914,0.495228826999664,0.453256458044052,0.441681563854218,0.464269906282425,0.849737167358398,0.782196521759033,0.698029756546021,0.777668356895447,0.861486911773682,0.578680455684662,0.853842735290527,0.578696548938751,0.856634259223938,0.44589164853096,0.848954379558563,0.446305155754089,0.982777774333954,0.445276021957397,0.990196228027344,0.443294703960419,0.705124199390411,0.445026248693466,0.865600049495697,0.447206825017929,0.0220425724983215,0.0642073452472687,0.0228706318885088,0.194164708256722,0.195939153432846,0.194728150963783,0.195939153432846,0.0238827615976334,0.529542446136475,0.579942762851715,0.524767875671387,0.450908571481705,0.52026891708374,0.446650683879852,0.524495005607605,0.578584730625153,0.680874824523926,0.638040661811829,0.534878015518188,0.635696053504944,0.539337694644928,0.769303917884827,0.68093740940094,0.768568992614746,0.0187580585479736,0.77262282371521,0.202792167663574,0.763981461524963,0.198766946792603,0.640472412109375,0.0175178050994873,0.639345407485962,0.690878510475159,0.630894660949707,0.689114093780518,0.579054355621338,0.682506442070007,0.577626347541809,0.201763391494751,0.779077291488647,0.0184597969055176,0.778164148330688,0.0180323123931885,0.572381019592285,0.0208342131227255,0.445603847503662,0.00980378687381744,0.443845629692078,0.00980401039123535,0.573256731033325,0.200856447219849,0.578685939311981,0.53108412027359,0.758049726486206,0.218175411224365,0.57901519536972,0.343740820884705,0.578398168087006,0.342844814062119,0.446316361427307,0.223250314593315,
- 0.445015013217926,0.520409226417542,0.636120676994324,0.357202649116516,0.578386008739471,0.357558369636536,0.641105532646179,0.401715159416199,0.767936229705811,0.523991048336029,0.766417026519775,0.349264979362488,0.63633143901825,0.341976761817932,0.643275797367096,0.340633869171143,0.750577688217163,0.351780414581299,0.74884569644928,0.360315918922424,0.747380256652832,0.350628018379211,0.801164865493774,0.360092282295227,0.794068098068237,0.32027542591095,0.768803596496582,0.343418478965759,0.800689220428467,0.218632936477661,0.637579441070557,0.218010663986206,0.770910978317261,0.319965600967407,0.77398407459259,0.218027830123901,0.775901198387146,0.209942817687988,0.758549809455872,0.683854281902313,0.446528315544128,0.69149523973465,0.441765606403351,0.35064685344696,0.578766167163849,0.208433389663696,0.638627350330353,0.208995342254639,0.792912006378174,0.52824878692627,0.631985068321228,0.535220742225647,0.578878819942474,0.533095598220825,0.482949405908585,0.536794543266296,0.774506688117981,0.529372990131378,0.7923583984375,0.689997673034668,0.764810562133789,0.351805061101913,0.44700014591217,0.00980401039123535,0.638169229030609,0.00980401039123535,0.778807401657104,0.681206822395325,0.774381041526794,0.523834943771362,0.777133107185364,0.402203857898712,0.773932695388794,0.0637268722057343,0.0238827615976334,0.201431006193161,0.443668574094772,0.212270930409431,0.440860360860825,0.208839416503906,0.580817818641663,0.553755342960358,0.445929646492004,0.356701403856277,0.447325110435486,0.529542446136475,0.579942762851715,0.524767875671387,0.450908571481705,0.52026891708374,0.446650683879852,0.524495005607605,0.578584730625153,0.680874824523926,0.638040661811829,0.534878015518188,0.635696053504944,0.539337694644928,0.769303917884827,0.68093740940094,0.768568992614746,0.84798002243042,0.579007744789124,0.69713294506073,0.578025817871094,0.700486421585083,0.636191725730896,0.847599029541016,0.634737610816956,0.690878510475159,0.630894660949707,0.689114093780518,0.579054355621338,0.682506442070007,0.577626347541809,
- 0.849737167358398,0.782196521759033,0.698029756546021,0.777668356895447,0.523834943771362,0.777133107185364,0.402203857898712,0.773932695388794,0.360092282295227,0.794068098068237,0.53108412027359,0.758049726486206,0.846967458724976,0.769696354866028,0.696737408638,0.769860982894897,0.218175411224365,0.57901519536972,0.343740820884705,0.578398168087006,0.342844814062119,0.446316361427307,0.223250314593315,0.445015013217926,0.520409226417542,0.636120676994324,0.357202649116516,0.578386008739471,0.357558369636536,0.641105532646179,0.401715159416199,0.767936229705811,0.523991048336029,0.766417026519775,0.349264979362488,0.63633143901825,0.341976761817932,0.643275797367096,0.340633869171143,0.750577688217163,0.351780414581299,0.74884569644928,0.360315918922424,0.747380256652832,0.98418402671814,0.63189959526062,0.990195751190186,0.632427334785461,0.990196228027344,0.568484544754028,0.982916593551636,0.569972157478333,0.853760004043579,0.766026973724365,0.85960841178894,0.7731693983078,0.865612030029297,0.634292602539063,0.350628018379211,0.801164865493774,0.32027542591095,0.768803596496582,0.343418478965759,0.800689220428467,0.218632936477661,0.637579441070557,0.990195989608765,0.779026985168457,0.98314356803894,0.774855613708496,0.984014987945557,0.779432058334351,0.218010663986206,0.770910978317261,0.319965600967407,0.77398407459259,0.218027830123901,0.775901198387146,0.209942817687988,0.758549809455872,0.681808114051819,0.49695697426796,0.35064685344696,0.578766167163849,0.681206822395325,0.774381041526794,0.689946413040161,0.778838038444519,0.208433389663696,0.638627350330353,0.208995342254639,0.792912006378174,0.52824878692627,0.631985068321228,0.535220742225647,0.578878819942474,0.533095598220825,0.482949405908585,0.857320785522461,0.633963108062744,0.859492778778076,0.781048893928528,0.854515552520752,0.781238436698914,0.536794543266296,0.774506688117981,0.529372990131378,0.7923583984375,0.69149523973465,0.441765606403351,0.689997673034668,0.764810562133789,0.351805061101913,0.44700014591217,0.861486911773682,0.578680455684662,
- 0.212270930409431,0.440860360860825,0.208839416503906,0.580817818641663,0.853842735290527,0.578696548938751,0.856634259223938,0.44589164853096,0.848954379558563,0.446305155754089,0.982777774333954,0.445276021957397,0.990196228027344,0.443294703960419,0.705124199390411,0.445026248693466,0.671285331249237,0.448076128959656,0.553755342960358,0.445929646492004,0.356701403856277,0.447325110435486,0.865600049495697,0.447206825017929,0.529542446136475,0.579942762851715,0.524767875671387,0.450908571481705,0.52026891708374,0.446650683879852,0.524495005607605,0.578584730625153,0.0187580585479736,0.77262282371521,0.202792167663574,0.763981461524963,0.198766946792603,0.640472412109375,0.0175178050994873,0.639345407485962,0.201763391494751,0.779077291488647,0.0184597969055176,0.778164148330688,0.0180323123931885,0.572381019592285,0.0208342131227255,0.445603847503662,0.00980378687381744,0.443845629692078,0.00980401039123535,0.573256731033325,0.200856447219849,0.578685939311981,0.523834943771362,0.777133107185364,0.402203857898712,0.773932695388794,0.360092282295227,0.794068098068237,0.218175411224365,0.57901519536972,0.343740820884705,0.578398168087006,0.342844814062119,0.446316361427307,0.223250314593315,0.445015013217926,0.520409226417542,0.636120676994324,0.357202649116516,0.578386008739471,0.357558369636536,0.641105532646179,0.401715159416199,0.767936229705811,0.523991048336029,0.766417026519775,0.349264979362488,0.63633143901825,0.341976761817932,0.643275797367096,0.340633869171143,0.750577688217163,0.351780414581299,0.74884569644928,0.360315918922424,0.747380256652832,0.350628018379211,0.801164865493774,0.32027542591095,0.768803596496582,0.343418478965759,0.800689220428467,0.218632936477661,0.637579441070557,0.00980401039123535,0.778807401657104,0.218010663986206,0.770910978317261,0.319965600967407,0.77398407459259,0.218027830123901,0.775901198387146,0.209942817687988,0.758549809455872,0.35064685344696,0.578766167163849,0.208433389663696,0.638627350330353,0.208995342254639,0.792912006378174,0.52824878692627,0.631985068321228,
- 0.351805061101913,0.44700014591217,0.00980401039123535,0.638169229030609,0.53108412027359,0.758049726486206,0.529372990131378,0.7923583984375,0.201431006193161,0.443668574094772,0.212270930409431,0.440860360860825,0.208839416503906,0.580817818641663,0.356701403856277,0.447325110435486,0.0903558731079102,0.157266527414322,0.0903558731079102,0.0907022058963776,0.0913282632827759,0.0456305146217346,0.105728089809418,0.0327445864677429,0.156932055950165,0.0315327346324921,0.162768840789795,0.0383583307266235,0.160926580429077,0.123984217643738,0.162768840789795,0.209610104560852,0.156932055950165,0.216435998678207,0.105727791786194,0.215223878622055,0.0913277268409729,0.202338218688965,0.271789908409119,0.128496080636978,0.269634962081909,0.0753907859325409,0.289459466934204,0.0607160329818726,0.361024022102356,0.0581153333187103,0.360982060432434,0.128496080636978,0.361024022102356,0.198876857757568,0.289459109306335,0.196276187896729,0.269634604454041,0.181601405143738,0.441279172897339,0.45317730307579,0.36822172999382,0.477378368377686,0.375434309244156,0.477728098630905,0.373502165079117,0.553482234477997,0.368182390928268,0.555788278579712,0.371779233217239,0.557675957679749,0.387904644012451,0.461672782897949,0.387585461139679,0.452590018510818,0.437084496021271,0.441493451595306,0.515186905860901,0.438858658075333,0.516508996486664,0.561459302902222,0.438395440578461,0.560415327548981,0.367463529109955,0.563745737075806,0.364707082509995,0.563464760780334,0.365687161684036,0.501896142959595,0.431506752967834,0.561280608177185,0.36600336432457,0.439983338117599,0.430160820484161,0.441002577543259,0.43239888548851,0.441148668527603,0.433727234601974,0.560972511768341,0.507267653942108,0.456802070140839,0.508692979812622,0.547452628612518,0.368119478225708,0.54807186126709,0.36756357550621,0.457642495632172,0.508738458156586,0.558703720569611,0.368163168430328,0.559298515319824,0.242768168449402,-0.038042426109314,0.242238581180573,-0.127515017986298,0.242600977420807,-0.21698796749115,0.245640873908997,-0.224459648132324,
- 0.296923696994781,-0.222801089286804,0.31391978263855,-0.209391474723816,0.314869046211243,-0.162302255630493,0.31493479013443,-0.0925374627113342,0.314073801040649,-0.0454415678977966,0.297105252742767,-0.0320794582366943,0.245826900005341,-0.0305570960044861
- }
- UVIndex: *1896 {
- a: 0,1,2,3,4,5,6,7,8,9,10,11,4,12,13,14,15,16,17,18,19,20,21,22,23,24,7,6,25,26,10,9,27,28,29,30,31,32,33,1,34,32,31,35,36,37,38,39,34,40,32,41,42,43,44,45,46,47,40,22,48,38,49,50,51,27,30,39,52,53,54,50,55,51,39,56,57,55,50,59,13,12,39,30,60,36,61,62,63,64,51,55,58,65,66,58,55,31,1,0,67,0,3,68,69,49,56,50,46,45,70,39,38,50,71,72,47,53,71,47,54,73,74,24,59,75,13,5,4,14,76,30,29,77,60,15,18,26,25,14,10,26,76,36,32,40,45,72,25,31,67,24,35,41,44,52,54,61,73,6,5,76,61,5,71,78,79,72,26,18,76,46,80,42,41,71,53,81,78,24,74,19,35,23,34,35,19,38,37,48,49,66,57,82,83,84,28,27,40,34,23,22,36,60,33,32,67,7,24,0,69,7,67,85,20,19,74,73,24,6,7,69,12,4,13,11,10,14,36,40,37,48,37,40,76,62,61,18,62,76,27,86,84,65,86,27,51,66,55,57,87,88,80,8,89,88,87,9,8,87,70,70,87,80,46,47,46,41,54,70,45,25,9,47,72,45,25,72,15,64,90,73,61,90,85,74,73,91,81,53,52,17,63,62,18,92,93,43,42,11,94,89,8,95,75,59,79,16,15,72,21,96,48,22,3,97,68,77,98,33,60,88,99,80,99,92,42,80,96,100,49,48,100,82,57,56,49,98,2,1,33,75,94,11,13,97,95,59,12,69,97,69,68,101,102,103,104,105,106,107,108,109,110,105,108,111,112,113,114,107,106,111,115,116,117,118,119,120,121,122,123,124,125,126,127,102,128,126,125,129,130,131,132,133,128,134,126,134,119,135,132,136,137,138,121,124,133,110,139,140,141,137,142,138,133,143,144,142,137,107,145,108,133,124,146,130,138,142,145,147,148,145,142,125,102,101,149,136,143,137,133,132,137,145,109,108,145,107,147,124,123,150,146,130,126,134,106,151,112,125,149,152,129,141,105,110,152,153,116,129,120,128,129,116,132,131,135,136,148,144,154,155,109,156,139,110,141,151,106,105,111,114,157,115,158,122,121,134,128,120,119,130,146,127,126,159,117,116,153,130,134,131,135,131,134,145,148,109,155,156,109,148,121,160,158,147,160,121,138,158,160,115,107,115,160,147,115,157,158,148,142,144,106,112,111,118,161,135,119,150,162,127,146,161,163,136,135,163,154,144,143,136,162,103,102,127,164,165,168,167,168,165,166,169,170,171,172,175,176,171,170,177,178,179,180,182,183,181,187,184,185,186,183,188,189,181,186,185,188,183,175,192,193,176,
- 173,174,190,191,175,181,189,192,186,177,180,184,191,284,173,182,194,178,177,285,301,190,174,194,195,196,201,195,169,197,196,170,169,195,187,182,187,195,194,186,183,182,177,187,181,170,170,181,175,198,199,179,178,169,172,200,197,201,198,178,194,285,302,543,301,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,210,218,219,220,221,222,214,217,223,224,225,226,216,215,223,227,228,213,212,229,230,231,232,233,234,235,207,236,234,233,237,238,239,240,241,236,242,234,242,243,244,240,245,246,247,229,232,241,246,248,247,241,249,250,248,246,216,251,217,241,232,252,238,247,248,251,253,254,251,248,233,207,206,255,206,209,256,257,245,249,246,241,240,246,251,221,217,258,259,228,251,216,253,211,210,220,260,232,231,261,252,238,234,242,215,262,224,233,255,228,237,263,214,222,264,258,212,211,260,264,211,228,259,265,237,266,236,237,265,240,239,244,245,203,202,267,263,262,215,214,223,226,268,227,269,230,229,242,236,266,243,238,252,235,234,255,213,228,206,257,213,255,258,228,212,213,257,218,210,238,242,239,244,239,242,251,254,221,229,270,269,253,270,229,247,269,270,227,216,227,270,253,227,268,269,254,248,250,215,224,223,218,271,272,219,209,273,256,261,274,235,252,274,208,207,235,273,271,218,257,273,257,256,275,276,279,279,276,277,278,280,281,282,283,286,283,282,287,288,289,290,291,292,293,294,298,295,296,297,300,299,293,292,299,297,296,293,304,303,286,287,544,545,546,547,300,292,286,303,289,288,296,295,547,546,548,294,288,291,305,549,545,544,550,307,306,305,312,308,280,306,307,283,298,306,280,306,298,294,305,294,293,296,288,298,283,292,292,283,286,309,291,290,310,311,281,280,308,312,305,291,309,543,302,549,550,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,321,329,330,331,332,326,325,333,334,335,336,337,327,338,334,328,339,323,322,340,341,342,343,344,320,345,346,347,348,344,346,349,350,351,352,347,346,353,353,354,355,351,356,357,358,350,341,340,356,350,358,359,360,356,359,361,327,326,362,363,331,330,364,350,349,365,341,358,366,362,359,367,359,362,344,368,317,320,317,369,370,318,357,356,360,350,356,351,362,326,
- 332,371,339,372,362,366,327,324,373,329,321,341,365,374,342,349,353,346,328,337,375,344,348,339,368,376,333,325,377,324,323,371,373,324,377,339,348,378,372,379,378,348,347,351,357,354,352,316,380,313,376,325,328,375,334,338,381,335,382,340,343,353,355,379,347,349,346,345,365,368,339,322,317,368,322,369,371,323,339,322,321,331,369,349,352,353,354,353,352,362,332,367,340,382,383,366,358,340,383,382,338,383,327,366,383,338,338,382,381,367,361,359,328,334,337,318,370,384,374,365,345,385,385,345,320,319,384,369,331,363,384,370,369,386,387,388,389,390,391,392,393,394,395,396,397,390,398,399,400,401,402,17,16,403,404,405,21,20,406,392,391,407,397,396,408,409,410,411,412,413,389,414,415,416,417,413,415,418,419,420,421,416,415,422,423,424,425,426,427,428,429,422,430,405,420,431,432,433,419,410,409,434,435,436,431,419,433,437,438,431,437,439,441,400,399,419,418,442,410,443,64,63,444,433,445,440,437,446,437,440,413,447,386,389,386,448,449,387,432,431,438,429,450,427,419,431,420,451,428,452,436,435,428,451,453,406,454,441,399,455,393,456,398,390,410,442,457,411,401,407,408,402,398,456,408,396,418,422,415,427,407,452,413,417,406,447,423,435,434,424,443,393,392,453,456,393,443,451,452,79,78,408,456,402,429,423,426,458,451,78,81,436,406,417,403,454,404,403,417,416,420,432,430,421,446,83,82,439,459,409,412,422,405,404,416,418,415,414,442,447,406,391,386,447,391,448,85,454,403,20,453,392,406,391,390,400,448,399,398,396,395,418,421,422,430,422,421,456,443,444,402,456,444,409,459,460,445,433,409,460,446,439,437,461,458,462,394,461,462,463,397,450,461,394,450,429,458,461,428,435,423,429,450,397,407,427,428,427,452,407,401,452,64,443,453,90,90,453,454,85,91,434,436,81,17,402,444,63,464,426,425,465,395,394,463,466,467,441,455,79,452,401,16,21,405,430,96,387,449,468,457,442,414,469,462,458,470,470,458,426,464,96,430,432,100,100,432,438,439,82,469,414,389,388,455,399,395,466,468,448,400,441,467,468,449,448,471,472,473,474,475,476,477,478,479,476,475,480,481,482,483,484,477,485,481,478,486,487,488,118,117,489,490,491,492,493,474,494,495,496,
- 497,493,495,498,499,500,501,496,495,502,502,503,488,500,504,505,506,499,490,489,480,507,140,139,504,499,506,508,509,504,508,510,477,476,511,499,498,512,490,506,513,511,508,514,508,511,493,515,471,474,505,504,509,499,504,500,511,476,479,511,513,477,490,512,516,491,498,502,495,478,484,517,493,497,518,515,507,480,475,518,497,486,519,487,486,497,496,500,505,503,501,514,155,154,510,479,480,139,156,507,475,478,517,481,485,520,482,521,489,492,502,488,487,496,498,495,494,512,159,519,486,117,498,501,502,503,502,501,511,479,514,155,514,479,156,489,521,522,513,506,489,522,521,485,522,477,513,522,485,485,521,520,514,510,508,478,481,484,118,488,503,161,516,512,494,523,161,503,505,163,163,505,509,510,154,523,494,474,473,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,174,173,546,545,174,545,549,302,302,285,174,173,284,548,546,551,552,553,554,555,556,557,558,295,297,279,557,559,560,558,551,554,561,561,554,560,554,562,560,562,558,560,563,564,565,566,564,567,568,565,569,570,571,572,573,574,575,576,577,578,579
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *987 {
- a: 1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,0,0,1,0,1,1,1,0,0,0,0,1,1,0,1,1,1,0,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,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,0,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,0,1,0,1,1,1,1,1,1,1,0,0,1,0,1,1,0,0,1,1,1,1,0,0,0,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,0,0,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,0,1,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,1,0,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,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,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,0,1,1,1,0,1,1,1,0,0,0,1,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,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,0,1,1,1,1,0,1,1,1,1,0,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,0,0,1,1,1,1,0,1,1,1,0,1,1,1,1,1,1,1,0,0,1,1,0,0,0,1,1,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,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,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,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,0,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,0,1,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,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: 2463645310256, "Geometry::", "Mesh" {
- Vertices: *714 {
- a: 71.2958984375,160.318115234375,32.439208984375,72.5278244018555,160.88410949707,33.1892852783203,71.8251953125,160.92041015625,0,70.9921875,162.991455078125,0.000244140625,101.080078125,127.28076171875,0,101.359375,127.059814453125,-24.169677734375,71.43359375,161.6396484375,-32.63623046875,93.708984375,135.321533203125,-32.905029296875,102.6689453125,125.03466796875,0,102.91552734375,125.48876953125,23.642578125,95.734375,133.388916015625,32.385009765625,71.43359375,161.639892578125,32.635986328125,93.708984375,135.321533203125,32.904541015625,101.359375,127.059814453125,24.169189453125,102.916015625,125.489013671875,-23.642822265625,95.734375,133.388916015625,-32.385498046875,71.6849822998047,160.165008544922,-32.6264953613281,100.5205078125,183.231201171875,-31.280517578125,138.07958984375,199.743225097656,32.2349243164063,138.0791015625,199.743225097656,-32.2348022460938,101.671783447266,183.068313598633,31.4804229736328,100.175933837891,181.21369934082,-31.7228240966797,164.87841796875,199.955139160156,20.2564086914063,139.48420715332,193.510803222656,20.2544555664063,139.480102539063,193.338684082031,-20.2575073242188,164.87890625,199.955383300781,-20.2565307617188,165.8115234375,203.061096191406,20.2564086914063,165.8115234375,203.060852050781,-20.2565307617188,38.71484375,0.5816650390625,31.4381103515625,46.91015625,0.7760009765625,0.0001220703125,48.8517303466797,0.710498809814453,25.0122566223145,4.99534797668457,0.980194091796875,32.5920104980469,38.71484375,0.5819091796875,-31.4381103515625,5.00355339050293,0.921451568603516,-32.5292320251465,48.8515357971191,0.710453033447266,-25.0126914978027,140.08203125,198.628967285156,31.5747680664063,151.04052734375,165.383544921875,-30.368408203125,140.08203125,198.628967285156,-31.5746459960938,151.041015625,165.38330078125,30.3681640625,153.1767578125,159.365966796875,-0.000244140625,153.7470703125,158.50146484375,-24.63134765625,153.74658203125,158.50146484375,24.63134765625,-38.74072265625,1.16845703125,52.1142578125,-4.0244140625,1.42626953125,55.53076171875,
- -35.1884765625,0.625244140625,56.268798828125,5.0859375,1.03057861328125,20.2561645507813,5.0859375,1.03057861328125,47.6878051757813,-38.923828125,0.7933349609375,-0.0001220703125,5.0859375,1.03057861328125,-20.2565307617188,-38.74072265625,1.16845703125,-52.1142578125,-4.0244140625,1.426513671875,-55.530517578125,-35.1884765625,0.625244140625,-56.268310546875,5.0859375,1.03057861328125,-47.6881713867188,157.982421875,246.4638671875,-51.9580078125,164.189453125,213.768127441406,-55.3773803710938,158.3271484375,244.62841796875,-56.30078125,166.0947265625,203.553527832031,-47.6036987304688,157.90576171875,246.73095703125,0,157.98193359375,246.463623046875,51.957763671875,164.18896484375,213.767883300781,55.3772583007813,158.3271484375,244.62841796875,56.30078125,166.0947265625,203.553527832031,47.6033325195313,48.9560546875,2.99951171875,0,50.8949394226074,35.5847587585449,-0.0104560852050781,51.5051879882813,37.1299896240234,-25.6502838134766,53.2103729248047,36.4432983398438,-6.103515625e-005,37.625,2.216796875,-33.90380859375,72.9792785644531,89.8008651733398,-24.5262832641602,63.6698150634766,70.3342742919922,-0.0001983642578125,76.0722961425781,91.945556640625,0.000244140625,1.11066353321075,2.78109169006348,-34.3146095275879,5.23743295669556,44.3885231018066,-32.4107933044434,17.2081832885742,86.0534973144531,-33.2702331542969,41.6179351806641,38.488826751709,-33.329044342041,65.8699035644531,102.466552734375,-33.792236328125,35.6777801513672,120.301803588867,-33.5668563842773,73.37890625,97.3017578125,-24.84033203125,75.0263671875,97.41552734375,-24.81640625,75.5927734375,97.190673828125,0.000244140625,36.0490989685059,124.937995910645,-31.7221603393555,68.7791519165039,162.368698120117,-34.2440948486328,100.8203125,125.46826171875,-24.1357421875,100.2529296875,125.315673828125,0.000244140625,92.5107421875,134.766845703125,-34.014404296875,51.5017166137695,37.1169281005859,25.6506195068359,37.62451171875,2.216796875,33.90380859375,72.9786529541016,89.8006286621094,24.5262145996094,1.10764193534851,2.77556610107422,34.3141403198242,
- 5.23603534698486,44.3866806030273,32.4106063842773,17.2081031799316,86.0532531738281,33.2700500488281,41.6184768676758,38.4893074035645,33.3291511535645,65.8698272705078,102.466339111328,33.7925186157227,35.6777801513672,120.301788330078,33.5669250488281,73.37890625,97.302001953125,24.840087890625,75.0263671875,97.41552734375,24.81640625,68.7794418334961,162.368927001953,34.2444152832031,36.0493125915527,124.937896728516,31.7220764160156,100.8203125,125.46826171875,24.1357421875,92.5107421875,134.766845703125,34.013916015625,32.546329498291,109.351806640625,-20.259033203125,32.9037055969238,109.379234313965,-47.1236953735352,36.402286529541,110.665885925293,-20.289192199707,36.2339324951172,112.455062866211,-46.8447418212891,73.9381942749023,155.939727783203,-20.2560729980469,26.7174949645996,114.624908447266,-56.7832946777344,23.8955078125,114.567138671875,-56.196533203125,74.88037109375,156.7626953125,-47.376953125,-4.23681640625,131.85546875,-57.1748046875,-6.81396484375,132.231079101563,-56.0780029296875,72.90625,160.8525390625,-47.37353515625,74.7943725585938,161.076080322266,-20.3160095214844,67.6553344726563,166.650146484375,-56.760498046875,74.71923828125,160.26806640625,-46.2041015625,101.414665222168,178.830108642578,-47.6191101074219,102.868377685547,178.507781982422,-20.3056945800781,96.2314834594727,187.90412902832,-56.6666717529297,162.376647949219,201.165344238281,-47.2575073242188,162.624588012695,212.582763671875,-57.5192718505859,156.275390625,246.818603515625,-57.360107421875,156.46630859375,247.725341796875,-0.000244140625,156.02734375,248.28466796875,-56.330078125,128.38671875,240.31103515625,-56.4833984375,121.550819396973,237.612426757813,-48.8114013671875,119.906272888184,237.973495483398,-0.0001373291015625,127.280151367188,238.3779296875,-57.1748046875,109.736328125,233.897216796875,-56.170166015625,110.3271484375,233.0048828125,-57.36572265625,76.4888534545898,219.579772949219,0.00018310546875,76.5681838989258,218.137557983398,-56.9469146728516,79.0632247924805,218.855590820313,-55.3021240234375,
- 75.9462890625,221.085021972656,-55.4511108398438,42.6537895202637,194.492324829102,0.0001373291015625,48.7142181396484,198.749908447266,-57.0865173339844,43.7444076538086,195.895690917969,-55.2283477783203,14.4161167144775,163.639251708984,-54.7567443847656,14.0650787353516,162.538513183594,-6.103515625e-005,-5.6796875,133.991943359375,-0.000244140625,15.0355815887451,161.709609985352,-56.8826751708984,-5.4365234375,132.3759765625,-56.1376953125,-7.083984375,133.17578125,0,-40.29443359375,2.84686279296875,0.00018310546875,-39.09423828125,3.17254638671875,-55.6013793945313,-37.6650390625,34.521484375,-56.169921875,-36.7446441650391,47.8954277038574,-8.0108642578125e-005,-37.3701171875,2.81561279296875,-57.4544067382813,-35.8448333740234,47.1443901062012,-48.9596138000488,-28.0185546875,82.2982177734375,-0.0001220703125,-36.599609375,34.624755859375,-57.365478515625,-2.44580078125,3.57098388671875,-57.1179809570313,8.31396484375,2.82342529296875,-47.6687622070313,8.666015625,2.42913818359375,-20.2564086914063,15.5975542068481,67.1573486328125,-47.6307373046875,16.2627811431885,70.6370544433594,-20.2408752441406,4.02601003646851,70.30322265625,-57.4248046875,15.3564453125,71.24560546875,-47.5771484375,21.634765625,114.185791015625,-57.702880859375,-33.4290809631348,52.0290451049805,-57.1379470825195,-26.9044227600098,84.3677749633789,-57.2772445678711,-34.64892578125,54.013671875,-56.4833984375,-28.1417026519775,83.431755065918,-55.502815246582,-26.90380859375,83.24072265625,0,-31.2265625,85.8873291015625,0.0001220703125,-30.16796875,86.029296875,-55.1669921875,-9.87451171875,133.671264648438,-0.0001220703125,-8.0126953125,131.68994140625,-58.1533203125,-9.43798828125,132.439453125,-56.873046875,105.15185546875,124.08251953125,0,105.583984375,124.15869140625,-24.05419921875,124.869895935059,138.814453125,0,97.6285629272461,133.233459472656,-33.1122436523438,125.694885253906,141.156814575195,-25.0209197998047,126.2177734375,141.61572265625,0,153.46533203125,153.808837890625,0.000244140625,154.06201171875,153.990966796875,-24.634033203125,
- 150.056640625,164.707763671875,-33.558837890625,73.6728515625,159.783935546875,-33.534423828125,102.010139465332,181.649826049805,-33.2705841064453,138.8359375,199.179260253906,-33.9237670898438,97.6285171508789,133.233474731445,33.1123809814453,105.583984375,124.15869140625,24.05419921875,125.694602966309,141.156860351563,25.0211029052734,154.06201171875,153.99072265625,24.63427734375,150.05615234375,164.707763671875,33.558349609375,102.010116577148,181.649826049805,33.2704315185547,138.8359375,199.179260253906,33.9238891601563,38.0648040771484,111.252319335938,20.300666809082,32.9720420837402,109.507354736328,47.3486633300781,32.7700042724609,109.705581665039,20.2597885131836,37.9217758178711,113.610816955566,46.8295669555664,73.8865509033203,155.95866394043,20.2589569091797,26.8492889404297,114.531875610352,56.8092193603516,23.8955078125,114.567138671875,56.196044921875,74.88037109375,156.7626953125,47.376953125,-4.23681640625,131.85546875,57.1748046875,-5.92657327651978,131.590484619141,56.3370513916016,72.90576171875,160.8525390625,47.37353515625,74.7943878173828,161.076049804688,20.3157958984375,67.6520767211914,166.659103393555,56.7611541748047,74.71923828125,160.26806640625,46.2041015625,15.0379104614258,161.714050292969,56.8825073242188,101.414527893066,178.830291748047,47.6193542480469,102.869087219238,178.506973266602,20.3077545166016,162.360321044922,201.160980224609,47.2571716308594,14.4284534454346,163.654907226563,54.7559814453125,48.7077445983887,198.744689941406,57.0864868164063,43.7435073852539,195.894943237305,55.2279510498047,75.94580078125,221.085021972656,55.4512329101563,76.5674514770508,218.138229370117,56.9468231201172,79.0635070800781,218.855682373047,55.3019714355469,109.73583984375,233.897216796875,56.169677734375,110.3271484375,233.0048828125,57.36572265625,96.2316513061523,187.904174804688,56.6668701171875,162.624526977539,212.582138061523,57.5196380615234,156.275390625,246.818603515625,57.360595703125,127.263404846191,238.373062133789,57.1767578125,128.38671875,240.31103515625,56.4833984375,
- 156.02734375,248.284912109375,56.329833984375,121.241638183594,237.528167724609,48.8685150146484,-39.09423828125,3.17254638671875,55.6017456054688,-37.66552734375,34.521484375,56.169921875,-37.3701171875,2.81561279296875,57.4552612304688,-35.8452453613281,47.1442680358887,48.9596977233887,-36.599609375,34.624755859375,57.365966796875,-2.44580078125,3.57073974609375,57.1181030273438,-33.4290199279785,52.0289306640625,57.1383056640625,8.31396484375,2.82318115234375,47.6688842773438,8.666015625,2.42913818359375,20.2562866210938,15.5972366333008,67.1578979492188,47.6305541992188,16.2533016204834,70.6137390136719,20.2411804199219,4.02631616592407,70.3037109375,57.4248123168945,15.35595703125,71.24560546875,47.5771484375,21.634765625,114.185546875,57.703125,-26.9051647186279,84.3636627197266,57.2772369384766,-8.0126953125,131.68994140625,58.1533203125,-34.64892578125,54.013427734375,56.483154296875,-9.43798828125,132.439453125,56.873046875,-30.16796875,86.029296875,55.1669921875,-28.1416988372803,83.4318923950195,55.5022048950195
- }
- PolygonVertexIndex: *1305 {
- a: 0,1,-3,3,4,-6,3,5,-7,6,5,-8,8,9,-3,2,9,-11,10,0,-3,11,12,-14,11,13,-4,13,4,-4,8,2,-15,14,2,-16,15,2,-17,17,18,-20,18,17,-21,17,21,-21,20,21,-3,20,2,-2,16,2,-22,22,23,-25,22,24,-26,22,25,-27,26,25,-28,28,29,-31,28,31,-30,31,32,-30,32,31,-34,29,32,-35,35,36,-38,38,36,-36,36,38,-40,39,40,-37,39,38,-42,42,43,-45,45,43,-43,43,45,-47,47,45,-43,45,47,-49,49,48,-48,50,48,-50,50,49,-52,48,50,-53,53,54,-56,27,54,-54,54,27,-57,57,27,-54,27,57,-27,58,26,-58,59,26,-59,59,58,-61,26,59,-62,34,62,-30,62,34,-64,63,34,-65,64,65,-64,66,64,-35,66,34,-33,33,66,-33,67,65,-65,65,67,-69,67,69,-69,66,33,-71,70,33,-72,71,72,-71,70,73,-67,73,70,-73,64,66,-74,73,67,-65,72,74,-74,73,74,-68,75,74,-73,67,76,-70,74,76,-68,69,76,-78,74,77,-77,77,78,-70,79,80,-76,81,78,-78,78,81,-83,82,81,-5,4,81,-6,77,83,-82,83,5,-82,83,77,-75,75,83,-75,83,75,-81,83,7,-6,83,80,-7,6,7,-84,62,30,-30,63,30,-63,30,63,-85,65,84,-64,84,85,-31,30,85,-29,31,28,-86,65,86,-85,86,65,-69,69,86,-69,85,87,-32,31,87,-89,89,88,-88,90,87,-86,89,87,-91,85,84,-91,86,90,-85,91,89,-91,90,86,-92,89,91,-93,86,69,-94,93,91,-87,69,94,-94,94,91,-94,94,69,-79,95,96,-93,94,78,-98,97,78,-83,97,82,-5,4,13,-98,98,94,-98,98,97,-14,94,98,-92,98,92,-92,92,98,-96,98,13,-13,98,11,-96,12,11,-99,99,100,-102,101,100,-103,102,103,-102,104,102,-101,104,100,-106,103,102,-107,107,104,-106,105,108,-108,109,103,-107,110,103,-110,102,111,-107,106,111,-110,111,102,-105,110,109,-113,111,112,-110,113,110,-113,110,113,-115,112,115,-114,115,112,-112,116,114,-114,115,116,-114,114,116,-25,116,25,-25,27,25,-117,116,56,-28,117,56,-117,116,115,-118,56,117,-55,117,55,-55,117,118,-56,53,55,-119,57,53,-120,53,118,-121,120,119,-54,118,121,-121,120,122,-120,122,120,-122,119,122,-124,118,124,-122,122,121,-125,117,124,-119,125,123,-123,126,124,-118,126,122,-125,122,126,-126,117,115,-127,123,125,-128,126,115,-129,128,115,-112,126,129,-126,129,126,-129,127,125,-130,130,127,-130,130,129,-129,127,130,-132,128,111,-133,132,130,-129,131,130,-134,130,132,-134,134,131,-134,132,134,-134,131,134,-136,135,134,-137,111,
- 137,-133,134,132,-138,137,111,-105,104,107,-138,138,134,-138,138,137,-108,136,134,-139,108,138,-108,108,136,-139,136,108,-140,140,49,-48,49,140,-142,51,49,-142,140,142,-142,143,142,-141,141,144,-52,142,143,-146,146,145,-144,147,141,-143,141,147,-145,145,147,-143,148,51,-145,148,144,-148,51,148,-51,52,50,-149,148,149,-53,149,48,-53,48,149,-151,151,150,-150,151,149,-149,150,151,-153,148,153,-152,148,147,-154,152,151,-155,153,154,-152,152,100,-100,100,152,-155,154,155,-101,155,154,-154,155,105,-101,108,105,-156,147,156,-154,147,145,-157,157,155,-154,157,153,-157,145,158,-157,157,156,-159,145,159,-159,158,159,-158,159,145,-147,160,159,-147,161,159,-161,159,161,-163,157,159,-163,163,162,-162,108,163,-140,164,157,-163,155,157,-165,108,155,-165,162,163,-166,163,108,-166,162,165,-165,108,164,-166,8,14,-167,166,14,-168,166,167,-169,169,167,-15,169,14,-16,168,167,-171,170,167,-170,168,170,-172,172,171,-171,172,170,-174,173,170,-175,170,169,-175,175,169,-16,15,16,-176,21,175,-17,176,174,-170,169,175,-177,176,175,-22,174,176,-178,17,176,-22,176,19,-178,17,19,-177,0,10,-2,178,1,-11,9,178,-11,166,9,-9,9,166,-180,178,9,-180,168,179,-167,179,168,-181,178,179,-181,171,180,-169,172,180,-172,180,172,-182,180,181,-183,182,178,-181,178,182,-184,178,183,-2,183,182,-185,20,1,-184,183,184,-19,18,20,-184,185,186,-188,186,185,-189,189,188,-186,190,186,-189,186,190,-192,188,189,-193,190,193,-192,191,193,-195,189,195,-193,196,195,-190,188,192,-198,195,197,-193,188,197,-191,196,198,-196,198,197,-196,193,190,-200,197,199,-191,193,199,-195,196,200,-199,200,196,-202,194,136,-140,201,202,-201,202,201,-24,22,202,-24,26,202,-23,202,26,-62,136,194,-204,194,199,-204,203,135,-137,203,131,-136,204,203,-200,199,197,-205,205,131,-204,203,204,-206,206,131,-206,204,206,-206,131,206,-128,204,197,-208,206,204,-208,127,206,-209,206,207,-209,209,127,-209,127,209,-124,210,208,-208,208,210,-210,197,211,-208,211,210,-208,198,211,-198,211,198,-201,200,202,-212,211,202,-213,210,211,-213,61,212,-203,212,61,-60,60,212,-60,213,212,-61,58,213,-61,210,212,-215,214,212,-214,
- 58,57,-120,214,213,-216,58,216,-214,216,215,-214,119,216,-59,217,214,-216,216,217,-216,217,210,-215,119,217,-217,210,217,-210,217,119,-124,123,209,-218,42,140,-48,140,42,-219,42,44,-219,219,140,-219,140,219,-144,44,220,-219,143,219,-222,221,146,-144,218,222,-220,222,218,-221,222,221,-220,44,223,-221,222,220,-224,223,44,-44,46,223,-44,221,222,-225,225,223,-47,45,225,-47,225,45,-227,226,227,-226,227,223,-226,227,226,-229,229,222,-224,229,223,-228,222,229,-225,228,230,-228,230,229,-228,186,228,-188,230,228,-187,231,230,-187,230,231,-230,231,186,-192,191,194,-232,231,232,-230,224,229,-233,233,231,-195,232,231,-234,163,194,-140,232,234,-225,221,224,-235,194,163,-236,194,235,-234,235,163,-237,235,236,-234,233,236,-233,236,163,-162,232,236,-238,161,237,-237,237,234,-233,237,221,-235,237,161,-161,146,221,-238,237,160,-147,184,35,-19,35,19,-19,184,182,-36,19,35,-38,38,35,-183,177,19,-38,41,38,-183,37,174,-178,182,181,-42,37,36,-175,181,172,-42,36,40,-175,41,172,-40,172,40,-40,173,174,-41,40,172,-174
- }
- Edges: *669 {
- a: 0,1,2,3,4,5,7,8,10,11,12,13,14,16,17,18,21,22,23,25,26,27,31,32,34,35,37,38,39,40,41,43,44,45,46,49,50,53,56,57,58,59,61,62,64,65,67,68,69,70,71,72,73,75,76,79,80,82,83,84,85,86,87,89,91,92,93,94,97,98,99,100,101,102,104,106,107,108,110,112,113,114,116,117,119,121,122,124,125,126,127,128,129,131,133,134,135,137,139,141,143,144,146,148,149,151,152,153,154,157,158,160,161,162,163,165,167,170,171,174,176,178,179,180,181,184,185,187,188,189,190,192,193,197,200,201,204,205,208,210,212,213,214,216,220,221,222,225,226,228,229,230,231,233,235,236,238,239,241,243,244,246,251,252,257,258,262,263,267,270,274,275,276,279,280,283,287,288,289,293,294,297,298,301,302,303,305,306,308,311,313,315,318,320,322,325,326,328,329,330,333,334,336,341,342,343,344,346,347,350,353,355,357,359,362,364,366,370,374,375,376,381,382,383,385,386,387,388,390,392,394,395,397,398,399,401,402,403,405,407,408,410,411,412,415,419,421,422,423,426,428,430,431,432,433,437,438,440,441,445,446,447,452,453,456,458,460,463,465,468,469,473,475,476,478,479,480,483,484,486,487,491,493,494,495,496,500,501,504,506,507,509,510,514,517,520,521,523,524,527,528,529,533,536,537,539,542,544,545,547,548,549,553,554,556,558,560,561,565,566,568,569,570,571,575,578,580,582,584,587,590,591,594,598,599,600,602,604,605,608,609,610,612,614,615,616,619,620,621,623,624,626,628,630,633,635,638,640,644,645,646,648,652,653,654,656,659,661,662,663,664,667,670,671,672,675,677,680,681,682,686,687,692,693,694,697,699,701,704,705,706,710,711,712,715,719,720,722,723,725,727,728,731,732,734,735,736,738,740,743,746,748,749,751,754,760,761,763,764,766,767,768,770,773,775,776,779,781,782,783,785,787,788,790,791,793,795,797,799,801,804,806,808,812,814,815,816,819,820,826,828,830,831,834,838,839,842,843,847,848,851,852,855,859,860,862,863,864,868,869,871,874,875,878,880,881,885,886,887,889,890,891,893,894,896,898,899,901,902,903,904,907,908,909,910,912,914,916,917,918,922,924,925,927,931,932,933,937,939,940,943,944,945,947,948,949,952,953,954,957,962,964,965,967,969,972,975,977,
- 979,981,983,985,987,989,990,994,997,998,1001,1003,1004,1006,1008,1010,1012,1014,1016,1018,1020,1021,1023,1026,1031,1033,1036,1037,1040,1041,1046,1047,1050,1052,1053,1057,1058,1061,1064,1066,1067,1068,1069,1071,1074,1077,1079,1080,1083,1086,1090,1094,1098,1102,1103,1105,1107,1109,1111,1113,1114,1117,1118,1119,1122,1123,1127,1128,1131,1132,1136,1139,1140,1144,1145,1146,1148,1149,1153,1154,1155,1156,1158,1162,1163,1164,1166,1169,1171,1173,1174,1176,1179,1180,1184,1185,1187,1189,1193,1195,1197,1198,1202,1203,1205,1208,1209,1212,1213,1217,1219,1220,1222,1225,1226,1228,1231,1235,1237,1238,1239,1242,1245,1250,1253,1257,1258,1260,1264,1268,1271,1274,1277,1278,1282,1285,1288,1291,1294,1296,1301
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *3915 {
- a: -0.244359791278839,0.969556570053101,0.0157651472836733,-0.556490540504456,0.830816984176636,0.00783789530396461,-0.588620185852051,0.808371663093567,0.00784826837480068,0.763684928417206,0.645589292049408,1.43349619296941e-016,0.781638503074646,0.623731732368469,1.38496266092962e-016,0.781541049480438,0.623654007911682,-0.0157887078821659,0.763684928417206,0.645589292049408,1.43349619296941e-016,0.781541049480438,0.623654007911682,-0.0157887078821659,0.762834191322327,0.644870162010193,-0.0471856221556664,0.762834191322327,0.644870162010193,-0.0471856221556664,0.781541049480438,0.623654007911682,-0.0157887078821659,0.756962239742279,0.615031778812408,-0.22078064084053,-0.726575016975403,-0.687087178230286,-1.52564001039198e-016,-0.722619593143463,-0.691201388835907,0.00785456132143736,-0.745241343975067,-0.666794836521149,-1.48058196041389e-016,-0.745241343975067,-0.666794836521149,-1.48058196041389e-016,-0.722619593143463,-0.691201388835907,0.00785456132143736,-0.741353571414948,-0.670372903347015,0.0315469615161419,-0.741353571414948,-0.670372903347015,0.0315469615161419,-0.741722702980042,-0.670706689357758,-1.48926801859019e-016,-0.745241343975067,-0.666794836521149,-1.48058196041389e-016,0.762834191322327,0.644870162010193,0.0471856221556664,0.756962239742279,0.615031778812408,0.22078064084053,0.781541049480438,0.623654007911682,0.0157887078821659,0.762834191322327,0.644870162010193,0.0471856221556664,0.781541049480438,0.623654007911682,0.0157887078821659,0.763684928417206,0.645589292049408,1.43349619296941e-016,0.781541049480438,0.623654007911682,0.0157887078821659,0.781638503074646,0.623731732368469,1.38496266092962e-016,0.763684928417206,0.645589292049408,1.43349619296941e-016,-0.726575016975403,-0.687087178230286,-1.52564001039198e-016,-0.745241343975067,-0.666794836521149,-1.48058196041389e-016,-0.722619593143463,-0.691201388835907,-0.00785456132143736,-0.722619593143463,-0.691201388835907,-0.00785456132143736,-0.745241343975067,-0.666794836521149,-1.48058196041389e-016,-0.741353571414948,-0.670372903347015,-0.0315469615161419,
- -0.741353571414948,-0.670372903347015,-0.0315469615161419,-0.745241343975067,-0.666794836521149,-1.48058196041389e-016,-0.741722702980042,-0.670706689357758,-1.48926801859019e-016,-0.431455492973328,0.902134239673615,2.00314040837671e-016,-0.402474135160446,0.915431380271912,2.03266599168453e-016,-0.402474135160446,0.915431380271912,2.03266599168453e-016,-0.402474135160446,0.915431380271912,2.03266599168453e-016,-0.431455492973328,0.902134239673615,2.00314040837671e-016,-0.517937839031219,0.855382263660431,0.00784754380583763,-0.431455492973328,0.902134239673615,2.00314040837671e-016,-0.592390477657318,0.805651009082794,1.78890460019242e-016,-0.517937839031219,0.855382263660431,0.00784754380583763,-0.517937839031219,0.855382263660431,0.00784754380583763,-0.592390477657318,0.805651009082794,1.78890460019242e-016,-0.588620185852051,0.808371663093567,0.00784826837480068,-0.517937839031219,0.855382263660431,0.00784754380583763,-0.588620185852051,0.808371663093567,0.00784826837480068,-0.583455502986908,0.812106966972351,0.00788453407585621,-0.583310425281525,0.811905026435852,-0.0236477199941874,-0.588620185852051,0.808371663093567,0.00784826837480068,-0.592390477657318,0.805651009082794,1.78890460019242e-016,0.346800923347473,-0.937938749790192,-2.08264239141041e-016,0.236956179141998,-0.971520364284515,-2.15720855464178e-016,0.236956179141998,-0.971520364284515,-2.15720855464178e-016,0.346800923347473,-0.937938749790192,-2.08264239141041e-016,0.236956179141998,-0.971520364284515,-2.15720855464178e-016,0.346800923347473,-0.937938749790192,-2.08264239141041e-016,0.346800923347473,-0.937938749790192,-2.08264239141041e-016,0.346800923347473,-0.937938749790192,-2.08264239141041e-016,0.959114789962769,-0.283017456531525,-6.28424993224296e-017,0.959114789962769,-0.283017456531525,-6.28424993224296e-017,0.346800923347473,-0.937938749790192,-2.08264239141041e-016,0.959114789962769,-0.283017456531525,-6.28424993224296e-017,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,
- 0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.937938749790192,0.346800923347473,7.70052740123257e-017,0.937938749790192,0.346800923347473,7.70052740123257e-017,0.928989887237549,0.370021402835846,0.00787279568612576,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.937938749790192,0.346800923347473,7.70052740123257e-017,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.937938749790192,0.346800923347473,7.70052740123257e-017,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,
- 0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.930056929588318,-0.141873091459274,-0.338919043540955,0.995495498180389,-0.0948090925812721,-2.10518475055093e-017,0.749147057533264,-0.662403702735901,-1.47083168474871e-016,0.995495498180389,-0.0948090925812721,-2.10518475055093e-017,0.930056929588318,-0.141873091459274,-0.338919043540955,0.999845147132874,0.0157455932348967,0.00787279661744833,0.999845147132874,0.0157455932348967,0.00787279661744833,0.930056929588318,-0.141873091459274,-0.338919043540955,0.92054671049118,-0.125886723399162,-0.369792282581329,0.92054671049118,-0.125886723399162,-0.369792282581329,0.922375679016113,-0.386294096708298,-8.57745200884658e-017,0.999845147132874,0.0157455932348967,0.00787279661744833,
- 0.165426135063171,-0.0551420450210571,-0.984679400920868,0.92054671049118,-0.125886723399162,-0.369792282581329,0.930056929588318,-0.141873091459274,-0.338919043540955,0.165426135063171,-0.0551420450210571,-0.984679400920868,0.930056929588318,-0.141873091459274,-0.338919043540955,0.205464586615562,-0.719126105308533,-0.663808703422546,-0.118337914347649,-0.702138245105743,-0.702138245105743,0.165426135063171,-0.0551420450210571,-0.984679400920868,0.205464586615562,-0.719126105308533,-0.663808703422546,0.857842445373535,-0.393505692481995,-0.330544769763947,0.922375679016113,-0.386294096708298,-8.57745200884658e-017,0.92054671049118,-0.125886723399162,-0.369792282581329,0.922375679016113,-0.386294096708298,-8.57745200884658e-017,0.857842445373535,-0.393505692481995,-0.330544769763947,0.925168633460999,-0.379556357860565,-8.4278441527933e-017,0.857842445373535,-0.393505692481995,-0.330544769763947,0.90816205739975,-0.418544262647629,-0.00789706129580736,0.925168633460999,-0.379556357860565,-8.4278441527933e-017,0.165426135063171,-0.0551420450210571,-0.984679400920868,-0.118337914347649,-0.702138245105743,-0.702138245105743,-0.0157382767647505,-0.031476553529501,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.999380588531494,-0.118337914347649,-0.702138245105743,-0.702138245105743,-0.749100506305695,0.10250848531723,-0.65447723865509,-0.749100506305695,0.10250848531723,-0.65447723865509,-0.118080973625183,0.0472323894500732,-0.991880118846893,-0.0157382767647505,-0.031476553529501,-0.999380588531494,-0.0157382767647505,-0.031476553529501,-0.999380588531494,0.173142492771149,-0.0472206771373749,-0.983764111995697,0.165426135063171,-0.0551420450210571,-0.984679400920868,0.173142492771149,-0.0472206771373749,-0.983764111995697,-0.0157382767647505,-0.031476553529501,-0.999380588531494,-0.118080973625183,0.0472323894500732,-0.991880118846893,0.92054671049118,-0.125886723399162,-0.369792282581329,0.165426135063171,-0.0551420450210571,-0.984679400920868,0.173142492771149,-0.0472206771373749,-0.983764111995697,0.173142492771149,-0.0472206771373749,-0.983764111995697,
- 0.857842445373535,-0.393505692481995,-0.330544769763947,0.92054671049118,-0.125886723399162,-0.369792282581329,-0.118080973625183,0.0472323894500732,-0.991880118846893,0.164940670132637,-0.0942518189549446,-0.981789767742157,0.173142492771149,-0.0472206771373749,-0.983764111995697,0.173142492771149,-0.0472206771373749,-0.983764111995697,0.164940670132637,-0.0942518189549446,-0.981789767742157,0.857842445373535,-0.393505692481995,-0.330544769763947,-0.0471389964222908,0.0471389964222908,-0.997775435447693,0.164940670132637,-0.0942518189549446,-0.981789767742157,-0.118080973625183,0.0472323894500732,-0.991880118846893,0.857842445373535,-0.393505692481995,-0.330544769763947,0.858880341053009,0.409741044044495,-0.307305812835693,0.90816205739975,-0.418544262647629,-0.00789706129580736,0.164940670132637,-0.0942518189549446,-0.981789767742157,0.858880341053009,0.409741044044495,-0.307305812835693,0.857842445373535,-0.393505692481995,-0.330544769763947,0.90816205739975,-0.418544262647629,-0.00789706129580736,0.858880341053009,0.409741044044495,-0.307305812835693,0.684001207351685,-0.628966629505157,-0.369517892599106,0.164940670132637,-0.0942518189549446,-0.981789767742157,0.684001207351685,-0.628966629505157,-0.369517892599106,0.858880341053009,0.409741044044495,-0.307305812835693,0.684001207351685,-0.628966629505157,-0.369517892599106,0.734197854995728,-0.678935587406158,-1.50753984275145e-016,0.90816205739975,-0.418544262647629,-0.00789706129580736,-0.48137566447258,0.307764768600464,-0.820706009864807,-0.0788183808326721,0.0867002233862877,-0.993111670017242,-0.0471389964222908,0.0471389964222908,-0.997775435447693,0.70691043138504,-0.612655699253082,-0.35345521569252,0.734197854995728,-0.678935587406158,-1.50753984275145e-016,0.684001207351685,-0.628966629505157,-0.369517892599106,0.734197854995728,-0.678935587406158,-1.50753984275145e-016,0.70691043138504,-0.612655699253082,-0.35345521569252,0.756468534469604,-0.654030084609985,-1.45223851746309e-016,0.756468534469604,-0.654030084609985,-1.45223851746309e-016,0.70691043138504,-0.612655699253082,-0.35345521569252,
- 0.781638503074646,0.623731732368469,1.38496266092962e-016,0.781638503074646,0.623731732368469,1.38496266092962e-016,0.70691043138504,-0.612655699253082,-0.35345521569252,0.781541049480438,0.623654007911682,-0.0157887078821659,0.684001207351685,-0.628966629505157,-0.369517892599106,0.141780629754066,-0.102397121489048,-0.984587788581848,0.70691043138504,-0.612655699253082,-0.35345521569252,0.141780629754066,-0.102397121489048,-0.984587788581848,0.781541049480438,0.623654007911682,-0.0157887078821659,0.70691043138504,-0.612655699253082,-0.35345521569252,0.141780629754066,-0.102397121489048,-0.984587788581848,0.684001207351685,-0.628966629505157,-0.369517892599106,0.164940670132637,-0.0942518189549446,-0.981789767742157,-0.0471389964222908,0.0471389964222908,-0.997775435447693,0.141780629754066,-0.102397121489048,-0.984587788581848,0.164940670132637,-0.0942518189549446,-0.981789767742157,0.141780629754066,-0.102397121489048,-0.984587788581848,-0.0471389964222908,0.0471389964222908,-0.997775435447693,-0.0788183808326721,0.0867002233862877,-0.993111670017242,0.141780629754066,-0.102397121489048,-0.984587788581848,0.756962239742279,0.615031778812408,-0.22078064084053,0.781541049480438,0.623654007911682,-0.0157887078821659,0.141780629754066,-0.102397121489048,-0.984587788581848,-0.0788183808326721,0.0867002233862877,-0.993111670017242,0.762834191322327,0.644870162010193,-0.0471856221556664,0.762834191322327,0.644870162010193,-0.0471856221556664,0.756962239742279,0.615031778812408,-0.22078064084053,0.141780629754066,-0.102397121489048,-0.984587788581848,0.995495498180389,-0.0948090925812721,-2.10518475055093e-017,0.930056929588318,-0.141873091459274,0.338919043540955,0.749147057533264,-0.662403702735901,-1.47083168474871e-016,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.930056929588318,-0.141873091459274,0.338919043540955,0.995495498180389,-0.0948090925812721,-2.10518475055093e-017,0.930056929588318,-0.141873091459274,0.338919043540955,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.92054671049118,-0.125886723399162,0.369792282581329,
- 0.922375679016113,-0.386294096708298,-8.57745200884658e-017,0.92054671049118,-0.125886723399162,0.369792282581329,0.999938011169434,0.0078735277056694,-0.0078735277056694,0.92054671049118,-0.125886723399162,0.369792282581329,0.165426135063171,-0.0551420450210571,0.984679400920868,0.930056929588318,-0.141873091459274,0.338919043540955,0.930056929588318,-0.141873091459274,0.338919043540955,0.165426135063171,-0.0551420450210571,0.984679400920868,0.205464586615562,-0.719126105308533,0.663808703422546,-0.109896086156368,-0.682925581932068,0.722174227237701,0.205464586615562,-0.719126105308533,0.663808703422546,0.165426135063171,-0.0551420450210571,0.984679400920868,0.922375679016113,-0.386294096708298,-8.57745200884658e-017,0.857842445373535,-0.393505692481995,0.330544769763947,0.92054671049118,-0.125886723399162,0.369792282581329,0.857842445373535,-0.393505692481995,0.330544769763947,0.922375679016113,-0.386294096708298,-8.57745200884658e-017,0.925168633460999,-0.379556357860565,-8.4278441527933e-017,0.90816205739975,-0.418544262647629,0.00789706129580736,0.857842445373535,-0.393505692481995,0.330544769763947,0.925168633460999,-0.379556357860565,-8.4278441527933e-017,0.165426135063171,-0.0551420450210571,0.984679400920868,-0.0157382767647505,-0.031476553529501,0.999380588531494,-0.109896086156368,-0.682925581932068,0.722174227237701,-0.109896086156368,-0.682925581932068,0.722174227237701,-0.0157382767647505,-0.031476553529501,0.999380588531494,-0.749100506305695,0.10250848531723,0.65447723865509,-0.118080973625183,0.0472323894500732,0.991880118846893,-0.749100506305695,0.10250848531723,0.65447723865509,-0.0157382767647505,-0.031476553529501,0.999380588531494,0.173142492771149,-0.0472206771373749,0.983764111995697,-0.0157382767647505,-0.031476553529501,0.999380588531494,0.165426135063171,-0.0551420450210571,0.984679400920868,-0.118080973625183,0.0472323894500732,0.991880118846893,-0.0157382767647505,-0.031476553529501,0.999380588531494,0.173142492771149,-0.0472206771373749,0.983764111995697,0.165426135063171,-0.0551420450210571,0.984679400920868,
- 0.92054671049118,-0.125886723399162,0.369792282581329,0.173142492771149,-0.0472206771373749,0.983764111995697,0.857842445373535,-0.393505692481995,0.330544769763947,0.173142492771149,-0.0472206771373749,0.983764111995697,0.92054671049118,-0.125886723399162,0.369792282581329,0.164940670132637,-0.0942518189549446,0.981789767742157,-0.118080973625183,0.0472323894500732,0.991880118846893,0.173142492771149,-0.0472206771373749,0.983764111995697,0.173142492771149,-0.0472206771373749,0.983764111995697,0.857842445373535,-0.393505692481995,0.330544769763947,0.164940670132637,-0.0942518189549446,0.981789767742157,-0.118080973625183,0.0472323894500732,0.991880118846893,0.164940670132637,-0.0942518189549446,0.981789767742157,-0.0471389964222908,0.0471389964222908,0.997775435447693,0.857842445373535,-0.393505692481995,0.330544769763947,0.90816205739975,-0.418544262647629,0.00789706129580736,0.858880341053009,0.409741044044495,0.307305812835693,0.858880341053009,0.409741044044495,0.307305812835693,0.164940670132637,-0.0942518189549446,0.981789767742157,0.857842445373535,-0.393505692481995,0.330544769763947,0.90816205739975,-0.418544262647629,0.00789706129580736,0.684001207351685,-0.628966629505157,0.369517892599106,0.858880341053009,0.409741044044495,0.307305812835693,0.684001207351685,-0.628966629505157,0.369517892599106,0.164940670132637,-0.0942518189549446,0.981789767742157,0.858880341053009,0.409741044044495,0.307305812835693,0.684001207351685,-0.628966629505157,0.369517892599106,0.90816205739975,-0.418544262647629,0.00789706129580736,0.734197854995728,-0.678935587406158,-1.50753984275145e-016,-0.0788183808326721,0.0867002233862877,0.993111670017242,-0.48137566447258,0.307764768600464,0.820706009864807,-0.0471389964222908,0.0471389964222908,0.997775435447693,0.684001207351685,-0.628966629505157,0.369517892599106,0.734197854995728,-0.678935587406158,-1.50753984275145e-016,0.70691043138504,-0.612655699253082,0.35345521569252,0.70691043138504,-0.612655699253082,0.35345521569252,0.734197854995728,-0.678935587406158,-1.50753984275145e-016,
- 0.756468534469604,-0.654030084609985,-1.45223851746309e-016,0.70691043138504,-0.612655699253082,0.35345521569252,0.756468534469604,-0.654030084609985,-1.45223851746309e-016,0.781638503074646,0.623731732368469,1.38496266092962e-016,0.781638503074646,0.623731732368469,1.38496266092962e-016,0.781541049480438,0.623654007911682,0.0157887078821659,0.70691043138504,-0.612655699253082,0.35345521569252,0.141780629754066,-0.102397121489048,0.984587788581848,0.684001207351685,-0.628966629505157,0.369517892599106,0.70691043138504,-0.612655699253082,0.35345521569252,0.141780629754066,-0.102397121489048,0.984587788581848,0.70691043138504,-0.612655699253082,0.35345521569252,0.781541049480438,0.623654007911682,0.0157887078821659,0.684001207351685,-0.628966629505157,0.369517892599106,0.141780629754066,-0.102397121489048,0.984587788581848,0.164940670132637,-0.0942518189549446,0.981789767742157,0.141780629754066,-0.102397121489048,0.984587788581848,-0.0471389964222908,0.0471389964222908,0.997775435447693,0.164940670132637,-0.0942518189549446,0.981789767742157,-0.0471389964222908,0.0471389964222908,0.997775435447693,0.141780629754066,-0.102397121489048,0.984587788581848,-0.0788183808326721,0.0867002233862877,0.993111670017242,0.141780629754066,-0.102397121489048,0.984587788581848,0.781541049480438,0.623654007911682,0.0157887078821659,0.756962239742279,0.615031778812408,0.22078064084053,0.141780629754066,-0.102397121489048,0.984587788581848,0.762834191322327,0.644870162010193,0.0471856221556664,-0.0788183808326721,0.0867002233862877,0.993111670017242,0.756962239742279,0.615031778812408,0.22078064084053,0.762834191322327,0.644870162010193,0.0471856221556664,0.141780629754066,-0.102397121489048,0.984587788581848,-0.165673062205315,-0.986149191856384,-0.00788919348269701,-0.102279812097549,-0.983459711074829,-0.149485886096954,0.749147057533264,-0.662403702735901,-1.47083168474871e-016,0.749147057533264,-0.662403702735901,-1.47083168474871e-016,-0.102279812097549,-0.983459711074829,-0.149485886096954,0.699703752994537,-0.652532696723938,-0.290888100862503,
- 0.699703752994537,-0.652532696723938,-0.290888100862503,0.795226275920868,-0.606261670589447,0.0078735277056694,0.749147057533264,-0.662403702735901,-1.47083168474871e-016,0.133552238345146,-0.133552238345146,-0.982001841068268,0.699703752994537,-0.652532696723938,-0.290888100862503,-0.102279812097549,-0.983459711074829,-0.149485886096954,0.133552238345146,-0.133552238345146,-0.982001841068268,-0.102279812097549,-0.983459711074829,-0.149485886096954,-0.315656155347824,-0.686552107334137,-0.654986560344696,0.795226275920868,-0.606261670589447,0.0078735277056694,0.699703752994537,-0.652532696723938,-0.290888100862503,0.762551367282867,-0.581740260124207,-0.283008724451065,-0.047189999371767,-0.00786499958485365,-0.998854994773865,0.133552238345146,-0.133552238345146,-0.982001841068268,-0.315656155347824,-0.686552107334137,-0.654986560344696,-0.315656155347824,-0.686552107334137,-0.654986560344696,-0.416999846696854,0.889075100421906,-0.188830122351646,-0.047189999371767,-0.00786499958485365,-0.998854994773865,0.935935080051422,0.306735038757324,-0.173030018806458,0.795226275920868,-0.606261670589447,0.0078735277056694,0.762551367282867,-0.581740260124207,-0.283008724451065,0.564710259437561,-0.815692663192749,0.125491186976433,0.795226275920868,-0.606261670589447,0.0078735277056694,0.935935080051422,0.306735038757324,-0.173030018806458,0.699703752994537,-0.652532696723938,-0.290888100862503,0.141534984111786,-0.117945834994316,-0.982881903648376,0.762551367282867,-0.581740260124207,-0.283008724451065,0.762551367282867,-0.581740260124207,-0.283008724451065,0.141534984111786,-0.117945834994316,-0.982881903648376,0.935935080051422,0.306735038757324,-0.173030018806458,0.141534984111786,-0.117945834994316,-0.982881903648376,0.699703752994537,-0.652532696723938,-0.290888100862503,0.133552238345146,-0.133552238345146,-0.982001841068268,0.564710259437561,-0.815692663192749,0.125491186976433,0.935935080051422,0.306735038757324,-0.173030018806458,0.544710457324982,-0.773646712303162,-0.323668509721756,0.141534984111786,-0.117945834994316,-0.982881903648376,
- 0.544710457324982,-0.773646712303162,-0.323668509721756,0.935935080051422,0.306735038757324,-0.173030018806458,0.417607754468918,-0.843094885349274,-0.338813811540604,0.564710259437561,-0.815692663192749,0.125491186976433,0.544710457324982,-0.773646712303162,-0.323668509721756,0.564710259437561,-0.815692663192749,0.125491186976433,0.417607754468918,-0.843094885349274,-0.338813811540604,0.415561735630035,-0.90953129529953,0.0078407870605588,0.544710457324982,-0.773646712303162,-0.323668509721756,0.0473794117569923,-0.197414219379425,-0.979174554347992,0.417607754468918,-0.843094885349274,-0.338813811540604,0.0473794117569923,-0.197414219379425,-0.979174554347992,0.544710457324982,-0.773646712303162,-0.323668509721756,0.141534984111786,-0.117945834994316,-0.982881903648376,0.32214629650116,-0.895723879337311,-0.306431859731674,0.415561735630035,-0.90953129529953,0.0078407870605588,0.417607754468918,-0.843094885349274,-0.338813811540604,0.0473794117569923,-0.197414219379425,-0.979174554347992,0.32214629650116,-0.895723879337311,-0.306431859731674,0.417607754468918,-0.843094885349274,-0.338813811540604,0.415561735630035,-0.90953129529953,0.0078407870605588,0.32214629650116,-0.895723879337311,-0.306431859731674,0.339838653802872,-0.940483748912811,-2.08829342465758e-016,0.32214629650116,-0.895723879337311,-0.306431859731674,0.346800923347473,-0.937938749790192,-2.08264239141041e-016,0.339838653802872,-0.940483748912811,-2.08829342465758e-016,0.959114789962769,-0.283017456531525,-6.28424993224296e-017,0.346800923347473,-0.937938749790192,-2.08264239141041e-016,0.32214629650116,-0.895723879337311,-0.306431859731674,0.32214629650116,-0.895723879337311,-0.306431859731674,0.961942911148071,-0.189234673976898,-0.197119444608688,0.959114789962769,-0.283017456531525,-6.28424993224296e-017,0.0709696188569069,-0.197137832641602,-0.977803647518158,0.961942911148071,-0.189234673976898,-0.197119444608688,0.32214629650116,-0.895723879337311,-0.306431859731674,0.32214629650116,-0.895723879337311,-0.306431859731674,0.0473794117569923,-0.197414219379425,-0.979174554347992,
- 0.0709696188569069,-0.197137832641602,-0.977803647518158,0.961942911148071,-0.189234673976898,-0.197119444608688,0.0709696188569069,-0.197137832641602,-0.977803647518158,0.793261647224426,0.0706866830587387,-0.604763865470886,0.0709696188569069,-0.197137832641602,-0.977803647518158,0.739309966564178,0.165164992213249,-0.65279495716095,0.793261647224426,0.0706866830587387,-0.604763865470886,0.0709696188569069,-0.197137832641602,-0.977803647518158,0.0235971882939339,0.0393286496400833,-0.99894767999649,0.739309966564178,0.165164992213249,-0.65279495716095,0.645569264888763,0.76366126537323,-0.00787279661744833,0.739309966564178,0.165164992213249,-0.65279495716095,0.0235971882939339,0.0393286496400833,-0.99894767999649,0.637084722518921,0.770793914794922,1.71150630289257e-016,0.645569264888763,0.76366126537323,-0.00787279661744833,-0.25178125500679,0.96778416633606,2.14891252866791e-016,0.645569264888763,0.76366126537323,-0.00787279661744833,0.0235971882939339,0.0393286496400833,-0.99894767999649,-0.283017456531525,0.959114789962769,2.12966264615037e-016,-0.283017456531525,0.959114789962769,2.12966264615037e-016,-0.25178125500679,0.96778416633606,2.14891252866791e-016,0.645569264888763,0.76366126537323,-0.00787279661744833,0.0235971882939339,0.0393286496400833,-0.99894767999649,-0.29962158203125,0.954058229923248,2.11843482738782e-016,-0.283017456531525,0.959114789962769,2.12966264615037e-016,-0.283017456531525,0.959114789962769,2.12966264615037e-016,-0.323306053876877,0.946261703968048,0.0078855138272047,-0.25178125500679,0.96778416633606,2.14891252866791e-016,-0.323306053876877,0.946261703968048,0.0078855138272047,-0.283017456531525,0.959114789962769,2.12966264615037e-016,-0.29962158203125,0.954058229923248,2.11843482738782e-016,-0.25178125500679,0.96778416633606,2.14891252866791e-016,-0.323306053876877,0.946261703968048,0.0078855138272047,-0.346800923347473,0.937938749790192,2.08264239141041e-016,0.0235971882939339,0.0393286496400833,-0.99894767999649,-0.0552604794502258,0.0868378952145576,-0.994688630104065,-0.29962158203125,0.954058229923248,2.11843482738782e-016,
- -0.323306053876877,0.946261703968048,0.0078855138272047,-0.29962158203125,0.954058229923248,2.11843482738782e-016,-0.0552604794502258,0.0868378952145576,-0.994688630104065,0.0709696188569069,-0.197137832641602,-0.977803647518158,-0.0552604794502258,0.0868378952145576,-0.994688630104065,0.0235971882939339,0.0393286496400833,-0.99894767999649,-0.424710005521774,0.904474973678589,-0.0393249988555908,-0.346800923347473,0.937938749790192,2.08264239141041e-016,-0.323306053876877,0.946261703968048,0.0078855138272047,-0.00785819720476866,0.0628655776381493,-0.99799108505249,-0.0552604794502258,0.0868378952145576,-0.994688630104065,0.0709696188569069,-0.197137832641602,-0.977803647518158,-0.00785819720476866,0.0628655776381493,-0.99799108505249,-0.323306053876877,0.946261703968048,0.0078855138272047,-0.0552604794502258,0.0868378952145576,-0.994688630104065,-0.323306053876877,0.946261703968048,0.0078855138272047,-0.00785819720476866,0.0628655776381493,-0.99799108505249,-0.424710005521774,0.904474973678589,-0.0393249988555908,0.0709696188569069,-0.197137832641602,-0.977803647518158,0.0473794117569923,-0.197414219379425,-0.979174554347992,-0.00785819720476866,0.0628655776381493,-0.99799108505249,-0.346800923347473,0.937938749790192,2.08264239141041e-016,-0.424710005521774,0.904474973678589,-0.0393249988555908,-0.462834060192108,0.886444926261902,1.96830313439623e-016,-0.00785819720476866,0.0628655776381493,-0.99799108505249,0.0473794117569923,-0.197414219379425,-0.979174554347992,-0.031476553529501,0.0157382767647505,-0.999380588531494,-0.031476553529501,0.0157382767647505,-0.999380588531494,0.0473794117569923,-0.197414219379425,-0.979174554347992,0.141534984111786,-0.117945834994316,-0.982881903648376,-0.00785819720476866,0.0628655776381493,-0.99799108505249,-0.386102229356766,0.921917498111725,-0.0315185487270355,-0.424710005521774,0.904474973678589,-0.0393249988555908,-0.386102229356766,0.921917498111725,-0.0315185487270355,-0.00785819720476866,0.0628655776381493,-0.99799108505249,-0.031476553529501,0.0157382767647505,-0.999380588531494,
- -0.462834060192108,0.886444926261902,1.96830313439623e-016,-0.424710005521774,0.904474973678589,-0.0393249988555908,-0.386102229356766,0.921917498111725,-0.0315185487270355,-0.541947960853577,0.840412080287933,1.86608968341758e-016,-0.462834060192108,0.886444926261902,1.96830313439623e-016,-0.386102229356766,0.921917498111725,-0.0315185487270355,-0.541947960853577,0.840412080287933,1.86608968341758e-016,-0.386102229356766,0.921917498111725,-0.0315185487270355,-0.031476553529501,0.0157382767647505,-0.999380588531494,-0.462834060192108,0.886444926261902,1.96830313439623e-016,-0.541947960853577,0.840412080287933,1.86608968341758e-016,-0.687087178230286,0.726575016975403,1.61332062592701e-016,-0.031476553529501,0.0157382767647505,-0.999380588531494,0.141534984111786,-0.117945834994316,-0.982881903648376,-0.00786767713725567,0.0393383838236332,-0.999194979667664,-0.00786767713725567,0.0393383838236332,-0.999194979667664,-0.541947960853577,0.840412080287933,1.86608968341758e-016,-0.031476553529501,0.0157382767647505,-0.999380588531494,-0.687087178230286,0.726575016975403,1.61332062592701e-016,-0.541947960853577,0.840412080287933,1.86608968341758e-016,-0.691137373447418,0.722552716732025,-0.015707666054368,-0.541947960853577,0.840412080287933,1.86608968341758e-016,-0.00786767713725567,0.0393383838236332,-0.999194979667664,-0.691137373447418,0.722552716732025,-0.015707666054368,-0.781419336795807,0.623556852340698,-0.0236793737858534,-0.687087178230286,0.726575016975403,1.61332062592701e-016,-0.691137373447418,0.722552716732025,-0.015707666054368,-0.00786767713725567,0.0393383838236332,-0.999194979667664,-0.781419336795807,0.623556852340698,-0.0236793737858534,-0.691137373447418,0.722552716732025,-0.015707666054368,-0.687087178230286,0.726575016975403,1.61332062592701e-016,-0.781419336795807,0.623556852340698,-0.0236793737858534,-0.784681856632233,0.619898676872253,1.37645156799649e-016,-0.784681856632233,0.619898676872253,1.37645156799649e-016,-0.781419336795807,0.623556852340698,-0.0236793737858534,-0.812132120132446,0.58347362279892,1.29557170058563e-016,
- 0.141534984111786,-0.117945834994316,-0.982881903648376,-0.0628597587347031,0.0157149396836758,-0.997898638248444,-0.00786767713725567,0.0393383838236332,-0.999194979667664,-0.781419336795807,0.623556852340698,-0.0236793737858534,-0.00786767713725567,0.0393383838236332,-0.999194979667664,-0.0628597587347031,0.0157149396836758,-0.997898638248444,-0.0628597587347031,0.0157149396836758,-0.997898638248444,0.141534984111786,-0.117945834994316,-0.982881903648376,0.133552238345146,-0.133552238345146,-0.982001841068268,0.133552238345146,-0.133552238345146,-0.982001841068268,-0.047189999371767,-0.00786499958485365,-0.998854994773865,-0.0628597587347031,0.0157149396836758,-0.997898638248444,-0.805424928665161,0.59222424030304,-0.0236889682710171,-0.781419336795807,0.623556852340698,-0.0236793737858534,-0.0628597587347031,0.0157149396836758,-0.997898638248444,-0.805424928665161,0.59222424030304,-0.0236889682710171,-0.0628597587347031,0.0157149396836758,-0.997898638248444,-0.047189999371767,-0.00786499958485365,-0.998854994773865,-0.812132120132446,0.58347362279892,1.29557170058563e-016,-0.781419336795807,0.623556852340698,-0.0236793737858534,-0.805424928665161,0.59222424030304,-0.0236889682710171,-0.416999846696854,0.889075100421906,-0.188830122351646,-0.805424928665161,0.59222424030304,-0.0236889682710171,-0.047189999371767,-0.00786499958485365,-0.998854994773865,-0.416999846696854,0.889075100421906,-0.188830122351646,-0.812132120132446,0.58347362279892,1.29557170058563e-016,-0.805424928665161,0.59222424030304,-0.0236889682710171,-0.812132120132446,0.58347362279892,1.29557170058563e-016,-0.416999846696854,0.889075100421906,-0.188830122351646,-0.48161569237709,0.876382648944855,1.94596039048113e-016,-0.999504387378693,0.0314804539084435,6.99006495096098e-018,-0.907737612724304,-0.418348640203476,-0.0315734818577766,-0.915431380271912,-0.402474135160446,-8.93672103342449e-017,-0.907737612724304,-0.418348640203476,-0.0315734818577766,-0.999504387378693,0.0314804539084435,6.99006495096098e-018,-0.998731434345245,0.039320133626461,-0.031456109136343,
- -0.0235571414232254,-0.56537139415741,-0.824500024318695,-0.907737612724304,-0.418348640203476,-0.0315734818577766,-0.998731434345245,0.039320133626461,-0.031456109136343,-0.999504387378693,0.0314804539084435,6.99006495096098e-018,-0.997252345085144,0.0628190487623215,-0.0392619036138058,-0.998731434345245,0.039320133626461,-0.031456109136343,-0.987440645694733,0.157990500330925,3.50809382278883e-017,-0.997252345085144,0.0628190487623215,-0.0392619036138058,-0.999504387378693,0.0314804539084435,6.99006495096098e-018,-0.998731434345245,0.039320133626461,-0.031456109136343,-0.039320133626461,-0.031456109136343,-0.998731434345245,-0.0235571414232254,-0.56537139415741,-0.824500024318695,-0.997252345085144,0.0628190487623215,-0.0392619036138058,-0.987440645694733,0.157990500330925,3.50809382278883e-017,-0.980244815349579,0.197630003094673,-0.00790520012378693,-0.969677090644836,0.244390159845352,5.42655164904265e-017,-0.980244815349579,0.197630003094673,-0.00790520012378693,-0.987440645694733,0.157990500330925,3.50809382278883e-017,-0.0628500655293465,0.0235687755048275,-0.997744739055634,-0.998731434345245,0.039320133626461,-0.031456109136343,-0.997252345085144,0.0628190487623215,-0.0392619036138058,-0.998731434345245,0.039320133626461,-0.031456109136343,-0.0628500655293465,0.0235687755048275,-0.997744739055634,-0.039320133626461,-0.031456109136343,-0.998731434345245,-0.980244815349579,0.197630003094673,-0.00790520012378693,-0.0628500655293465,0.0235687755048275,-0.997744739055634,-0.997252345085144,0.0628190487623215,-0.0392619036138058,0.220015943050385,-0.0471462719142437,-0.974356293678284,-0.0235571414232254,-0.56537139415741,-0.824500024318695,-0.039320133626461,-0.031456109136343,-0.998731434345245,0.220015943050385,-0.0471462719142437,-0.974356293678284,-0.039320133626461,-0.031456109136343,-0.998731434345245,-0.0628500655293465,0.0235687755048275,-0.997744739055634,-0.0235571414232254,-0.56537139415741,-0.824500024318695,0.220015943050385,-0.0471462719142437,-0.974356293678284,0.126364812254906,-0.600232839584351,-0.789780020713806,
- 0.440890222787857,-0.873907387256622,-0.204699024558067,0.126364812254906,-0.600232839584351,-0.789780020713806,0.220015943050385,-0.0471462719142437,-0.974356293678284,0.220015943050385,-0.0471462719142437,-0.974356293678284,0.946968495845795,-0.134153857827187,-0.291981935501099,0.440890222787857,-0.873907387256622,-0.204699024558067,0.946968495845795,-0.134153857827187,-0.291981935501099,0.425025671720505,-0.905147194862366,-0.00787084549665451,0.440890222787857,-0.873907387256622,-0.204699024558067,0.425025671720505,-0.905147194862366,-0.00787084549665451,0.946968495845795,-0.134153857827187,-0.291981935501099,0.988820910453796,-0.149107918143272,-3.31086087753168e-017,0.942082524299622,-0.0942082554101944,-0.321878165006638,0.988820910453796,-0.149107918143272,-3.31086087753168e-017,0.946968495845795,-0.134153857827187,-0.291981935501099,0.942082524299622,-0.0942082554101944,-0.321878165006638,0.946968495845795,-0.134153857827187,-0.291981935501099,0.220015943050385,-0.0471462719142437,-0.974356293678284,0.988820910453796,-0.149107918143272,-3.31086087753168e-017,0.942082524299622,-0.0942082554101944,-0.321878165006638,0.951782822608948,-0.306772977113724,-6.81172845048925e-017,0.220015943050385,-0.0471462719142437,-0.974356293678284,0.197414219379425,-0.0473794117569923,-0.979174554347992,0.942082524299622,-0.0942082554101944,-0.321878165006638,0.220015943050385,-0.0471462719142437,-0.974356293678284,-0.0628500655293465,0.0235687755048275,-0.997744739055634,0.197414219379425,-0.0473794117569923,-0.979174554347992,0.951782822608948,-0.306772977113724,-6.81172845048925e-017,0.942082524299622,-0.0942082554101944,-0.321878165006638,0.850789427757263,-0.401761651039124,-0.338740229606628,0.197414219379425,-0.0473794117569923,-0.979174554347992,0.850789427757263,-0.401761651039124,-0.338740229606628,0.942082524299622,-0.0942082554101944,-0.321878165006638,0.951782822608948,-0.306772977113724,-6.81172845048925e-017,0.876792669296265,-0.355456471443176,-0.323860347270966,0.937938749790192,-0.346800923347473,-7.70052740123257e-017,
- 0.876792669296265,-0.355456471443176,-0.323860347270966,0.951782822608948,-0.306772977113724,-6.81172845048925e-017,0.850789427757263,-0.401761651039124,-0.338740229606628,0.850789427757263,-0.401761651039124,-0.338740229606628,0.188346847891808,-0.0470867119729519,-0.980973124504089,0.876792669296265,-0.355456471443176,-0.323860347270966,0.188346847891808,-0.0470867119729519,-0.980973124504089,0.850789427757263,-0.401761651039124,-0.338740229606628,0.197414219379425,-0.0473794117569923,-0.979174554347992,0.188346847891808,-0.0470867119729519,-0.980973124504089,0.526369214057922,0.447806656360626,-0.722775638103485,0.876792669296265,-0.355456471443176,-0.323860347270966,0.236550688743591,0.946202754974365,-0.22078064084053,0.526369214057922,0.447806656360626,-0.722775638103485,0.188346847891808,-0.0470867119729519,-0.980973124504089,-0.0628500655293465,0.0235687755048275,-0.997744739055634,-0.110428102314472,-0.00788772199302912,-0.993852913379669,0.197414219379425,-0.0473794117569923,-0.979174554347992,-0.0628500655293465,0.0235687755048275,-0.997744739055634,-0.980244815349579,0.197630003094673,-0.00790520012378693,-0.110428102314472,-0.00788772199302912,-0.993852913379669,-0.0393286496400833,0.0235971882939339,-0.99894767999649,0.188346847891808,-0.0470867119729519,-0.980973124504089,0.197414219379425,-0.0473794117569923,-0.979174554347992,-0.0393286496400833,0.0235971882939339,-0.99894767999649,0.197414219379425,-0.0473794117569923,-0.979174554347992,-0.110428102314472,-0.00788772199302912,-0.993852913379669,-0.980244815349579,0.197630003094673,-0.00790520012378693,-0.978686571121216,0.205208465456963,-0.00789263378828764,-0.110428102314472,-0.00788772199302912,-0.993852913379669,-0.0393286496400833,0.0235971882939339,-0.99894767999649,-0.110428102314472,-0.00788772199302912,-0.993852913379669,-0.978686571121216,0.205208465456963,-0.00789263378828764,-0.980244815349579,0.197630003094673,-0.00790520012378693,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.978686571121216,0.205208465456963,-0.00789263378828764,
- -0.978686571121216,0.205208465456963,-0.00789263378828764,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.0393286496400833,0.0235971882939339,-0.99894767999649,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.980244815349579,0.197630003094673,-0.00790520012378693,-0.969677090644836,0.244390159845352,5.42655164904265e-017,-0.846232950687408,-0.532813310623169,-1.1830832105612e-016,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.969677090644836,0.244390159845352,5.42655164904265e-017,-0.94385838508606,0.330350399017334,7.33525238366304e-017,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.846232950687408,-0.532813310623169,-1.1830832105612e-016,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.94385838508606,0.330350399017334,7.33525238366304e-017,-0.93293023109436,0.355778485536575,-0.0553433187305927,-0.0393286496400833,0.0235971882939339,-0.99894767999649,-0.991757094860077,0.125937417149544,-0.0236132647842169,-0.93293023109436,0.355778485536575,-0.0553433187305927,-0.889653563499451,0.456636339426041,1.01393635582268e-016,-0.93293023109436,0.355778485536575,-0.0553433187305927,-0.94385838508606,0.330350399017334,7.33525238366304e-017,0.236550688743591,0.946202754974365,-0.22078064084053,-0.889653563499451,0.456636339426041,1.01393635582268e-016,0.165678218007088,0.986179888248444,2.18975923671137e-016,-0.0393091961741447,0.0393091961741447,-0.998453617095947,-0.0393286496400833,0.0235971882939339,-0.99894767999649,-0.93293023109436,0.355778485536575,-0.0553433187305927,0.188346847891808,-0.0470867119729519,-0.980973124504089,-0.0393286496400833,0.0235971882939339,-0.99894767999649,-0.0393091961741447,0.0393091961741447,-0.998453617095947,0.236550688743591,0.946202754974365,-0.22078064084053,0.188346847891808,-0.0470867119729519,-0.980973124504089,-0.0393091961741447,0.0393091961741447,-0.998453617095947,-0.93293023109436,0.355778485536575,-0.0553433187305927,-0.889653563499451,0.456636339426041,1.01393635582268e-016,-0.896194398403168,0.44023585319519,-0.0550294816493988,
- -0.889653563499451,0.456636339426041,1.01393635582268e-016,0.236550688743591,0.946202754974365,-0.22078064084053,-0.896194398403168,0.44023585319519,-0.0550294816493988,-0.93293023109436,0.355778485536575,-0.0553433187305927,-0.896194398403168,0.44023585319519,-0.0550294816493988,-0.0393091961741447,0.0393091961741447,-0.998453617095947,0.236550688743591,0.946202754974365,-0.22078064084053,-0.0393091961741447,0.0393091961741447,-0.998453617095947,-0.896194398403168,0.44023585319519,-0.0550294816493988,-0.726575016975403,-0.687087178230286,-1.52564001039198e-016,-0.722619593143463,-0.691201388835907,-0.00785456132143736,0.527166962623596,-0.849761724472046,-1.88685006390809e-016,0.527166962623596,-0.849761724472046,-1.88685006390809e-016,-0.722619593143463,-0.691201388835907,-0.00785456132143736,0.503126621246338,-0.801858067512512,-0.322315484285355,0.527166962623596,-0.849761724472046,-1.88685006390809e-016,0.503126621246338,-0.801858067512512,-0.322315484285355,0.687087178230286,-0.726575016975403,-1.61332062592701e-016,0.0788453295826912,-0.149806126952171,-0.98556661605835,0.503126621246338,-0.801858067512512,-0.322315484285355,-0.722619593143463,-0.691201388835907,-0.00785456132143736,0.0788453295826912,-0.149806126952171,-0.98556661605835,-0.722619593143463,-0.691201388835907,-0.00785456132143736,-0.741353571414948,-0.670372903347015,-0.0315469615161419,0.687087178230286,-0.726575016975403,-1.61332062592701e-016,0.503126621246338,-0.801858067512512,-0.322315484285355,0.466057449579239,-0.813625693321228,-0.347568273544312,0.466057449579239,-0.813625693321228,-0.347568273544312,0.503126621246338,-0.801858067512512,-0.322315484285355,0.0788453295826912,-0.149806126952171,-0.98556661605835,0.687087178230286,-0.726575016975403,-1.61332062592701e-016,0.466057449579239,-0.813625693321228,-0.347568273544312,0.370032876729965,-0.929018676280975,-2.06283584942785e-016,0.5363649725914,-0.8439861536026,-1.87402572038886e-016,0.370032876729965,-0.929018676280975,-2.06283584942785e-016,0.466057449579239,-0.813625693321228,-0.347568273544312,
- 0.5363649725914,-0.8439861536026,-1.87402572038886e-016,0.466057449579239,-0.813625693321228,-0.347568273544312,0.489343255758286,-0.812941193580627,-0.315705329179764,0.489343255758286,-0.812941193580627,-0.315705329179764,0.466057449579239,-0.813625693321228,-0.347568273544312,0.118308454751968,-0.118308454751968,-0.985903739929199,0.466057449579239,-0.813625693321228,-0.347568273544312,0.0788453295826912,-0.149806126952171,-0.98556661605835,0.118308454751968,-0.118308454751968,-0.985903739929199,-0.047191459685564,2.21797218364874e-016,-0.998885869979858,0.0788453295826912,-0.149806126952171,-0.98556661605835,-0.741353571414948,-0.670372903347015,-0.0315469615161419,-0.741353571414948,-0.670372903347015,-0.0315469615161419,-0.843566477298737,-0.0315351933240891,-0.536098301410675,-0.047191459685564,2.21797218364874e-016,-0.998885869979858,-0.401350885629654,0.5902219414711,-0.700396716594696,-0.047191459685564,2.21797218364874e-016,-0.998885869979858,-0.843566477298737,-0.0315351933240891,-0.536098301410675,-0.0157222207635641,0.0550277717411518,-0.998361051082611,0.118308454751968,-0.118308454751968,-0.985903739929199,0.0788453295826912,-0.149806126952171,-0.98556661605835,0.0788453295826912,-0.149806126952171,-0.98556661605835,-0.047191459685564,2.21797218364874e-016,-0.998885869979858,-0.0157222207635641,0.0550277717411518,-0.998361051082611,-0.0157222207635641,0.0550277717411518,-0.998361051082611,-0.047191459685564,2.21797218364874e-016,-0.998885869979858,-0.401350885629654,0.5902219414711,-0.700396716594696,0.118308454751968,-0.118308454751968,-0.985903739929199,-0.0157222207635641,0.0550277717411518,-0.998361051082611,0.0314182415604591,0.0628364831209183,-0.997529208660126,-0.370884448289871,0.702313125133514,-0.607619225978851,-0.0157222207635641,0.0550277717411518,-0.998361051082611,-0.401350885629654,0.5902219414711,-0.700396716594696,-0.0157222207635641,0.0550277717411518,-0.998361051082611,0.11026357114315,0.937240362167358,-0.33079069852829,0.0314182415604591,0.0628364831209183,-0.997529208660126,
- -0.370884448289871,0.702313125133514,-0.607619225978851,0.11026357114315,0.937240362167358,-0.33079069852829,-0.0157222207635641,0.0550277717411518,-0.998361051082611,-0.741722702980042,-0.670706689357758,-1.48926801859019e-016,-0.741353571414948,-0.670372903347015,0.0315469615161419,-0.102473460137844,0.0551780164241791,0.993204295635223,0.0788453295826912,-0.149806126952171,0.98556661605835,-0.102473460137844,0.0551780164241791,0.993204295635223,-0.741353571414948,-0.670372903347015,0.0315469615161419,-0.722619593143463,-0.691201388835907,0.00785456132143736,0.0788453295826912,-0.149806126952171,0.98556661605835,-0.741353571414948,-0.670372903347015,0.0315469615161419,0.527166962623596,-0.849761724472046,-1.88685006390809e-016,-0.722619593143463,-0.691201388835907,0.00785456132143736,-0.726575016975403,-0.687087178230286,-1.52564001039198e-016,-0.722619593143463,-0.691201388835907,0.00785456132143736,0.527166962623596,-0.849761724472046,-1.88685006390809e-016,0.503126621246338,-0.801858067512512,0.322315484285355,0.0788453295826912,-0.149806126952171,0.98556661605835,-0.722619593143463,-0.691201388835907,0.00785456132143736,0.503126621246338,-0.801858067512512,0.322315484285355,0.687087178230286,-0.726575016975403,-1.61332062592701e-016,0.503126621246338,-0.801858067512512,0.322315484285355,0.527166962623596,-0.849761724472046,-1.88685006390809e-016,0.503126621246338,-0.801858067512512,0.322315484285355,0.687087178230286,-0.726575016975403,-1.61332062592701e-016,0.466057449579239,-0.813625693321228,0.347568273544312,0.0788453295826912,-0.149806126952171,0.98556661605835,0.503126621246338,-0.801858067512512,0.322315484285355,0.466057449579239,-0.813625693321228,0.347568273544312,0.370032876729965,-0.929018676280975,-2.06283584942785e-016,0.466057449579239,-0.813625693321228,0.347568273544312,0.687087178230286,-0.726575016975403,-1.61332062592701e-016,0.5363649725914,-0.8439861536026,-1.87402572038886e-016,0.466057449579239,-0.813625693321228,0.347568273544312,0.370032876729965,-0.929018676280975,-2.06283584942785e-016,
- 0.466057449579239,-0.813625693321228,0.347568273544312,0.5363649725914,-0.8439861536026,-1.87402572038886e-016,0.489343255758286,-0.812941193580627,0.315705329179764,0.466057449579239,-0.813625693321228,0.347568273544312,0.489343255758286,-0.812941193580627,0.315705329179764,0.118308454751968,-0.118308454751968,0.985903739929199,0.118308454751968,-0.118308454751968,0.985903739929199,0.0788453295826912,-0.149806126952171,0.98556661605835,0.466057449579239,-0.813625693321228,0.347568273544312,0.0788453295826912,-0.149806126952171,0.98556661605835,0.118308454751968,-0.118308454751968,0.985903739929199,-0.0157222207635641,0.0550277717411518,0.998361051082611,0.0788453295826912,-0.149806126952171,0.98556661605835,-0.0157222207635641,0.0550277717411518,0.998361051082611,-0.102473460137844,0.0551780164241791,0.993204295635223,-0.0157222207635641,0.0550277717411518,0.998361051082611,0.118308454751968,-0.118308454751968,0.985903739929199,0.0314182415604591,0.0628364831209183,0.997529208660126,-0.361009269952774,0.643538236618042,0.674930334091187,-0.102473460137844,0.0551780164241791,0.993204295635223,-0.0157222207635641,0.0550277717411518,0.998361051082611,-0.0157222207635641,0.0550277717411518,0.998361051082611,0.0314182415604591,0.0628364831209183,0.997529208660126,0.11026357114315,0.937240362167358,0.33079069852829,0.11026357114315,0.937240362167358,0.33079069852829,-0.361009269952774,0.643538236618042,0.674930334091187,-0.0157222207635641,0.0550277717411518,0.998361051082611,0.770793914794922,-0.637084722518921,-1.41461225515487e-016,-0.180738538503647,-0.974416494369507,0.133589342236519,-0.180956572294235,-0.98345959186554,0.00786767713725567,-0.180738538503647,-0.974416494369507,0.133589342236519,0.770793914794922,-0.637084722518921,-1.41461225515487e-016,0.713073313236237,-0.634713590145111,0.297766864299774,0.795226275920868,-0.606261670589447,-0.0078735277056694,0.713073313236237,-0.634713590145111,0.297766864299774,0.770793914794922,-0.637084722518921,-1.41461225515487e-016,0.133552238345146,-0.133552238345146,0.982001841068268,
- -0.180738538503647,-0.974416494369507,0.133589342236519,0.713073313236237,-0.634713590145111,0.297766864299774,-0.180738538503647,-0.974416494369507,0.133589342236519,0.133552238345146,-0.133552238345146,0.982001841068268,-0.315557897090912,-0.694227457046509,0.646893739700317,0.713073313236237,-0.634713590145111,0.297766864299774,0.795226275920868,-0.606261670589447,-0.0078735277056694,0.762551367282867,-0.581740260124207,0.283008724451065,0.133552238345146,-0.133552238345146,0.982001841068268,-0.047189999371767,-0.00786499958485365,0.998854994773865,-0.315557897090912,-0.694227457046509,0.646893739700317,-0.315557897090912,-0.694227457046509,0.646893739700317,-0.047189999371767,-0.00786499958485365,0.998854994773865,-0.816874265670776,0.573382973670959,0.0628364831209183,0.795226275920868,-0.606261670589447,-0.0078735277056694,0.935935080051422,0.306735038757324,0.173030018806458,0.762551367282867,-0.581740260124207,0.283008724451065,0.564710259437561,-0.815692663192749,-0.125491186976433,0.935935080051422,0.306735038757324,0.173030018806458,0.795226275920868,-0.606261670589447,-0.0078735277056694,0.713073313236237,-0.634713590145111,0.297766864299774,0.762551367282867,-0.581740260124207,0.283008724451065,0.141534984111786,-0.117945834994316,0.982881903648376,0.935935080051422,0.306735038757324,0.173030018806458,0.141534984111786,-0.117945834994316,0.982881903648376,0.762551367282867,-0.581740260124207,0.283008724451065,0.713073313236237,-0.634713590145111,0.297766864299774,0.141534984111786,-0.117945834994316,0.982881903648376,0.133552238345146,-0.133552238345146,0.982001841068268,0.564710259437561,-0.815692663192749,-0.125491186976433,0.544710457324982,-0.773646712303162,0.323668509721756,0.935935080051422,0.306735038757324,0.173030018806458,0.544710457324982,-0.773646712303162,0.323668509721756,0.141534984111786,-0.117945834994316,0.982881903648376,0.935935080051422,0.306735038757324,0.173030018806458,-0.047189999371767,-0.00786499958485365,0.998854994773865,0.133552238345146,-0.133552238345146,0.982001841068268,
- -0.0628597587347031,0.0157149396836758,0.997898638248444,0.141534984111786,-0.117945834994316,0.982881903648376,-0.0628597587347031,0.0157149396836758,0.997898638248444,0.133552238345146,-0.133552238345146,0.982001841068268,-0.047189999371767,-0.00786499958485365,0.998854994773865,-0.0628597587347031,0.0157149396836758,0.997898638248444,-0.816874265670776,0.573382973670959,0.0628364831209183,0.564710259437561,-0.815692663192749,-0.125491186976433,0.417607754468918,-0.843094885349274,0.338813811540604,0.544710457324982,-0.773646712303162,0.323668509721756,0.417607754468918,-0.843094885349274,0.338813811540604,0.564710259437561,-0.815692663192749,-0.125491186976433,0.415561735630035,-0.90953129529953,-0.0078407870605588,-0.816874265670776,0.573382973670959,0.0628364831209183,-0.812132120132446,0.58347362279892,1.29557170058563e-016,-0.48161569237709,0.876382648944855,1.94596039048113e-016,0.415561735630035,-0.90953129529953,-0.0078407870605588,0.32214629650116,-0.895723879337311,0.306431859731674,0.417607754468918,-0.843094885349274,0.338813811540604,0.32214629650116,-0.895723879337311,0.306431859731674,0.415561735630035,-0.90953129529953,-0.0078407870605588,0.339838653802872,-0.940483748912811,-2.08829342465758e-016,0.346800923347473,-0.937938749790192,-2.08264239141041e-016,0.32214629650116,-0.895723879337311,0.306431859731674,0.339838653802872,-0.940483748912811,-2.08829342465758e-016,0.959114789962769,-0.283017456531525,-6.28424993224296e-017,0.32214629650116,-0.895723879337311,0.306431859731674,0.346800923347473,-0.937938749790192,-2.08264239141041e-016,0.32214629650116,-0.895723879337311,0.306431859731674,0.959114789962769,-0.283017456531525,-6.28424993224296e-017,0.961942911148071,-0.189234673976898,0.197119444608688,-0.812132120132446,0.58347362279892,1.29557170058563e-016,-0.816874265670776,0.573382973670959,0.0628364831209183,-0.781419336795807,0.623556852340698,0.0236793737858534,-0.816874265670776,0.573382973670959,0.0628364831209183,-0.0628597587347031,0.0157149396836758,0.997898638248444,-0.781419336795807,0.623556852340698,0.0236793737858534,
- -0.781419336795807,0.623556852340698,0.0236793737858534,-0.784681856632233,0.619898676872253,1.37645156799649e-016,-0.812132120132446,0.58347362279892,1.29557170058563e-016,-0.781419336795807,0.623556852340698,0.0236793737858534,-0.687087178230286,0.726575016975403,1.61332062592701e-016,-0.784681856632233,0.619898676872253,1.37645156799649e-016,-0.00786767713725567,0.0393383838236332,0.999194979667664,-0.781419336795807,0.623556852340698,0.0236793737858534,-0.0628597587347031,0.0157149396836758,0.997898638248444,-0.0628597587347031,0.0157149396836758,0.997898638248444,0.141534984111786,-0.117945834994316,0.982881903648376,-0.00786767713725567,0.0393383838236332,0.999194979667664,-0.691137373447418,0.722552716732025,0.015707666054368,-0.687087178230286,0.726575016975403,1.61332062592701e-016,-0.781419336795807,0.623556852340698,0.0236793737858534,-0.781419336795807,0.623556852340698,0.0236793737858534,-0.00786767713725567,0.0393383838236332,0.999194979667664,-0.691137373447418,0.722552716732025,0.015707666054368,-0.541947960853577,0.840412080287933,1.86608968341758e-016,-0.687087178230286,0.726575016975403,1.61332062592701e-016,-0.691137373447418,0.722552716732025,0.015707666054368,-0.00786767713725567,0.0393383838236332,0.999194979667664,-0.541947960853577,0.840412080287933,1.86608968341758e-016,-0.691137373447418,0.722552716732025,0.015707666054368,-0.687087178230286,0.726575016975403,1.61332062592701e-016,-0.541947960853577,0.840412080287933,1.86608968341758e-016,-0.462834060192108,0.886444926261902,1.96830313439623e-016,-0.00786767713725567,0.0393383838236332,0.999194979667664,0.141534984111786,-0.117945834994316,0.982881903648376,-0.031476553529501,0.0157382767647505,0.999380588531494,-0.541947960853577,0.840412080287933,1.86608968341758e-016,-0.00786767713725567,0.0393383838236332,0.999194979667664,-0.031476553529501,0.0157382767647505,0.999380588531494,-0.462834060192108,0.886444926261902,1.96830313439623e-016,-0.541947960853577,0.840412080287933,1.86608968341758e-016,-0.386102229356766,0.921917498111725,0.0315185487270355,
- -0.541947960853577,0.840412080287933,1.86608968341758e-016,-0.031476553529501,0.0157382767647505,0.999380588531494,-0.386102229356766,0.921917498111725,0.0315185487270355,-0.424710005521774,0.904474973678589,0.0393249988555908,-0.462834060192108,0.886444926261902,1.96830313439623e-016,-0.386102229356766,0.921917498111725,0.0315185487270355,-0.462834060192108,0.886444926261902,1.96830313439623e-016,-0.424710005521774,0.904474973678589,0.0393249988555908,-0.346800923347473,0.937938749790192,2.08264239141041e-016,-0.00785819720476866,0.0628655776381493,0.99799108505249,-0.386102229356766,0.921917498111725,0.0315185487270355,-0.031476553529501,0.0157382767647505,0.999380588531494,-0.386102229356766,0.921917498111725,0.0315185487270355,-0.00785819720476866,0.0628655776381493,0.99799108505249,-0.424710005521774,0.904474973678589,0.0393249988555908,0.141534984111786,-0.117945834994316,0.982881903648376,0.0473794117569923,-0.197414219379425,0.979174554347992,-0.031476553529501,0.0157382767647505,0.999380588531494,0.0473794117569923,-0.197414219379425,0.979174554347992,-0.00785819720476866,0.0628655776381493,0.99799108505249,-0.031476553529501,0.0157382767647505,0.999380588531494,0.544710457324982,-0.773646712303162,0.323668509721756,0.0473794117569923,-0.197414219379425,0.979174554347992,0.141534984111786,-0.117945834994316,0.982881903648376,0.0473794117569923,-0.197414219379425,0.979174554347992,0.544710457324982,-0.773646712303162,0.323668509721756,0.417607754468918,-0.843094885349274,0.338813811540604,0.417607754468918,-0.843094885349274,0.338813811540604,0.32214629650116,-0.895723879337311,0.306431859731674,0.0473794117569923,-0.197414219379425,0.979174554347992,0.0473794117569923,-0.197414219379425,0.979174554347992,0.32214629650116,-0.895723879337311,0.306431859731674,0.0709696188569069,-0.197137832641602,0.977803647518158,-0.00785819720476866,0.0628655776381493,0.99799108505249,0.0473794117569923,-0.197414219379425,0.979174554347992,0.0709696188569069,-0.197137832641602,0.977803647518158,0.961942911148071,-0.189234673976898,0.197119444608688,
- 0.0709696188569069,-0.197137832641602,0.977803647518158,0.32214629650116,-0.895723879337311,0.306431859731674,0.0709696188569069,-0.197137832641602,0.977803647518158,0.961942911148071,-0.189234673976898,0.197119444608688,0.793261647224426,0.0706866830587387,0.604763865470886,0.739309966564178,0.165164992213249,0.65279495716095,0.0709696188569069,-0.197137832641602,0.977803647518158,0.793261647224426,0.0706866830587387,0.604763865470886,0.0235971882939339,0.0393286496400833,0.99894767999649,0.0709696188569069,-0.197137832641602,0.977803647518158,0.739309966564178,0.165164992213249,0.65279495716095,0.645569264888763,0.76366126537323,0.00787279661744833,0.0235971882939339,0.0393286496400833,0.99894767999649,0.739309966564178,0.165164992213249,0.65279495716095,-0.00785819720476866,0.0628655776381493,0.99799108505249,0.0709696188569069,-0.197137832641602,0.977803647518158,-0.0552604794502258,0.0868378952145576,0.994688630104065,-0.0552604794502258,0.0868378952145576,0.994688630104065,0.0709696188569069,-0.197137832641602,0.977803647518158,0.0235971882939339,0.0393286496400833,0.99894767999649,0.645569264888763,0.76366126537323,0.00787279661744833,0.637084722518921,0.770793914794922,1.71150630289257e-016,-0.25178125500679,0.96778416633606,2.14891252866791e-016,-0.0552604794502258,0.0868378952145576,0.994688630104065,0.0235971882939339,0.0393286496400833,0.99894767999649,-0.29962158203125,0.954058229923248,2.11843482738782e-016,0.645569264888763,0.76366126537323,0.00787279661744833,-0.283017456531525,0.959114789962769,2.12966264615037e-016,0.0235971882939339,0.0393286496400833,0.99894767999649,-0.283017456531525,0.959114789962769,2.12966264615037e-016,-0.29962158203125,0.954058229923248,2.11843482738782e-016,0.0235971882939339,0.0393286496400833,0.99894767999649,-0.25178125500679,0.96778416633606,2.14891252866791e-016,-0.283017456531525,0.959114789962769,2.12966264615037e-016,0.645569264888763,0.76366126537323,0.00787279661744833,-0.313863068819046,0.949435830116272,-0.00784657709300518,-0.0552604794502258,0.0868378952145576,0.994688630104065,
- -0.29962158203125,0.954058229923248,2.11843482738782e-016,-0.283017456531525,0.959114789962769,2.12966264615037e-016,-0.313863068819046,0.949435830116272,-0.00784657709300518,-0.29962158203125,0.954058229923248,2.11843482738782e-016,-0.313863068819046,0.949435830116272,-0.00784657709300518,-0.00785819720476866,0.0628655776381493,0.99799108505249,-0.0552604794502258,0.0868378952145576,0.994688630104065,-0.25178125500679,0.96778416633606,2.14891252866791e-016,-0.313863068819046,0.949435830116272,-0.00784657709300518,-0.283017456531525,0.959114789962769,2.12966264615037e-016,-0.00785819720476866,0.0628655776381493,0.99799108505249,-0.313863068819046,0.949435830116272,-0.00784657709300518,-0.424710005521774,0.904474973678589,0.0393249988555908,-0.313863068819046,0.949435830116272,-0.00784657709300518,-0.25178125500679,0.96778416633606,2.14891252866791e-016,-0.346800923347473,0.937938749790192,2.08264239141041e-016,-0.346800923347473,0.937938749790192,2.08264239141041e-016,-0.424710005521774,0.904474973678589,0.0393249988555908,-0.313863068819046,0.949435830116272,-0.00784657709300518,-0.907737612724304,-0.418348640203476,0.0315734818577766,-0.999504387378693,0.0314804539084435,6.99006495096098e-018,-0.915431380271912,-0.402474135160446,-8.93672103342449e-017,-0.999504387378693,0.0314804539084435,6.99006495096098e-018,-0.907737612724304,-0.418348640203476,0.0315734818577766,-0.998731434345245,0.039320133626461,0.031456109136343,-0.907737612724304,-0.418348640203476,0.0315734818577766,-0.0235571414232254,-0.56537139415741,0.824500024318695,-0.998731434345245,0.039320133626461,0.031456109136343,-0.997252345085144,0.0628190487623215,0.0392619036138058,-0.999504387378693,0.0314804539084435,6.99006495096098e-018,-0.998731434345245,0.039320133626461,0.031456109136343,-0.999504387378693,0.0314804539084435,6.99006495096098e-018,-0.997252345085144,0.0628190487623215,0.0392619036138058,-0.987440645694733,0.157990500330925,3.50809382278883e-017,-0.0235571414232254,-0.56537139415741,0.824500024318695,-0.039320133626461,-0.031456109136343,0.998731434345245,
- -0.998731434345245,0.039320133626461,0.031456109136343,-0.987440645694733,0.157990500330925,3.50809382278883e-017,-0.997252345085144,0.0628190487623215,0.0392619036138058,-0.980244815349579,0.197630003094673,0.00790520012378693,-0.980244815349579,0.197630003094673,0.00790520012378693,-0.969677090644836,0.244390159845352,5.42655164904265e-017,-0.987440645694733,0.157990500330925,3.50809382278883e-017,-0.998731434345245,0.039320133626461,0.031456109136343,-0.0628500655293465,0.0235687755048275,0.997744739055634,-0.997252345085144,0.0628190487623215,0.0392619036138058,-0.0628500655293465,0.0235687755048275,0.997744739055634,-0.998731434345245,0.039320133626461,0.031456109136343,-0.039320133626461,-0.031456109136343,0.998731434345245,-0.0628500655293465,0.0235687755048275,0.997744739055634,-0.980244815349579,0.197630003094673,0.00790520012378693,-0.997252345085144,0.0628190487623215,0.0392619036138058,-0.0235571414232254,-0.56537139415741,0.824500024318695,0.220015943050385,-0.0471462719142437,0.974356293678284,-0.039320133626461,-0.031456109136343,0.998731434345245,-0.0628500655293465,0.0235687755048275,0.997744739055634,-0.039320133626461,-0.031456109136343,0.998731434345245,0.220015943050385,-0.0471462719142437,0.974356293678284,0.220015943050385,-0.0471462719142437,0.974356293678284,-0.0235571414232254,-0.56537139415741,0.824500024318695,0.126364812254906,-0.600232839584351,0.789780020713806,0.440890222787857,-0.873907387256622,0.204699024558067,0.220015943050385,-0.0471462719142437,0.974356293678284,0.126364812254906,-0.600232839584351,0.789780020713806,-0.980244815349579,0.197630003094673,0.00790520012378693,-0.0628500655293465,0.0235687755048275,0.997744739055634,-0.110428102314472,-0.00788772199302912,0.993852913379669,0.946968495845795,-0.134153857827187,0.291981935501099,0.220015943050385,-0.0471462719142437,0.974356293678284,0.440890222787857,-0.873907387256622,0.204699024558067,0.425025671720505,-0.905147194862366,0.00787084549665451,0.946968495845795,-0.134153857827187,0.291981935501099,0.440890222787857,-0.873907387256622,0.204699024558067,
- 0.946968495845795,-0.134153857827187,0.291981935501099,0.425025671720505,-0.905147194862366,0.00787084549665451,0.988820910453796,-0.149107918143272,-3.31086087753168e-017,0.988820910453796,-0.149107918143272,-3.31086087753168e-017,0.942082524299622,-0.0942082554101944,0.321878165006638,0.946968495845795,-0.134153857827187,0.291981935501099,0.942082524299622,-0.0942082554101944,0.321878165006638,0.220015943050385,-0.0471462719142437,0.974356293678284,0.946968495845795,-0.134153857827187,0.291981935501099,0.942082524299622,-0.0942082554101944,0.321878165006638,0.988820910453796,-0.149107918143272,-3.31086087753168e-017,0.951782822608948,-0.306772977113724,-6.81172845048925e-017,0.197414219379425,-0.0473794117569923,0.979174554347992,-0.0628500655293465,0.0235687755048275,0.997744739055634,0.220015943050385,-0.0471462719142437,0.974356293678284,0.197414219379425,-0.0473794117569923,0.979174554347992,0.220015943050385,-0.0471462719142437,0.974356293678284,0.942082524299622,-0.0942082554101944,0.321878165006638,-0.0628500655293465,0.0235687755048275,0.997744739055634,0.197414219379425,-0.0473794117569923,0.979174554347992,-0.110428102314472,-0.00788772199302912,0.993852913379669,0.951782822608948,-0.306772977113724,-6.81172845048925e-017,0.850789427757263,-0.401761651039124,0.338740229606628,0.942082524299622,-0.0942082554101944,0.321878165006638,0.850789427757263,-0.401761651039124,0.338740229606628,0.197414219379425,-0.0473794117569923,0.979174554347992,0.942082524299622,-0.0942082554101944,0.321878165006638,0.874313950538635,-0.362328290939331,0.322944790124893,0.951782822608948,-0.306772977113724,-6.81172845048925e-017,0.935356557369232,-0.353706270456314,-7.85385690829785e-017,0.850789427757263,-0.401761651039124,0.338740229606628,0.951782822608948,-0.306772977113724,-6.81172845048925e-017,0.874313950538635,-0.362328290939331,0.322944790124893,0.18827149271965,-0.054912518709898,0.980580687522888,0.850789427757263,-0.401761651039124,0.338740229606628,0.874313950538635,-0.362328290939331,0.322944790124893,0.850789427757263,-0.401761651039124,0.338740229606628,
- 0.18827149271965,-0.054912518709898,0.980580687522888,0.197414219379425,-0.0473794117569923,0.979174554347992,0.18827149271965,-0.054912518709898,0.980580687522888,0.874313950538635,-0.362328290939331,0.322944790124893,0.520654380321503,0.449656039476395,0.725760638713837,0.520654380321503,0.449656039476395,0.725760638713837,0.243476361036301,0.934635043144226,0.259184509515762,0.18827149271965,-0.054912518709898,0.980580687522888,0.18827149271965,-0.054912518709898,0.980580687522888,-0.0393286496400833,0.0235971882939339,0.99894767999649,0.197414219379425,-0.0473794117569923,0.979174554347992,-0.110428102314472,-0.00788772199302912,0.993852913379669,0.197414219379425,-0.0473794117569923,0.979174554347992,-0.0393286496400833,0.0235971882939339,0.99894767999649,-0.039320133626461,0.031456109136343,0.998731434345245,0.18827149271965,-0.054912518709898,0.980580687522888,0.243476361036301,0.934635043144226,0.259184509515762,-0.0393286496400833,0.0235971882939339,0.99894767999649,0.18827149271965,-0.054912518709898,0.980580687522888,-0.039320133626461,0.031456109136343,0.998731434345245,-0.889653563499451,0.456636339426041,1.01393635582268e-016,0.243476361036301,0.934635043144226,0.259184509515762,0.165678218007088,0.986179888248444,2.18975923671137e-016,-0.0393286496400833,0.0235971882939339,0.99894767999649,-0.978686571121216,0.205208465456963,0.00789263378828764,-0.110428102314472,-0.00788772199302912,0.993852913379669,-0.980244815349579,0.197630003094673,0.00790520012378693,-0.110428102314472,-0.00788772199302912,0.993852913379669,-0.978686571121216,0.205208465456963,0.00789263378828764,0.243476361036301,0.934635043144226,0.259184509515762,-0.889653563499451,0.456636339426041,1.01393635582268e-016,-0.888305485248566,0.455944418907166,0.0550277754664421,0.243476361036301,0.934635043144226,0.259184509515762,-0.888305485248566,0.455944418907166,0.0550277754664421,-0.039320133626461,0.031456109136343,0.998731434345245,-0.888305485248566,0.455944418907166,0.0550277754664421,-0.889653563499451,0.456636339426041,1.01393635582268e-016,
- -0.93293023109436,0.355778485536575,0.0553433187305927,-0.888305485248566,0.455944418907166,0.0550277754664421,-0.93293023109436,0.355778485536575,0.0553433187305927,-0.039320133626461,0.031456109136343,0.998731434345245,-0.039320133626461,0.031456109136343,0.998731434345245,-0.93293023109436,0.355778485536575,0.0553433187305927,-0.0393286496400833,0.0235971882939339,0.99894767999649,-0.93293023109436,0.355778485536575,0.0553433187305927,-0.889653563499451,0.456636339426041,1.01393635582268e-016,-0.94385838508606,0.330350399017334,7.33525238366304e-017,-0.0393286496400833,0.0235971882939339,0.99894767999649,-0.93293023109436,0.355778485536575,0.0553433187305927,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.94385838508606,0.330350399017334,7.33525238366304e-017,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.93293023109436,0.355778485536575,0.0553433187305927,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.978686571121216,0.205208465456963,0.00789263378828764,-0.0393286496400833,0.0235971882939339,0.99894767999649,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.980244815349579,0.197630003094673,0.00790520012378693,-0.978686571121216,0.205208465456963,0.00789263378828764,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.94385838508606,0.330350399017334,7.33525238366304e-017,-0.846232950687408,-0.532813310623169,-1.1830832105612e-016,-0.969677090644836,0.244390159845352,5.42655164904265e-017,-0.980244815349579,0.197630003094673,0.00790520012378693,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.991757094860077,0.125937417149544,0.0236132647842169,-0.846232950687408,-0.532813310623169,-1.1830832105612e-016,-0.969677090644836,0.244390159845352,5.42655164904265e-017,0.0314182415604591,0.0628364831209183,0.997529208660126,0.71582567691803,0.676494598388672,0.1730567663908,0.11026357114315,0.937240362167358,0.33079069852829,0.71582567691803,0.676494598388672,0.1730567663908,0.11026357114315,0.937240362167358,-0.33079069852829,0.11026357114315,0.937240362167358,0.33079069852829,
- 0.0314182415604591,0.0628364831209183,0.997529208660126,0.118308454751968,-0.118308454751968,0.985903739929199,0.71582567691803,0.676494598388672,0.1730567663908,0.11026357114315,0.937240362167358,-0.33079069852829,0.71582567691803,0.676494598388672,0.1730567663908,0.71582567691803,0.676494598388672,-0.1730567663908,0.908190488815308,0.221124649047852,0.355378895998001,0.71582567691803,0.676494598388672,0.1730567663908,0.118308454751968,-0.118308454751968,0.985903739929199,0.0314182415604591,0.0628364831209183,-0.997529208660126,0.11026357114315,0.937240362167358,-0.33079069852829,0.71582567691803,0.676494598388672,-0.1730567663908,0.993698358535767,0.0709784477949142,0.0867514461278915,0.908190488815308,0.221124649047852,0.355378895998001,0.118308454751968,-0.118308454751968,0.985903739929199,0.71582567691803,0.676494598388672,-0.1730567663908,0.118308454751968,-0.118308454751968,-0.985903739929199,0.0314182415604591,0.0628364831209183,-0.997529208660126,0.118308454751968,-0.118308454751968,0.985903739929199,0.489343255758286,-0.812941193580627,0.315705329179764,0.993698358535767,0.0709784477949142,0.0867514461278915,0.71582567691803,0.676494598388672,-0.1730567663908,0.908190488815308,0.221124649047852,-0.355378895998001,0.118308454751968,-0.118308454751968,-0.985903739929199,0.489343255758286,-0.812941193580627,0.315705329179764,0.5363649725914,-0.8439861536026,-1.87402572038886e-016,0.993698358535767,0.0709784477949142,0.0867514461278915,0.908190488815308,0.221124649047852,-0.355378895998001,0.993698358535767,0.0709784477949142,-0.0867514461278915,0.118308454751968,-0.118308454751968,-0.985903739929199,0.993698358535767,0.0709784477949142,0.0867514461278915,0.5363649725914,-0.8439861536026,-1.87402572038886e-016,0.998021900653839,0.0628675222396851,1.39593941383265e-017,0.5363649725914,-0.8439861536026,-1.87402572038886e-016,0.993698358535767,0.0709784477949142,-0.0867514461278915,0.998021900653839,0.0628675222396851,1.39593941383265e-017,0.489343255758286,-0.812941193580627,-0.315705329179764,0.118308454751968,-0.118308454751968,-0.985903739929199,
- 0.993698358535767,0.0709784477949142,-0.0867514461278915,0.993698358535767,0.0709784477949142,-0.0867514461278915,0.5363649725914,-0.8439861536026,-1.87402572038886e-016,0.489343255758286,-0.812941193580627,-0.315705329179764
- }
- NormalsW: *1305 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *3915 {
- a: -0.0831074714660645,-0.0371384434401989,0.995848417282104,-0.0731890797615051,-0.058415375649929,0.995605826377869,-0.0716042444109917,-0.061804223805666,0.995516538619995,-0.00125287426635623,0.00148205854929984,0.999998092651367,-0.00121088407468051,0.0015174369327724,0.999998092651367,0.0108679169788957,0.0116939404979348,0.99987256526947,-0.0101935705170035,0.0120582478120923,0.999875426292419,0.00212113000452518,0.0226517766714096,0.999741196632385,0.0255818106234074,0.0428182557225227,0.998755395412445,0.0410427786409855,0.0245364289730787,0.998856067657471,0.0169200282543898,0.0041090389713645,0.999848484992981,0.173350110650063,0.136760428547859,0.975318670272827,-1.15831027618087e-016,-9.95566196430201e-017,1,0.00596512574702501,0.00512701785191894,0.999969124794006,-1.12305623552055e-016,-9.65265445626751e-017,1,0.0317613743245602,-0.0354980118572712,0.998864948749542,0.0388072580099106,-0.0292210020124912,0.998819351196289,0.0554660856723785,-0.0143574383109808,0.99835741519928,0.0243603996932507,0.0200956165790558,0.99950122833252,0.000999634037725627,-0.00110547768417746,0.999998867511749,0.000993826775811613,-0.00111074768938124,0.999998867511749,0.0410383269190788,0.0245416983962059,-0.998856127262115,0.173346340656281,0.136765033006668,-0.975318670272827,0.0169156286865473,0.00411455193534493,-0.999848484992981,0.025576064363122,0.0428250357508659,-0.998755156993866,0.00211552437394857,0.0226587988436222,-0.999741077423096,-0.0101993940770626,0.0120651368051767,-0.99987518787384,0.0108614172786474,0.0117020849138498,-0.99987256526947,-0.00121738400775939,0.00152558251284063,-0.999998092651367,-0.00125959969591349,0.00149001425597817,-0.999998092651367,1.15831027618087e-016,9.95566196430201e-017,-1,1.12305623552055e-016,9.65265445626751e-017,-1,0.00596512574702501,0.00512701785191894,-0.999969124794006,0.0388113111257553,-0.029225243255496,-0.998819172382355,0.031765453517437,-0.0355025716125965,-0.998864591121674,0.0554696023464203,-0.0143613386899233,-0.998357176780701,0.0244482681155205,0.0199984423816204,-0.99950110912323,
- 0.000970824505202472,-0.00108503922820091,-0.999998986721039,0.000976524199359119,-0.00107992091216147,-0.999998986721039,-0.00969200115650892,-0.00463530514389277,-0.999942302703857,-0.00982985273003578,-0.00432174559682608,-0.999942362308502,-0.00982985273003578,-0.00432174559682608,-0.999942362308502,-0.0121586099267006,-0.00534559553489089,-0.999911844730377,-0.0119821326807141,-0.00573058519512415,-0.999911844730377,-0.0147262690588832,0.000256494124187157,-0.999891519546509,-0.0553496666252613,-0.0264715775847435,-0.998116075992584,-0.0395917855203152,-0.0291116070002317,-0.998791813850403,-0.0580815821886063,-0.026012945920229,-0.997972905635834,-0.0136558031663299,0.000904803164303303,-0.999906420707703,-0.00846050400286913,-0.00622095912694931,-0.999944925308228,-0.0131126940250397,0.000159823321155272,-0.999914050102234,-0.0146914683282375,0.000277571845799685,-0.999892115592957,-0.0140712112188339,-0.000538253167178482,-0.999900877475739,-0.0141383819282055,-0.000449905579444021,-0.999899983406067,0.00530643947422504,-0.0253040865063667,-0.9996657371521,-0.013355677947402,-1.71372666954994e-005,-0.999910831451416,-0.00866658426821232,-0.00637248856946826,-0.999942183494568,0.937901675701141,0.346787244081497,0.0088880667462945,0.971477329730988,0.236945688724518,0.00940944347530603,0.971477329730988,0.236945688724518,0.00940944347530603,0.937933206558228,0.346798866987228,0.00347001338377595,0.971514463424683,0.236954733729362,0.0034864479675889,0.937933206558228,0.346798866987228,0.00347001338377595,0.937936782836914,0.346800178289413,0.0021086351480335,0.937936782836914,0.346800178289413,0.0021086351480335,0.283015727996826,0.959108948707581,0.00348959770053625,0.283015757799149,0.959109008312225,0.00347397616133094,0.937936782836914,0.346800208091736,0.00209247786551714,0.283015757799149,0.959109008312225,0.00347397616133094,-0.0109610669314861,2.22031264156112e-016,-0.999939918518066,-0.0109610669314861,2.22031264156112e-016,-0.999939918518066,-0.0109610669314861,2.22031264156112e-016,-0.999939918518066,
- -0.000689228414557874,2.22044551985472e-016,-0.999999761581421,-0.000689228414557874,2.22044551985472e-016,-0.999999761581421,-0.000689228414557874,2.22044551985472e-016,-0.999999761581421,0.00422502076253295,2.22042619691561e-016,-0.999991059303284,0.00422502076253295,2.22042619691561e-016,-0.999991059303284,0.00422502076253295,2.22042619691561e-016,-0.999991059303284,-0.00128724018577486,2.22044419636574e-016,-0.999999165534973,-0.00128724018577486,2.22044419636574e-016,-0.999999165534973,-0.00128724018577486,2.22044419636574e-016,-0.999999165534973,0.00550472503527999,2.22041243263022e-016,-0.999984860420227,0.00550472503527999,2.22041243263022e-016,-0.999984860420227,0.00550472503527999,2.22041243263022e-016,-0.999984860420227,-0.313868165016174,0.949451267719269,-0.00538266124203801,-0.313868165016174,0.949451267719269,-0.00538266124203801,-0.313868165016174,0.949451267719269,-0.00538266124203801,-0.313864082098007,0.9494389295578,-0.00742828333750367,-0.313864082098007,0.9494389295578,-0.00742828333750367,-0.313864082098007,0.9494389295578,-0.00742828333750367,-0.313864529132843,0.949440240859985,-0.0072421757504344,-0.313864529132843,0.949440240859985,-0.0072421757504344,-0.346791863441467,0.937914252281189,-0.00724306469783187,-0.346795707941055,0.937924683094025,-0.00548474583774805,-0.369985222816467,0.929020166397095,-0.00569627480581403,-0.313868522644043,0.94945228099823,-0.00518197333440185,-0.346797585487366,0.937929749488831,-0.00437986431643367,-0.313869327306747,0.949454784393311,-0.00466686161234975,-0.346797585487366,0.937929749488831,-0.00437986431643367,0.00476800976321101,2.22042077061079e-016,-0.999988615512848,0.00476800976321101,2.22042077061079e-016,-0.999988615512848,0.00476800976321101,2.22042077061079e-016,-0.999988615512848,0.0036044167354703,2.22043162322043e-016,-0.999993503093719,0.0036044167354703,2.22043162322043e-016,-0.999993503093719,0.0036044167354703,2.22043162322043e-016,-0.999993503093719,-0.00993725564330816,2.22033646436276e-016,-0.999950647354126,-0.00993725564330816,2.22033646436276e-016,-0.999950647354126,
- -0.00993725564330816,2.22033646436276e-016,-0.999950647354126,0.000139457755722106,2.22044604925031e-016,-1,0.000139457755722106,2.22044604925031e-016,-1,0.000139457755722106,2.22044604925031e-016,-1,0.00335822463966906,2.220433476105e-016,-0.999994337558746,0.00335822463966906,2.220433476105e-016,-0.999994337558746,0.00335822463966906,2.220433476105e-016,-0.999994337558746,0.00397605821490288,2.22042844684688e-016,-0.999992072582245,0.00397605821490288,2.22042844684688e-016,-0.999992072582245,0.00397605821490288,2.22042844684688e-016,-0.999992072582245,-0.00359915220178664,2.22043162322043e-016,-0.999993503093719,-0.00359915220178664,2.22043162322043e-016,-0.999993503093719,-0.00359915220178664,2.22043162322043e-016,-0.999993503093719,-0.00477237952873111,2.22042077061079e-016,-0.999988615512848,-0.00477237952873111,2.22042077061079e-016,-0.999988615512848,-0.00477237952873111,2.22042077061079e-016,-0.999988615512848,0.00987027026712894,2.22033792020064e-016,-0.999951303005219,0.00987027026712894,2.22033792020064e-016,-0.999951303005219,0.00987027026712894,2.22033792020064e-016,-0.999951303005219,0.00173082656692714,-0.00940666627138853,-0.999954283237457,0.00173082656692714,-0.00940666627138853,-0.999954283237457,0.00173082656692714,-0.00940666627138853,-0.999954283237457,-0.000108496446046047,0.000589654548093677,-0.999999821186066,-0.000108496446046047,0.000589654548093677,-0.999999821186066,-0.000108496446046047,0.000589654548093677,-0.999999821186066,-0.00357074290513992,0.0194062106311321,-0.999805331230164,-0.00357074290513992,0.0194062106311321,-0.999805331230164,-0.00357074290513992,0.0194062106311321,-0.999805331230164,0.000306008325424045,-0.00166308868210763,-0.999998569488525,0.000306008325424045,-0.00166308868210763,-0.999998569488525,0.000306008325424045,-0.00166308868210763,-0.999998569488525,-2.48876631303574e-007,1.3525902886613e-006,-1,-2.48876631303574e-007,1.3525902886613e-006,-1,-2.48876631303574e-007,1.3525902886613e-006,-1,-0.000306118919979781,0.00166368973441422,-0.99999862909317,-0.000306118919979781,0.00166368973441422,-0.99999862909317,
- -0.000306118919979781,0.00166368973441422,-0.99999862909317,0.000109140084532555,-0.000593152653891593,-0.999999821186066,0.000109140084532555,-0.000593152653891593,-0.999999821186066,0.000109140084532555,-0.000593152653891593,-0.999999821186066,-0.00173131749033928,0.0094093345105648,-0.999954223632813,-0.00173131749033928,0.0094093345105648,-0.999954223632813,-0.00173131749033928,0.0094093345105648,-0.999954223632813,0.00356521480716765,-0.019376166164875,-0.999805927276611,0.00356521480716765,-0.019376166164875,-0.999805927276611,0.00356521480716765,-0.019376166164875,-0.999805927276611,-0.220102161169052,0.523466467857361,-0.82312685251236,0.0328232161700726,0.344643771648407,-0.93815952539444,0.189113572239876,0.213878437876701,-0.958379924297333,0.000236805746681057,0.00248646060936153,-0.999996900558472,-0.33925873041153,0.0225369166582823,-0.940423190593719,0.00784172676503658,0.002033906057477,-0.999967157840729,0.00793798640370369,-0.00408204970881343,-0.999960243701935,-0.339428693056107,0.0213426295667887,-0.940389633178711,-0.369874119758606,0.0235934015363455,-0.928782284259796,-0.222464889287949,0.609191715717316,-0.76117992401123,0.00238118297420442,0.00568568147718906,-0.999980986118317,0.00802351720631123,-0.00953208934515715,-0.999922454357147,-0.98186868429184,0.0845027342438698,-0.169686079025269,-0.369526326656342,0.0263276230543852,-0.928847253322601,-0.33910658955574,0.0236028730869293,-0.940451800823212,-0.985763013362885,0.0212173778563738,-0.16679635643959,-0.351365089416504,-0.613105297088623,-0.707562446594238,-0.968854188919067,-0.0536640286445618,-0.24174739420414,-0.961593508720398,0.257392376661301,-0.0953260511159897,-0.973868131637573,0.148405492305756,-0.17192055284977,-0.96014404296875,-0.0167873948812485,-0.279001086950302,-0.303513079881668,0.131103724241257,-0.943764626979828,0.00290844403207302,0.00694465171545744,-0.999971687793732,-0.350779891014099,0.150168389081955,-0.924339175224304,-1.50278947330662e-006,-3.58829333890753e-006,-1,-0.318264663219452,0.0982190892100334,-0.942900121212006,
- -1.47556716001418e-006,-3.59669502358884e-006,-1,-0.295126259326935,0.149344682693481,-0.943714261054993,-0.0144368093460798,-0.0124606573954225,-0.99981814622879,-0.00688527710735798,-0.0167828630656004,-0.99983549118042,-0.375327944755554,-0.926824986934662,-0.0111528970301151,-0.492144823074341,-0.57267427444458,0.655620038509369,-0.390654921531677,-0.919866859912872,0.0351242311298847,0.946241080760956,0.322490364313126,-0.0250586103647947,0.886573553085327,0.243741095066071,-0.393163591623306,0.662449717521667,0.111495018005371,-0.740762650966644,-0.633708775043488,0.176994100213051,0.753051280975342,-0.958648860454559,0.255045861005783,0.126269906759262,-0.966732442378998,0.255689442157745,0.00717092212289572,-0.996523976325989,0.0822703689336777,0.0131021002307534,-0.98069441318512,0.0839072689414024,-0.176629781723022,-0.981924414634705,0.0839008390903473,-0.169661745429039,-0.958788931369781,0.22037798166275,-0.179325014352798,-0.975094974040985,0.221629545092583,0.00837536808103323,-0.967736780643463,0.218422025442123,0.125607818365097,-0.368295103311539,0.035833053290844,-0.929018139839172,-0.981269538402557,0.090732678771019,-0.169934317469597,-0.980057537555695,0.0906352326273918,-0.176840618252754,-0.91481614112854,0.362332969903946,-0.178399637341499,-0.303910493850708,0.130231395363808,-0.9437575340271,-0.351056575775146,0.148587331175804,-0.924489617347717,-0.919370472431183,0.372269153594971,0.127175971865654,-0.911137580871582,0.36658588051796,-0.188263341784477,-0.912835657596588,0.367346256971359,-0.178291693329811,-0.914877414703369,0.362176299095154,-0.178402900695801,-0.913175642490387,0.361552447080612,-0.188122540712357,-0.306042611598969,0.125538751482964,-0.94370436668396,-0.901718318462372,0.427737444639206,0.0628089383244514,-0.887926995754242,0.419176250696182,-0.189412653446198,-0.895993530750275,0.425540298223495,0.126929730176926,-0.34430143237114,0.03743726760149,-0.938112437725067,-0.352615296840668,0.0378850437700748,-0.935001134872437,-0.000520186964422464,0.0177362468093634,-0.999842584133148,
- -0.979964077472687,0.097019299864769,-0.173947811126709,-0.35426339507103,0.0419368781149387,-0.934204876422882,-0.342877596616745,0.0408593378961086,-0.93849104642868,-0.171559050679207,-0.354910671710968,-0.919024527072906,0.177759677171707,0.3242327272892,0.929125785827637,-0.252039581537247,0.271591126918793,-0.928824186325073,-0.245666474103928,0.960125327110291,-0.133444011211395,-0.268039464950562,0.254416644573212,-0.929207742214203,0.0981130301952362,0.457266062498093,0.883901357650757,-0.52817702293396,-0.0776144415140152,-0.845579743385315,-0.0345408022403717,-0.03735226765275,-0.99870502948761,-0.0255232155323029,-0.0365313813090324,-0.999006509780884,-0.598519921302795,0.568635940551758,0.564293444156647,-0.740597069263458,0.66176438331604,0.116550616919994,-0.745840191841125,0.662792265415192,0.0665495619177818,-0.268281102180481,0.230127573013306,-0.93545001745224,-0.00866228621453047,-0.00936735700815916,-0.999918699264526,-0.280190467834473,0.241171628236771,-0.929155349731445,0.00675624562427402,0.00730617297813296,-0.999950528144836,-0.259688287973404,0.240008816123009,-0.935391843318939,0.00650625489652157,0.00752530712634325,-0.999950528144836,-0.117694526910782,-0.136128604412079,-0.983675301074982,-0.436550110578537,0.0152598321437836,-0.89955061674118,0.21451073884964,-0.268817275762558,-0.9390007853508,-0.100171461701393,0.125531330704689,-0.987019538879395,-0.303180634975433,0.189021244645119,-0.933998107910156,-0.126902163028717,0.134148210287094,-0.982802271842957,-0.283895999193192,0.237097173929214,-0.929079174995422,-0.745802640914917,0.642970025539398,-0.174264445900917,-0.271536469459534,0.22635979950428,-0.935429930686951,-0.89216423034668,0.417718172073364,-0.171914324164391,-0.124327585101128,0.13090243935585,-0.983568668365479,-0.291449904441834,0.203016325831413,-0.934794783592224,-0.761614620685577,0.624072432518005,-0.17457602918148,-0.290289968252182,0.230027049779892,-0.92888069152832,-0.759846031665802,0.622502863407135,-0.187414392828941,-0.771528542041779,0.63272625207901,0.0663427487015724,
- -0.762161135673523,0.62340235710144,-0.174585044384003,-0.760374069213867,0.621849954128265,-0.187440440058708,-0.739864647388458,0.64983195066452,-0.174123018980026,-0.747683882713318,0.660712957382202,0.06653843075037,-0.743829667568207,0.65813934803009,0.116490706801414,-0.451940834522247,0.878227651119232,-0.156415149569511,-0.611746191978455,0.785749435424805,0.0914578586816788,-0.618979275226593,0.778343617916107,0.105099499225616,0.243773207068443,0.967615962028503,-0.0655287131667137,0.1569002866745,0.984873533248901,0.0735286176204681,-0.389095604419708,0.516104340553284,0.763047218322754,-0.643427193164825,0.764287769794464,0.0431945957243443,-0.627234935760498,0.778611123561859,0.0184682663530111,-0.490781873464584,0.856512248516083,-0.15974985063076,0.0328304097056389,0.344719290733337,0.93813157081604,-0.220083624124527,0.5235196352005,0.823098182678223,0.189157024025917,0.213927581906319,0.958360493183136,0.00787493493407965,-0.000147699654917233,0.999969005584717,-0.339547544717789,0.0205054767429829,0.940365314483643,3.03881770378212e-005,0.000319075857987627,0.999999940395355,-0.339440256357193,0.0212612487375736,0.940387308597565,0.00790630467236042,-0.00414053490385413,0.99996018409729,-0.369884639978409,0.0235104523599148,0.928780198097229,0.0188456811010838,0.0449988692998886,0.998809337615967,-0.209619969129562,0.639615833759308,0.739561438560486,0.00725027592852712,0.0762754455208778,0.997060418128967,-0.369532227516174,0.0262814909219742,0.928846180438995,-0.981875240802765,0.0844320729374886,0.169683232903481,-0.339112907648087,0.0235585998743773,0.940450668334961,-0.351367682218552,-0.61308628320694,0.707577526569366,-0.98577082157135,0.020958548411727,0.166783168911934,-0.968879163265228,-0.053789384663105,0.241619318723679,-0.961709141731262,0.256595522165298,0.0963030382990837,-0.960091412067413,-0.0165944546461105,0.279193818569183,-0.973786413669586,0.148923084139824,0.171935796737671,0.00291046290658414,0.00694947224110365,0.999971628189087,-0.303516209125519,0.131096854805946,0.943764567375183,
- -0.350781589746475,0.150158733129501,0.924340128898621,-0.318261712789536,0.0982258319854736,0.942900419235229,1.50278947330662e-006,3.58829333890753e-006,1,1.47556716001418e-006,3.59669502358884e-006,1,-0.0144515903666615,-0.0124927423894405,0.999817550182343,-0.295140355825424,0.149314343929291,0.943714678287506,-0.00689874729141593,-0.0168156959116459,0.999834835529327,-0.365167021751404,-0.93089634180069,0.00921786576509476,-0.379461377859116,-0.924541771411896,-0.0350951962172985,-0.480310618877411,-0.599620223045349,-0.640122890472412,0.892209947109222,0.252433121204376,0.374485015869141,0.945674657821655,0.324144065380096,0.025101775303483,0.662455856800079,0.117146998643875,0.739884316921234,-0.958643794059753,0.255064487457275,-0.126270189881325,-0.633706271648407,0.17700682580471,-0.753050446510315,-0.966727495193481,0.255708187818527,-0.00717025343328714,-0.980692267417908,0.0839318633079529,0.176630556583405,-0.996521830558777,0.0822958797216415,-0.0131012611091137,-0.981922209262848,0.0839254781603813,0.169662743806839,-0.967731952667236,0.218443155288696,-0.12560823559761,-0.975090324878693,0.221650332212448,-0.00837463978677988,-0.958784341812134,0.220397546887398,0.179325133562088,-0.981266498565674,0.0907634049654007,0.169935509562492,-0.368293881416321,0.0358423329889774,0.929018259048462,-0.980054557323456,0.0906659215688705,0.176841571927071,-0.303913742303848,0.130224227905273,0.94375741481781,-0.91482937335968,0.362299233675003,0.178400337696075,-0.351058334112167,0.148577407002449,0.924490630626678,-0.911139488220215,0.366581290960312,0.188263222575188,-0.919372022151947,0.372265338897705,-0.127175986766815,-0.912837386131287,0.367341637611389,0.178291797637939,-0.914879560470581,0.362171083688736,0.178403034806252,-0.306044161319733,0.125535324215889,0.943704307079315,-0.913177847862244,0.361547231674194,0.188122406601906,-0.895993411540985,0.425540328025818,-0.126929715275764,-0.887927770614624,0.419174581766129,0.189412623643875,-0.901718318462372,0.42773711681366,-0.0628089234232903,-0.344282269477844,0.0374834351241589,0.938117682933807,
- -0.000510849989950657,0.0177564974874258,0.99984222650528,-0.352635264396667,0.0379339382052422,0.934991717338562,-0.35428574681282,0.0419919639825821,0.934193968772888,-0.979954779148102,0.097101055085659,0.173954084515572,-0.342856645584106,0.0409095399081707,0.938496530056,-0.171681955456734,-0.355179756879807,0.91889762878418,-0.252123147249222,0.27150222659111,0.928827524185181,0.178029716014862,0.323753327131271,-0.929241180419922,-0.268145233392715,0.254302114248276,0.92920857667923,-0.245513811707497,0.960167467594147,0.133422389626503,0.0986411869525909,0.456436455249786,-0.884271323680878,-0.528176605701447,-0.0776138678193092,0.845579981803894,-0.0255228988826275,-0.0365306846797466,0.999006628990173,-0.0345401279628277,-0.0373515374958515,0.998705148696899,-0.740598797798157,0.661762416362762,-0.116550594568253,-0.598518908023834,0.568637132644653,-0.564293324947357,-0.745842218399048,0.66279000043869,-0.0665495544672012,-0.280190080404282,0.241172015666962,0.929155349731445,-0.00866187736392021,-0.00936691462993622,0.999918699264526,-0.26828071475029,0.23012800514698,0.935449957847595,-0.259688377380371,0.240008667111397,0.935391783714294,0.00675610918551683,0.00730602536350489,0.999950528144836,0.00650612358003855,0.0075251548551023,0.999950528144836,-0.436432778835297,0.015426442027092,0.899604678153992,-0.11754284799099,-0.135953173041344,0.983717679977417,0.214258819818497,-0.268501549959183,0.939148664474487,-0.100490681827068,0.125931367278099,0.986936211585999,-0.127216190099716,0.134544134140015,0.982707500457764,-0.302994966506958,0.189244195818901,0.934013247489929,-0.745802462100983,0.642970144748688,0.174264430999756,-0.283895224332809,0.23709799349308,0.929079234600067,-0.271535754203796,0.226360693573952,0.93543004989624,-0.892142057418823,0.417765110731125,0.171916007995605,-0.291260927915573,0.203240320086479,0.934805035591125,-0.124719507992268,0.131396502256393,0.983453154563904,-0.290278971195221,0.230039283633232,0.928881168365479,-0.761613726615906,0.624073565006256,0.174576014280319,
- -0.759844958782196,0.62250417470932,0.187414363026619,-0.762160181999207,0.623403489589691,0.17458501458168,-0.771530389785767,0.632723867893219,-0.06634271889925,-0.760373115539551,0.62185126543045,0.187440395355225,-0.747683048248291,0.660713791847229,-0.06653843075037,-0.739864408969879,0.649832248687744,0.174123018980026,-0.743828773498535,0.658140301704407,-0.116490721702576,-0.451940834522247,0.878227651119232,0.156415149569511,-0.618979275226593,0.778343617916107,-0.105099499225616,-0.611746191978455,0.785749435424805,-0.0914578586816788,0.243804708123207,0.967608392238617,0.0655233934521675,-0.389204204082489,0.516222894191742,-0.762911677360535,0.156894996762276,0.984874308109283,-0.0735291093587875,-0.627235174179077,0.778610944747925,-0.0184671115130186,-0.64342725276947,0.764287710189819,-0.0431932955980301,-0.490783244371414,0.856511354446411,0.15974996984005,0.101904265582561,-0.00916189886629581,-0.994752049446106,0.0486075878143311,0.145153433084488,-0.988214492797852,0.071237213909626,0.0805658996105194,-0.994200468063354,0.142235845327377,0.160861968994141,-0.976674199104309,0.169534653425217,0.130842015147209,-0.976800084114075,-0.051739290356636,0.359808027744293,-0.931590795516968,-0.225046023726463,0.185121938586235,-0.956600308418274,0.00536867929622531,-0.0059445621445775,-0.999967932701111,-0.000762414128985256,-0.000862254062667489,-0.999999344348907,-0.567946255207062,0.801710307598114,-0.186273276805878,-0.0608180612325668,0.351277947425842,-0.934293866157532,0.112248122692108,0.137904018163681,-0.984064519405365,-0.021131981164217,0.990269303321838,-0.137550562620163,-0.158883824944496,0.164495542645454,-0.973497450351715,-0.112242236733437,0.712448000907898,-0.692690074443817,0.00817619729787111,-0.00226192409172654,-0.9999640583992,-0.216953590512276,0.193861097097397,-0.956738829612732,-0.211560383439064,0.18916817009449,-0.95888352394104,0.00888707395642996,0.999926149845123,-0.00829329621046782,-0.0164371486753225,0.990443646907806,-0.136935785412788,-0.127342849969864,0.714684545993805,-0.687757074832916,
- -0.410297870635986,0.721166968345642,-0.558188021183014,0.476093173027039,0.390635550022125,0.787869930267334,-0.0756771191954613,0.997123241424561,-0.00427606655284762,-0.170903787016869,-0.0339967608451843,-0.984701037406921,0.0753042548894882,0.0858736783266068,-0.993456125259399,-0.459983974695206,-0.179951459169388,-0.869501113891602,0.0339701808989048,-0.128954276442528,-0.991068542003632,-0.0752489864826202,-0.111572079360485,-0.990903317928314,-0.149471536278725,-0.098889097571373,-0.983808517456055,-0.215930923819542,0.194961130619049,-0.956746518611908,-0.732037603855133,0.655911445617676,-0.184122785925865,-0.210700556635857,0.190280303359032,-0.958852767944336,-0.460508823394775,-0.180867061018944,-0.869033217430115,-0.902778208255768,-0.42273810505867,-0.0792714729905128,-0.169404044747353,-0.0386228337883949,-0.984789609909058,-0.769534409046173,0.611466526985168,-0.184188932180405,-0.225520700216293,0.184607475996017,-0.95658802986145,-0.769005060195923,0.611067712306976,-0.187689870595932,0.484267562627792,0.204383194446564,-0.850712895393372,-0.105957619845867,0.713817656040192,0.692269742488861,0.500947177410126,0.609696447849274,-0.61426568031311,0.2869972884655,0.955123841762543,-0.073287270963192,0.497694224119186,0.608856678009033,-0.617733001708984,-0.139887720346451,0.774698317050934,0.61666351556778,-0.212688639760017,0.271823674440384,-0.938549637794495,0.0549531280994415,-0.114554896950722,-0.991895794868469,-0.200766295194626,0.25442910194397,-0.946022629737854,0.0934367999434471,-0.0878881737589836,-0.991738557815552,-0.150832608342171,0.303388446569443,-0.940853357315063,0.0348066762089729,0.00728781288489699,-0.999367475509644,-0.197312712669373,0.256886869668961,-0.946085095405579,-0.545830726623535,0.815859377384186,-0.190898925065994,-0.208464413881302,0.274038195610046,-0.93885350227356,-0.577160775661469,0.794662356376648,-0.188141316175461,-0.181037917733192,0.268373101949692,-0.946150779724121,-0.57828563451767,0.796001791954041,-0.178793340921402,-0.108760505914688,0.286527156829834,-0.951878845691681,
- -0.000617016514297575,-0.00890225917100906,-0.99996018409729,-0.12035646289587,0.318272978067398,-0.940327942371368,-0.345013588666916,0.916710078716278,-0.201514765620232,-0.10945250838995,0.286276876926422,-0.951874852180481,-0.121289923787117,0.317823499441147,-0.940360069274902,0.00174575543496758,-0.00782278273254633,-0.999967873096466,-0.11627534776926,0.283800065517426,-0.951807618141174,-0.00124052504543215,-0.000448256905656308,-0.999999105930328,-0.0913905948400497,0.292751103639603,-0.95181131362915,-0.0141863767057657,-0.0052453838288784,-0.999885618686676,-0.0142148705199361,-0.00513646565377712,-0.99988579750061,-0.0746049955487251,-0.252828061580658,-0.964630544185638,-0.399955451488495,-0.147882699966431,-0.904525458812714,-0.704346418380737,-0.0104984641075134,-0.709778845310211,-0.142348319292068,0.274176061153412,-0.951085925102234,-0.141370296478271,0.272681444883347,-0.951661348342896,0.0110500939190388,0.0374475419521332,-0.999237477779388,-0.44780558347702,0.869641184806824,-0.207832917571068,-0.135705798864365,0.295288383960724,-0.94572126865387,-0.127494409680367,0.279689848423004,-0.951587498188019,-0.11195595562458,0.285370081663132,-0.951855957508087,-0.338178247213364,0.919215500354767,-0.201689168810844,-0.337666690349579,0.917650997638702,-0.20951834321022,0.0566910207271576,0.843901991844177,-0.533493757247925,-0.415923029184341,0.885141670703888,-0.208643943071365,-0.308200091123581,0.903214156627655,-0.298691958189011,-0.421847075223923,0.882364511489868,-0.208514004945755,-0.399592995643616,0.887912094593048,-0.227898642420769,-0.309909760951996,0.901829779148102,-0.301096320152283,-0.446699142456055,0.870202243328094,-0.207865715026855,-0.576590180397034,0.816823303699493,0.0185381602495909,-0.417005300521851,0.873481750488281,-0.251269638538361,-0.553301870822906,0.474795520305634,0.684416711330414,0.1593167334795,0.899021983146667,0.407894372940063,0.582266569137573,0.811711847782135,0.0457114912569523,0.0411073304712772,-0.0339764654636383,0.998576879501343,0.0452607609331608,-0.027966994792223,0.998583674430847,
- 0.0785971134901047,0.0204480309039354,0.996696829795837,-0.0940770506858826,0.0897508189082146,0.991511106491089,0.922369420528412,0.384540319442749,0.0369276367127895,-0.726010680198669,-0.21423265337944,0.65346223115921,0.66007125377655,0.194775104522705,0.725512742996216,0.64748740196228,0.168452009558678,0.743225395679474,0.338978111743927,-0.277290761470795,0.89900141954422,-0.257421970367432,0.965771019458771,0.0319416485726833,0.00827071256935596,0.00259741372428834,0.999962508678436,0.00830951705574989,0.00245198840275407,0.999962508678436,-0.0318524576723576,-0.00939908530563116,0.999448418617249,-0.0291293542832136,-0.0182809326797724,0.999408543109894,-0.0321681015193462,-0.00836893729865551,0.999447524547577,0.0144335217773914,-0.0034009637311101,0.999890029430389,0.0123858265578747,0.00365483365021646,0.999916672706604,0.0123233301565051,0.00387013657018542,0.999916553497314,0.0279634781181812,0.00727505143731833,0.999582529067993,0.0294396132230759,0.00172882457263768,0.999565064907074,0.0272206235677004,0.0100647695362568,0.999578833580017,-0.250615119934082,0.967552125453949,0.0321725606918335,-0.248303800821304,0.963719487190247,0.0979288965463638,0.0185011997818947,0.00581029430031776,0.999812006950378,0.308669596910477,0.0975775048136711,0.9461510181427,0.309103280305862,0.0970737561583519,0.946061313152313,-0.656616389751434,0.747333645820618,0.101722098886967,-0.243527427315712,0.94718724489212,-0.208640560507774,-0.245918214321136,0.964338898658752,0.0978504419326782,-0.24737836420536,0.96838104724884,0.032281655818224,0.162763506174088,0.119013339281082,0.979461014270782,0.179039135575294,0.066199354827404,0.981612324714661,0.182645231485367,0.0542230904102325,0.981682598590851,-0.313029259443283,0.947706937789917,0.0621628724038601,-0.31246218085289,0.944669961929321,0.0998301953077316,-0.30387145280838,0.929407775402069,-0.209435790777206,-0.303895771503448,0.9506676197052,0.0622774548828602,-0.0172014813870192,-0.0142084304243326,0.999751091003418,-0.303712546825409,0.947543919086456,0.0995950102806091,
- -0.126448214054108,-0.0514584444463253,0.990637600421906,0.0200370773673058,0.997831463813782,0.0626977533102036,-0.125616908073425,-0.0158569794148207,0.991952121257782,-0.335771858692169,0.918345391750336,-0.209520816802979,-0.336242139339447,0.919915020465851,-0.201736509799957,-0.339638590812683,0.938523948192596,0.0617939345538616,-0.0221858657896519,-0.0082031786441803,0.999720275402069,-0.036732129752636,0.0261858701705933,0.998982071876526,-0.0210133083164692,-0.010971549898386,0.999719023704529,-0.390846967697144,0.918436706066132,0.0609318166971207,-0.38633269071579,0.900366306304932,-0.200218960642815,-0.391787350177765,0.919664859771729,0.0268226712942123,-0.584258854389191,0.810968518257141,0.0311730112880468,-0.573576867580414,0.797174394130707,-0.188474357128143,-0.574677348136902,0.798655688762665,-0.178592219948769,-0.460085391998291,0.885883748531342,0.0594264157116413,-0.0150280427187681,0.0278770886361599,0.99949836730957,-0.0185812264680862,0.0347194373607636,0.999224364757538,0.00321680540218949,0.0355135016143322,0.999364018440247,-0.40246969461441,0.913418173789978,0.0607072040438652,-0.403598546981812,0.914534330368042,0.0271138809621334,-0.0162655059248209,-0.00849260948598385,0.999831676483154,-0.0339583717286587,0.0274910721927881,0.999045073986053,-0.0308823995292187,0.0212303642183542,0.999297559261322,0.530504763126373,0.342101216316223,0.775584638118744,0.49113529920578,0.256433486938477,0.832483053207397,0.477610886096954,0.229023233056068,0.848195791244507,0.466065347194672,0.300546795129776,0.83213871717453,0.348977237939835,0.177610859274864,0.920146405696869,0.731261014938354,0.68198698759079,-0.0122918905690312,-0.00758127821609378,-0.00395836634561419,0.999963402748108,-0.00711468420922756,-0.00458797393366694,0.99996417760849,-0.00618219934403896,-0.00584620982408524,0.999963819980621,-0.576899528503418,0.81622576713562,0.0310240127146244,-0.567252099514008,0.804040253162384,-0.178169146180153,-0.576807856559753,0.816056370735168,0.0366699993610382,-0.578117847442627,0.815130054950714,0.0366438440978527,
- -0.00730724446475506,-0.004712148103863,0.999962210655212,-0.578187704086304,0.815312683582306,0.031050207093358,-0.0116360252723098,-0.0110036311671138,0.999871850013733,-0.0134554523974657,-0.00867688003927469,0.999871850013733,-0.021301195025444,0.00135912001132965,0.999772191047668,-0.00591534748673439,-0.00381456990726292,0.999975264072418,-0.620284140110016,0.783562839031219,0.0357330590486526,-0.0148737318813801,0.00750906346365809,0.999861240386963,-0.0330182872712612,-0.00342359114438295,0.999448895454407,-0.0180363245308399,-0.0170560870319605,0.999691903591156,-0.0295739099383354,-0.00655893608927727,0.999541103839874,-0.753274977207184,0.656936824321747,0.0317949503660202,-0.0241303686052561,0.00772317126393318,0.999679028987885,-0.019173189997673,0.0033954344689846,0.999810457229614,-0.00497500877827406,-0.00470462720841169,0.999976634979248,-0.0219358019530773,0.0104742925614119,0.999704539775848,-0.00423778779804707,-0.005364288110286,0.999976634979248,-0.00487453723326325,-0.00617030076682568,0.999969184398651,-0.0244236811995506,0.00735543528571725,0.999674677848816,-0.00457960646599531,-0.00637431629002094,0.999969244003296,-0.737596750259399,0.649640142917633,-0.184170737862587,-0.748511672019959,0.66061931848526,0.0575537979602814,-0.749443233013153,0.661297917366028,0.0319364778697491,-0.0213416200131178,0.0112190824002028,0.99970930814743,-0.745113909244537,0.666164577007294,0.0320939905941486,-0.744369268417358,0.665299594402313,0.0573665648698807,-0.780008614063263,0.622986376285553,0.0589452125132084,-0.767942011356354,0.613462090492249,-0.1841991096735,-0.767417192459106,0.613044500350952,-0.18774276971817,-0.842985987663269,0.505699038505554,-0.183421149849892,-0.857862830162048,0.512581348419189,0.0364928767085075,-0.856884300708771,0.51176255941391,0.0620362162590027,-0.0351903289556503,-0.0078848684206605,0.999349534511566,-0.0361025966703892,-0.00729357730597258,0.999321520328522,-0.838787913322449,0.540990233421326,0.0613565668463707,-0.0437513366341591,-0.0195477642118931,0.998851239681244,
- -0.859946668148041,0.506586015224457,0.062147606164217,-0.860524535179138,0.508088648319244,0.0366540029644966,-0.00900061242282391,-0.0125278774648905,0.999881029129028,-0.0297552086412907,0.000669688917696476,0.999557018280029,-0.0291771925985813,0.000301986903650686,0.999574184417725,0.0933705121278763,0.2485591173172,0.96410596370697,0.099544495344162,0.1745645403862,0.97960102558136,-0.0603748112916946,0.998163282871246,-0.00500720040872693,0.127222657203674,0.262805223464966,0.956424474716187,0.137062057852745,0.190775543451309,0.972017884254456,0.133203849196434,0.219813406467438,0.966405093669891,0.0120245171710849,0.0167368277907372,0.999787628650665,-0.0784120932221413,0.171790719032288,0.98200786113739,0.0164843294769526,0.00905895605683327,0.999823093414307,-0.00243268487975001,-0.0772377476096153,0.997009754180908,0.000129172578454018,-0.0755363628268242,0.997143089771271,0.0257204007357359,-0.0585013031959534,0.997955977916718,0.229516208171844,-0.558183610439301,0.797341406345367,-0.0192591045051813,-0.611476540565491,0.791028141975403,-0.0490032210946083,-0.61521190404892,0.786837339401245,-0.823404610157013,-0.456750065088272,0.336725860834122,-0.232914000749588,0.439922422170639,0.867305815219879,-0.00206338032148778,0.592213213443756,0.805778682231903,-0.00048196449643001,-0.0153023730963469,0.999882817268372,-0.0401856228709221,-0.0135086253285408,0.999100983142853,-0.0320233069360256,-0.013879363425076,0.999390780925751,-0.00333466310985386,-0.0208416450768709,0.999777257442474,-0.0404592268168926,-0.0179021563380957,0.999020874500275,-0.000663056736811996,-0.0210520513355732,0.999778211116791,0.0135879721492529,0.811968803405762,0.583542823791504,-0.938583672046661,-0.341736823320389,0.0477154776453972,-0.967090368270874,-0.196107789874077,0.162105038762093,-0.0263438541442156,0.194619417190552,0.980525016784668,0.0297514162957668,0.185946360230446,0.982109427452087,0.0295746512711048,0.185974642634392,0.982109367847443,0.0070852367207408,0.0281123910099268,0.999579668045044,-0.00193093507550657,0.0304039940237999,0.999535799026489,
- 0.00459912559017539,0.0287445355206728,0.999576270580292,-0.997595071792603,0.0277900565415621,0.0634970963001251,-0.0315125435590744,-0.000816148007288575,0.999503016471863,-0.0393770635128021,-0.000595741905272007,0.999224245548248,-0.0312382709234953,0.00614247843623161,0.99949312210083,-0.997466146945953,0.0319100990891457,0.0635863021016121,-0.998758792877197,0.0318207517266274,0.0383189842104912,-0.0319673046469688,-0.118861995637417,0.992396056652069,-0.893027901649475,0.445020943880081,0.0667660385370255,-0.0461179874837399,-0.11170369386673,0.992670953273773,-0.973213791847229,-0.0788961499929428,-0.215940400958061,-0.999337077140808,0.0362172238528728,0.00371781876310706,-0.997844994068146,0.0537795051932335,0.037591390311718,-0.974420607089996,0.0362720116972923,-0.221785545349121,-0.99860817193985,0.0363988652825356,0.0381688587367535,-0.997310876846313,0.03627710044384,0.0636796802282333,-0.715997576713562,0.58511871099472,-0.38076713681221,-0.693296074867249,0.695104598999023,-0.190184831619263,-0.712144553661346,0.499354362487793,-0.493452489376068,-0.396506488323212,0.0149665903300047,-0.917909860610962,-0.687932431697845,0.520581603050232,-0.505711197853088,-0.705376327037811,0.682252585887909,-0.192290768027306,-0.524741232395172,0.836289346218109,-0.158955574035645,-0.244979292154312,0.286588400602341,-0.926203191280365,-0.16274006664753,0.146448612213135,-0.975740075111389,-0.244414001703262,0.289162039756775,-0.925552368164063,-0.0754116475582123,-0.0267429128289223,-0.996793806552887,-0.168089061975479,0.143635511398315,-0.975251197814941,-0.212870106101036,-0.0914973840117455,-0.972787022590637,-0.28131902217865,0.0929665118455887,-0.955100476741791,-0.0638519078493118,-0.423438966274261,-0.903671681880951,-0.319194585084915,0.0427032820880413,-0.946726620197296,0.00102359580341727,0.00678805587813258,-0.999976515769959,-0.289317458868027,0.0393849462270737,-0.956422686576843,-0.319139927625656,0.043231125921011,-0.946721136569977,-0.289268344640732,0.039732500910759,-0.956423163414001,-0.967594623565674,0.116326458752155,-0.224117815494537,
- -0.00103441893588752,-0.00685983104631305,-0.9999760389328,-0.320574373006821,0.0290771797299385,-0.946776926517487,-0.00217026914469898,-0.00673339888453484,-0.999975025653839,-0.968334794044495,0.110253073275089,-0.223991081118584,-0.97320818901062,0.110623970627785,-0.201564103364944,-0.319147676229477,0.0431559719145298,-0.946721851825714,-0.967855989933014,0.114216923713684,-0.224074751138687,-0.990838587284088,0.118265315890312,0.0652087032794952,-0.97269207239151,0.114894337952137,-0.201666653156281,-0.0235103759914637,-0.0729424506425858,-0.997058987617493,-0.32991498708725,-0.0877434238791466,-0.939924001693726,-0.404879838228226,-0.0902147367596626,-0.909908592700958,-0.971675872802734,-0.141808122396469,-0.189040705561638,-0.409792125225067,-0.103687971830368,-0.906266629695892,-0.330327451229095,-0.0946551486849785,-0.939108192920685,0.0021178419701755,0.00657074013724923,-0.99997615814209,-0.296102821826935,0.131570488214493,-0.946050882339478,0.00238757953047752,0.00645731668919325,-0.999976277351379,-0.29919907450676,0.12397962808609,-0.946102023124695,-0.00396441714838147,-0.0122998580336571,-0.99991649389267,-0.312991917133331,0.130386248230934,-0.940763354301453,-0.314058274030685,0.128093868494034,-0.940722763538361,-0.900929689407349,0.389344871044159,-0.191667050123215,-0.300021141767502,0.121954523026943,-0.946104884147644,-0.914005279541016,0.357056081295013,-0.192627713084221,-0.320729732513428,0.113634541630745,-0.940329551696777,-0.912441551685333,0.356326252222061,-0.201201573014259,-0.174042612314224,0.981440186500549,-0.080525316298008,-0.377614855766296,0.884754300117493,0.273160845041275,0.144499003887177,0.837121248245239,-0.527586996555328,-0.624312222003937,0.322132855653763,0.71166330575943,-0.416504323482513,0.87689197063446,0.239967972040176,-0.197715297341347,0.976581454277039,-0.0848372504115105,-0.982464015483856,0.174377992749214,0.0660066679120064,-0.979009687900543,0.173218205571175,0.107404112815857,-0.963558971881866,0.174534574151039,-0.202711135149002,-0.981960833072662,0.177176788449287,0.0660410821437836,
- -0.0109822368249297,-0.014478494413197,0.999834954738617,-0.978543639183044,0.175876155495644,0.107331223785877,-0.931214451789856,0.361657500267029,0.0452050790190697,-0.915194511413574,0.35395336151123,-0.192707121372223,-0.913604974746704,0.35328283905983,-0.201288878917694,-0.984763860702515,0.168560042977333,0.0427519641816616,-0.965394258499146,0.164237812161446,-0.202582910656929,-0.979903817176819,0.16799584031105,0.107544898986816,0.0528380535542965,0.300173550844193,0.952420175075531,0.0553826726973057,0.300751745700836,0.952093064785004,-0.968305170536041,-0.224550902843475,0.109371617436409,-0.984372496604919,0.170821502804756,0.0427899807691574,-0.979642570018768,0.169538646936417,0.10750363022089,-0.0092202965170145,-0.00551439961418509,0.999942302703857,-0.00513370195403695,0.0145320855081081,0.999881207942963,-0.0214995983988047,0.018116557970643,0.999604761600494,-0.005021664313972,0.0145075339823961,0.999882221221924,-0.0102397734299302,-0.0103783905506134,0.999893724918365,-0.0246917400509119,-0.00700919795781374,0.999670624732971,-0.973122000694275,0.226115360856056,0.0436531975865364,-0.0265528783202171,-0.0217142682522535,0.999411523342133,-0.0130231566727161,-0.0246103648096323,0.999612271785736,-0.00655129319056869,-0.0259938407689333,0.999640643596649,-0.216885313391685,0.344464927911758,0.913402795791626,-0.00994738191366196,0.108057156205177,0.994094908237457,0.0187654886394739,0.0744566172361374,0.997047662734985,-0.0157061703503132,-0.0448747761547565,0.998869240283966,-0.0330154113471508,-0.0731004998087883,0.996777951717377,0.00597508996725082,-0.00948985014110804,0.999937117099762,-0.0440173782408237,-0.161791324615479,0.985842883586884,-0.0611675418913364,-0.174764424562454,0.982708513736725,-0.148350685834885,-0.239763855934143,0.959429740905762,-0.787336945533752,-0.616303741931915,0.0164391621947289,-0.0440173782408237,-0.161791324615479,0.985842883586884,-0.148350685834885,-0.239763855934143,0.959429740905762,0.0148314265534282,0.0288957096636295,0.999472379684448,-0.0390084311366081,0.0529301762580872,0.997836112976074,
- 0.0107523379847407,0.0307209696620703,0.999470233917236,0.00850863475352526,0.225203588604927,0.974274635314941,-0.048858854919672,-0.0951905325055122,0.994259357452393,-0.0312451459467411,0.00524918455630541,0.999497950077057,-0.910596132278442,0.410014033317566,0.0519925244152546,-0.910991787910461,0.409901589155197,0.0455485321581364,-0.0359385125339031,0.0609271377325058,0.997494995594025,-0.896127879619598,0.400459080934525,-0.191278606653214,-0.910391807556152,0.411231517791748,0.045556329190731,-0.910059630870819,0.411200255155563,0.0520181022584438,-0.581043779850006,0.319881588220596,0.748374223709106,0.121061459183693,0.992345452308655,-0.0243887845426798,0.0716505125164986,0.996764659881592,0.0364218167960644,-0.0408901497721672,0.0480227693915367,0.998008966445923,0.0124483536928892,0.0242528263479471,0.99962842464447,-0.038272712379694,0.0468587055802345,0.998168051242828,-0.231527268886566,-0.451078981161118,0.861929833889008,-0.191825702786446,0.268237382173538,0.944061279296875,-0.233474805951118,-0.362505048513412,0.902263581752777,-0.0403433814644814,0.0494491532444954,0.997961521148682,-0.0375901646912098,0.0482431724667549,0.998128056526184,-0.913493812084198,0.40353524684906,0.0518515408039093,-0.193259090185165,0.268509447574615,0.943691492080688,0.0959694012999535,0.994755148887634,0.0353852659463882,-0.248880743980408,-0.396174997091293,0.883800745010376,0.104317516088486,-0.110312782227993,-0.988407373428345,0.107819311320782,-0.101481795310974,-0.988977491855621,0.190710246562958,0.118310980498791,-0.974490702152252,-0.069950595498085,-0.0433952733874321,-0.996606230735779,-0.0280356202274561,0.040659736841917,-0.998779714107513,0.191800534725189,0.467262953519821,-0.863063097000122,0.0130516719073057,0.00809687003493309,-0.999882102012634,-0.181263908743858,0.266748487949371,-0.946566760540009,0.0111926775425673,0.0105843795463443,-0.999881386756897,0.46880242228508,0.878074884414673,-0.0959631949663162,0.194971233606339,0.468661546707153,-0.861593186855316,-0.0395206063985825,0.0526559799909592,-0.997830450534821,
- -0.0766108781099319,0.98481011390686,-0.15582001209259,-0.407263249158859,0.434901535511017,-0.803117156028748,-0.397516041994095,0.476508051156998,-0.78416895866394,0.0290782880038023,0.0274979434907436,-0.999198913574219,-0.17671474814415,0.269621461629868,-0.946613073348999,-0.193800896406174,0.289420992136002,-0.937377572059631,-0.184250846505165,0.294974565505981,-0.937572240829468,-0.169205620884895,0.274339646100998,-0.946629405021667,-0.570927143096924,0.803663492202759,-0.167831033468246,-0.0228140279650688,-0.0215741321444511,-0.999506890773773,-0.394766509532928,0.16033810377121,-0.904682874679565,-0.0370077528059483,-0.0147403758019209,-0.999206244945526,-0.0078084017150104,-0.00496234791353345,-0.999957203865051,-0.00851175934076309,-0.00339027727022767,-0.999958097934723,-0.150084316730499,0.314444869756699,-0.937336206436157,-0.00304430560208857,-0.00193469866644591,-0.999993562698364,-0.146760299801826,0.316306233406067,-0.937236249446869,-0.133863672614098,0.287701040506363,-0.948318839073181,-0.136268854141235,0.286286503076553,-0.948404431343079,-0.149683430790901,0.314669668674469,-0.937324941158295,-0.422325670719147,0.892604649066925,-0.157791644334793,-0.171170830726624,0.302501559257507,-0.937653124332428,-0.496708482503891,0.851278781890869,-0.169131055474281,-0.497348755598068,0.852299153804779,-0.161957755684853,-0.0407274626195431,0.999168395996094,0.00192413211334497,-0.109036847949028,0.981416881084442,-0.157898306846619,-0.370250344276428,0.447754442691803,-0.813898503780365,-0.54785418510437,0.631673753261566,-0.54849249124527,-0.144432723522186,0.974814891815186,0.169927105307579,-0.251550048589706,0.967771351337433,0.0118842544034123,-0.414707332849503,0.564713835716248,0.713523745536804,-0.580126762390137,0.814065098762512,0.0274075660854578,-0.442850083112717,0.605536699295044,0.661217868328094,-0.493838578462601,0.867773830890656,0.0556070357561111,-0.489484548568726,0.856913506984711,-0.161567777395248,-0.488900482654572,0.85577517747879,-0.169189870357513,-0.624451160430908,0.76322728395462,-0.165966644883156,
- -0.634027242660522,0.77273041009903,0.0299540422856808,-0.633559167385101,0.771909356117249,0.0525234937667847,-0.618577182292938,0.783937931060791,0.0529505535960197,-0.618689298629761,0.785091876983643,0.0292294155806303,-0.448712259531021,0.539935171604156,0.712128758430481,-0.43096598982811,0.888370990753174,-0.158320441842079,-0.432646155357361,0.899797439575195,0.0564084574580193,-0.433127552270889,0.900303065776825,0.0430701859295368,-0.744854688644409,0.165805771946907,0.646297216415405,-0.956987738609314,0.288470506668091,0.0309706218540668,-0.779821395874023,0.180888399481773,0.599297940731049,-0.430227309465408,0.900954902172089,0.0564341619610786,-0.152486681938171,0.344832211732864,0.926195740699768,-0.430656582117081,0.901480317115784,0.0432221740484238,-0.252475142478943,0.553387105464935,0.793737411499023,-0.155303835868835,0.344979107379913,0.925672888755798,-0.419393002986908,0.906042158603668,0.056543942540884,-0.431611686944962,0.477311760187149,0.76543116569519,-0.427302032709122,0.507748901844025,0.748066842556,-0.100371316075325,0.992790997028351,-0.0655108243227005,-0.108754813671112,0.981451094150543,0.157880946993828,-0.0167734380811453,0.998222529888153,-0.0571874007582664,-0.369574397802353,0.447039872407913,0.814598202705383,-0.407455563545227,0.435100227594376,0.802911996841431,-0.0766810923814774,0.984803915023804,0.155824691057205,-0.397699326276779,0.476700872182846,0.783958792686462,0.190707460045815,0.118309244513512,0.974491536617279,0.107818126678467,-0.101480565965176,0.988977789878845,0.104316338896751,-0.110311545431614,0.988407552242279,-0.0280947126448154,0.0407214649021626,0.998775541782379,-0.0700579136610031,-0.0434618517756462,0.996595740318298,0.191592946648598,0.467171192169189,0.863158881664276,0.46867373585701,0.878141283988953,0.0959835723042488,-0.039572648704052,0.0527103319764137,0.997825503349304,0.194771260023117,0.468573480844498,0.861686229705811,0.0111926775425673,0.0105843795463443,0.999881386756897,-0.181263908743858,0.266748487949371,0.946566760540009,0.0130516719073057,0.00809687003493309,0.999882102012634,
- -0.176721811294556,0.269616991281509,0.946612954139709,0.0290737897157669,0.0274936892092228,0.999199151992798,-0.193808302283287,0.289416700601578,0.937377452850342,-0.570933878421783,0.803658843040466,0.167830854654312,-0.169212341308594,0.274335443973541,0.946629464626312,-0.184257835149765,0.294970512390137,0.937572121620178,-0.0370080396533012,-0.0147404903545976,0.999206304550171,-0.394766747951508,0.160337910056114,0.904682755470276,-0.0228142030537128,-0.0215742979198694,0.999506950378418,-0.00782241299748421,-0.00497125275433064,0.999957084655762,-0.150097817182541,0.31443727016449,0.937336564064026,-0.00852703396230936,-0.0033963609021157,0.999957919120789,-0.14675797522068,0.31630751490593,0.937236189842224,-0.00304583320394158,-0.0019356693373993,0.999993562698364,-0.133861750364304,0.287702172994614,0.948318839073181,-0.149680554866791,0.314671248197556,0.93732476234436,-0.136266365647316,0.28628796339035,0.948404312133789,-0.422315388917923,0.892609477043152,0.157791003584862,-0.497350335121155,0.852298259735107,0.16195784509182,-0.496710002422333,0.851277768611908,0.169131025671959,-0.171163946390152,0.302505493164063,0.937653124332428,-0.488901913166046,0.855774343013763,0.169189855456352,-0.48948609828949,0.856912672519684,0.161567866802216,-0.493842035531998,0.867771863937378,-0.055606983602047,-0.624514400959015,0.763176143169403,0.165963917970657,-0.632009208202362,0.773175835609436,-0.0525688901543617,-0.629101395606995,0.769829452037811,-0.107675582170486,-0.432645589113235,0.899797677993774,-0.0564084611833096,-0.430966705083847,0.888370633125305,0.158320486545563,-0.433127045631409,0.900303304195404,-0.0430702194571495,-0.440641224384308,0.520137429237366,-0.731636881828308,-0.606978952884674,0.787566065788269,-0.106378480792046,-0.60754531621933,0.792498171329498,-0.0532486401498318,-0.430226296186447,0.900955379009247,-0.0564341731369495,-0.430655658245087,0.901480793952942,-0.0432222299277782,-0.152479276061058,0.344831824302673,-0.926197111606598,-0.157058909535408,0.345069199800491,-0.925343036651611,
- -0.284498631954193,0.613235890865326,-0.736886978149414,-0.425189971923828,0.903339803218842,-0.0564862862229347,0.0521596185863018,0.0631067007780075,0.996642827987671,0.0322009325027466,0.129890874028206,0.991005301475525,0.0722500309348106,-0.00531502673402429,0.997372388839722,0.145123451948166,0.107918038964272,0.983510494232178,0.117257483303547,0.141867086291313,0.982916355133057,-0.0708917379379272,0.357266247272491,0.931308329105377,0.00552048953250051,-0.00574543979018927,0.999968290328979,-0.233330905437469,0.185657292604446,0.954509377479553,-0.000657913857139647,-0.000795994594227523,0.999999523162842,-0.556190490722656,0.810017824172974,0.185804307460785,0.1037552729249,0.116178452968597,0.98779422044754,-0.0777831673622131,0.350475490093231,0.93333637714386,-0.184186086058617,0.166956529021263,0.968607783317566,-0.00792082771658897,0.990702867507935,0.135812819004059,-0.121876515448093,0.705731153488159,0.697918117046356,-0.223423093557358,0.196848437190056,0.95463752746582,0.00866605341434479,-0.00161934806965292,0.999961137771606,-0.212700605392456,0.18769197165966,0.958921372890472,-0.00619328580796719,0.99074649810791,0.135583803057671,0.0198249965906143,0.999764680862427,0.00880877673625946,-0.126571297645569,0.706428050994873,0.696375787258148,-0.759312152862549,0.59359335899353,0.266630828380585,-0.631340742111206,0.775142729282379,-0.0237236358225346,0.312925904989243,0.53203421831131,-0.786776304244995,0.0753137096762657,0.0858860909938812,0.993454337120056,-0.170892551541328,-0.0340315438807011,0.984701871871948,-0.46006315946579,-0.180089548230171,0.869430661201477,0.0337121672928333,-0.129130721092224,0.99105441570282,-0.150088280439377,-0.0970571935176849,0.983897030353546,-0.0746210664510727,-0.110750257968903,0.991042912006378,-0.222245499491692,0.198171928524971,0.954638600349426,-0.211748525500298,0.188924700021744,0.958889961242676,-0.736980617046356,0.65034031867981,0.184166043996811,-0.169399157166481,-0.038637887686491,0.984789907932281,-0.902734756469727,-0.422834306955338,0.0792536661028862,
- -0.460553646087646,-0.180945307016373,0.868993163108826,-0.229847237467766,0.189603701233864,0.954578876495361,-0.770063579082489,0.610801041126251,0.184185296297073,-0.769532382488251,0.610409021377563,0.187672004103661,0.484149038791656,0.204287230968475,0.85080349445343,0.500852882862091,0.60967218875885,0.61436653137207,-0.105946518480778,0.71379691362381,-0.692292869091034,0.497552484273911,0.608819842338562,0.617883443832397,0.286821842193604,0.955174207687378,0.0733185783028603,-0.139912247657776,0.774740278720856,-0.616605281829834,-0.857886672019959,0.512541472911835,-0.036494318395853,-0.843006312847137,0.50566554069519,0.183419361710548,-0.856908440589905,0.511722028255463,-0.0620370954275131,-0.768189549446106,0.613152503967285,0.184197604656219,-0.780318140983582,0.622597396373749,-0.0589585825800896,-0.767664670944214,0.612737059593201,0.187734603881836,-0.863947153091431,0.502231657505035,-0.0368618182837963,-0.863345801830292,0.500756025314331,-0.0622699111700058,-0.0764063149690628,0.000415854156017303,-0.997076749801636,0.0549478642642498,-0.114558510482311,0.99189567565918,-0.212696924805641,0.271819353103638,0.938549041748047,-0.200773790478706,0.254423767328262,0.94602245092392,-0.150882914662361,0.303363502025604,0.940853297710419,0.0933755859732628,-0.0879308357834816,0.991740465164185,0.0347412526607513,0.00725790066644549,0.999369978904724,-0.022982731461525,0.0764963701367378,-0.99680495262146,0.0118788471445441,0.0165340695530176,-0.999792754650116,0.0162820648401976,0.00894780177623034,-0.999827444553375,-0.000609011796768755,-0.00889860186725855,0.999960243701935,-0.108758717775345,0.286527782678604,0.951878905296326,-0.12035545706749,0.318273454904556,0.940327882766724,-0.117310158908367,0.283422887325287,0.95179295539856,0.0018936456181109,-0.00775521527975798,0.99996817111969,-0.00111750862561166,-0.000403805606765673,0.999999284744263,-0.0143268704414368,-0.0052973311394453,0.999883413314819,-0.0896813496947289,0.29335755109787,0.951787054538727,-0.0143549675121903,-0.00518708862364292,0.999883592128754,
- -0.074597455561161,-0.252802491188049,0.964637815952301,-0.704350233078003,-0.0105011761188507,0.709774971008301,-0.399937272071838,-0.147875964641571,0.904534757137299,-0.142098844051361,0.274269342422485,0.95109635591507,0.0110232261940837,0.0373564921319485,0.999241232872009,-0.141285568475723,0.273023247718811,0.951575934886932,-0.00874241348356009,-0.0121684931218624,-0.999887764453888,-0.0616660267114639,0.0215021315962076,-0.997865319252014,-0.0294790435582399,0.00101606920361519,-0.999564945697784,-0.0685239657759666,0.0117007428780198,-0.997580885887146,-0.837901830673218,0.542365312576294,-0.0613224059343338,-0.0372184589505196,-0.00869391392916441,-0.999269366264343,-0.0244170501828194,0.00736375292763114,-0.999674797058105,-0.00486794020980597,-0.00616195006296039,-0.999969244003296,-0.00457340944558382,-0.00636569131165743,-0.999969363212585,-0.0219299849122763,0.0104815866798162,-0.999704599380493,-0.00496821524575353,-0.00469820341095328,-0.999976634979248,-0.00423200149089098,-0.00535696372389793,-0.999976694583893,-0.745115637779236,0.666162669658661,-0.0320939272642136,-0.0213423818349838,0.0112181287258863,-0.999709367752075,-0.744370996952057,0.66529768705368,-0.0573666468262672,-0.748512387275696,0.660618484020233,-0.0575538277626038,-0.737598061561584,0.649638712406158,0.184170767664909,-0.749444007873535,0.661297082901001,-0.031936451792717,-0.0295757949352264,-0.00656073819845915,-0.999541044235229,-0.0180385429412127,-0.0170581843703985,-0.999691843986511,-0.0330198295414448,-0.00342552270740271,-0.999448895454407,-0.0241296589374542,0.00772406533360481,-0.999679088592529,-0.753252387046814,0.656962752342224,-0.031795796006918,-0.0191725268959999,0.00339606963098049,-0.999810457229614,-0.013444266282022,-0.0086696669459343,-0.999872088432312,-0.0116263320669532,-0.0109944650903344,-0.999871969223022,-0.0212916489690542,0.00136825733352453,-0.999772429466248,-0.620290696620941,0.783557713031769,-0.0357329063117504,-0.00590592669323087,-0.00380849465727806,-0.999975323677063,-0.0148657262325287,0.00751672266051173,-0.999861299991608,
- -0.00618058117106557,-0.00584467966109514,-0.999963879585266,-0.00711282156407833,-0.00458677252754569,-0.999964237213135,-0.00757929449900985,-0.00395733071491122,-0.999963462352753,-0.576842427253723,0.816031992435455,-0.036669310182333,-0.567285716533661,0.80401611328125,0.178171083331108,-0.576934039592743,0.816201329231262,-0.0310247149318457,-0.00730648264288902,-0.00471165683120489,-0.999962210655212,-0.578151643276215,0.815106093883514,-0.0366431660950184,-0.578221619129181,0.815288722515106,-0.0310508944094181,0.49091249704361,0.256317138671875,-0.832650244235992,0.530272781848907,0.341951608657837,-0.775809168815613,0.477404445409775,0.22894150018692,-0.848334074020386,0.465573072433472,0.300229370594025,-0.83252876996994,0.731158494949341,0.68209707736969,0.0122869303449988,0.348682194948196,0.177491903305054,-0.920281112194061,-0.0339675284922123,0.0274867620319128,-0.999044895172119,-0.0162742119282484,-0.00849715527147055,-0.99983149766922,-0.0308916997164488,0.0212264601141214,-0.999297320842743,-0.0210252460092306,-0.0109777832403779,-0.99971866607666,-0.0367442741990089,0.0261801555752754,-0.998981714248657,-0.0221984684467316,-0.0082078380510211,-0.999719977378845,-0.402449876070023,0.91342693567276,-0.0607075989246368,0.00321979960426688,0.0355147533118725,-0.999363958835602,-0.403578758239746,0.914543151855469,-0.0271133966743946,-0.0150473592802882,0.0278689973056316,-0.999498307704926,-0.460097968578339,0.885877192020416,-0.0594261102378368,-0.0186002179980278,0.034710519015789,-0.999224305152893,-0.574469149112701,0.798808097839355,0.178580537438393,-0.573365449905396,0.797321975231171,0.188493892550468,-0.584048449993134,0.811120212078094,-0.0311687719076872,-0.38631084561348,0.900375545024872,0.200219795107841,-0.390824049711227,0.91844642162323,-0.060932245105505,-0.391764432191849,0.919674515724182,-0.0268221013247967,-0.18095600605011,0.26843050122261,0.946150064468384,-0.576943874359131,0.794815182685852,0.188161626458168,-0.578072249889374,0.796159267425537,0.178781524300575,-0.545838177204132,0.815854549407959,0.190898329019547,
- -0.197320595383644,0.256881207227707,0.946084916591644,-0.208473086357117,0.274033576250076,0.938852787017822,-0.121289454400539,0.317823708057404,0.940360009670258,-0.109451226890087,0.28627735376358,0.951874852180481,-0.345032274723053,0.916703164577484,0.201514288783073,-0.338172346353531,0.919217586517334,0.201689302921295,-0.111955910921097,0.285370081663132,0.951855957508087,-0.337660849094391,0.917653203010559,0.209518373012543,-0.339631050825119,0.938526630401611,-0.0617940463125706,-0.336235374212265,0.919917523860931,0.201736688613892,-0.33576512336731,0.918347895145416,0.209520846605301,-0.135623678565025,0.295612752437592,0.945631802082062,-0.447089672088623,0.870004296302795,0.207854136824608,-0.127296924591064,0.279762595891953,0.951592564582825,-0.416121602058411,0.885049283504486,0.208639726042748,0.0566874593496323,0.843895256519318,0.533504724502563,-0.308260023593903,0.903165817260742,0.298776209354401,-0.399666786193848,0.887853622436523,0.227997034788132,-0.422045201063156,0.882270693778992,0.208509460091591,-0.309968829154968,0.901781797409058,0.301179379224777,-0.576614081859589,0.816806375980377,-0.0185369253158569,-0.446672797203064,0.870215475559235,0.207866460084915,-0.416986405849457,0.87349796295166,0.251244187355042,-0.553367733955383,0.474850207567215,-0.684325516223907,0.582315444946289,0.811676919460297,-0.0457112640142441,0.159293115139008,0.899036526679993,-0.407871335744858,-0.313056975603104,0.947697818279266,-0.0621625147759914,-0.303924411535263,0.929390490055084,0.209436148405075,-0.312486112117767,0.944661974906921,-0.0998308211565018,-0.245940789580345,0.964333117008209,-0.0978511869907379,-0.243534117937088,0.947185397148132,0.208640664815903,-0.24739770591259,0.968376159667969,-0.0322810038924217,0.0454737097024918,-0.0281471647322178,-0.998569011688232,0.0413220971822739,-0.03415397554636,-0.998561978340149,0.0790062248706818,0.0205544661730528,-0.996662199497223,-0.248312875628471,0.9637171626091,-0.0979291945695877,-0.250623047351837,0.967550039291382,-0.032172292470932,
- 0.0184837970882654,0.00580482883378863,-0.999812304973602,-0.0937849506735802,0.0895043909549713,-0.991561055183411,-0.725477695465088,-0.214075356721878,-0.654105424880981,0.922424554824829,0.384408175945282,-0.036923736333847,0.00831089727580547,0.00245239585638046,-0.999962449073792,0.00827208440750837,0.0025978444609791,-0.999962389469147,-0.257426768541336,0.96576976776123,-0.0319414846599102,0.647644340991974,0.168492838740349,-0.743079423904419,0.660234212875366,0.194823205471039,-0.725351512432098,0.338992118835449,-0.277302652597427,-0.898992598056793,0.302294373512268,0.0920910686254501,-0.948755741119385,-0.647448778152466,0.755265235900879,-0.101905234158039,0.300398230552673,0.0943399295210838,-0.949136912822723,0.0123877637088299,0.00365540548227727,-0.999916613101959,0.0144596481695771,-0.00348349986597896,-0.999889433383942,0.0123252552002668,0.00387074146419764,-0.999916553497314,-0.0172018054872751,-0.0139489825814962,-0.999754786491394,-0.303937613964081,0.950654327869415,-0.062276940792799,-0.303751438856125,0.947531342506409,-0.0995960682630539,-0.0312564969062805,-0.00813177134841681,-0.999478340148926,-0.0283469948917627,-0.0176307633519173,-0.999442756175995,-0.0309500433504581,-0.00913279969245195,-0.999479174613953,0.0239666849374771,0.99774706363678,-0.0626614913344383,-0.128667593002319,-0.0507197827100754,-0.990389943122864,-0.127745151519775,-0.0168688725680113,-0.991663575172424,0.0294869691133499,0.00148689793422818,-0.999564051628113,0.0279475711286068,0.00727091310545802,-0.999582946300507,0.0272051356732845,0.0100590428337455,-0.999579250812531,0.182073146104813,0.0673211738467216,-0.980977773666382,0.165669023990631,0.120349392294884,-0.978810429573059,0.186256751418114,0.0534646697342396,-0.981045424938202,2.48048454523087e-005,-0.075311191380024,-0.997160136699677,-0.00242321379482746,-0.0769370421767235,-0.997032999992371,0.025620074942708,-0.0582731105387211,-0.997971892356873,-0.0192561913281679,-0.611384093761444,-0.791099667549133,0.229475051164627,-0.558099567890167,-0.797412037849426,
- -0.0490018762648106,-0.615120530128479,-0.786908864974976,-0.232927948236465,0.439954161643982,-0.867285966873169,-0.823413133621216,-0.456739723682404,-0.336719006299973,-0.00206110603176057,0.592249572277069,-0.805751979351044,-0.0401863865554333,-0.0135208880528808,-0.999100804328918,-0.000482332077808678,-0.0153140425682068,-0.999882638454437,-0.0320237763226032,-0.0138915153220296,-0.999390602111816,-0.000663423677906394,-0.0210637021809816,-0.999777972698212,-0.0404599495232105,-0.0179137624800205,-0.999020636081696,-0.00333650829270482,-0.020853178575635,-0.999777019023895,-0.967100024223328,-0.19607712328434,-0.162084296345711,-0.938589453697205,-0.341721057891846,-0.0477152094244957,0.013594564050436,0.812047958374023,-0.58343243598938,0.0297533106058836,0.185958206653595,-0.982107043266296,-0.0263430047780275,0.194631487131119,-0.980522692203522,0.0295770429074764,0.185986414551735,-0.982107162475586,-0.0019313741941005,0.0304018203169107,-0.999535858631134,0.00708469562232494,0.0281102433800697,-0.999579727649689,0.00459877401590347,0.0287423394620419,-0.999576330184937,-0.0315133519470692,-0.000836677965708077,-0.999503016471863,-0.997595727443695,0.0277651567012072,-0.0634965524077415,-0.0393783636391163,-0.000616439152508974,-0.999224185943604,-0.997466087341309,0.0319095030426979,-0.0635862797498703,-0.03123864158988,0.00613306136801839,-0.999493181705475,-0.998758792877197,0.0318203903734684,-0.0383189953863621,-0.892959296703339,0.445158511400223,-0.0667649656534195,-0.03193524107337,-0.11870215088129,-0.992416203022003,-0.0461078360676765,-0.111530087888241,-0.992690920829773,-0.999337017536163,0.0362178012728691,-0.00371742434799671,-0.973211884498596,-0.0789265260100365,0.215938523411751,-0.997844696044922,0.0537851341068745,-0.0375912040472031,-0.997310936450958,0.0362763553857803,-0.0636796653270721,-0.998608231544495,0.0363984182476997,-0.0381688736379147,-0.974420487880707,0.0362746194005013,0.221785664558411,-0.693289458751678,0.695111453533173,0.190183639526367,-0.71598744392395,0.585127174854279,0.3807732462883,
- -0.712131917476654,0.499365895986557,0.493459224700928,-0.396467268466949,0.0149902682751417,0.917926490306854,-0.705371856689453,0.682257354259491,0.192289978265762,-0.687915802001953,0.520595729351044,0.505719304084778,-0.0109837204217911,-0.0144858611747622,-0.999834775924683,-0.98196017742157,0.177180573344231,-0.0660411342978477,-0.978542983531952,0.175879627466202,-0.107331126928329,-0.245014131069183,0.286429345607758,0.926243185997009,-0.524710476398468,0.836309850215912,0.158949628472328,-0.162852331995964,0.146389663219452,0.975730180740356,-0.0755320340394974,-0.0267995372414589,0.996783137321472,-0.244448572397232,0.289005011320114,0.925592303276062,-0.168194100260735,0.143580228090286,0.975241303443909,-0.281338632106781,0.0928418412804604,0.955106854438782,-0.212925121188164,-0.0915233418345451,0.972772598266602,-0.0638665184378624,-0.423535823822021,0.903625190258026,0.00102429557591677,0.00679269712418318,0.999976396560669,-0.319194316864014,0.0427056960761547,0.946726560592651,-0.289317071437836,0.0393875800073147,0.956422626972198,-0.319139659404755,0.043233472853899,0.946721076965332,-0.967595338821411,0.116321407258511,0.22411772608757,-0.289267987012863,0.0397350825369358,0.956423163414001,-0.320578277111053,0.0290377289056778,0.946776807308197,-0.00103569275233895,-0.0068682786077261,0.999975979328156,-0.00217297673225403,-0.00674179941415787,0.999974966049194,-0.972691595554352,0.114897958934307,0.201666742563248,-0.990838289260864,0.118268482387066,-0.0652087554335594,-0.967855513095856,0.114220567047596,0.224074840545654,-0.973207890987396,0.110626809298992,0.201564162969589,-0.968334496021271,0.11025595664978,0.22399115562439,-0.319147408008575,0.0431585423648357,0.946721851825714,-0.982463300228119,0.174381971359253,-0.0660067200660706,-0.963557898998261,0.174540415406227,0.202711179852486,-0.979009032249451,0.173221871256828,-0.107404008507729,-0.023526219651103,-0.0729916095733643,0.997055053710938,-0.404898643493652,-0.0902658924460411,0.909895181655884,-0.329918146133423,-0.087794303894043,0.939918160438538,
- -0.409818202257156,-0.103760063648224,0.906246542930603,-0.971667885780334,-0.141869679093361,0.189036130905151,-0.330331355333328,-0.0947222337126732,0.939100027084351,-0.295022457838058,0.131612837314606,0.946382462978363,0.0020944713614881,0.00649823155254126,0.999976754188538,0.00240733730606735,0.00636606896296144,0.999976873397827,-0.313166946172714,0.130010262131691,0.940757036209106,-0.00414537079632282,-0.0128612779080868,0.999908745288849,-0.298522859811783,0.123197592794895,0.94641774892807,-0.898827970027924,0.392748355865479,0.194568872451782,-0.314019531011581,0.128177210688591,0.94072437286377,-0.299183189868927,0.121602207422256,0.946415543556213,-0.32073175907135,0.113630071282387,0.940329372882843,-0.913512170314789,0.356824278831482,0.195376500487328,-0.912441968917847,0.35632535815239,0.201201632618904,-0.16951197385788,0.981634497642517,0.0875178351998329,0.149098724126816,0.833698272705078,0.531711220741272,-0.379334509372711,0.883389949798584,-0.275186359882355,-0.415996789932251,0.875944018363953,-0.244271948933601,-0.620420813560486,0.355484008789063,-0.699077367782593,-0.190320745110512,0.977469205856323,0.0912798568606377,-0.914698123931885,0.35374242067337,0.195431604981422,-0.931214451789856,0.361657530069351,-0.0452050790190697,-0.913605391979218,0.353281736373901,0.201288908720016,-0.979904651641846,0.167991012334824,-0.107545033097267,-0.965394556522369,0.164236277341843,0.202582910656929,-0.984764575958252,0.16855588555336,-0.0427518934011459,0.226697623729706,0.973722457885742,-0.0217433236539364,0.242342308163643,0.970159471035004,0.00779920443892479,-0.394227594137192,0.339520573616028,-0.853996753692627,-0.910400092601776,0.411213427782059,-0.0455562248826027,-0.895604014396667,0.400145143270493,0.194364085793495,-0.910238683223724,0.411199897527695,-0.0487873442471027,-0.0487297177314758,-0.0949389338493347,-0.994289696216583,0.0155739560723305,0.263424396514893,-0.964554369449615,-0.0311884488910437,0.00523965945467353,-0.999499797821045,-0.984373271465302,0.170816868543625,-0.0427898988127708,
- -0.00922479014843702,-0.00553584238514304,-0.999942123889923,-0.979643702507019,0.169532641768456,-0.107503809034824,0.0528050474822521,0.300011962652206,-0.952472805976868,-0.968300342559814,-0.224571421742439,-0.109371237456799,0.0553483217954636,0.300589978694916,-0.952146112918854,-0.0871653407812119,0.287230312824249,-0.953887283802032,-0.256479680538177,-0.499693185091019,-0.827360153198242,-0.232105284929276,-0.342321634292603,-0.910463094711304,-0.0861088484525681,0.287000864744186,-0.954052329063416,-0.228313818573952,-0.334467828273773,-0.914332628250122,0.229252681136131,0.973126769065857,-0.0216239653527737,-0.0378744453191757,0.0466815307736397,-0.99819153547287,0.0124483406543732,0.0242528021335602,-0.99962842464447,-0.0408901609480381,0.0480227433145046,-0.998008966445923,-0.0371658988296986,0.0480573102831841,-0.998152911663055,-0.0403433814644814,0.0494491532444954,-0.997961521148682,-0.913677036762238,0.403515130281448,-0.0486806742846966,-0.910802185535431,0.409952193498611,-0.0487702339887619,-0.0359391607344151,0.0609254464507103,-0.997495114803314,-0.910995304584503,0.409893810749054,-0.0455484874546528,-0.0390118137001991,0.0529213473200798,-0.997836351394653,0.0148271024227142,0.0288872849196196,-0.999472737312317,0.0107492050155997,0.0307120177894831,-0.99947053194046,-0.787322461605072,-0.616322219371796,-0.0164381582289934,-0.148248583078384,-0.23948273062706,-0.959515690803528,-0.0439877659082413,-0.161550432443619,-0.985883712768555,-0.0610644966363907,-0.174470022320747,-0.982767164707184,-0.0439877659082413,-0.161550432443619,-0.985883712768555,-0.148248583078384,-0.23948273062706,-0.959515690803528,-0.0246924683451653,-0.00701493257656693,-0.999670565128326,-0.0102409524843097,-0.010384020395577,-0.999893665313721,-0.97312206029892,0.226115047931671,-0.0436531938612461,-0.021501338109374,0.0181028787046671,-0.999604940414429,-0.00513641908764839,0.0145186167210341,-0.999881446361542,-0.00502448482438922,0.0144940884783864,-0.999882340431213,-0.0330009423196316,-0.0729848816990852,-0.996786892414093,
- -0.015630891546607,-0.0446596927940845,-0.99888002872467,0.00594639126211405,-0.00944426935166121,-0.999937772750854,-0.00655549531802535,-0.0260105151683092,-0.999640166759491,-0.0130265364423394,-0.0246271472424269,-0.999611854553223,-0.0265550166368485,-0.0217311754822731,-0.999411106109619,-0.00991883780807257,0.108277499675751,-0.994071185588837,-0.217366442084312,0.345229059457779,-0.9129998087883,0.0188151355832815,0.0746536031365395,-0.997031986713409,-0.553427398204803,0.832162201404572,-0.0349888801574707,-0.679793894290924,0.731782615184784,-0.0487300492823124,-0.985120296478271,0.147204682230949,-0.0887065082788467,-0.686083912849426,0.727498054504395,-0.00596348289400339,-0.993368625640869,0.114827916026115,-0.00577712245285511,-0.992894947528839,0.118853569030762,-0.00578679144382477,-0.48863822221756,0.871591329574585,-0.0395132079720497,-0.110153421759605,0.985185146331787,0.13144063949585,-0.663524389266968,0.736191034317017,-0.133259728550911,-0.993373811244965,0.114775136113167,-0.0059284083545208,-0.686063647270203,0.727515816688538,-0.00611662864685059,-0.687626361846924,0.726038932800293,-0.00612078607082367,-0.256308197975159,0.965055704116821,0.0545307099819183,-0.667620241641998,0.735675394535065,-0.114302210509777,-0.0532009564340115,0.990695655345917,0.12526760995388,-0.86988753080368,0.493236511945724,0.00367198325693607,-0.991598308086395,0.126385688781738,0.0275600254535675,-0.68869686126709,0.724893689155579,-0.0150256529450417,-0.0805202350020409,0.990445256233215,0.111958488821983,-0.255730450153351,0.965299546718597,0.0529025197029114,-0.0426822938024998,0.991353332996368,0.124084286391735,-0.671892046928406,0.734773576259613,0.0931068509817123,-0.200222790241241,0.969640791416168,-0.140383645892143,-0.568419098854065,0.822041392326355,0.0338791683316231,-0.0745461359620094,0.989016711711884,0.127627551555634,0.736018598079681,0.579158127307892,0.350503355264664,-0.0815501809120178,0.988785147666931,0.12511420249939,-0.667632520198822,0.735673427581787,0.114243440330029,-0.25628337264061,0.965066254138947,-0.0544607266783714,
- -0.0528977774083614,0.990716159343719,-0.125233680009842,0.861930847167969,0.505937576293945,-0.0332035347819328,0.843510091304779,0.53606241941452,-0.0335852690041065,-0.069052517414093,0.997299551963806,-0.025007052347064,-0.256407499313354,0.965013444423676,-0.0548107996582985,-0.0806804373860359,0.990199983119965,-0.113994099199772,-0.0474838539958,0.991066932678223,-0.124626100063324,-0.0699621140956879,0.997441351413727,-0.0147041380405426,0.843702018260956,0.536184430122375,-0.025945957750082,-0.0628605857491493,0.997911751270294,-0.0148571245372295,0.843801558017731,0.536247670650482,0.0209161005914211,-0.0708625987172127,0.997476279735565,0.00441802153363824,-0.0628668591380119,0.998011350631714,0.00458929315209389,0.717438578605652,0.581073343753815,-0.384233951568604,-0.228076055645943,0.96309369802475,-0.142940387129784,-0.0868316516280174,0.976882100105286,-0.195349916815758,-0.070754200220108,0.99747771024704,0.00566089013591409,0.843734860420227,0.536205291748047,0.0244008749723434,0.860692322254181,0.508530557155609,0.0246070101857185
- }
- BinormalsW: *1305 {
- 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
- }
- }
- LayerElementBinormal: 1 {
- Version: 102
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *3915 {
- a: 0.301805973052979,0.0914953052997589,-0.948968768119812,0.259419322013855,0.182708412408829,-0.94832456111908,0.253891497850418,0.194072097539902,-0.947562754154205,3.37532333105628e-006,-3.99276086682221e-006,1,3.26219969792874e-006,-4.08807272833656e-006,1,0.0120818866416812,0.0101727042347193,0.99987530708313,-0.00812287908047438,0.00960877258330584,0.999920845031738,0.00412383442744613,0.020143261179328,0.999788641929626,0.0276534780859947,0.0403710342943668,0.998802065849304,0.0410427786409855,0.0245364289730787,0.998856067657471,0.0169200282543898,0.0041090389713645,0.999848484992981,0.173350110650063,0.136760428547859,0.975318670272827,-0.68707937002182,0.726566791534424,0.0047667077742517,-0.691186726093292,0.722659766674042,0.00488128187134862,-0.666788935661316,0.745234787464142,0.00420730980113149,-0.66679459810257,0.745241105556488,0.000846757553517818,-0.691220343112946,0.722644031047821,0.000404498539865017,-0.670688331127167,0.741738975048065,0.000777207198552787,-0.670637667179108,0.741779625415802,0.00283002131618559,-0.670704007148743,0.741719722747803,0.00282782781869173,-0.666791915893555,0.745238125324249,0.00295698433183134,0.0410383269190788,0.0245416983962059,-0.998856127262115,0.173346340656281,0.136765033006668,-0.975318670272827,0.0169156286865473,0.00411455193534493,-0.999848484992981,0.0276476815342903,0.0403778813779354,-0.99880188703537,0.00411817757412791,0.0201503466814756,-0.999788463115692,-0.00812875758856535,0.00961572676897049,-0.999920725822449,0.012075362727046,0.0101808803156018,-0.99987530708313,-3.26219969792874e-006,4.08807272833656e-006,-1,-3.37532333105628e-006,3.99276086682221e-006,-1,-0.687086880207062,0.726574659347534,0.000987800769507885,-0.666794061660767,0.745240449905396,0.00155317911412567,-0.691227376461029,0.722636878490448,0.000870526302605867,-0.69122040271759,0.722643971443176,-0.000395656796172261,-0.66679459810257,0.745241105556488,-0.000838864303659648,-0.670688509941101,0.741738796234131,-0.00076915870886296,-0.670665800571442,0.741757810115814,-0.00170862581580877,
- -0.666793763637543,0.745240151882172,-0.00180584122426808,-0.670705735683441,0.741721630096436,-0.00170761975459754,-0.00892268214374781,-0.00426736939698458,-0.999951124191284,-0.00904959067702293,-0.00397869944572449,-0.999951183795929,-0.00904959067702293,-0.00397869944572449,-0.999951183795929,-0.00781669560819864,-0.00343665084801614,-0.999963581562042,-0.00770325167104602,-0.00368416355922818,-0.999963581562042,-0.0106426682323217,0.00272957421839237,-0.999939680099487,-0.0810679942369461,-0.0387716479599476,-0.995954155921936,-0.0580252036452293,-0.0426655896008015,-0.997403085231781,-0.079549215734005,-0.0390291884541512,-0.996066570281982,-0.0173160340636969,-0.00131200894247741,-0.999849200248718,-0.011895970441401,-0.00874703750014305,-0.999890983104706,-0.0165592208504677,-0.00235030520707369,-0.999860167503357,-0.019133223220706,-0.00241264700889587,-0.999814033508301,-0.0182463452219963,-0.00357911549508572,-0.999827146530151,-0.0183334480971098,-0.00346455536782742,-0.999825954437256,0.00332460831850767,-0.0267270971089602,-0.999637246131897,-0.0153272170573473,-0.00145300931762904,-0.999881505966187,-0.0106318388134241,-0.00781752914190292,-0.999912977218628,0.937926054000854,0.346796244382858,0.00520092342048883,0.97150456905365,0.236952319741249,0.00570183619856834,0.97150456905365,0.236952319741249,0.00570183619856834,0.937938749790192,0.346800923347473,1.3394390407484e-005,0.971520364284515,0.236956179141998,1.31371807583491e-005,0.937938749790192,0.346800923347473,1.3394390407484e-005,0.937938749790192,0.346800923347473,1.3394390407484e-005,0.937938749790192,0.346800923347473,1.3394390407484e-005,0.283017456531525,0.959114789962769,9.19091507967096e-006,0.283017456531525,0.959114789962769,-5.77985429117689e-006,0.937938749790192,0.346800923347473,-2.08990491046279e-006,0.283017456531525,0.959114789962769,-5.77985429117689e-006,0.0160326827317476,2.22016070502621e-016,-0.999871492385864,0.0160326827317476,2.22016070502621e-016,-0.999871492385864,0.0160326827317476,2.22016070502621e-016,-0.999871492385864,
- -0.00180666404776275,2.22044247583007e-016,-0.999998390674591,-0.00180666404776275,2.22044247583007e-016,-0.999998390674591,-0.00180666404776275,2.22044247583007e-016,-0.999998390674591,-0.00119361083488911,2.22044446106354e-016,-0.999999284744263,-0.00119361083488911,2.22044446106354e-016,-0.999999284744263,-0.00119361083488911,2.22044446106354e-016,-0.999999284744263,-9.94615402305499e-005,2.22044604925031e-016,-1,-9.94615402305499e-005,2.22044604925031e-016,-1,-9.94615402305499e-005,2.22044604925031e-016,-1,-0.0160906855016947,2.22015858744384e-016,-0.999870538711548,-0.0160906855016947,2.22015858744384e-016,-0.999870538711548,-0.0160906855016947,2.22015858744384e-016,-0.999870538711548,-0.313866794109344,0.949447095394135,-0.00614692829549313,-0.313866794109344,0.949447095394135,-0.00614692829549313,-0.313866794109344,0.949447095394135,-0.00614692829549313,-0.313866883516312,0.949447333812714,-0.00610734336078167,-0.313866883516312,0.949447333812714,-0.00610734336078167,-0.313866883516312,0.949447333812714,-0.00610734336078167,-0.313866853713989,0.949447393417358,-0.0060946992598474,-0.313866853713989,0.949447393417358,-0.0060946992598474,-0.34679451584816,0.937921404838562,-0.00609541358426213,-0.346797674894333,0.93792998790741,-0.00431965850293636,-0.369995951652527,0.929022312164307,-0.00453084427863359,-0.313870191574097,0.949457406997681,-0.00401869090273976,-0.346790194511414,0.937909781932831,-0.00787230208516121,-0.313862264156342,0.949433445930481,-0.00815386883914471,-0.346790194511414,0.937909781932831,-0.00787230208516121,0.00291363522410393,2.22043665247855e-016,-0.999995768070221,0.00291363522410393,2.22043665247855e-016,-0.999995768070221,0.00291363522410393,2.22043665247855e-016,-0.999995768070221,0.00380007526837289,2.22043003503365e-016,-0.999992787837982,0.00380007526837289,2.22043003503365e-016,-0.999992787837982,0.00380007526837289,2.22043003503365e-016,-0.999992787837982,0.0123168379068375,2.22027756910315e-016,-0.999924123287201,0.0123168379068375,2.22027756910315e-016,-0.999924123287201,
- 0.0123168379068375,2.22027756910315e-016,-0.999924123287201,0.00148786348290741,2.22044353462125e-016,-0.999998867511749,0.00148786348290741,2.22044353462125e-016,-0.999998867511749,0.00148786348290741,2.22044353462125e-016,-0.999998867511749,-1.38685481942957e-006,2.22044604925031e-016,-1,-1.38685481942957e-006,2.22044604925031e-016,-1,-1.38685481942957e-006,2.22044604925031e-016,-1,0.000925743544939905,2.22044512280803e-016,-0.999999582767487,0.000925743544939905,2.22044512280803e-016,-0.999999582767487,0.000925743544939905,2.22044512280803e-016,-0.999999582767487,0.00388618931174278,2.22042924094027e-016,-0.999992430210114,0.00388618931174278,2.22042924094027e-016,-0.999992430210114,0.00388618931174278,2.22042924094027e-016,-0.999992430210114,0.00581319723278284,2.22040859451218e-016,-0.999983131885529,0.00581319723278284,2.22040859451218e-016,-0.999983131885529,0.00581319723278284,2.22040859451218e-016,-0.999983131885529,-0.012383820489049,2.22027598091637e-016,-0.999923408031464,-0.012383820489049,2.22027598091637e-016,-0.999923408031464,-0.012383820489049,2.22027598091637e-016,-0.999923408031464,0.180944636464119,-0.983394742012024,-0.0139222824946046,0.180944636464119,-0.983394742012024,-0.0139222824946046,0.180944636464119,-0.983394742012024,-0.0139222824946046,0.180960014462471,-0.983478248119354,0.00489211361855268,0.180960014462471,-0.983478248119354,0.00489211361855268,0.180960014462471,-0.983478248119354,0.00489211361855268,0.180960580706596,-0.983481407165527,0.00421661790460348,0.180960580706596,-0.983481407165527,0.00421661790460348,0.180960580706596,-0.983481407165527,0.00421661790460348,0.180962175130844,-0.98349004983902,5.02319599036127e-005,0.180962175130844,-0.98349004983902,5.02319599036127e-005,0.180962175130844,-0.98349004983902,5.02319599036127e-005,0.180962175130844,-0.98349004983902,5.92674541621818e-006,0.180962175130844,-0.98349004983902,5.92674541621818e-006,0.180962175130844,-0.98349004983902,5.92674541621818e-006,0.180962175130844,-0.98349004983902,-5.31884688825812e-005,0.180962175130844,-0.98349004983902,-5.31884688825812e-005,
- 0.180962175130844,-0.98349004983902,-5.31884688825812e-005,0.18095999956131,-0.983478188514709,-0.00490291649475694,0.18095999956131,-0.983478188514709,-0.00490291649475694,0.18095999956131,-0.983478188514709,-0.00490291649475694,0.180717676877975,-0.982161223888397,-0.051965668797493,0.180717676877975,-0.982161223888397,-0.051965668797493,0.180717676877975,-0.982161223888397,-0.051965668797493,0.180960565805435,-0.983481347560883,-0.00422527454793453,0.180960565805435,-0.983481347560883,-0.00422527454793453,0.180960565805435,-0.983481347560883,-0.00422527454793453,-0.151311472058296,-0.988485097885132,-0.00144235033076257,-0.0948087573051453,-0.995491981506348,0.0026539049576968,-0.661870241165161,-0.748543739318848,-0.0401267409324646,-0.0947667881846428,-0.995051324367523,0.0298687629401684,-0.1401347219944,-0.989685952663422,0.0297314040362835,0.015503304079175,-0.999431371688843,0.029943073168397,0.0155803570523858,-0.999665856361389,0.0206265021115541,-0.144524753093719,-0.989345788955688,0.017541928216815,-0.128416791558266,-0.991559147834778,0.0178761836141348,-0.150119468569756,-0.987961173057556,-0.037374459207058,-0.386137425899506,-0.922001600265503,-0.0284778736531734,0.0160639565438032,-0.998981833457947,-0.0421586111187935,0.0249945931136608,-0.997880578041077,0.0600804015994072,-0.0645124986767769,-0.982644081115723,0.173922166228294,-0.0791245847940445,-0.978137135505676,0.192320168018341,-0.0205874461680651,-0.998411297798157,0.0524523444473743,-0.0906181409955025,-0.982519686222076,0.162614285945892,-0.384850710630417,-0.683004796504974,0.620801448822021,-0.020555229857564,-0.705223143100739,0.708687484264374,-0.0060288542881608,-0.998473644256592,0.0549016743898392,-0.0210015252232552,-0.681363761425018,0.731643676757813,-0.433269798755646,-0.899681687355042,-0.0533886849880219,-0.385661154985428,-0.920864403247833,-0.0572207160294056,-0.163554579019547,-0.983888328075409,-0.0722058415412903,-0.385959476232529,-0.921576678752899,0.0416133217513561,-0.404180228710175,-0.913848757743835,0.0389712266623974,
- -0.379212111234665,-0.924329519271851,0.0425819233059883,-0.421590745449066,-0.906666040420532,-0.0147640444338322,-0.418617755174637,-0.908039033412933,-0.0149762015789747,-0.37949675321579,-0.925023317337036,-0.0177238956093788,-0.0276359505951405,-0.998302757740021,0.0512621141970158,-0.0342938676476479,-0.703795075416565,0.709574937820435,-0.0272317659109831,-0.999120116233826,0.0318971946835518,0.0281777083873749,-0.999121367931366,0.0310246460139751,-0.293613910675049,-0.650744736194611,0.700230181217194,0.215732276439667,-0.896351933479309,-0.387314975261688,-0.302545130252838,-0.931843519210815,0.200335219502449,-0.377194821834564,-0.926133692264557,0.000802543014287949,-0.365602821111679,-0.93011075258255,0.0350523479282856,-0.0270629711449146,-0.999124765396118,0.0318946838378906,-0.0271764099597931,-0.998698770999908,0.0431544929742813,-0.0272566080093384,-0.998309969902039,0.0513262487947941,-0.143229097127914,-0.989438712596893,0.0222847368568182,-0.143344283103943,-0.989108800888062,0.0334104225039482,-0.142447710037231,-0.989342927932739,-0.0301535092294216,-0.131048575043678,-0.991312325000763,0.0112407393753529,-0.145952716469765,-0.988810420036316,0.0308533255010843,-0.139910846948624,-0.989899456501007,0.0228908620774746,-0.142188042402267,-0.989584505558014,0.0224749594926834,-0.317317187786102,-0.911516427993774,0.261624962091446,-0.131947785615921,-0.99121618270874,0.00896951276808977,-0.38081306219101,-0.924651145935059,0.00130388501565903,-0.380535274744034,-0.924433350563049,0.0248156785964966,-0.380879551172256,-0.924346804618835,-0.0226661618798971,-0.432809501886368,-0.900883734226227,-0.0329320579767227,-0.462664872407913,-0.8865025639534,0.00737655814737082,-0.428776204586029,-0.902600646018982,-0.0382518321275711,-0.558549523353577,-0.829372465610504,-0.0127947852015495,-0.558545887470245,-0.829351902008057,-0.0142179150134325,-0.558196008205414,-0.829271018505096,0.0269628055393696,-0.420038908720016,-0.907453179359436,-0.00979961175471544,0.397053897380829,-0.911671340465546,-0.1058469414711,
- -0.418608129024506,-0.908111751079559,-0.0100101595744491,-0.539928436279297,-0.841652631759644,-0.00990932434797287,0.170960441231728,-0.794938087463379,-0.582104802131653,-0.449335068464279,-0.886463522911072,-0.110817812383175,-0.417869538068771,-0.905247271060944,-0.0768923833966255,0.333606243133545,-0.902811884880066,-0.271362394094467,-0.670232534408569,-0.74182403087616,0.0220359563827515,-0.544732332229614,-0.838537633419037,-0.0110154077410698,-0.638275861740112,-0.761275172233582,0.114298187196255,0.163242548704147,-0.787704825401306,-0.594031035900116,-0.672345697879791,-0.740082025527954,0.015159260481596,-0.678856134414673,-0.734111964702606,0.0152988778427243,-0.41846826672554,-0.908179819583893,0.00967969745397568,-0.488140165805817,-0.87181955575943,-0.0406193733215332,-0.486293941736221,-0.872985184192657,-0.0376182347536087,-0.474785655736923,-0.879893481731415,-0.0191389508545399,-0.649791479110718,-0.759908974170685,0.0175925493240356,-0.678819537162781,-0.734072327613831,0.0184950828552246,-0.671396315097809,-0.740873515605927,0.0182639062404633,-0.678935289382935,-0.734197497367859,-0.000991464243270457,-0.655090153217316,-0.755550622940063,-0.00055934494594112,-0.654030025005341,-0.756468415260315,-0.000540394918061793,-0.654029369354248,-0.756467640399933,-0.00148973683826625,-0.65536504983902,-0.755310833454132,-0.00152459740638733,0.623617827892303,-0.781495749950409,0.01910943351686,0.623667478561401,-0.781557977199554,0.0143515141680837,-0.655119895935059,-0.755524754524231,-0.000663712678942829,0.623844683170319,-0.781416654586792,0.0143522704020143,-0.69448322057724,-0.716475427150726,-0.0660002306103706,-0.715712487697601,-0.697728872299194,-0.0304988026618958,-0.678011178970337,-0.729279220104218,-0.0919384807348251,-0.716980218887329,-0.696411967277527,-0.030818298459053,0.380729824304581,-0.496860265731812,-0.779855608940125,-0.67832738161087,-0.728798866271973,-0.0934034138917923,-0.602009475231171,-0.798480749130249,-0.00364736514165998,-0.653080344200134,-0.753669500350952,0.0739484205842018,
- -0.58936083316803,-0.807584166526794,-0.021484537050128,-0.551101207733154,-0.834331095218658,-0.0133809391409159,-0.551027655601501,-0.834453940391541,0.00743522495031357,-0.551103055477142,-0.83434385061264,-0.0124882999807596,-0.762825310230255,-0.645190119743347,-0.0427470728754997,-0.763711512088776,-0.645533680915833,0.00558320293202996,-0.763710916042328,-0.645544409751892,0.00425492925569415,-0.716935396194458,-0.696458697319031,-0.0308069884777069,0.249915152788162,-0.584654927253723,-0.771829724311829,0.373561024665833,-0.488103061914444,-0.788801491260529,-0.761536419391632,-0.64673376083374,-0.0424009263515472,-0.762215852737427,-0.647310674190521,0.00398207036778331,-0.0359660871326923,-0.0305439867079258,-0.998886168003082,-0.0410427786409855,-0.0245364289730787,-0.998856067657471,-0.173350110650063,-0.136760428547859,-0.975318670272827,-0.762815058231354,-0.645202457904816,-0.0427443087100983,-0.0948080271482468,-0.995484292507172,0.00475250976160169,-0.154129832983017,-0.988006114959717,0.00937696546316147,-0.661595046520233,-0.748232543468475,0.0493970215320587,0.00768011528998613,-0.999675154685974,-0.0243005063384771,-0.142173171043396,-0.989548921585083,-0.0240801181644201,-0.0947813093662262,-0.995203733444214,-0.0242094323039055,-0.144247516989708,-0.989372253417969,-0.0183138139545918,0.00770479254424572,-0.999744772911072,-0.0212360937148333,-0.128110393881798,-0.991584599018097,-0.0186475962400436,-0.386129915714264,-0.921983659267426,0.0291529279202223,-0.150241866707802,-0.987930595874786,0.0376895554363728,0.00819778069853783,-0.999082565307617,0.0420355796813965,-0.0642866417765617,-0.982563972473145,-0.174457147717476,0.0255701653659344,-0.997860193252563,-0.060175959020853,-0.0789112597703934,-0.978046655654907,-0.19286772608757,-0.0863655358552933,-0.981012523174286,-0.173653289675713,-0.0113690905272961,-0.998476028442383,-0.0540046542882919,-0.374708533287048,-0.684399962425232,-0.625452041625977,-0.0171362813562155,-0.725165188312531,-0.688361644744873,-0.0179294496774673,-0.680932223796844,-0.732127010822296,
- -0.00445786863565445,-0.998467326164246,-0.055165246129036,-0.385579347610474,-0.920669078826904,0.0608039908111095,-0.434290498495102,-0.898975312709808,0.0568786486983299,-0.164853811264038,-0.983416378498077,0.0756007209420204,-0.40635085105896,-0.913139283657074,-0.0324933752417564,-0.386051625013351,-0.921796679496765,-0.035426389425993,-0.37930491566658,-0.924555778503418,-0.0363912880420685,-0.418597429990768,-0.908144772052765,0.00702926982194185,-0.419155240058899,-0.907887697219849,0.00698904599994421,-0.379538059234619,-0.925124049186707,0.00981195457279682,-0.0240218695253134,-0.998364806175232,-0.0518727526068687,-0.0236656274646521,-0.999212682247162,-0.0318439528346062,-0.0296457856893539,-0.723999559879303,-0.689163088798523,-0.287447720766068,-0.673690736293793,-0.680819094181061,0.00789213832467794,-0.999477207660675,-0.0313553102314472,0.171552449464798,-0.924235045909882,0.341114908456802,-0.394977986812592,-0.918684720993042,-0.00327429873868823,-0.314995795488358,-0.924239218235016,-0.215777039527893,-0.384300321340561,-0.922540307044983,-0.0351083613932133,-0.0232769064605236,-0.998767197132111,-0.0438440889120102,-0.0231537371873856,-0.999224901199341,-0.031836275011301,-0.0233585350215435,-0.998374700546265,-0.0519847460091114,-0.139960765838623,-0.989688217639923,0.030466016381979,-0.140864327549934,-0.989465951919556,-0.0333826169371605,-0.140753492712975,-0.989783644676209,-0.0227369945496321,-0.135130316019058,-0.990286409854889,-0.0327541418373585,-0.126836374402046,-0.991682887077332,-0.0218525640666485,-0.129124462604523,-0.991316795349121,-0.0248572956770658,-0.313756138086319,-0.910431861877441,-0.269575595855713,-0.133847013115883,-0.990711510181427,-0.023997075855732,-0.128691926598549,-0.991535782814026,-0.0171833224594593,-0.38052424788475,-0.924437820911407,-0.0248179584741592,-0.380802363157272,-0.924655616283417,-0.00130239862482995,-0.380869060754776,-0.924351274967194,0.0226640943437815,-0.449728965759277,-0.892426550388336,0.0363158285617828,-0.434249550104141,-0.899003982543945,0.0567382052540779,
- -0.479141116142273,-0.877729773521423,-0.00376636534929276,-0.558201014995575,-0.829267561435699,-0.0269635710865259,-0.558551073074341,-0.829348266124725,0.0142191424965858,-0.558554768562317,-0.829368948936462,0.0127943716943264,-0.418666422367096,-0.908123791217804,0.00543940765783191,-0.418590217828751,-0.908158898353577,0.00545047596096992,0.398478835821152,-0.911525070667267,0.101669400930405,0.171207383275032,-0.795166790485382,0.581719696521759,-0.539376556873322,-0.842007875442505,0.00978250056505203,-0.449174523353577,-0.886620044708252,0.110214799642563,-0.417868703603745,-0.905244827270508,0.0769252628087997,-0.670238733291626,-0.741818964481354,-0.0220158379524946,0.333590120077133,-0.902806580066681,0.271400302648544,-0.638266444206238,-0.761279284954071,-0.114322729408741,-0.544701814651489,-0.838557541370392,0.0110083734616637,0.163265824317932,-0.787726998329163,0.59399551153183,-0.672345697879791,-0.740082204341888,-0.015159560367465,-0.41846826672554,-0.908179819583893,-0.0096798874437809,-0.678856134414673,-0.734111964702606,-0.0152991786599159,-0.486296504735947,-0.872983753681183,0.037617914378643,-0.488142251968384,-0.871818482875824,0.0406177341938019,-0.474786311388016,-0.879893004894257,0.0191388987004757,-0.671396195888519,-0.740873634815216,-0.0182642787694931,-0.678819477558136,-0.734072268009186,-0.0184954460710287,-0.649791359901428,-0.759908974170685,-0.017592890188098,-0.655090153217316,-0.755550622940063,0.000559359847102314,-0.678935289382935,-0.734197497367859,0.000991484266705811,-0.654030025005341,-0.756468415260315,0.000540405861102045,-0.655898153781891,-0.754841804504395,0.00340385781601071,-0.654026389122009,-0.756464242935181,0.00335652148351073,0.623628735542297,-0.781509459018707,-0.0181710235774517,0.623667478561401,-0.781557977199554,-0.0143518047407269,0.623844683170319,-0.781416654586792,-0.014352560043335,-0.655119895935059,-0.755524754524231,0.000663727580104023,-0.715713202953339,-0.697728097438812,0.0304989814758301,-0.694483876228333,-0.716474771499634,0.0660023912787437,
- -0.678011834621429,-0.729278206825256,0.0919415280222893,-0.718291223049164,-0.695044994354248,0.0311492569744587,-0.67872565984726,-0.728187620639801,0.0952595323324203,0.380407243967056,-0.496466368436813,0.780263721942902,-0.653075456619263,-0.753672480583191,-0.073962464928627,-0.601995348930359,-0.798491299152374,0.00364423543214798,-0.589346468448639,-0.807594835758209,0.0214810967445374,-0.551032841205597,-0.834450483322144,-0.00743412971496582,-0.551106512546539,-0.834327638149261,0.0133805274963379,-0.551108241081238,-0.834340274333954,0.0124895125627518,-0.76371818780899,-0.645525813102722,-0.00558389024809003,-0.762831270694733,-0.645183026790619,0.0427486598491669,-0.763717591762543,-0.645536541938782,-0.00425614044070244,-0.716935396194458,-0.696458697319031,0.0308069884777069,0.373561024665833,-0.488103061914444,0.788801491260529,0.249915152788162,-0.584654927253723,0.771829724311829,-0.761028468608856,-0.647340416908264,0.0422646813094616,-0.0354171469807625,-0.0311933029443026,0.998885691165924,-0.761727571487427,-0.647885799407959,-0.00389311090111732,-0.173346340656281,-0.136765033006668,0.975318670272827,-0.0410383269190788,-0.0245416983962059,0.998856127262115,-0.762817740440369,-0.645199179649353,0.0427450388669968,0.105910196900368,-0.0098382979631424,-0.994327068328857,0.0525315701961517,0.144724369049072,-0.988076627254486,0.0739568024873734,0.0836416184902191,-0.993747711181641,0.138625711202621,0.156779065728188,-0.977856457233429,0.161299541592598,0.131888940930367,-0.978053092956543,-0.0555682778358459,0.356218546628952,-0.932748973369598,-0.225088238716125,0.185076177120209,-0.956599235534668,0.00532981008291245,-0.00599554553627968,-0.999967873096466,-0.000804885290563107,-0.000910286908037961,-0.999999344348907,-0.571018278598785,0.799497902393341,-0.186390191316605,-0.0639887452125549,0.348283261060715,-0.935202836990356,0.107089534401894,0.138514831662178,-0.984553515911102,-0.0296689812093973,0.989895403385162,-0.138660743832588,-0.172550275921822,0.165535941720009,-0.970991432666779,
- -0.125437468290329,0.714412271976471,-0.688389897346497,0.00845609046518803,-0.00189477088861167,-0.999962449073792,-0.216653972864151,0.194183498620987,-0.956741333007813,-0.211290314793587,0.189517602324486,-0.958874046802521,-0.000284168316284195,0.999969065189362,-0.00786034669727087,-0.0263192281126976,0.990050852298737,-0.138226315379143,-0.135795623064041,0.715858161449432,-0.684913635253906,-0.412312388420105,0.720946907997131,-0.556986570358276,0.476653397083282,0.390808165073395,0.787445545196533,-0.0778105780482292,0.996959447860718,-0.00417398335412145,-0.171386569738388,-0.0325047485530376,-0.984667479991913,0.0774082243442535,0.0886386856436729,-0.993051409721375,-0.458746433258057,-0.177795827388763,-0.870597720146179,0.0516146905720234,-0.116852506995201,-0.991807222366333,-0.0651163682341576,-0.0983087718486786,-0.993023276329041,-0.154790580272675,-0.0830225870013237,-0.984452724456787,-0.215556219220161,0.195363953709602,-0.956748902797699,-0.731640458106995,0.656355559825897,-0.184118896722794,-0.210364833474159,0.19071426987648,-0.958840250968933,-0.459122985601425,-0.178451240062714,-0.870265007019043,-0.902982175350189,-0.422286599874496,-0.0793550238013268,-0.1699039041996,-0.0370824597775936,-0.984762728214264,-0.769423484802246,0.611605763435364,-0.184189677238464,-0.225381433963776,0.18475840985775,-0.956591606140137,-0.768893420696259,0.611207008361816,-0.187693640589714,0.47960501909256,0.20061194896698,-0.854244589805603,-0.104297503829002,0.710699439048767,0.695721566677094,0.498420298099518,0.609045028686523,-0.616961419582367,0.284409373998642,0.95586222410202,-0.0737485364079475,0.494843572378159,0.608111619949341,-0.620749652385712,-0.139755740761757,0.774472534656525,0.616977095603943,-0.213175803422928,0.271567732095718,-0.938513219356537,0.0544716604053974,-0.114886403083801,-0.991884052753448,-0.201215282082558,0.254109084606171,-0.946013331413269,0.0919223204255104,-0.0889439359307289,-0.991785883903503,-0.152436822652817,0.302592903375626,-0.940850973129272,0.0330969505012035,0.00650609889999032,-0.999431014060974,
- -0.197908610105515,0.256463289260864,-0.946075558662415,-0.546444833278656,0.815460085868835,-0.190848127007484,-0.209122538566589,0.273693710565567,-0.938807487487793,-0.576814472675323,0.794906139373779,-0.188173696398735,-0.180634021759033,0.26865616440773,-0.946147680282593,-0.577948033809662,0.796251118183136,-0.178774654865265,-0.109076030552387,0.286413103342056,-0.951877176761627,-0.000935454852879047,-0.00904774013906717,-0.999958693981171,-0.12065689265728,0.318128347396851,-0.940338373184204,-0.345346838235855,0.916586637496948,-0.201506033539772,-0.10978240519762,0.286157578229904,-0.951872825622559,-0.121613778173923,0.317667424678802,-0.940370917320251,0.00165671925060451,-0.00786346197128296,-0.999967694282532,-0.116361416876316,0.283768683671951,-0.951806366443634,-0.00133253249805421,-0.000481503317132592,-0.999998986721039,-0.0919189527630806,0.292563408613205,-0.951818108558655,-0.0147275924682617,-0.00544549711048603,-0.999876737594604,-0.0147571787238121,-0.00533242570236325,-0.999876916408539,-0.0692183896899223,-0.23457345366478,-0.969630897045136,-0.37330761551857,-0.138029724359512,-0.917381763458252,-0.690474152565002,-0.000864312169142067,-0.723356604576111,-0.138403818011284,0.275648325681686,-0.951242625713348,-0.140020728111267,0.278111696243286,-0.950288414955139,0.0126595674082637,0.0429018698632717,-0.998999118804932,-0.444338202476501,0.87139356136322,-0.20793454349041,-0.13414454460144,0.301435202360153,-0.944003224372864,-0.123520493507385,0.281151056289673,-0.951681017875671,-0.111768573522568,0.28543809056282,-0.951857686042786,-0.337998270988464,0.919280648231506,-0.201693594455719,-0.337486147880554,0.917717337608337,-0.209518611431122,0.0565091893076897,0.843560338020325,-0.534053087234497,-0.416740268468857,0.884761393070221,-0.208626583218575,-0.308527380228043,0.9029501080513,-0.299152135848999,-0.422950387001038,0.881842076778412,-0.208488762378693,-0.400022208690643,0.887571573257446,-0.228470921516418,-0.310324460268021,0.901492118835449,-0.301679730415344,-0.44238805770874,0.872371971607208,-0.207990258932114,
- -0.572942435741425,0.819381654262543,0.0187250506132841,-0.414802372455597,0.875379323959351,-0.248294621706009,-0.55241584777832,0.474059164524078,0.685641884803772,0.160244897007942,0.898445606231689,0.408799737691879,0.583004832267761,0.811181962490082,0.0457080639898777,0.037902258336544,-0.0313273742794991,0.998790264129639,0.0420827604830265,-0.0252782646566629,0.998794317245483,0.0724881812930107,0.0188587140291929,0.997190952301025,-0.0995638146996498,0.094379149377346,0.990545094013214,0.921569883823395,0.386446923017502,0.0369838103652,-0.737234234809875,-0.217544510960579,0.639656245708466,0.659822642803192,0.194701746106148,0.725758492946625,0.647231459617615,0.168385416269302,0.743463456630707,0.338785231113434,-0.277126401662827,0.89912486076355,-0.258198350667953,0.965564608573914,0.0319151841104031,0.00774762034416199,0.00243313703685999,0.999967038631439,0.00778407836332917,0.00229694112204015,0.999967098236084,-0.0315188355743885,-0.00930063892155886,0.999459862709045,-0.0287999920547009,-0.0181684978306293,0.999420046806335,-0.0318311788141727,-0.00828128214925528,0.999459028244019,0.0140171954408288,-0.00354325398802757,0.999895453453064,0.0119645744562149,0.00353053002618253,0.999922215938568,0.0119042135775089,0.0037385132163763,0.999922215938568,0.0281539503484964,0.00732460524886847,0.99957674741745,0.0296262707561255,0.00179264601320028,0.99955952167511,0.0274060405790806,0.010133326984942,0.999573111534119,-0.251496702432632,0.967324316501617,0.0321427695453167,-0.249205768108368,0.96348363161087,0.0979584157466888,0.0181122850626707,0.00568815553560853,0.999819755554199,0.309648483991623,0.097914919257164,0.945796310901642,0.310101836919785,0.0973873436450958,0.945702135562897,-0.656084895133972,0.747798800468445,0.101733192801476,-0.244420975446701,0.946953177452087,-0.208658218383789,-0.246829316020012,0.964103102684021,0.0978804677724838,-0.248294323682785,0.9681476354599,0.0322508290410042,0.163505733013153,0.119354695081711,0.97929584980011,0.179801627993584,0.066481277346611,0.981453835964203,
- 0.183413222432137,0.0544868037104607,0.981524765491486,-0.313439071178436,0.947571814060211,0.0621575862169266,-0.312870651483536,0.944533705711365,0.0998409986495972,-0.304271161556244,0.929276466369629,-0.209438323974609,-0.303964734077454,0.950645565986633,0.0622766017913818,-0.0175796002149582,-0.0143375527113676,0.999742746353149,-0.303795546293259,0.947517156600952,0.0995972752571106,-0.116141967475414,-0.0479491204023361,0.992074549198151,0.0281720235943794,0.997639775276184,0.0626216232776642,-0.114966422319412,-0.0107968114316463,0.993310749530792,-0.335502773523331,0.91844367980957,-0.209521099925041,-0.335972189903259,0.920012176036835,-0.20174303650856,-0.339364171028137,0.938622891902924,0.0617980062961578,-0.0223747920244932,-0.00827303249388933,0.999715447425842,-0.0369141735136509,0.0261001922190189,0.998977541923523,-0.0211922526359558,-0.011064981110394,0.999714195728302,-0.390444457530975,0.918607413768768,0.0609393939375877,-0.385936379432678,0.900533139705658,-0.200233444571495,-0.391384541988373,0.919836580753326,0.0268126875162125,-0.583798229694366,0.81130051612854,0.0311637315899134,-0.573118329048157,0.797494292259216,-0.188516661524773,-0.574225544929504,0.798986256122589,-0.178566828370094,-0.460852116346359,0.885486423969269,0.0594074241816998,-0.0158945322036743,0.0275140851736069,0.999495029449463,-0.0194347649812698,0.0343185439705849,0.999222040176392,0.00344617618247867,0.035609420388937,0.999359846115112,-0.402503430843353,0.913403391838074,0.0607065372169018,-0.40363997220993,0.914516031742096,0.0271148979663849,-0.0166103783994913,-0.0086726751178503,0.999824404716492,-0.0343105345964432,0.0273253843188286,0.999037623405457,-0.0312418825924397,0.0210795421153307,0.999289631843567,0.521265208721161,0.336142957210541,0.784404575824738,0.481292933225632,0.251294523477554,0.83976674079895,0.468208521604538,0.225298047065735,0.854412972927094,0.446954250335693,0.288222819566727,0.846852779388428,0.337032705545425,0.172791540622711,0.925501048564911,0.727983891963959,0.685486912727356,-0.0121335564181209,
- -0.0076473499648273,-0.00399286393076181,0.99996280670166,-0.0071766902692616,-0.0046279588714242,0.999963581562042,-0.00623608101159334,-0.00589716294780374,0.999963164329529,-0.576260030269623,0.816677868366241,0.0310109909623861,-0.566624641418457,0.804490625858307,-0.178132832050323,-0.576168119907379,0.816507637500763,0.0366827249526978,-0.577296078205109,0.815711617469788,0.0366602689027786,-0.00686033954843879,-0.00442395731806755,0.999966740608215,-0.5773686170578,0.815893590450287,0.0310335569083691,-0.0107350815087557,-0.0101516516879201,0.999890923500061,-0.0124136600643396,-0.00800507050007582,0.999890923500061,-0.0204049795866013,0.00221674144268036,0.999789357185364,-0.00530067877843976,-0.0034181943628937,0.99998015165329,-0.620009541511536,0.783779859542847,0.0357394367456436,-0.014342000707984,0.0080177579075098,0.999865055084229,-0.0338304154574871,-0.00444250321015716,0.999417781829834,-0.0189839527010918,-0.0179522149264812,0.999658584594727,-0.0305154100060463,-0.00746025424450636,0.99950647354126,-0.753834426403046,0.656295776367188,0.0317741185426712,-0.0246691070497036,0.0070477332919836,0.99967086315155,-0.0197955407202244,0.00279991887509823,0.999800145626068,-0.00498421164229512,-0.00471332995221019,0.999976515769959,-0.0219436846673489,0.0104644130915403,0.999704480171204,-0.00424562720581889,-0.00537421181797981,0.999976634979248,-0.00468341913074255,-0.00592837855219841,0.999971449375153,-0.0242314636707306,0.00759642664343119,0.999677538871765,-0.00440005166456103,-0.00612439587712288,0.999971628189087,-0.737959861755371,0.649226903915405,-0.184173434972763,-0.748879790306091,0.660200536251068,0.0575703904032707,-0.749812960624695,0.66087931394577,0.0319229103624821,-0.021540392190218,0.0109699331223965,0.999707818031311,-0.74529230594635,0.665965378284454,0.0320875495672226,-0.744552195072174,0.665094196796417,0.0573748499155045,-0.779844582080841,0.623192429542542,0.0589381232857704,-0.767779886722565,0.61366480588913,-0.184200093150139,-0.76725447177887,0.613246440887451,-0.187748104333878,
- -0.8431596159935,0.505414724349976,-0.183406099677086,-0.858035683631897,0.512291252613068,0.036503329873085,-0.857056736946106,0.511472880840302,0.0620425194501877,-0.034968975931406,-0.00758342351764441,0.999359607696533,-0.0358686223626137,-0.0069999722763896,0.999332070350647,-0.8386270403862,0.541240155696869,0.0613503679633141,-0.044307429343462,-0.0203056391328573,0.998811602592468,-0.860545217990875,0.505566120147705,0.0621692463755608,-0.861113309860229,0.507087588310242,0.0366897024214268,-0.00852388050407171,-0.0118643185123801,0.999893307685852,-0.0292436964809895,0.00131124525796622,0.999571442604065,-0.0286930538713932,0.000960960984230042,0.999587833881378,0.0789752528071404,0.242412209510803,0.966953635215759,0.0865102484822273,0.157005980610847,0.983801364898682,-0.0690056830644608,0.997605800628662,-0.0045950529165566,0.103792123496532,0.25297623872757,0.961888909339905,0.115682058036327,0.161016896367073,0.980148613452911,0.111912757158279,0.191207304596901,0.975148856639862,0.00834898184984922,0.0116208791732788,0.999897599220276,-0.0835600420832634,0.169375136494637,0.982002973556519,0.0114458799362183,0.00629007862880826,0.999914705753326,-0.00268241157755256,-0.0851665660738945,0.99636310338974,0.00288225151598454,-0.0814744159579277,0.996671319007874,0.0283658504486084,-0.0645184069871902,0.997513294219971,0.230268910527229,-0.559719085693359,0.79604697227478,-0.0193127151578665,-0.613178670406342,0.789708197116852,-0.049027893692255,-0.616894900798798,0.785516977310181,-0.823476076126099,-0.456663399934769,0.336668461561203,-0.232966080307961,0.44004100561142,0.867231667041779,-0.00205617398023605,0.592328429222107,0.805694043636322,-0.000434746005339548,-0.0138031858950853,0.999904692173004,-0.0400922149419785,-0.0120114302262664,0.999123871326447,-0.0319649688899517,-0.0123804016038775,0.999412357807159,-0.00352917611598969,-0.0220573507249355,0.99975049495697,-0.0405353307723999,-0.019126383587718,0.998995125293732,-0.000701733049936593,-0.0222800243645906,0.999751508235931,0.0140987075865269,0.818067133426666,0.574949860572815,
- -0.944992899894714,-0.323638647794724,0.0473977848887444,-0.97082507610321,-0.183921650052071,0.153855547308922,-0.0260596387088299,0.198632925748825,0.979727506637573,0.0303855128586292,0.1899094581604,0.981331348419189,0.0303745903074741,0.189911231398582,0.981331408023834,0.00727535039186478,0.0288667120039463,0.99955677986145,-0.00177679909393191,0.0311675816774368,0.999512612819672,0.00472253747284412,0.0295158606022596,0.999553263187408,-0.997573614120483,0.028515312820673,0.0635128766298294,-0.031481709331274,-3.1903269700706e-005,0.999504327774048,-0.0393274575471878,0.000193091109395027,0.99922639131546,-0.0312228705734015,0.00653212703764439,0.999491214752197,-0.997453451156616,0.0322877950966358,0.0635944232344627,-0.99874746799469,0.0321892537176609,0.0383069328963757,-0.0312360841780901,-0.115217015147209,0.992849111557007,-0.891729772090912,0.447619467973709,0.0667456462979317,-0.0458867661654949,-0.107753492891788,0.993118166923523,-0.974265813827515,-0.0607727393507957,-0.217054903507233,-0.998719811439514,0.0502370744943619,-0.00591342896223068,-0.996690392494202,0.0724045038223267,0.0369593240320683,-0.974401891231537,0.0366798788309097,-0.221801072359085,-0.998593389987946,0.0368159525096416,0.0381551422178745,-0.997295081615448,0.0366934351623058,0.0636885166168213,-0.719383716583252,0.582283198833466,-0.378726035356522,-0.697070896625519,0.69113701581955,-0.190845251083374,-0.715508937835693,0.49629682302475,-0.491667032241821,-0.402326256036758,0.0114484131336212,-0.915424764156342,-0.692823529243469,0.51639997959137,-0.50331574678421,-0.709353744983673,0.677920639514923,-0.192979276180267,-0.51039731502533,0.845639288425446,-0.156169041991234,-0.236732631921768,0.323154747486115,-0.916258037090302,-0.141294926404953,0.157641530036926,-0.977335631847382,-0.236294478178024,0.325040996074677,-0.91570371389389,-0.0520564764738083,-0.0157611295580864,-0.998519837856293,-0.145766764879227,0.155318737030029,-0.977050721645355,-0.197476014494896,-0.0842349827289581,-0.97668194770813,-0.275641530752182,0.127860024571419,-0.952719032764435,
- -0.0597782470285892,-0.396424174308777,-0.916119337081909,-0.319330155849457,0.0413903705775738,-0.946739196777344,0.000816597719676793,0.00541533203795552,-0.999985098838806,-0.28950360417366,0.0380647405982018,-0.956419765949249,-0.319284856319427,0.0418298356235027,-0.946735203266144,-0.289461493492126,0.038363378494978,-0.956420540809631,-0.967771172523499,0.114905416965485,-0.224088922142982,-0.00129599240608513,-0.00859447568655014,-0.999962270259857,-0.320738077163696,0.0274196974933147,-0.946770966053009,-0.00271907192654908,-0.00843609496951103,-0.999960720539093,-0.968174457550049,0.111594669520855,-0.224019780755043,-0.973049998283386,0.111949808895588,-0.201596364378929,-0.319014698266983,0.0444365255534649,-0.946707487106323,-0.967636048793793,0.115994766354561,-0.224111109972,-0.99061781167984,0.120084665715694,0.0652377754449844,-0.972470700740814,0.116680882871151,-0.201708480715752,-0.0204070918262005,-0.0633143037557602,-0.997784972190857,-0.329354017972946,-0.0787382498383522,-0.940917730331421,-0.401616781949997,-0.0813860669732094,-0.912184357643127,-0.972925245761871,-0.131922617554665,-0.18977090716362,-0.405802577733994,-0.0927286967635155,-0.90924459695816,-0.329715847969055,-0.0844961106777191,-0.940291464328766,0.00299319042824209,0.00928656570613384,-0.999952375888824,-0.295086830854416,0.134048968553543,-0.946020483970642,0.00337442196905613,0.00912627577781677,-0.999952733516693,-0.299503952264786,0.123229071497917,-0.946103572845459,-0.00422507757321,-0.0131085738539696,-0.999905228614807,-0.313331723213196,0.129656344652176,-0.940751135349274,-0.314383566379547,0.127393633127213,-0.940709292888641,-0.90123039484024,0.388636916875839,-0.191690817475319,-0.300308555364609,0.121245563030243,-0.946104884147644,-0.914096832275391,0.356818079948425,-0.192633867263794,-0.320843756198883,0.113385565578938,-0.940320730209351,-0.912533462047577,0.356086850166321,-0.201208516955376,-0.188332229852676,0.97858077287674,-0.0831316635012627,-0.385512918233871,0.883364081382751,0.266547650098801,0.136828750371933,0.830069541931152,-0.540613055229187,
- -0.640331566333771,0.322719365358353,0.6970134973526,-0.434047788381577,0.872479915618896,0.224458247423172,-0.218801081180573,0.971733868122101,-0.0886530354619026,-0.983155429363251,0.17045570909977,0.0659575685858727,-0.979682862758636,0.16930228471756,0.107509978115559,-0.964254081249237,0.170706436038017,-0.202666044235229,-0.982116639614105,0.176315054297447,0.0660305395722389,-0.0116814151406288,-0.0179489888250828,0.999770760536194,-0.978720664978027,0.174871489405632,0.107358872890472,-0.931372404098511,0.361251085996628,0.0452016964554787,-0.91534698009491,0.353553622961044,-0.192717209458351,-0.913756728172302,0.352883666753769,-0.201300144195557,-0.98460853099823,0.169461086392403,0.0427671335637569,-0.965241372585297,0.165119498968124,-0.202594771981239,-0.97975218296051,0.168893158435822,0.107520930469036,0.0548182800412178,0.309866607189178,0.949198424816132,0.0574403777718544,0.310440868139267,0.948855638504028,-0.969833970069885,-0.217794463038445,0.109487853944302,-0.984065711498261,0.172572419047356,0.042819257825613,-0.979336380958557,0.171329364180565,0.107455395162106,-0.00906788557767868,-0.00478732213377953,0.999947428703308,-0.00528360949829221,0.0137889357283711,0.999890983104706,-0.0215956382453442,0.0173623599112034,0.999616026878357,-0.00517730135470629,0.0137656359001994,0.999891877174377,-0.0103046866133809,-0.010688129812479,0.99988979101181,-0.0247320514172316,-0.00732726324349642,0.999667346477509,-0.973164737224579,0.225931838154793,0.0436505451798439,-0.026750797405839,-0.0232804715633392,0.999370992183685,-0.0133337965235114,-0.0261528696864843,0.999569058418274,-0.00693608867004514,-0.0275206100195646,0.999597191810608,-0.336710810661316,0.534776031970978,0.775009989738464,-0.00100989092607051,0.176600009202957,0.984282255172729,0.0342899039387703,0.136053487658501,0.990107953548431,-0.0513010174036026,-0.146574348211288,0.987868547439575,-0.0398606210947037,-0.128097325563431,0.990960240364075,0.0197379048913717,-0.0313484407961369,0.999313592910767,-0.0440173782408237,-0.161791324615479,0.985842883586884,
- -0.0611675418913364,-0.174764424562454,0.982708513736725,-0.148350685834885,-0.239763855934143,0.959429740905762,-0.787336945533752,-0.616303741931915,0.0164391621947289,-0.0440173782408237,-0.161791324615479,0.985842883586884,-0.148350685834885,-0.239763855934143,0.959429740905762,0.0146406665444374,0.0285240579396486,0.999485969543457,-0.0391579456627369,0.0525404065847397,0.997850775718689,0.0106140337884426,0.0303258150815964,0.999483823776245,0.0386452190577984,0.217887371778488,0.975208580493927,-6.68809152557515e-005,-0.000130302476463839,1,-4.24774370912928e-005,7.13620920578251e-006,1,-0.910776495933533,0.409614562988281,0.0519839003682137,-0.911171019077301,0.409503370523453,0.045546181499958,-0.0360354594886303,0.0606747567653656,0.99750691652298,-0.896229326725006,0.400228023529053,-0.191286996006966,-0.91049724817276,0.410998225212097,0.0455549657344818,-0.910165190696716,0.410967081785202,0.0520130805671215,-0.58189070224762,0.31993442773819,0.747693240642548,0.120324037969112,0.992431461811066,-0.0245344936847687,0.0706623941659927,0.996833622455597,0.0364634320139885,-0.0409731902182102,0.0478061139583588,0.998015940189362,0.0123423170298338,0.0240462385118008,0.999634742736816,-0.0383752509951591,0.0466506890952587,0.998173832893372,-0.241154178977013,-0.469834864139557,0.849175989627838,-0.203360766172409,0.270411908626556,0.941021680831909,-0.244072839617729,-0.385639935731888,0.88978099822998,-0.0403824262320995,0.0493473261594772,0.997965097427368,-0.0376382321119308,0.0481456890702248,0.998130977153778,-0.913547575473785,0.403413712978363,0.051848866045475,-0.204660326242447,0.270654767751694,0.940670132637024,0.091164231300354,0.995199620723724,0.0355919413268566,-0.256814032793045,-0.413614869117737,0.873481154441834,0.0641994625329971,-0.0678890943527222,-0.995625257492065,0.0675428509712219,-0.0592953339219093,-0.995952844619751,0.118155904114246,0.073300413787365,-0.990285933017731,0.0231562852859497,0.0143654718995094,-0.999628663063049,0.014215636998415,-0.00349938357248902,-0.999892830848694,
- 0.262028872966766,0.496943414211273,-0.827277541160584,0.0157297253608704,0.00975825451314449,-0.999828696250916,-0.178749561309814,0.26833775639534,-0.946595728397369,0.0134892137721181,0.0127561027184129,-0.999827742576599,0.489027827978134,0.867327153682709,-0.0927115008234978,0.266718715429306,0.498826384544373,-0.824641406536102,-0.00779922073706985,0.0195148587226868,-0.999779164791107,-0.0733889564871788,0.985089480876923,-0.155604720115662,-0.404474884271622,0.432020038366318,-0.806076169013977,-0.394779354333878,0.473628461360931,-0.787289798259735,0.0285257957875729,0.0269754771143198,-0.999229073524475,-0.177340179681778,0.269227147102356,-0.946608304977417,-0.194437742233276,0.289048910140991,-0.937360525131226,-0.183764114975929,0.295256316661835,-0.937579035758972,-0.168738916516304,0.274631917476654,-0.946627974510193,-0.570443212985992,0.804004311561584,-0.167844116687775,-0.0548713654279709,-0.0518892221152782,-0.997144341468811,-0.42885035276413,0.135866403579712,-0.893100142478943,-0.08890300989151,-0.0354105234146118,-0.995410680770874,-0.00626567332074046,-0.00398192275315523,-0.999972462654114,-0.00683008460327983,-0.00272045750170946,-0.999972999095917,-0.148603543639183,0.315274775028229,-0.937293410301209,-0.00746937189251184,-0.00474688969552517,-0.999960899353027,-0.151016399264336,0.313921868801117,-0.937361776828766,-0.138127118349075,0.285191625356674,-0.948465466499329,-0.141292870044708,0.283322483301163,-0.948559284210205,-0.154869273304939,0.311755239963531,-0.937456250190735,-0.42780402302742,0.889932096004486,-0.158128336071968,-0.171358406543732,0.302394270896912,-0.937653481960297,-0.496868520975113,0.851185500621796,-0.169129699468613,-0.497507125139236,0.852205395698547,-0.161965504288673,-0.0369358658790588,0.999316155910492,0.00174500164575875,-0.104897141456604,0.981909155845642,-0.157641962170601,-0.368134111166,0.44551694393158,-0.816083371639252,-0.595298111438751,0.678578734397888,-0.430292010307312,-0.192114382982254,0.949931442737579,0.246419325470924,-0.358828634023666,0.933249473571777,0.016952533274889,
- -0.421405404806137,0.559953808784485,0.713350713253021,-0.586015641689301,0.809826672077179,0.0276857782155275,-0.44642585515976,0.59605211019516,0.667402327060699,-0.494505345821381,0.867394626140594,0.0555966384708881,-0.490140080451965,0.856532633304596,-0.161600723862648,-0.489557832479477,0.855400145053864,-0.1691854596138,-0.620627522468567,0.766304671764374,-0.166128501296043,-0.630185484886169,0.775873780250549,0.0297725461423397,-0.629716873168945,0.775039434432983,0.0526355057954788,-0.617563843727112,0.784734606742859,0.0529785044491291,-0.617718636989594,0.785857498645782,0.0291835572570562,-0.446720898151398,0.541429042816162,0.712246537208557,-0.43359300494194,0.887063443660736,-0.158478781580925,-0.435312449932098,0.898512363433838,0.0563796125352383,-0.435799986124039,0.899020314216614,0.04290521889925,-0.681001305580139,0.23917281627655,0.692122638225555,-0.935253739356995,0.352327108383179,0.0341480076313019,-0.728037059307098,0.258424937725067,0.634963512420654,-0.431238383054733,0.900472044944763,0.0564234703779221,-0.155063107609749,0.344966650009155,0.925717830657959,-0.431645303964615,0.90101021528244,0.0431614220142365,-0.253129094839096,0.553059220314026,0.793757557868958,-0.156068578362465,0.345018476247787,0.925529539585114,-0.419901847839355,0.905806720256805,0.0565389804542065,-0.403963029384613,0.446735590696335,0.798273921012878,-0.399149030447006,0.478225618600845,0.782291769981384,-0.0526819750666618,0.996758103370667,-0.0608108974993229,-0.103664204478264,0.982052505016327,0.157565116882324,-0.0123053602874279,0.998313724994659,-0.0567314736545086,-0.366997510194778,0.444314897060394,0.817249774932861,-0.404668271541595,0.43221989274025,0.805871963500977,-0.0734588205814362,0.98508358001709,0.155609413981438,-0.39496386051178,0.473822623491287,0.787080407142639,0.118154346942902,0.073299452662468,0.990286290645599,0.0675421431660652,-0.0592945888638496,0.995952963829041,0.0641987547278404,-0.0678883492946625,0.99562531709671,0.0141539117321372,-0.00343483919277787,0.999894022941589,
- 0.0230152625590563,0.0142779853194952,0.999633133411407,0.261818736791611,0.496858716011047,0.827394902706146,0.488906264305115,0.867393553256989,0.0927313193678856,-0.00784973334521055,0.0195676498115063,0.999777793884277,0.266521215438843,0.4987473487854,0.824753046035767,0.0134892137721181,0.0127561027184129,0.999827742576599,-0.178749561309814,0.26833775639534,0.946595728397369,0.0157297253608704,0.00975825451314449,0.999828696250916,-0.177347257733345,0.269222676753998,0.946608304977417,0.0285212881863117,0.0269712153822184,0.999229252338409,-0.194445118308067,0.289044588804245,0.937360286712646,-0.570449948310852,0.803999543190002,0.16784393787384,-0.16874560713768,0.274627715349197,0.946628034114838,-0.183771103620529,0.295252293348312,0.937579035758972,-0.0889037474989891,-0.0354108139872551,0.995410561561584,-0.428851008415222,0.135865867137909,0.893099784851074,-0.0548717863857746,-0.0518896169960499,0.997144222259521,-0.00627967342734337,-0.00399082014337182,0.999972343444824,-0.148617044091225,0.315267205238342,0.937293767929077,-0.00684534572064877,-0.00272653601132333,0.999972879886627,-0.151014015078545,0.313923209905624,0.937361717224121,-0.00747084384784102,-0.00474782567471266,0.999960899353027,-0.138125121593475,0.285192787647247,0.948465406894684,-0.154866218566895,0.31175696849823,0.93745619058609,-0.14129014313221,0.283324092626572,0.948559165000916,-0.427793949842453,0.889937102794647,0.158127725124359,-0.497508764266968,0.852204442024231,0.161965593695641,-0.496870070695877,0.851184666156769,0.16912966966629,-0.17135152220726,0.302398204803467,0.937653481960297,-0.489559292793274,0.855399310588837,0.169185429811478,-0.49014151096344,0.85653167963028,0.161600783467293,-0.494508862495422,0.867392778396606,-0.0555965900421143,-0.625738859176636,0.762183964252472,0.165911078453064,-0.633244812488556,0.772166669368744,-0.0525327250361443,-0.630325257778168,0.768817842006683,-0.107745662331581,-0.435311853885651,0.898512661457062,-0.0563796199858189,-0.433593720197678,0.887063086032867,0.158478826284409,
- -0.435799449682236,0.899020612239838,-0.0429052524268627,-0.445601999759674,0.516733169555664,-0.731044352054596,-0.610263586044312,0.784996926784515,-0.106574639678001,-0.610649228096008,0.790114641189575,-0.0531661473214626,-0.431237161159515,0.900472640991211,-0.0564234852790833,-0.431644171476364,0.901010870933533,-0.0431614965200424,-0.155055597424507,0.344966262578964,-0.925719261169434,-0.153877019882202,0.34490504860878,-0.925938725471497,-0.281904071569443,0.614570796489716,-0.736772000789642,-0.423425883054733,0.90416693687439,-0.0565040968358517,0.0393982008099556,0.0476669557392597,0.998085975646973,0.0139618199318647,0.133270636200905,0.990981340408325,0.0539419017732143,-0.00193697260692716,0.998542249202728,0.150193855166435,0.106888577342033,0.982861459255219,0.119393333792686,0.144451200962067,0.98228257894516,-0.0686191767454147,0.359496504068375,0.930620074272156,0.00548484921455383,-0.00579218752682209,0.99996817111969,-0.233368739485741,0.185614362359047,0.954508423805237,-0.00069537665694952,-0.000841319968458265,0.999999403953552,-0.553997933864594,0.811539828777313,0.18571312725544,0.107579253613949,0.115425176918507,0.987473428249359,-0.0755422711372375,0.35268822312355,0.932686686515808,-0.183664679527283,0.166875317692757,0.96872079372406,-0.00760369375348091,0.990711152553558,0.135770797729492,-0.121376194059849,0.705655932426453,0.698081433773041,-0.223693519830704,0.196544319391251,0.954636931419373,0.00840653385967016,-0.00195977720431983,0.999962747097015,-0.212950676679611,0.187367960810661,0.958929181098938,-0.00582016259431839,0.990755558013916,0.135534286499023,0.0201698113232851,0.999757707118988,0.00882501248270273,-0.126251369714737,0.706381022930145,0.69648152589798,-0.749805748462677,0.600237846374512,0.278398871421814,-0.616387367248535,0.787109375,-0.0229229517281055,0.312831401824951,0.531912744045258,-0.786896109580994,0.0773035511374474,0.0885011181235313,0.993071913719177,-0.171348810195923,-0.0326214507222176,0.984670221805573,-0.458894491195679,-0.178053453564644,0.870467007160187,
- 0.0514117144048214,-0.116992086172104,0.991801261901855,-0.155506506562233,-0.0808752775192261,0.984518587589264,-0.0643999502062798,-0.097370870411396,0.993162512779236,-0.222496271133423,0.19789020717144,0.954638659954071,-0.211977243423462,0.188628658652306,0.958897769451141,-0.73724901676178,0.650035321712494,0.184168100357056,-0.169899046421051,-0.0370974093675613,0.984763026237488,-0.902938604354858,-0.422383069992065,0.0793371871113777,-0.459167778491974,-0.178529247641563,0.870225369930267,-0.230198055505753,0.189206808805466,0.954573035240173,-0.770357012748718,0.610431432723999,0.184183195233345,-0.769827842712402,0.610039412975311,0.187661930918694,0.479718267917633,0.200703456997871,0.854159533977509,0.498451352119446,0.609053134918213,0.616928398609161,-0.104368932545185,0.710833787918091,-0.695573508739471,0.494699209928513,0.608073711395264,0.620901823043823,0.284229069948196,0.955913305282593,0.0737806186079979,-0.13978211581707,0.774517595767975,-0.616914451122284,-0.85807329416275,0.51222813129425,-0.0365056060254574,-0.843193888664246,0.505358636379242,0.183403134346008,-0.857094705104828,0.511409103870392,-0.0620439052581787,-0.768642067909241,0.61258602142334,0.184194788336754,-0.780775964260101,0.62202125787735,-0.0589783526957035,-0.768118739128113,0.612172365188599,0.187719568610191,-0.864863157272339,0.500648498535156,-0.0369175635278225,-0.864273607730865,0.499148637056351,-0.0623030439019203,-0.0771500840783119,-0.000650055706501007,-0.997019290924072,0.0544320344924927,-0.114913694560528,0.991883039474487,-0.213218852877617,0.271545112133026,0.938510000705719,-0.201254785060883,0.25408086180687,0.946012377738953,-0.152537673711777,0.302542805671692,0.940850734710693,0.0918133780360222,-0.0890198573470116,0.991789162158966,0.0329776406288147,0.00645154854282737,0.999435365200043,-0.0266532637178898,0.0712993294000626,-0.997098803520203,0.00817636400461197,0.0113806128501892,-0.999901831150055,0.0112080127000809,0.00615935772657394,-0.999918222427368,-0.000911014038138092,-0.00903657358139753,0.999958753585815,
- -0.109057947993279,0.286419630050659,0.951877176761627,-0.120640389621258,0.31813633441925,0.940337896347046,-0.117391422390938,0.283393234014511,0.951791763305664,0.00180935766547918,-0.00779372500255704,0.9999680519104,-0.00120463129132986,-0.000435286929132417,0.999999165534973,-0.0148413199931383,-0.00548754725605249,0.999874889850616,-0.0901835560798645,0.293179482221603,0.951794505119324,-0.0148704284802079,-0.00537334801629186,0.999875009059906,-0.0690878927707672,-0.234131217002869,0.969747126102448,-0.690148293972015,-0.000640660582575947,0.723667740821838,-0.372668266296387,-0.137793317437172,0.917677164077759,-0.138355001807213,0.275666475296021,0.951244354248047,0.0125527400523424,0.0425398424267769,0.999015927314758,-0.14000278711319,0.278183788061142,0.950270056724548,-0.00817539263516665,-0.0113792615011334,-0.9999018907547,-0.0611093938350677,0.0222969744354486,-0.997882008552551,-0.0288706421852112,0.00177912879735231,-0.999581634998322,-0.0682559460401535,0.0120840966701508,-0.997594714164734,-0.837705016136169,0.542670011520386,-0.0613148063421249,-0.036933146417141,-0.00833585578948259,-0.999282956123352,-0.0242212358862162,0.00760924909263849,-0.999677717685699,-0.00467325001955032,-0.00591550674289465,-0.999971687793732,-0.00439049722626805,-0.00611109705641866,-0.999971747398376,-0.0219346061348915,0.0104757901281118,-0.999704539775848,-0.00497361505404115,-0.00470330938696861,-0.999976575374603,-0.00423660129308701,-0.00536278588697314,-0.999976634979248,-0.745040655136108,0.66624641418457,-0.0320966355502605,-0.0212587844580412,0.0113229118287563,-0.999709904193878,-0.744294047355652,0.66538405418396,-0.0573631599545479,-0.748417317867279,0.6607266664505,-0.0575495474040508,-0.737504184246063,0.649745285511017,0.184170037508011,-0.749348521232605,0.661405146121979,-0.0319399535655975,-0.0298327300697565,-0.00680670235306025,-0.999531805515289,-0.0182971432805061,-0.0173027310520411,-0.999682903289795,-0.0332414545118809,-0.0037035746499896,-0.999440550804138,-0.0242906454950571,0.00752222817391157,-0.999676704406738,
- -0.753419399261475,0.65677136182785,-0.0317895747721195,-0.0193584877997637,0.00321812834590673,-0.999807476997375,-0.0132533935829997,-0.00854658056050539,-0.999875664710999,-0.0114612653851509,-0.0108383698388934,-0.999875664710999,-0.0211274474859238,0.00152538809925318,-0.999775648117065,-0.620245814323425,0.78359317779541,-0.035733949393034,-0.00580538064241409,-0.00374365667812526,-0.99997615814209,-0.0147787537425756,0.00759993027895689,-0.999862015247345,-0.00622985418885946,-0.00589127466082573,-0.999963283538818,-0.00716952467337251,-0.00462333811447024,-0.999963641166687,-0.00763971358537674,-0.00398887693881989,-0.999962866306305,-0.5770463347435,0.815887987613678,-0.0366652458906174,-0.567485809326172,0.803872406482697,0.178182631731033,-0.57713794708252,0.816057026386261,-0.0310288649052382,-0.0074244299903512,-0.00478771654888988,-0.999961018562317,-0.578368425369263,0.814952611923218,-0.0366388261318207,-0.578437626361847,0.815135359764099,-0.03105528652668,0.480784744024277,0.251029193401337,-0.840137243270874,0.520762324333191,0.335818707942963,-0.784877359867096,0.467730820178986,0.225108623504639,-0.85472446680069,0.44646480679512,0.287907212972641,-0.847218155860901,0.727880656719208,0.685596644878387,0.012128577567637,0.336740970611572,0.172673732042313,-0.925629138946533,-0.0331787914037704,0.0278578326106071,-0.999061107635498,-0.0155018148943782,-0.00809386745095253,-0.999847173690796,-0.0300865732133389,0.0215642433613539,-0.999314665794373,-0.0210031718015671,-0.0109662571921945,-0.999719262123108,-0.0367218181490898,0.0261907242238522,-0.998982310295105,-0.0221751611679792,-0.00819922052323818,-0.999720573425293,-0.402483701705933,0.913412034511566,-0.0607069283723831,0.0034491759724915,0.0356106758117676,-0.999359846115112,-0.403620362281799,0.914524734020233,-0.0271144155412912,-0.0146856475621462,0.028020529076457,-0.999499559402466,-0.45977783203125,0.886042892932892,-0.0594340227544308,-0.0182438958436251,0.0348778739571571,-0.99922513961792,-0.574029505252838,0.799129486083984,0.178555801510811,
- -0.572919189929962,0.797632873058319,0.188534960150719,-0.583600223064423,0.811443150043488,-0.0311597399413586,-0.385925203561783,0.900537729263306,0.200233817100525,-0.390432476997375,0.918612480163574,-0.0609396211802959,-0.39137265086174,0.919841587543488,-0.0268123913556337,-0.1805519759655,0.268713623285294,0.946146965026855,-0.576597154140472,0.795059084892273,0.188194036483765,-0.577734291553497,0.796408712863922,0.178762793540955,-0.546452343463898,0.815455257892609,0.190847545862198,-0.197916463017464,0.256457656621933,0.946075320243835,-0.209131240844727,0.273689150810242,0.938806891441345,-0.121613413095474,0.317667633295059,0.940370917320251,-0.109781205654144,0.286157995462418,0.951872766017914,-0.34536549448967,0.916579604148865,0.201505497097969,-0.337323814630508,0.919524669647217,0.201710149645805,-0.111072175204754,0.285690456628799,0.951863408088684,-0.336809366941452,0.917965769767761,0.209519594907761,-0.33839538693428,0.938971698284149,-0.0618123486638069,-0.335019916296005,0.920354425907135,0.201765954494476,-0.334553301334381,0.918789803981781,0.209521979093552,-0.134267643094063,0.300951898097992,0.944139897823334,-0.444079607725143,0.87152361869812,0.207941979169846,-0.12384819984436,0.281030774116516,0.951673984527588,-0.440728396177292,0.873200595378876,0.208036869764328,0.0511167347431183,0.833273410797119,0.550492882728577,-0.318221420049667,0.894923329353333,0.312805861234665,-0.41160985827446,0.87809157371521,0.243992820382118,-0.452684551477432,0.867146968841553,0.20768415927887,-0.321525663137436,0.89209508895874,0.317470610141754,-0.586534023284912,0.809724032878876,-0.0180237647145987,-0.458439648151398,0.864162445068359,0.207500144839287,-0.4229856133461,0.868221521377563,0.259373486042023,-0.55465966463089,0.475923895835876,-0.682531416416168,0.581231296062469,0.812453329563141,-0.0457162261009216,0.157935678958893,0.89987587928772,-0.406546324491501,-0.313478410243988,0.947558879852295,-0.0621570758521557,-0.304335474967957,0.929255247116089,0.209438726305962,-0.312906235456467,0.944521725177765,-0.0998419225215912,
- -0.245785042643547,0.964373290538788,-0.0978460386395454,-0.243381381034851,0.947225332260132,0.208637610077858,-0.247241139411926,0.968415975570679,-0.0322862714529037,0.0422647595405579,-0.025432238355279,-0.998782753944397,0.0380858071148396,-0.0314790830016136,-0.998778581619263,0.072838120162487,0.0189497545361519,-0.997163712978363,-0.24820451438427,0.963745355606079,-0.0979256331920624,-0.250517159700394,0.967577338218689,-0.0321758687496185,0.018530648201704,0.0058195423334837,-0.999811351299286,-0.08763287961483,0.0843141674995422,-0.992578268051147,-0.711479485034943,-0.209944739937782,-0.670611798763275,0.92331063747406,0.38228115439415,-0.0368609242141247,0.00811674073338509,0.00239510368555784,-0.99996417760849,0.00807879492640495,0.00253714201971889,-0.999964237213135,-0.257713496685028,0.965693593025208,-0.0319317132234573,0.646190404891968,0.168114587664604,-0.744429707527161,0.658821821212769,0.194406419992447,-0.726746201515198,0.337897598743439,-0.276370167732239,-0.899691462516785,0.302065521478653,0.0920147448778152,-0.948835968971252,-0.647576987743378,0.755155503749847,-0.101902775466442,0.300165832042694,0.094266951084137,-0.949217677116394,0.0118966307491064,0.0035104809794575,-0.99992311000824,0.0139728300273418,-0.0036444840952754,-0.999895751476288,0.0118366116657853,0.00371728278696537,-0.99992311000824,-0.0175487864762545,-0.0140636246651411,-0.999747097492218,-0.30400151014328,0.950634002685547,-0.0622761659324169,-0.303828150033951,0.947506546974182,-0.0995981693267822,-0.0317868888378143,-0.00826976075768471,-0.999460518360138,-0.0288670845329762,-0.0178025439381599,-0.999424695968628,-0.0314752459526062,-0.00928777735680342,-0.99946141242981,0.0255827214568853,0.997707903385162,-0.0626462996006012,-0.126618266105652,-0.0500447824597359,-0.990688323974609,-0.125630289316177,-0.0158633440732956,-0.991950333118439,0.0293900854885578,0.0014548460021615,-0.999566972255707,0.0278489720076323,0.0072452612221241,-0.999585866928101,0.0271091535687447,0.0100235538557172,-0.999582231044769,0.182430043816566,0.0674531310796738,-0.980902314186096,
- 0.166016399860382,0.120509095489979,-0.97873193025589,0.186617285013199,0.0535844713449478,-0.980970323085785,0.00277799367904663,-0.0812496095895767,-0.996689915657043,-0.00267295958474278,-0.084866464138031,-0.996388792991638,0.028265668079257,-0.0642905384302139,-0.997530937194824,-0.0193098150193691,-0.613086640834808,-0.789779663085938,0.230227917432785,-0.55963546037674,-0.796117663383484,-0.0490265637636185,-0.616804003715515,-0.785588502883911,-0.232980012893677,0.44007271528244,-0.867211818695068,-0.823484659194946,-0.456653147935867,-0.336661696434021,-0.00205389806069434,0.592364847660065,-0.805667340755463,-0.0400929786264896,-0.0120236929506063,-0.999123692512512,-0.000435113615822047,-0.0138148572295904,-0.99990451335907,-0.0319654494524002,-0.0123925544321537,-0.99941223859787,-0.000702099991030991,-0.0222916752099991,-0.999751269817352,-0.0405360460281372,-0.0191379878669977,-0.998994767665863,-0.00353102176450193,-0.0220688842236996,-0.999750316143036,-0.970833897590637,-0.183892011642456,-0.153835490345955,-0.944998383522034,-0.323622405529022,-0.0473974943161011,0.0141052231192589,0.81814444065094,-0.57483971118927,0.0303874108940363,0.189921319484711,-0.981328964233398,-0.0260587800294161,0.198644995689392,-0.979725003242493,0.0303769893944263,0.189923018217087,-0.981329023838043,-0.00177723728120327,0.0311654098331928,-0.999512672424316,0.00727480975911021,0.0288645680993795,-0.999556839466095,0.00472218682989478,0.0295136701315641,-0.999553322792053,-0.0314825028181076,-5.21094771102071e-005,-0.999504327774048,-0.997574269771576,0.0284907445311546,-0.0635123327374458,-0.0393287390470505,0.000172720989212394,-0.999226331710815,-0.997453451156616,0.0322871990501881,-0.0635944083333015,-0.0312232337892056,0.00652280822396278,-0.999491155147552,-0.99874746799469,0.0321888960897923,-0.0383069440722466,-0.891660392284393,0.447757661342621,-0.0667445436120033,-0.0312037225812674,-0.115055710077286,-0.992868840694427,-0.0458764806389809,-0.107578128576279,-0.99313759803772,-0.998719871044159,0.0502367205917835,0.00591318402439356,
- -0.97426426410675,-0.06080312281847,0.217053085565567,-0.996689975261688,0.0724101439118385,-0.0369591303169727,-0.997295022010803,0.0366926901042461,-0.0636884942650795,-0.998593389987946,0.0368155054748058,-0.0381551571190357,-0.974401652812958,0.0366824865341187,0.221801146864891,-0.697064280509949,0.691143929958344,0.190844058990479,-0.71937370300293,0.582291603088379,0.378732115030289,-0.715496420860291,0.496308267116547,0.491673707962036,-0.402287393808365,0.0114719262346625,0.915441513061523,-0.709349274635315,0.677925527095795,0.192978501319885,-0.692807018756866,0.516414105892181,0.5033238530159,-0.0116829285398126,-0.0179565064609051,-0.999770522117615,-0.982115983963013,0.176318660378456,-0.0660305842757225,-0.978720128536224,0.174874782562256,-0.107358790934086,-0.236767262220383,0.323005378246307,0.916301727294922,-0.510366082191467,0.845659375190735,0.156162962317467,-0.141405075788498,0.157584398984909,0.977328896522522,-0.0521768406033516,-0.0158177129924297,0.99851256608963,-0.236328914761543,0.324893057346344,0.915747344493866,-0.145872011780739,0.155264005064964,0.977043747901917,-0.275662213563919,0.127736836671829,0.95272958278656,-0.197531521320343,-0.0842611789703369,0.976668477058411,-0.059793408960104,-0.396524697542191,0.916074693202972,0.000817298190668225,0.00541997700929642,0.999985039234161,-0.319329887628555,0.0413927882909775,0.946739137172699,-0.289503186941147,0.0380673781037331,0.956419765949249,-0.319284588098526,0.0418322086334229,0.946735143661499,-0.967771828174591,0.11490036547184,0.224088817834854,-0.28946116566658,0.0383659712970257,0.956420600414276,-0.320742011070251,0.0273798406124115,0.946770787239075,-0.00129735143855214,-0.00860348809510469,0.999962151050568,-0.00272196694277227,-0.00844507664442062,0.999960660934448,-0.972470343112946,0.116684511303902,0.20170858502388,-0.990617513656616,0.120087817311287,-0.0652378275990486,-0.967635631561279,0.115998417139053,0.224111199378967,-0.973049581050873,0.111952565610409,0.201596409082413,-0.96817421913147,0.11159747838974,0.22401987016201,
- -0.319014459848404,0.0444390811026096,0.946707427501678,-0.983154714107513,0.170459643006325,-0.0659576132893562,-0.964253008365631,0.170712247490883,0.202666103839874,-0.979682147502899,0.169305890798569,-0.10750987380743,-0.0204229857772589,-0.0633636191487312,0.99778151512146,-0.40163642168045,-0.0814389362931252,0.912171006202698,-0.329357355833054,-0.0787904784083366,0.940912246704102,-0.405828535556793,-0.0927995070815086,0.909225821495056,-0.972917854785919,-0.131983742117882,0.189766481518745,-0.3297199010849,-0.0845621451735497,0.940284073352814,-0.293999135494232,0.134059801697731,0.946357429027557,0.00296041555702686,0.00918487925082445,0.999953508377075,0.0034026384819299,0.00899808760732412,0.999953746795654,-0.313437789678574,0.129428327083588,0.940747141838074,-0.00435318285599351,-0.0135060278698802,0.999899327754974,-0.298769950866699,0.122600883245468,0.946417272090912,-0.899078071117401,0.392168074846268,0.194584414362907,-0.314283043146133,0.12761002779007,0.94071352481842,-0.299419760704041,0.121030010282993,0.946414053440094,-0.32084584236145,0.11338110268116,0.940320611000061,-0.913604319095612,0.356586009263992,0.195380836725235,-0.912533819675446,0.356085866689682,0.201208546757698,-0.183895766735077,0.978805720806122,0.0901211053133011,0.141504660248756,0.826752662658691,0.544478178024292,-0.387357980012894,0.881952524185181,-0.268539845943451,-0.432924628257751,0.87172257900238,-0.22951266169548,-0.635986268520355,0.355603277683258,-0.684885323047638,-0.210451513528824,0.972987830638886,0.0948940068483353,-0.914851069450378,0.35334312915802,0.195438608527184,-0.931372344493866,0.36125111579895,-0.0452016927301884,-0.913757145404816,0.352882534265518,0.201300173997879,-0.979753017425537,0.168888464570045,-0.107521057128906,-0.965241670608521,0.16511806845665,0.202594757080078,-0.984609246253967,0.169457048177719,-0.0427670665085316,0.231297418475151,0.972644865512848,-0.0215282868593931,0.246180221438408,0.969198763370514,0.00700852554291487,-0.388157665729523,0.338789373636246,-0.857062101364136,
- -0.910505414009094,0.410980135202408,-0.0455548651516438,-0.89570564031601,0.399914383888245,0.194370687007904,-0.910344183444977,0.410966694355011,-0.048784151673317,6.68809152557515e-005,0.000130302476463839,-1,0.0454848110675812,0.255929321050644,-0.965624868869781,4.24774370912928e-005,-7.13620920578251e-006,-1,-0.984066486358643,0.172568082809448,-0.0428191870450974,-0.00907223112881184,-0.00480804732069373,-0.999947369098663,-0.979337275028229,0.171323657035828,-0.107455544173718,0.0547860600054264,0.309708923101425,-0.949251770973206,-0.969829738140106,-0.217813909053802,-0.109487548470497,0.0574068501591682,0.310283064842224,-0.948909282684326,-0.0769369304180145,0.284995287656784,-0.955436229705811,-0.243944942951202,-0.47527202963829,-0.845344603061676,-0.216150656342506,-0.309355825185776,-0.926055014133453,-0.0769369304180145,0.284995287656784,-0.955436229705811,-0.216150656342506,-0.309355825185776,-0.926055014133453,0.231846436858177,0.972514748573303,-0.021502573043108,-0.0379807129502296,0.0464751645922661,-0.998197138309479,0.0123423049226403,0.0240462142974138,-0.999634742736816,-0.0409732013940811,0.0478060878813267,-0.998015940189362,-0.0372156873345375,0.0479606427252293,-0.99815571308136,-0.0403824262320995,0.0493473261594772,-0.997965097427368,-0.913730680942535,0.40339395403862,-0.0486789681017399,-0.910981953144073,0.409553229808807,-0.0487647466361523,-0.0360361188650131,0.0606730505824089,-0.997506976127625,-0.911174535751343,0.409495562314987,-0.0455461367964745,-0.0391613282263279,0.0525315776467323,-0.997851133346558,0.0146363424137235,0.0285156313329935,-0.999486267566681,0.0106108980253339,0.0303168557584286,-0.999484062194824,-0.787322461605072,-0.616322219371796,-0.0164381582289934,-0.148248583078384,-0.23948273062706,-0.959515690803528,-0.0439877659082413,-0.161550432443619,-0.985883712768555,-0.0610644966363907,-0.174470022320747,-0.982767164707184,-0.0439877659082413,-0.161550432443619,-0.985883712768555,-0.148248583078384,-0.23948273062706,-0.959515690803528,-0.0247327908873558,-0.00733310682699084,-0.999667286872864,
- -0.0103058880195022,-0.0106938648968935,-0.999889731407166,-0.973164796829224,0.225931480526924,-0.0436505377292633,-0.0215973779559135,0.0173487160354853,-0.999616324901581,-0.00528632011264563,0.0137754995375872,-0.99989116191864,-0.00518011534586549,0.0137522220611572,-0.999891996383667,-0.0398464798927307,-0.12798310816288,-0.990975618362427,-0.0512278601527214,-0.146365329623222,-0.987903296947479,0.0197090990841389,-0.0313026867806911,-0.999315619468689,-0.00694028474390507,-0.0275372583419085,-0.999596655368805,-0.013337173499167,-0.0261696334928274,-0.999568641185761,-0.02675293199718,-0.0232973545789719,-0.999370574951172,-0.000981930643320084,0.176813051104546,-0.984243988990784,-0.337001770734787,0.535238146781921,-0.774564385414124,0.0343383438885212,0.13624569773674,-0.990079760551453,-0.672125279903412,0.740000128746033,-0.0254448782652617,-0.68321418762207,0.729734301567078,-0.0265752971172333,-0.987858533859253,0.139993041753769,-0.0673607587814331,-0.685935974121094,0.727627515792847,-0.00708134565502405,-0.993405342102051,0.114450082182884,-0.00685987249016762,-0.992842853069305,0.119230985641479,-0.00687350425869226,-0.523270726203918,0.851356446743011,-0.0371477864682674,-0.147963389754295,0.979691743850708,0.135318621993065,-0.667183220386505,0.735745489597321,-0.116383649408817,-0.993399679660797,0.114509165287018,-0.00669059157371521,-0.685959577560425,0.727606892585754,-0.00690346956253052,-0.687723398208618,0.725939929485321,-0.00690876692533493,-0.261816382408142,0.9625643491745,0.0701573491096497,-0.670683205127716,0.735071122646332,-0.0992705374956131,-0.09148059040308,0.987355828285217,0.129460379481316,-0.743211984634399,0.668794095516205,0.0187205094844103,-0.989289462566376,0.135523349046707,0.0542196780443192,-0.685149073600769,0.728288352489471,0.0129196476191282,-0.0818304866552353,0.988298654556274,0.128723055124283,-0.261145919561386,0.96288388967514,0.0682451575994492,-0.0825348719954491,0.988269567489624,0.128496542572975,-0.66962718963623,0.735302746295929,0.104543849825859,
- -0.174541428685188,0.974940299987793,-0.137937813997269,-0.546618938446045,0.836629450321198,0.0354847200214863,-0.126597508788109,0.982977390289307,0.133148998022079,0.729982554912567,0.579888224601746,0.361739128828049,-0.0833716243505478,0.985347926616669,0.148790270090103,-0.672476410865784,0.734616696834564,0.0900764092803001,-0.265094071626663,0.960935711860657,-0.0795470327138901,-0.114673182368279,0.984606027603149,-0.131913512945175,0.861461281776428,0.506943106651306,-0.0298864915966988,0.843605518341064,0.536123096942902,-0.030028909444809,-0.0697145834565163,0.997413277626038,-0.0175164937973022,-0.264580398797989,0.961198270320892,-0.0780709236860275,-0.0826536491513252,0.986781656742096,-0.139393284916878,-0.108022600412369,0.985450804233551,-0.131216809153557,-0.0697716176509857,0.997420310974121,-0.0168689079582691,0.843678295612335,0.536169290542603,-0.0270082131028175,-0.0628584176301956,0.997877359390259,-0.0170180350542068,0.843809723854065,0.536252856254578,0.0204511731863022,-0.0709451660513878,0.997474253177643,0.0034706259611994,-0.0628671050071716,0.998015284538269,0.00364354811608791,0.726970851421356,0.580212473869324,-0.367242306470871,-0.151583701372147,0.979088008403778,-0.135680615901947,-0.0842331275343895,0.983487069606781,-0.160181045532227,-0.0708835572004318,0.997475862503052,0.00417755730450153,0.843749165534973,0.536214351654053,0.0236964859068394,0.860593736171722,0.508728861808777,0.0239435918629169
- }
- BinormalsW: *1305 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *3915 {
- a: -0.966116786003113,-0.242035061120987,-0.08965253084898,-0.827624201774597,-0.553471624851227,-0.0933143422007561,-0.805232465267181,-0.585419178009033,-0.0942620635032654,-0.645588040351868,0.763683438301086,-0.00194066786207259,-0.623730599880219,0.781637132167816,-0.00194135413039476,-0.623759150505066,0.781613051891327,-0.00236147525720298,-0.645508825778961,0.7635897397995,-0.0157895609736443,-0.623850226402283,0.781372249126434,-0.0163804423063993,-0.646087884902954,0.763091802597046,-0.0161662828177214,-0.64529025554657,0.763898193836212,0.00775003572925925,-0.623624324798584,0.781689703464508,0.00734086101874709,-0.630046010017395,0.776551783084869,0.00309334159828722,-0.687087178230286,0.726575016975403,-7.25065993113969e-018,-0.691220223903656,0.722644031047821,0.000418219511630014,-0.666794836521149,0.745241343975067,-2.94924050934453e-018,-0.666037976741791,0.744395434856415,0.0476329065859318,-0.690155804157257,0.72207123041153,0.0479392968118191,-0.668818771839142,0.741885542869568,0.0478268936276436,-0.670672476291656,0.74175226688385,0.0014325943775475,-0.67070597410202,0.741721928119659,0.0014904192648828,-0.666794121265411,0.745240569114685,0.00149045384023339,-0.645290493965149,0.763898015022278,-0.00774314487352967,-0.630047023296356,0.776550889015198,-0.00308754877187312,-0.623624444007874,0.781689703464508,-0.00733380857855082,-0.646088123321533,0.763091385364532,0.0161751601845026,-0.623850286006927,0.781372129917145,0.0163894277065992,-0.645508646965027,0.763589560985565,0.015798581764102,-0.623759269714355,0.781612932682037,0.00237189396284521,-0.623730540275574,0.781637012958527,0.00195177504792809,-0.645587980747223,0.763683378696442,0.00195108540356159,-0.687087178230286,0.726575016975403,-7.25065993113969e-018,-0.666794836521149,0.745241343975067,-2.94924050934453e-018,-0.691220223903656,0.722644031047821,-0.000418219511630014,-0.690155565738678,0.722071051597595,-0.0479451604187489,-0.666037738323212,0.744395196437836,-0.0476390235126019,-0.668818414211273,0.741885423660278,-0.0478321388363838,
- -0.670669257640839,0.74175488948822,-0.00156353937927634,-0.666794121265411,0.745240569114685,-0.00145595683716238,-0.67070597410202,0.741721928119659,-0.00145596312358975,0.90208226442337,0.431430637836456,-0.0107434149831533,0.91537868976593,0.402450978755951,-0.0107379471883178,0.91537868976593,0.402450978755951,-0.0107379471883178,0.915350615978241,0.40243861079216,-0.0132818361744285,0.902054667472839,0.431417435407639,-0.0132819842547178,0.855291604995728,0.517997264862061,-0.0124637428671122,0.900434672832489,0.430642604827881,-0.0613541342318058,0.804677605628967,0.59167468547821,-0.049142599105835,0.853444278240204,0.517343759536743,-0.0631550550460815,0.855309367179871,0.517996549606323,-0.0112123005092144,0.805606663227081,0.592357873916626,-0.0105014517903328,0.808303475379944,0.588672518730164,-0.0105058560147882,0.855292201042175,0.517997264862061,-0.0124230571091175,0.808287382125854,0.588672280311584,-0.0116915963590145,0.812022089958191,0.583508551120758,-0.0117443772032857,0.81223201751709,0.583240926265717,-0.0104518122971058,0.808299422264099,0.588672459125519,-0.0108064385131001,0.80560439825058,0.592356204986572,-0.0107572432607412,0.00833646301180124,0.00308238994330168,-0.999960601329803,0.00914146658033133,0.00222962629050016,-0.999955832958221,0.00914146658033133,0.00222962629050016,-0.999955832958221,0.00325465970672667,0.0012034036917612,-0.999993979930878,0.00338715501129627,0.000826135335955769,-0.999993920326233,0.00325465970672667,0.0012034036917612,-0.999993979930878,0.00197777058929205,0.000731276639271528,-0.999997794628143,0.00197777058929205,0.000731276639271528,-0.999997794628143,0.00098761694971472,0.00334692443720996,-0.999993920326233,0.000983195845037699,0.00333194178529084,-0.999993979930878,0.00196261610835791,0.000725673278793693,-0.999997913837433,0.000983195845037699,0.00333194178529084,-0.999993979930878,-0.999939918518066,-1.90346459862487e-018,0.0109610669314861,-0.999939918518066,-1.90346459862487e-018,0.0109610669314861,-0.999939918518066,-1.90346459862487e-018,0.0109610669314861,
- -0.999999761581421,0,0.000689228414557874,-0.999999761581421,0,0.000689228414557874,-0.999999761581421,0,0.000689228414557874,-0.999991178512573,9.36593963524525e-019,-0.00422502122819424,-0.999991178512573,9.36593963524525e-019,-0.00422502122819424,-0.999991178512573,9.36593963524525e-019,-0.00422502122819424,-0.999999165534973,0,0.00128724018577486,-0.999999165534973,0,0.00128724018577486,-0.999999165534973,0,0.00128724018577486,-0.999984860420227,1.90359177764405e-018,-0.00550472503527999,-0.999984860420227,1.90359177764405e-018,-0.00550472503527999,-0.999984860420227,1.90359177764405e-018,-0.00550472503527999,0.0016894704895094,-0.00511064892634749,-0.99998551607132,0.0016894704895094,-0.00511064892634749,-0.99998551607132,0.0016894704895094,-0.00511064892634749,-0.99998551607132,0.00233153556473553,-0.00705289514735341,-0.999972403049469,0.00233153556473553,-0.00705289514735341,-0.999972403049469,0.00233153556473553,-0.00705289514735341,-0.999972403049469,0.0022731211502105,-0.0068761920556426,-0.999973773956299,0.0022731211502105,-0.0068761920556426,-0.999973773956299,0.00251190108247101,-0.00679355021566153,-0.999973773956299,0.00190211506560445,-0.00514435581862926,-0.999984979629517,0.00942172948271036,-0.00237896386533976,-0.999952793121338,0.00162647850811481,-0.00492010312154889,-0.999986588954926,0.00151894090231508,-0.0041080447845161,-0.999990403652191,0.00146480218973011,-0.0044310218654573,-0.999989211559296,0.00151894090231508,-0.0041080447845161,-0.999990403652191,-0.999988734722137,0,-0.0047680102288723,-0.999988734722137,0,-0.0047680102288723,-0.999988734722137,0,-0.0047680102288723,-0.999993503093719,7.29713714180751e-019,-0.0036044167354703,-0.999993503093719,7.29713714180751e-019,-0.0036044167354703,-0.999993503093719,7.29713714180751e-019,-0.0036044167354703,-0.999950647354126,0,0.00993725564330816,-0.999950647354126,0,0.00993725564330816,-0.999950647354126,0,0.00993725564330816,-1,0,-0.000139457755722106,-1,0,-0.000139457755722106,-1,0,-0.000139457755722106,-0.999994456768036,7.11961746151116e-019,-0.00335822510533035,
- -0.999994456768036,7.11961746151116e-019,-0.00335822510533035,-0.999994456768036,7.11961746151116e-019,-0.00335822510533035,-0.999992191791534,7.20378825871726e-019,-0.00397605868056417,-0.999992191791534,7.20378825871726e-019,-0.00397605868056417,-0.999992191791534,7.20378825871726e-019,-0.00397605868056417,-0.999993622303009,-7.29713869277116e-019,0.00359915266744792,-0.999993622303009,-7.29713869277116e-019,0.00359915266744792,-0.999993622303009,-7.29713869277116e-019,0.00359915266744792,-0.999988615512848,0,0.00477237952873111,-0.999988615512848,0,0.00477237952873111,-0.999988615512848,0,0.00477237952873111,-0.999951303005219,0,-0.00987027026712894,-0.999951303005219,0,-0.00987027026712894,-0.999951303005219,0,-0.00987027026712894,0.180953919887543,-0.983445167541504,0.00956457760185003,0.180953919887543,-0.983445167541504,0.00956457760185003,0.180953919887543,-0.983445167541504,0.00956457760185003,0.180962145328522,-0.983489871025085,-0.000599553168285638,0.180962145328522,-0.983489871025085,-0.000599553168285638,0.180962145328522,-0.983489871025085,-0.000599553168285638,0.180926948785782,-0.983298599720001,-0.0197319854050875,0.180926948785782,-0.983298599720001,-0.0197319854050875,0.180926948785782,-0.983298599720001,-0.0197319854050875,0.180961921811104,-0.98348867893219,0.00169100717175752,0.180961921811104,-0.98348867893219,0.00169100717175752,0.180961921811104,-0.98348867893219,0.00169100717175752,0.180962175130844,-0.98349004983902,-1.37529639232525e-006,0.180962175130844,-0.98349004983902,-1.37529639232525e-006,0.180962175130844,-0.98349004983902,-1.37529639232525e-006,0.180961936712265,-0.983488738536835,-0.00169161823578179,0.180961936712265,-0.983488738536835,-0.00169161823578179,0.180961936712265,-0.983488738536835,-0.00169161823578179,0.180962145328522,-0.983489871025085,0.000603109947405756,0.180962145328522,-0.983489871025085,0.000603109947405756,0.180962145328522,-0.983489871025085,0.000603109947405756,0.18095389008522,-0.983445048332214,-0.00956728961318731,0.18095389008522,-0.983445048332214,-0.00956728961318731,
- 0.18095389008522,-0.983445048332214,-0.00956728961318731,0.18092705309391,-0.983299195766449,0.0197014361619949,0.18092705309391,-0.983299195766449,0.0197014361619949,0.18092705309391,-0.983299195766449,0.0197014361619949,-0.294192343950272,-0.840151786804199,-0.455627113580704,-0.0889460146427155,-0.933933556079865,-0.346203237771988,-0.634834408760071,-0.717967510223389,-0.285495936870575,-0.0948088094592094,-0.995492458343506,-0.00249771168455482,-0.141058921813965,-0.989628255367279,0.0271710678935051,0.0157611053436995,-0.99987405538559,-0.00191011826973408,0.0157128479331732,-0.999867796897888,0.00420640548691154,-0.140649423003197,-0.989654839038849,0.0283059384673834,-0.125646010041237,-0.991764008998871,0.0248434133827686,-0.321096777915955,-0.782967567443848,-0.532784104347229,-0.386286795139313,-0.922358274459839,-0.00616417173296213,0.0156699568033218,-0.999830603599548,0.00965695176273584,-0.0925649330019951,-0.994896292686462,0.0401632823050022,-0.126665279269218,-0.9916952252388,0.0222826506942511,-0.141424283385277,-0.989603519439697,0.026158083230257,-0.0300898142158985,-0.998253166675568,0.0508471131324768,0.107408948242664,-0.777157664299011,0.62007200717926,-0.138224214315414,-0.692804336547852,0.707754373550415,-0.247657120227814,-0.663890898227692,0.705630838871002,-0.155611887574196,-0.987388074398041,0.0291509702801704,-0.189493328332901,-0.69467681646347,0.693913817405701,-0.414712369441986,-0.909925878047943,0.00696777552366257,-0.386283189058304,-0.922349631786346,-0.00752909341827035,-0.171893134713173,-0.980613052845001,-0.0940784886479378,-0.386294096708298,-0.922375679016113,3.89027309211087e-006,-0.403502345085144,-0.914060354232788,0.0409824438393116,-0.379556357860565,-0.925168633460999,3.88761009162408e-006,-0.420721977949142,-0.907110512256622,-0.0119803436100483,-0.418369799852371,-0.908111035823822,0.0173587426543236,-0.379493892192841,-0.925016403198242,0.0181403290480375,0.912010490894318,-0.371422678232193,0.174017429351807,0.862432360649109,-0.423138439655304,0.277784645557404,
- 0.920402646064758,-0.390965729951859,-0.00218065828084946,0.323079377412796,-0.946049273014069,0.0247089583426714,0.447195172309875,-0.669023334980011,0.593653440475464,-0.0029634996317327,-0.988463997840881,-0.151427716016769,-0.193032771348953,-0.978859186172485,0.0676258355379105,-0.258938938379288,-0.965774774551392,-0.015163216739893,-0.255305349826813,-0.966246545314789,0.0344535186886787,-0.0818069875240326,-0.996112823486328,0.0326619334518909,-0.0908855423331261,-0.995354115962982,0.0317811369895935,-0.0919709205627441,-0.994947254657745,0.040265928953886,-0.225267812609673,-0.97427099943161,0.00711786933243275,-0.221228629350662,-0.974622786045074,0.0341806970536709,-0.222581207752228,-0.974710702896118,-0.0199170336127281,-0.130201831459999,-0.991397261619568,0.0133774634450674,-0.0987131223082542,-0.994347512722015,0.0390996523201466,-0.0975142270326614,-0.994764029979706,0.0305861663073301,-0.364874303340912,-0.930851817131042,-0.0195369925349951,-0.414421230554581,-0.910051167011261,0.00787248183041811,-0.17132742702961,-0.980853974819183,-0.0925882235169411,-0.375253170728683,-0.92692232131958,0.000533835147507489,-0.377654433250427,-0.925597846508026,0.0254114512354136,-0.369801104068756,-0.92888480424881,-0.0204985272139311,-0.364720404148102,-0.930912852287292,-0.0195069778710604,-0.372699379920959,-0.927575588226318,0.0264337603002787,-0.412849187850952,-0.910710334777832,0.0127370478585362,-0.429746598005295,-0.902673065662384,-0.0223429817706347,-0.429395377635956,-0.902999401092529,0.0145495282486081,-0.428080081939697,-0.903706014156342,0.00792829506099224,-0.381527364253998,-0.918559670448303,0.103369332849979,0.371466100215912,-0.911414921283722,-0.177019700407982,-0.418618440628052,-0.908023178577423,-0.0158896651118994,-0.111647441983223,-0.990809679031372,0.0763609632849693,0.369894683361053,-0.911237478256226,-0.181175023317337,-0.382807433605194,-0.918413698673248,0.0998734161257744,-0.381849676370621,-0.835977911949158,0.394121438264847,-0.480339527130127,0.85263454914093,-0.205641716718674,
- -0.68455708026886,-0.728450059890747,-0.0272442176938057,-0.955218613147736,-0.263203173875809,-0.135209202766418,-0.67845207452774,-0.734624683856964,-0.00543345510959625,-0.502691090106964,0.789316236972809,-0.352535933256149,-0.503161549568176,-0.773548245429993,0.385294109582901,-0.678056418895721,-0.733247041702271,0.0508749336004257,-0.41783994436264,-0.907461404800415,0.0438590124249458,-0.640352547168732,-0.762845993041992,0.089524157345295,-0.667310833930969,-0.744681894779205,-0.0120507422834635,-0.664454936981201,-0.747318089008331,-0.00391479581594467,-0.654448509216309,-0.756104648113251,0.00168436614330858,-0.678880333900452,-0.734138071537018,0.0127586266025901,-0.673524856567383,-0.73907870054245,0.0112687777727842,-0.678901970386505,-0.734161496162415,-0.00995123200118542,-0.657905519008636,-0.753026485443115,-0.0105652455240488,-0.653997719287872,-0.756431102752686,-0.00994794443249702,-0.643353223800659,-0.74411940574646,0.179952770471573,-0.556508481502533,-0.790202677249908,0.256667584180832,0.585684597492218,-0.733959138393402,0.343915075063705,0.615635454654694,-0.771492540836334,-0.160600259900093,-0.639029860496521,-0.767413914203644,0.0521242283284664,0.610810518264771,-0.770103812217712,-0.183985352516174,-0.671971380710602,-0.740395843982697,0.016386354342103,-0.650904536247253,-0.759015440940857,-0.0147926462814212,-0.653104603290558,-0.757241308689117,0.00634224200621247,-0.428883731365204,-0.902788102626801,0.0321307070553303,0.611339747905731,-0.770662188529968,-0.17984302341938,-0.644464552402496,-0.763830721378326,0.0350440964102745,-0.632330179214478,-0.774627923965454,-0.0104942452162504,-0.669234037399292,-0.742622792720795,0.0252439118921757,-0.628831148147583,-0.776921331882477,-0.0310591757297516,-0.634446084499359,-0.772939562797546,-0.00654299696907401,-0.631671369075775,-0.775167286396027,-0.0103432768955827,-0.628192603588104,-0.777444124221802,-0.0309017151594162,-0.657646298408508,-0.753149032592773,-0.016373572871089,-0.662379682064056,-0.749157190322876,-0.00409972434863448,
- -0.663705587387085,-0.747887492179871,-0.0126167181879282,-0.880708754062653,-0.467152118682861,-0.0782382115721703,-0.229727730154991,-0.0658315569162369,-0.971025943756104,-0.0778347477316856,0.0723666995763779,-0.994336366653442,-0.959412753582001,0.230725407600403,-0.162150859832764,-0.984464287757874,0.150024086236954,0.0912294685840607,-0.516419053077698,0.563718736171722,-0.644618153572083,-0.0639182925224304,0.0025898115709424,-0.997951865196228,-0.183260843157768,-0.124501556158066,-0.975148737430573,-0.859669387340546,-0.50586724281311,-0.0711821615695953,-0.0889433622360229,-0.933905720710754,0.346279114484787,-0.294206231832504,-0.840118587017059,0.455679088830948,-0.634821474552155,-0.717952847480774,0.285561501979828,0.00787212140858173,-0.999969005584717,-0.000209694015211426,-0.140362247824669,-0.989672541618347,-0.0291014015674591,-0.0948090851306915,-0.995495438575745,0.000320519640808925,-0.140621498227119,-0.989656507968903,-0.0283832680433989,0.00784061569720507,-0.999960541725159,-0.0042025288566947,-0.12561509013176,-0.991766095161438,-0.0249210968613625,-0.385834097862244,-0.921277344226837,0.0487858317792416,-0.329625874757767,-0.758316695690155,0.562407851219177,0.00845097005367279,-0.99705570936203,0.0762136280536652,-0.126648098230362,-0.991696417331696,-0.0223258603364229,-0.0924952030181885,-0.994902312755585,-0.0401753336191177,-0.14140909910202,-0.989604473114014,-0.0262001547962427,0.107400417327881,-0.777172565460205,-0.62005478143692,-0.0298342201858759,-0.998258531093597,-0.0508903488516808,-0.138048887252808,-0.692794620990753,-0.707798063755035,-0.251074463129044,-0.683938205242157,-0.684974551200867,-0.189759999513626,-0.694681465625763,-0.693836331367493,-0.156122401356697,-0.987310111522675,-0.0290608368813992,-0.386283129453659,-0.922349512577057,0.00753431860357523,-0.414710074663162,-0.909926891326904,-0.00697491411119699,-0.171889677643776,-0.980614542961121,0.0940693914890289,-0.403504699468613,-0.914059638977051,-0.0409755036234856,-0.386294096708298,-0.922375679016113,3.89027309211087e-006,
- -0.379556357860565,-0.925168633460999,3.88761009162408e-006,-0.418369233608246,-0.908110499382019,-0.0173940658569336,-0.420712113380432,-0.907115519046783,0.0119487689808011,-0.379493653774261,-0.925015807151794,-0.0181758180260658,0.916126191616058,-0.36109733581543,-0.174130648374558,0.925073742866516,-0.379778653383255,0.00260656792670488,0.870186507701874,-0.417214930057526,-0.262120455503464,0.43804606795311,-0.685485363006592,-0.581571578979492,0.324733376502991,-0.945483922958374,-0.0246651060879231,0.000825612689368427,-0.987810015678406,0.155662223696709,-0.258957415819168,-0.96576976776123,0.0151607785373926,-0.193040996789932,-0.978856801986694,-0.0676356330513954,-0.255324095487595,-0.966241478919983,-0.0344536527991295,-0.0909097641706467,-0.995352029800415,-0.031776774674654,-0.0818325206637383,-0.996110737323761,-0.0326622687280178,-0.0919952318072319,-0.994945168495178,-0.0402617268264294,-0.22260220348835,-0.974705934524536,0.0199143085628748,-0.221249431371689,-0.974618077278137,-0.0341808758676052,-0.225287050008774,-0.974266469478607,-0.00711426697671413,-0.0987434536218643,-0.994344711303711,-0.0390943996608257,-0.130205303430557,-0.991397023200989,-0.0133687723428011,-0.0975444540381432,-0.994761228561401,-0.0305807124823332,-0.414418816566467,-0.910052180290222,-0.00787992309778929,-0.364841163158417,-0.930864930152893,0.0195305310189724,-0.171323850750923,-0.980855405330658,0.0925788655877113,-0.377649933099747,-0.925599694252014,-0.0254123844206333,-0.375249356031418,-0.926923751831055,-0.00053331401431933,-0.369796633720398,-0.928886711597443,0.0204976480454206,-0.364715248346329,-0.930914878845215,0.0195059720426798,-0.412848085165024,-0.91071093082428,-0.0127405934035778,-0.372694224119186,-0.927577614784241,-0.0264348238706589,-0.428080171346664,-0.903706014156342,-0.00792830716818571,-0.429393738508224,-0.903000175952911,-0.0145498728379607,-0.429746389389038,-0.902673304080963,0.0223430022597313,-0.38154461979866,-0.918557703495026,-0.10332215577364,-0.418618440628052,-0.908022820949554,0.015911964699626,
- 0.371447175741196,-0.9114128947258,0.17706985771656,0.369873225688934,-0.911234855651855,0.181231483817101,-0.111728310585022,-0.990801692008972,-0.0763466060161591,-0.382826179265976,-0.918411493301392,-0.0998221263289452,-0.381794422864914,-0.835863649845123,-0.394417226314545,-0.684526324272156,-0.728483200073242,0.0271308422088623,-0.480239510536194,0.852816700935364,0.205119341611862,-0.678410291671753,-0.73466432094574,0.00528858602046967,-0.955257833003998,-0.263049691915512,0.135230526328087,-0.502587735652924,0.78979629278183,0.351606965065002,-0.50316196680069,-0.773548305034637,-0.385293483734131,-0.417839974164963,-0.907461404800415,-0.0438582412898541,-0.678056418895721,-0.733247101306915,-0.0508739352226257,-0.667308866977692,-0.744683563709259,0.0120510440319777,-0.640353500843048,-0.762845098972321,-0.0895250737667084,-0.6644526720047,-0.747320115566254,0.00391499744728208,-0.673525035381317,-0.73907858133316,-0.0112682580947876,-0.678880333900452,-0.734138071537018,-0.0127580240368843,-0.654448688030243,-0.756104528903961,-0.00168383866548538,-0.657905459403992,-0.75302642583847,0.0105650685727596,-0.678901970386505,-0.734161496162415,0.0099510308355093,-0.653997719287872,-0.756431102752686,0.00994774326682091,-0.556600511074066,-0.790199458599091,-0.256477922201157,-0.64338093996048,-0.744151473045349,-0.179720863699913,0.58577686548233,-0.734074711799622,-0.343511164188385,0.615583419799805,-0.771427273750305,0.161112025380135,0.610745191574097,-0.770034790039063,0.184490650892258,-0.639117956161499,-0.767358958721161,-0.0518528968095779,-0.650904715061188,-0.759015321731567,0.0147926826030016,-0.671971678733826,-0.740395545959473,-0.0163853075355291,-0.653104841709137,-0.757240951061249,-0.00634118122979999,-0.428930044174194,-0.902766406536102,-0.0321217849850655,-0.644550025463104,-0.763771235942841,-0.034769956022501,0.611259937286377,-0.77057808637619,0.180473580956459,-0.669238805770874,-0.742618978023529,-0.0252286493778229,-0.632331252098084,-0.774627029895782,0.0104944929480553,-0.628832459449768,-0.77692037820816,0.0310594905167818,
- -0.631672441959381,-0.775166392326355,0.0103435246273875,-0.634443700313568,-0.772941410541534,0.00654319860041142,-0.628193795681,-0.777442991733551,0.030902024358511,-0.662380516529083,-0.749156355857849,0.00409964565187693,-0.657646536827087,-0.75314873456955,0.0163736324757338,-0.663706600666046,-0.747886598110199,0.0126165626570582,-0.880708754062653,-0.467152118682861,0.0782382115721703,-0.0778347477316856,0.0723666995763779,0.994336366653442,-0.229727730154991,-0.0658315569162369,0.971025943756104,-0.95940488576889,0.230757206678391,0.162153020501137,-0.516337215900421,0.563610196113586,0.644778549671173,-0.98446524143219,0.150018811225891,-0.091229073703289,-0.183260098099709,-0.124502472579479,0.975148737430573,-0.0639174580574036,0.00258881459012628,0.997951924800873,-0.859668672084808,-0.505868673324585,0.0711819157004356,-0.980901598930359,0.165607571601868,-0.102010682225227,-0.99356746673584,0.108340628445148,-0.0329573266208172,-0.658562004566193,-0.744802296161652,-0.107543490827084,-0.646952569484711,-0.731672585010529,-0.214726820588112,-0.980202436447144,0.125250175595284,-0.153347954154015,-0.712557196617126,-0.666887819766998,-0.217997416853905,-0.678062736988068,-0.734800040721893,0.0173193719238043,-0.606289029121399,-0.79524302482605,0.00147244741674513,-0.662403285503387,-0.749146580696106,0.00115098105743527,-0.812158167362213,-0.582601487636566,-0.0312197003513575,-0.71183979511261,-0.671420097351074,-0.206104695796967,-0.988402307033539,0.117429606616497,-0.0962866619229317,-0.990816473960876,-0.0391218289732933,-0.129430457949638,-0.981985211372375,0.0758182555437088,0.173080399632454,-0.94221168756485,0.14513473212719,0.301948726177216,-0.606257677078247,-0.795262038707733,-0.00315817352384329,-0.680695176124573,-0.732542872428894,0.0059239761903882,-0.61135733127594,-0.79107129573822,-0.0211772583425045,-0.998846411705017,0.00926825869828463,0.047116607427597,-0.990905463695526,-0.0344293862581253,-0.130080744624138,-0.940289855003357,0.133686900138855,0.313022077083588,-0.855579853057861,-0.0925441160798073,0.50933164358139,
- -0.774239242076874,-0.238640934228897,0.586177527904511,-0.996015191078186,-0.0753886848688126,0.0476494170725346,0.307924687862396,-0.951187610626221,-0.0206034071743488,-0.601618230342865,-0.790615260601044,-0.113943085074425,-0.45489627122879,-0.793218374252319,0.404813498258591,-0.824589967727661,-0.563929259777069,0.0451125428080559,-0.601625144481659,-0.78739982843399,0.13434562087059,0.318879395723343,-0.946643829345703,0.0467055961489677,-0.681020259857178,-0.732250869274139,0.00448694359511137,-0.666399896144867,-0.745566248893738,-0.00649362755939364,-0.611654222011566,-0.790804624557495,-0.022525530308485,-0.45436492562294,-0.793010115623474,0.405817002058029,0.406151860952377,-0.898543953895569,0.16631118953228,0.308752328157425,-0.951011002063751,-0.0158136840909719,-0.622723579406738,-0.782430529594421,0.00421947799623013,-0.677905023097992,-0.734929442405701,0.01798908226192,-0.625135958194733,-0.780230820178986,0.0210928991436958,-0.668271720409393,-0.541177809238434,-0.510430693626404,-0.335855007171631,0.62958562374115,-0.700587868690491,-0.672564089298248,-0.172456130385399,-0.719664096832275,-0.947417795658112,0.271711707115173,-0.169033482670784,-0.674974799156189,-0.17539769411087,-0.716690063476563,-0.323198139667511,0.552952229976654,-0.767975747585297,-0.883384108543396,-0.464007496833801,0.0658010393381119,-0.823457658290863,-0.56702983379364,0.0198654644191265,-0.814237952232361,-0.580290138721466,0.0167320016771555,-0.819983005523682,-0.571770370006561,-0.0265843477100134,-0.896020829677582,-0.444011807441711,0.000468826619908214,-0.908898890018463,-0.41557177901268,-0.0346862971782684,-0.815081834793091,-0.579206347465515,0.0127213839441538,-0.836554884910584,-0.543508231639862,0.0690998062491417,-0.884390413761139,-0.462703049182892,0.061314795166254,-0.815254926681519,-0.574055194854736,0.0762891173362732,-0.81885027885437,-0.573974430561066,-0.00612625339999795,-0.803463518619537,-0.593691885471344,-0.0444557145237923,-0.940421760082245,-0.339971959590912,0.00511572789400816,-0.909564793109894,-0.415540307760239,0.00426063360646367,
- -0.900621056556702,-0.433466732501984,-0.0314413495361805,-0.937401175498962,-0.347376227378845,0.024677412584424,-0.940341353416443,-0.340182691812515,0.00581617699936032,-0.900495707988739,-0.433796346187592,-0.0304666385054588,-0.909563422203064,-0.415562093257904,0.00166303000878543,-0.939522206783295,-0.342251777648926,0.0127254612743855,-0.940483033657074,-0.33983838558197,0.00131902878638357,-0.942268311977386,-0.334627449512482,-0.0124479550868273,-0.937831461429596,-0.346761256456375,0.0151250567287207,-0.940376341342926,-0.339799821376801,0.0151144247502089,-0.273007273674011,-0.925191402435303,0.263605624437332,-0.848389506340027,-0.313690304756165,0.426419585943222,-0.632548809051514,-0.444486856460571,0.634281933307648,-0.935926675796509,-0.350008875131607,0.0391799919307232,-0.233838126063347,-0.943310678005219,-0.235551819205284,-0.282801598310471,-0.958383440971375,-0.0390438586473465,-0.891310095787048,-0.452615767717361,0.0265613161027431,-0.237170338630676,-0.936480104923248,-0.258370339870453,-0.938065648078918,-0.345618784427643,0.0240987464785576,-0.940046608448029,-0.34094375371933,0.00835071038454771,-0.939888775348663,-0.340691447257996,0.0232093054801226,-0.938586473464966,-0.345041155815125,0.00144154264125973,-0.267305046319962,-0.502015709877014,-0.822513520717621,-0.906626343727112,-0.421498447656631,0.0191759839653969,-0.525117754936218,-0.423329144716263,-0.738270819187164,-0.903885185718536,-0.427281707525253,0.0205409191548824,-0.541983604431152,-0.429339975118637,-0.722440958023071,-0.524110555648804,-0.426270365715027,-0.737293481826782,-0.891865015029907,-0.451536148786545,0.0263033658266068,-0.816692709922791,-0.575545907020569,-0.0419512204825878,-0.528703510761261,-0.457985043525696,-0.714648365974426,-0.526400446891785,0.437482327222824,-0.729048550128937,-0.654246866703033,0.405561506748199,-0.638342320919037,-0.812655508518219,0.582732558250427,0.00374568230472505,-0.769696891307831,0.636178016662598,0.0533311627805233,-0.762359499931335,0.645011246204376,0.0526185259222984,
- -0.964587330818176,-0.250949561595917,0.081213466823101,-0.757885217666626,0.639348328113556,-0.129783362150192,-0.385587900876999,0.922270059585571,0.0272014755755663,-0.626745164394379,-0.184941574931145,-0.756959140300751,-0.695849895477295,-0.205332815647125,0.688208818435669,-0.719281792640686,-0.187130212783813,0.669041097164154,-0.684349536895752,0.583036422729492,0.437874883413315,-0.966010928153992,-0.25639733672142,-0.0329135395586491,-0.954022288322449,-0.299610316753387,0.0086689805611968,-0.959078788757324,-0.283006817102432,0.00866373535245657,-0.958585798740387,-0.282861351966858,-0.0332102701067925,-0.945846021175385,-0.322885096073151,-0.0334743224084377,-0.967249393463135,-0.251642137765884,-0.0332389175891876,-0.946184396743774,-0.323384284973145,0.0125583354383707,-0.95903480052948,-0.282993853092194,0.0129138100892305,-0.953978538513184,-0.299596548080444,0.0129167502745986,-0.967380106449127,-0.251676142215729,0.0288943331688643,-0.945836424827576,-0.323397576808929,0.0284165143966675,-0.93754369020462,-0.346654832363129,0.0290217455476522,-0.967799186706543,-0.249592185020447,-0.0326878614723682,-0.967104732990265,-0.252396553754807,0.0316934213042259,-0.953878819942474,-0.299565255641937,0.0193921104073524,-0.894536972045898,-0.30833026766777,0.323629587888718,-0.902597427368164,-0.283460259437561,0.323987871408463,-0.752197563648224,-0.658750057220459,-0.0157211776822805,-0.967294037342072,-0.252929121255875,-0.0192130468785763,-0.967714071273804,-0.250019311904907,0.0319348089396954,-0.968631684780121,-0.246356308460236,-0.032580129802227,-0.890578150749207,-0.409586220979691,0.197761669754982,-0.920692205429077,-0.340424031019211,0.190885722637177,-0.928500890731812,-0.318824142217636,0.190360799431801,-0.949711084365845,-0.312888920307159,-0.0122314989566803,-0.948321521282196,-0.316319227218628,0.0250693596899509,-0.950066030025482,-0.311990201473236,-0.00605515344068408,-0.952672898769379,-0.303774654865265,-0.011634049937129,-0.946138203144073,-0.323089927434921,-0.0208707749843597,-0.9511598944664,-0.307603120803833,0.0259879771620035,
- -0.937808096408844,-0.319282054901123,-0.136289909482002,-0.999768376350403,0.0195041336119175,0.00910080317407846,-0.896572351455688,-0.426231920719147,-0.120351977646351,-0.939266085624695,-0.343188583850861,0.00101871020160615,-0.940583050251007,-0.338797897100449,0.0227939430624247,-0.940523207187653,-0.339441865682602,-0.013976470567286,-0.937676429748535,-0.346703916788101,-0.0236538536846638,-0.904583990573883,-0.425722151994705,-0.0221018921583891,-0.886195838451386,-0.462704002857208,-0.0237051472067833,-0.9204221367836,-0.390540599822998,-0.0173535645008087,-0.921141803264618,-0.387773424386978,0.0336087495088577,-0.91951721906662,-0.392388880252838,0.0227818209677935,-0.81095677614212,-0.584878146648407,0.0163312647491694,-0.817780435085297,-0.570561647415161,0.0754625648260117,-0.806048274040222,-0.590116918087006,-0.0452569201588631,-0.887839913368225,-0.459628105163574,-0.0219620876014233,-0.922333717346191,-0.386382222175598,-0.003091209102422,-0.905138850212097,-0.425111353397369,-0.00206056027673185,-0.922450423240662,-0.385755240917206,0.0166774690151215,-0.915399670600891,-0.402138262987137,-0.0181236732751131,-0.914394676685333,-0.404202044010162,0.0224344450980425,-0.886295676231384,-0.462756156921387,-0.0183491427451372,-0.904692351818085,-0.42563983798027,-0.019038762897253,-0.921938955783844,-0.386804312467575,-0.020273931324482,-0.651810586452484,-0.420326560735703,0.631243646144867,-0.737950384616852,-0.385301470756531,0.55405056476593,-0.789184868335724,-0.312436938285828,0.528744161128998,-0.699339210987091,-0.450976073741913,0.554567635059357,-0.853896737098694,-0.344271779060364,0.390304088592529,-0.681371092796326,0.731194972991943,0.0329753868281841,-0.886412620544434,-0.462817192077637,-0.00855245348066092,-0.840381920337677,-0.54192852973938,-0.00846570916473866,-0.726548671722412,-0.687062323093414,-0.00850868690758944,-0.81620842218399,-0.577518701553345,0.0166125688701868,-0.811290860176086,-0.582758963108063,-0.0468948110938072,-0.816842079162598,-0.576632082462311,-0.0162702240049839,
- -0.815915465354919,-0.577940821647644,-0.0163290444761515,-0.840380311012268,-0.541927456855774,-0.0086948350071907,-0.815296471118927,-0.57880699634552,0.0165635570883751,-0.726481854915619,-0.686999082565308,-0.0160148981958628,-0.840304315090179,-0.541878461837769,-0.0160105414688587,-0.722409427165985,-0.691314518451691,-0.0144518977031112,-0.840391337871552,-0.541934549808502,-0.00703862868249416,-0.784337818622589,-0.620065987110138,-0.0182361584156752,-0.722570359706879,-0.691275060176849,-0.00555726094171405,-0.623132109642029,-0.781770527362823,-0.0232640374451876,-0.726351141929626,-0.686875462532043,-0.0248237606137991,-0.722118079662323,-0.691284716129303,-0.0259018335491419,-0.657658696174622,-0.752918720245361,-0.0244640521705151,-0.623539566993713,-0.781739890575409,-0.00901162065565586,-0.722469091415405,-0.691307544708252,-0.0115069290623069,-0.726557970046997,-0.687071025371552,-0.00684720510616899,-0.623620629310608,-0.78170782327652,-0.00549340667203069,-0.619884252548218,-0.784663617610931,-0.00683625927194953,-0.619879543781281,-0.784657597541809,-0.00786344148218632,-0.623528182506561,-0.78174352645874,-0.0094818752259016,-0.583455622196198,-0.812107086181641,-0.00784886628389359,-0.660241603851318,-0.751037001609802,-0.00495034037157893,-0.660135567188263,-0.750556588172913,0.0297635532915592,-0.66202187538147,-0.749091148376465,-0.0242790058255196,-0.6236412525177,-0.781697511672974,-0.00454090675339103,-0.666890799999237,-0.744766592979431,-0.0240704100579023,-0.664803087711334,-0.746411144733429,0.0301228556782007,-0.622603595256805,-0.782074809074402,0.0269029848277569,-0.624686241149902,-0.780866861343384,0.0037492155097425,-0.627084314823151,-0.7786785364151,0.0206168107688427,-0.521093606948853,-0.852310001850128,0.0450454354286194,-0.511707425117493,-0.858602643013,0.0309358071535826,-0.511662065982819,-0.858983218669891,0.0187033861875534,-0.59165221452713,-0.805734634399414,-0.0271912347525358,-0.622961044311523,-0.781744003295898,-0.0282113626599312,-0.540817618370056,-0.840882062911987,0.0208250172436237,
- -0.591080844402313,-0.805536031723022,-0.041654858738184,-0.506498217582703,-0.862046301364899,0.0183298662304878,-0.507218599319458,-0.861268877983093,0.030744731426239,-0.583404242992401,-0.81203556060791,-0.0154259130358696,-0.623296439647675,-0.781777739524841,-0.0180307552218437,-0.591979265213013,-0.805773258209229,-0.0170362144708633,-0.90409791469574,-0.384400904178619,0.186662510037422,-0.584278702735901,-0.7866370677948,0.199551314115524,-0.997059762477875,-0.0600693896412849,0.0475781708955765,-0.899958610534668,-0.374805420637131,0.222700223326683,-0.567146778106689,-0.789407014846802,0.234907060861588,-0.577535688877106,-0.77521139383316,0.25592976808548,-0.583349704742432,-0.811959743499756,0.0206085052341223,-0.905517935752869,-0.424303650856018,0.00192245491780341,-0.876227498054504,-0.481530427932739,0.0188095141202211,-0.0313863456249237,-0.996515572071075,-0.0772760435938835,0.419538378715515,-0.905140161514282,-0.0686212331056595,0.401651501655579,-0.913560271263123,-0.063905730843544,0.351190537214279,-0.716530203819275,-0.602702081203461,-0.024901932105422,-0.79063606262207,-0.611779749393463,-0.0115863848477602,-0.787380635738373,-0.616358280181885,0.566965579986572,-0.686829388141632,0.454769670963287,0.348946303129196,-0.794640004634857,0.496773362159729,-0.0503120832145214,-0.804821491241455,0.591380834579468,-0.031476765871048,-0.999387323856354,-0.0153099624440074,-0.0622321963310242,-0.997933506965637,-0.015995929017663,-0.0388595871627331,-0.999130249023438,-0.0151209160685539,-0.157955303788185,-0.987220644950867,-0.021106731146574,-0.0620546638965607,-0.997864365577698,-0.0203945767134428,-0.0314734689891338,-0.999282658100128,-0.0210624895989895,-0.0484863668680191,-0.582375049591064,0.811472952365875,0.342804253101349,-0.939269125461578,0.0160870030522347,0.253340423107147,-0.801184713840485,0.542145431041718,-0.0692367777228355,-0.978865206241608,0.192429780960083,-0.155163943767548,-0.969774723052979,0.18831142783165,-0.195564433932304,-0.962473809719086,0.188145518302917,-0.244287401437759,-0.969269394874573,0.0289915017783642,
- -0.197778642177582,-0.979805171489716,0.0294217504560947,-0.15792353451252,-0.987022161483765,0.0291101392358541,-0.0292239300906658,-0.999336004257202,-0.0217654891312122,-0.0392749197781086,-0.999226331710815,-0.00205419003032148,-0.0627469271421433,-0.998024761676788,-0.00306773488409817,-0.0394934192299843,-0.99920779466629,0.00490639312192798,-0.0333367846906185,-0.999212920665741,-0.0215035062283278,-0.030575018376112,-0.998998463153839,0.032668262720108,-0.195187598466873,-0.97304379940033,-0.122831553220749,-0.445590823888779,-0.895209968090057,0.00692204339429736,-0.0579729527235031,-0.991754055023193,-0.114293850958347,0.0666921734809875,-0.99576735496521,0.0632418245077133,-0.0277591552585363,-0.824041068553925,0.565849781036377,-0.05252880230546,-0.998057246208191,0.033502921462059,-0.0457982234656811,-0.998229205608368,0.0379598774015903,-0.0351520478725433,-0.998842239379883,0.032843541353941,-0.0376961342990398,-0.999063909053802,-0.0212253797799349,-0.697705268859863,-0.581370234489441,0.418588310480118,-0.686246037483215,-0.717361032962799,-0.12024775147438,-0.69056648015976,-0.624792575836182,0.364351719617844,-0.805231988430023,-0.485862046480179,0.33991140127182,-0.714689373970032,-0.607219398021698,0.347136437892914,-0.67382287979126,-0.729594886302948,-0.116850569844246,-0.822337925434113,-0.546257674694061,-0.159257382154465,-0.207932308316231,-0.948614716529846,-0.23852527141571,-0.882684230804443,-0.463506937026978,0.0776519700884819,-0.208596453070641,-0.947833359241486,-0.241038247942925,-0.902034640312195,-0.424256503582001,0.0796250626444817,-0.881681263446808,-0.464386373758316,0.0835667699575424,-0.879795253276825,-0.415134936571121,0.231567516922951,-0.155274868011475,-0.986590087413788,-0.0502963401377201,-0.134744673967361,-0.893569529056549,0.428226143121719,-0.102934703230858,-0.994636237621307,-0.0101592522114515,-0.149104416370392,-0.988797724246979,-0.00686479825526476,-0.139807477593422,-0.990177571773529,0.00151674752123654,-0.103104092180729,-0.994613528251648,-0.010661669075489,
- -0.139909014105797,-0.990163683891296,0.00118103332351893,-0.123909741640091,-0.992091417312622,0.0200248025357723,-0.149104326963425,-0.988797128200531,0.00693738367408514,-0.0985535010695457,-0.99512779712677,0.00280764955095947,-0.30676531791687,-0.951758921146393,0.00707451300695539,-0.117986120283604,-0.992784738540649,0.0213959403336048,-0.117870181798935,-0.992732465267181,0.0242712926119566,-0.103079967200756,-0.994616687297821,-0.0105901416391134,-0.12185225635767,-0.992336511611938,0.0205012559890747,-0.119535483419895,-0.992702305316925,-0.0159198716282845,-0.122056476771832,-0.99224728345871,0.0234038028866053,-0.305870831012726,-0.948983609676361,0.0766377225518227,-0.0603059381246567,-0.991678416728973,0.113742277026176,-0.335007011890411,-0.911289691925049,0.239418923854828,0.129898279905319,-0.988759756088257,0.0740323811769485,-0.328979879617691,-0.909855127334595,0.252855390310287,-0.0580043569207191,-0.991042494773865,0.120292536914349,-0.306765615940094,-0.951760053634644,-0.00690361391752958,-0.378890335559845,-0.925386369228363,-0.0101083815097809,-0.346792727708817,-0.93791663646698,-0.00688458327203989,-0.37645012140274,-0.926433920860291,-0.00235218112356961,-0.306747317314148,-0.951703250408173,0.0129229687154293,-0.422129660844803,-0.906414389610291,0.0148169090971351,-0.421336948871613,-0.906741261482239,0.017195662483573,-0.390961825847626,-0.919887721538544,-0.0309100579470396,-0.375795274972916,-0.926702678203583,-0.000284391164314002,-0.359332650899887,-0.932895481586456,-0.0242128893733025,-0.41628098487854,-0.908666610717773,0.0321778394281864,-0.358438432216644,-0.933159589767456,-0.0271129328757524,-0.966558158397675,-0.185897827148438,-0.17665608227253,-0.761802196502686,-0.1291473954916,-0.634805917739868,-0.458644449710846,-0.415786892175674,-0.785344839096069,-0.744498491287231,0.0305083934217691,-0.666926681995392,-0.741255402565002,-0.17472742497921,-0.648082375526428,-0.961994886398315,-0.209932237863541,-0.174626290798187,-0.175540387630463,-0.984396696090698,-0.012195804156363,
- -0.17130620777607,-0.984851896762848,0.0268503166735172,-0.180504158139229,-0.983510494232178,0.0111972484737635,-0.178333669900894,-0.983896791934967,-0.0120080402120948,-0.197482913732529,-0.980169773101807,-0.0163628868758678,-0.173948407173157,-0.984380722045898,0.0271401554346085,-0.362343609333038,-0.932012379169464,-0.00775054283440113,-0.356292694807053,-0.934077024459839,-0.0235724989324808,-0.355462521314621,-0.934316039085388,-0.026456993073225,-0.169391483068466,-0.985408902168274,-0.0166084188967943,-0.170415759086609,-0.985282361507416,0.0133169339969754,-0.16611485183239,-0.985756158828735,0.0262806713581085,-0.190599709749222,-0.933187127113342,0.304685920476913,-0.197751358151436,-0.931363463401794,0.305706650018692,0.224033206701279,-0.974430441856384,-0.0171590633690357,-0.17165145277977,-0.985019385814667,-0.0165102425962687,-0.167648494243622,-0.985491991043091,0.0264489836990833,-0.205153077840805,-0.978702783584595,-0.00728895096108317,-0.197721436619759,-0.980169057846069,0.0132304290309548,-0.12631544470787,-0.991872847080231,0.0152596207335591,-0.205298766493797,-0.978610754013062,0.0131678385660052,-0.20510470867157,-0.978663265705109,-0.0122584784403443,-0.1257304251194,-0.992013454437256,-0.0100610349327326,-0.22690749168396,-0.973814785480499,-0.0140701327472925,-0.125350579619408,-0.991800606250763,-0.0248792842030525,-0.197358831763268,-0.979967713356018,-0.0266979485750198,-0.244302317500114,-0.96932852268219,-0.0268067009747028,0.486674427986145,-0.772950768470764,0.407056957483292,-0.127745375037193,-0.986135601997375,0.105913706123829,-0.243668466806412,-0.96681421995163,0.0767849683761597,-0.329976975917816,-0.942790925502777,-0.0475439690053463,-0.123805403709412,-0.989341259002686,-0.0766558200120926,0.532779633998871,-0.846179723739624,-0.011214230209589,-0.120334036648273,-0.978756010532379,-0.166001111268997,-0.324638187885284,-0.927537620067596,-0.185159578919411,-0.328075170516968,-0.903291165828705,-0.276462912559509,0.615267276763916,-0.787154912948608,-0.0428173281252384,
- -0.120334036648273,-0.978756010532379,-0.166001111268997,-0.328075170516968,-0.903291165828705,-0.276462912559509,-0.456395447254181,-0.889184176921844,0.0324797406792641,-0.357937902212143,-0.933070242404938,0.0355017967522144,-0.330175369977951,-0.943358302116394,0.0325482822954655,-0.971581876277924,0.23234386742115,-0.0452211685478687,-0.454014271497726,-0.88454657793045,-0.106997318565845,-0.985684871673584,0.165595054626465,-0.031683012843132,-0.411423772573471,-0.911231756210327,-0.0196774806827307,-0.410545021295547,-0.911824464797974,-0.00537597248330712,-0.358259201049805,-0.932582318782806,0.0440546236932278,-0.401846289634705,-0.915104150772095,-0.0332294888794422,-0.411873757839203,-0.911225438117981,-0.00530950771644711,-0.412609130144119,-0.910697042942047,-0.0196097623556852,-0.778737425804138,0.0487452261149883,-0.625453412532806,-0.974612534046173,0.114164479076862,-0.192605525255203,-0.99665492773056,0.0701079964637756,0.0419985838234425,-0.357727855443954,-0.933335781097412,0.0302540641278028,-0.456466645002365,-0.889322936534882,0.0272609833627939,-0.44200798869133,-0.896658718585968,0.0251454878598452,-0.393588036298752,-0.766819000244141,-0.507027685642242,-0.952494978904724,0.180966928601265,-0.244957745075226,-0.377259761095047,-0.821451723575592,-0.427658885717392,-0.357789903879166,-0.933261215686798,0.0317793004214764,-0.442066490650177,-0.89658522605896,0.0266867205500603,-0.404949456453323,-0.914119422435761,-0.0200460627675056,-0.952205181121826,0.180563002824783,-0.246378377079964,-0.99460780620575,0.0944300219416618,0.0428755171597004,-0.367278873920441,-0.805753231048584,-0.464615941047668,-0.679121911525726,0.718152046203613,-0.151825711131096,-0.682785451412201,0.715501427650452,-0.147857591509819,-0.828084886074066,-0.513719320297241,-0.224427908658981,-0.846877753734589,-0.525377810001373,0.0823178887367249,-0.690677165985107,0.721517503261566,0.0487597770988941,-0.842660129070282,-0.372409760951996,-0.388889253139496,-0.849661469459534,-0.527104794979095,-0.0153592117130756,-0.844989359378815,-0.534667074680328,0.0111396536231041,
- -0.726488769054413,-0.687005639076233,-0.0154047105461359,-0.879777193069458,0.4544697701931,-0.139461576938629,-0.84193217754364,-0.370648205280304,-0.392135292291641,-0.69011527299881,0.720741331577301,0.0653669312596321,-0.993938744068146,-0.0877908021211624,-0.066170908510685,-0.558531582355499,0.577149391174316,0.595769286155701,-0.540717899799347,0.568806111812592,0.619744896888733,-0.725992918014526,-0.68653666973114,-0.0400210358202457,-0.845952451229095,-0.533224105834961,0.00604640645906329,-0.86326801776886,-0.504230856895447,0.0227945726364851,-0.865356624126434,-0.501002252101898,0.0124361356720328,-0.847486317157745,-0.53081202507019,-0.00234868004918098,-0.817206025123596,-0.575919389724731,0.022163262590766,-0.726216793060303,-0.686748445034027,0.0313994139432907,-0.791801691055298,-0.558842480182648,0.246465384960175,-0.928281366825104,-0.369739174842834,0.0398353189229965,-0.843950033187866,-0.536342024803162,0.00925181247293949,-0.928979694843292,-0.370017349720001,0.00916209723800421,-0.871931850910187,-0.489017069339752,-0.0244369115680456,-0.843980669975281,-0.536361455917358,0.00360705587081611,-0.872497498989105,-0.487815171480179,-0.0280089192092419,-0.861756265163422,-0.506314933300018,-0.0319612771272659,-0.861379146575928,-0.507116079330444,-0.0293137971311808,-0.872000753879547,-0.488872438669205,-0.0248678773641586,-0.898690283298492,-0.435040503740311,-0.0556379705667496,-0.868038713932037,-0.496493816375732,-0.00171412981580943,-0.864328801631927,-0.502874493598938,0.00729062268510461,-0.859446048736572,-0.50949901342392,-0.0419936403632164,-0.998055338859558,-0.0407728925347328,0.04715221747756,-0.990905821323395,-0.119912624359131,-0.0610457547008991,-0.559740602970123,0.591706275939941,0.580150067806244,-0.387621730566025,0.389343827962875,0.835560142993927,-0.517237722873688,-0.220774903893471,0.826875805854797,-0.966693103313446,-0.251830607652664,0.0456705316901207,-0.816661179065704,-0.576833069324493,-0.0181209817528725,-0.81315803527832,-0.580773770809174,0.0384169146418571,
- -0.303775310516357,-0.795192420482636,0.524775922298431,-0.869411468505859,-0.493903458118439,-0.013531506061554,-0.863949060440063,-0.501699507236481,-0.0434699431061745,-0.868769109249115,-0.495183795690537,0.00576641038060188,-0.777074158191681,-0.628523886203766,0.0333696976304054,-0.771869480609894,-0.634734392166138,0.0364662744104862,-0.77353447675705,-0.633346557617188,-0.0227272193878889,-0.785566747188568,-0.618395805358887,-0.0217136777937412,-0.784217178821564,-0.619379341602325,0.0370496325194836,-0.798482835292816,-0.600090086460114,-0.0481363497674465,-0.89457893371582,-0.443621635437012,-0.0541148744523525,-0.901426732540131,-0.432823926210403,-0.00966074131429195,-0.900784909725189,-0.430704176425934,-0.055502150207758,-0.554649710655212,-0.692289471626282,-0.461626440286636,-0.289701998233795,-0.955906331539154,-0.0481255128979683,-0.480412423610687,-0.786713063716888,-0.387667953968048,-0.902583658695221,-0.430409461259842,-0.0095094395801425,-0.98213529586792,0.051684495061636,-0.180939108133316,-0.901968836784363,-0.42823451757431,-0.0553838722407818,-0.893700778484344,-0.447793573141098,0.0279260724782944,-0.981693863868713,0.0506949536502361,-0.183595657348633,-0.907668650150299,-0.419594615697861,-0.0088332686573267,-0.513379752635956,0.567737698554993,-0.643517792224884,-0.517501533031464,0.54110199213028,-0.662873148918152,-0.989658951759338,-0.106402337551117,-0.0961963534355164,-0.990936815738678,-0.11963327229023,0.0610906966030598,-0.99459433555603,-0.0225196368992329,-0.101365722715855,-0.560187101364136,0.592246353626251,-0.579167187213898,-0.558391332626343,0.576999604701996,-0.596045792102814,-0.993933320045471,-0.0878603756427765,0.0661598965525627,-0.54058313369751,0.568644523620605,-0.620010733604431,-0.828085541725159,-0.51371967792511,0.224424585700035,-0.682785630226135,0.715501546859741,0.147855862975121,-0.679122090339661,0.718152225017548,0.151824027299881,-0.690674781799316,0.721514046192169,-0.0488452278077602,-0.846868991851807,-0.525372385978699,-0.0824441909790039,-0.842707395553589,-0.372524857521057,0.38867661356926,
- -0.87984573841095,0.454341381788254,0.139447554945946,-0.690112292766571,0.720737397670746,-0.065442182123661,-0.841978490352631,-0.3707594871521,0.39193069934845,-0.726488769054413,-0.687005639076233,0.0154047105461359,-0.844989359378815,-0.534667074680328,-0.0111396536231041,-0.849661469459534,-0.527104794979095,0.0153592117130756,-0.845950961112976,-0.533226311206818,-0.00605431897565722,-0.725993096828461,-0.686536848545074,0.04001484811306,-0.863266468048096,-0.504233360290527,-0.0228025931864977,-0.817201316356659,-0.575926005840302,-0.0221646465361118,-0.84748500585556,-0.530814230442047,0.00234119547531009,-0.865355134010315,-0.501004636287689,-0.0124436998739839,-0.928281366825104,-0.369739145040512,-0.039835624396801,-0.791801631450653,-0.558842599391937,-0.246465757489204,-0.726216793060303,-0.686748385429382,-0.0313996523618698,-0.843949913978577,-0.536341905593872,-0.00926841422915459,-0.871929526329041,-0.489021927118301,0.0244223903864622,-0.928979635238647,-0.370017319917679,-0.00917853973805904,-0.872497975826263,-0.487814366817474,0.0280114039778709,-0.843980669975281,-0.536361455917358,-0.00360886566340923,-0.861756503582001,-0.506314277648926,0.0319633968174458,-0.872001230716705,-0.488871395587921,0.0248709246516228,-0.861379623413086,-0.507115304470062,0.029316533356905,-0.898695170879364,-0.435030400753021,0.055639773607254,-0.859445035457611,-0.509500563144684,0.0419933348894119,-0.864327907562256,-0.502876043319702,-0.00729092909023166,-0.868039965629578,-0.496491372585297,0.00172156561166048,-0.868768274784088,-0.495185226202011,-0.00576669164001942,-0.863948285579681,-0.501701056957245,0.0434696674346924,-0.869409501552582,-0.493906915187836,0.0135317286476493,-0.777023315429688,-0.628585994243622,-0.0333832092583179,-0.77480137348175,-0.631799876689911,0.0226220209151506,-0.770539164543152,-0.635860025882721,-0.0441745258867741,-0.90142697095871,-0.432823359966278,0.00966070499271154,-0.894578576087952,-0.443622350692749,0.0541147477924824,-0.900785148143768,-0.430703669786453,0.0555021278560162,
- -0.821892738342285,-0.561529755592346,0.0957950428128242,-0.788083732128143,-0.613754987716675,-0.0472127459943295,-0.794129431247711,-0.607386708259583,0.0209720283746719,-0.902584254741669,-0.430408507585526,0.00950937811285257,-0.901969313621521,-0.428233593702316,0.0553838275372982,-0.98213654756546,0.0516871027648449,0.180932134389877,-0.981414616107941,0.0500780269503593,0.185250535607338,-0.888106346130371,-0.4580397605896,-0.0382980704307556,-0.904967665672302,-0.425381243228912,0.0091947503387928,-0.634945750236511,-0.768206238746643,0.0818723514676094,-0.983003914356232,0.183414563536644,0.00790083315223455,-0.980833649635315,0.181049510836601,0.0720167756080627,-0.972765624523163,0.197145268321037,0.121905736625195,-0.62620085477829,-0.757625818252563,0.18405319750309,-0.697496116161346,-0.685200333595276,0.209761083126068,-0.606287717819214,-0.795244574546814,-0.00122206367086619,-0.661122620105743,-0.750113368034363,-0.0157110244035721,-0.637084305286407,-0.770793437957764,-0.00103269447572529,-0.820253551006317,-0.570994675159454,0.0338992029428482,-0.978043258190155,0.192393139004707,0.0801029279828072,-0.696761310100555,-0.688698530197144,0.20054467022419,-0.966131091117859,0.150459468364716,-0.209649458527565,-0.991010129451752,-0.0259163733571768,0.131252750754356,-0.941046953201294,0.141392409801483,-0.307309061288834,-0.664536356925964,-0.747254550457001,-0.001442298758775,-0.606250822544098,-0.795263588428497,0.00396614754572511,-0.610961556434631,-0.791422843933105,0.019388260319829,-0.991022408008575,-0.0241893380880356,0.131489291787148,-0.9986891746521,0.0202179811894894,-0.0470229610800743,-0.940427005290985,0.137868717312813,-0.310788184404373,-0.569094240665436,-0.40705680847168,-0.714448392391205,-0.774068593978882,-0.631737351417542,-0.0415444411337376,-0.484555274248123,-0.623034119606018,-0.614031493663788,-0.601617097854614,-0.790613889694214,0.113958686590195,0.30793097615242,-0.95118647813797,0.0205674078315496,-0.454816192388535,-0.793187081813812,-0.404964864253998,-0.824600577354431,-0.563888907432556,-0.0454226434230804,
- 0.318589627742767,-0.946833491325378,-0.0448018759489059,-0.601703345775604,-0.787515819072723,-0.133311405777931,-0.664931118488312,-0.746904671192169,0.000248883297899738,-0.6112921833992,-0.791129469871521,0.0208821538835764,-0.660929262638092,-0.750430762767792,0.00512211211025715,0.30875501036644,-0.951010406017303,0.0157980974763632,0.406248539686203,-0.898498833179474,-0.16631968319416,-0.454319506883621,-0.792992293834686,-0.405902743339539,-0.662341833114624,-0.7491255402565,-0.0106858378276229,-0.622069120407104,-0.782950222492218,-0.00437608128413558,-0.624486804008484,-0.780746340751648,-0.0212512891739607,-0.668357670307159,-0.541214108467102,0.510279834270477,-0.672634303569794,-0.172541558742523,0.71957802772522,-0.335858523845673,0.629609227180481,0.700564980506897,-0.67507928609848,-0.175525486469269,0.716560363769531,-0.947471022605896,0.271534830331802,0.169019922614098,-0.323187559843063,0.55289351940155,0.768022656440735,-0.511667549610138,-0.858626484870911,-0.0309341102838516,-0.521060585975647,-0.852329969406128,-0.045052632689476,-0.511621594429016,-0.859007358551025,-0.0187004581093788,-0.62438178062439,-0.781109988689423,-0.00382223562337458,-0.622215628623962,-0.782384514808655,-0.0268736686557531,-0.626781284809113,-0.778920471668243,-0.0206909347325563,-0.50136661529541,-0.864697396755219,-0.0304952561855316,-0.500682294368744,-0.865445852279663,-0.0179099719971418,-0.571732938289642,-0.819287359714508,0.0434703789651394,-0.823458135128021,-0.567029118537903,-0.0198717955499887,-0.883382022380829,-0.464010000228882,-0.0658098235726357,-0.814236104488373,-0.580292463302612,-0.016740694642067,-0.896012365818024,-0.444028854370117,-0.000521655660122633,-0.81998997926712,-0.571763813495636,0.0265103355050087,-0.908901274204254,-0.415572255849838,0.0346143580973148,-0.576357781887054,-0.815708577632904,-0.0493100173771381,-0.58335268497467,-0.811963796615601,-0.0203588418662548,-0.87623131275177,-0.481532514095306,-0.0185787193477154,-0.909564793109894,-0.415540397167206,-0.00425183353945613,
- -0.940421879291534,-0.339971393346787,-0.00511391367763281,-0.900621175765991,-0.433466374874115,0.031442403793335,-0.939393579959869,-0.342564165592194,-0.013773893006146,-0.909563004970551,-0.415563315153122,-0.00150044087786227,-0.940483093261719,-0.339838415384293,-0.00118822744116187,-0.937829434871674,-0.346760481595993,-0.0152748469263315,-0.942432522773743,-0.334095895290375,0.0141743179410696,-0.940374195575714,-0.339799076318741,-0.0152633851394057,-0.273009330034256,-0.925198376178741,-0.263578981161118,-0.63254451751709,-0.444486737251282,-0.634286224842072,-0.848398089408875,-0.31369349360466,-0.426400125026703,-0.935964584350586,-0.34993577003479,-0.0389264859259129,-0.282802641391754,-0.958387017250061,0.0389489270746708,-0.23388934135437,-0.943211853504181,0.235896646976471,-0.583408117294312,-0.81204092502594,0.0149833904579282,-0.573510050773621,-0.819005250930786,0.0177937112748623,-0.623309552669525,-0.781777381896973,0.0175878815352917,-0.572731137275696,-0.819204032421112,0.0297324396669865,-0.542189300060272,-0.839995801448822,-0.0209253765642643,-0.622895359992981,-0.781729698181152,0.0300014149397612,-0.62352842092514,-0.781743347644806,0.00947123952209949,-0.619879543781281,-0.784657657146454,0.00785279925912619,-0.583455681800842,-0.812107145786285,0.0078382445499301,-0.623620808124542,-0.781707763671875,0.00548407714813948,-0.726558029651642,-0.687071084976196,0.00683785602450371,-0.619884252548218,-0.784663558006287,0.00682692462578416,-0.666888892650604,-0.74476832151413,0.0240704920142889,-0.623641192913055,-0.781697511672974,0.0045421258546412,-0.664801180362701,-0.746412873268127,-0.0301227085292339,-0.660134732723236,-0.75055730342865,-0.0297634918242693,-0.660240232944489,-0.751038312911987,0.00494999159127474,-0.662021040916443,-0.749091923236847,0.0242790430784225,-0.722118020057678,-0.691284716129303,0.0259044412523508,-0.726351022720337,-0.686875402927399,0.0248268134891987,-0.623132050037384,-0.781770527362823,0.0232665091753006,-0.623539566993713,-0.781739830970764,0.00901047792285681,
- -0.657684624195099,-0.752896070480347,0.0244629587978125,-0.722469091415405,-0.691307485103607,0.0115060098469257,-0.840304613113403,-0.541878640651703,0.0159972328692675,-0.726481974124908,-0.686999201774597,0.016001557931304,-0.722409725189209,-0.691314458847046,0.0144386840984225,-0.784332573413849,-0.620072484016418,0.0182364545762539,-0.840391278266907,-0.541934549808502,0.00702741742134094,-0.722570538520813,-0.691275000572205,0.005546182859689,-0.726548731327057,-0.687062323093414,0.00850646011531353,-0.840381979942322,-0.54192852973938,0.00846349261701107,-0.886412560939789,-0.462817162275314,0.00855021458119154,-0.816817581653595,-0.576666533946991,0.0162717700004578,-0.811267375946045,-0.582792222499847,0.046887431293726,-0.816184043884277,-0.57755321264267,-0.0166112575680017,-0.840380311012268,-0.541927456855774,0.0086939288303256,-0.81589150428772,-0.577974557876587,0.0163305625319481,-0.815272390842438,-0.578840792179108,-0.0165622681379318,-0.738098621368408,-0.385378867387772,-0.553799211978912,-0.651999294757843,-0.420448273420334,-0.630967617034912,-0.789309740066528,-0.312496840953827,-0.528522312641144,-0.699667036533356,-0.451187431812286,-0.553981900215149,-0.681481122970581,0.73109233379364,-0.0329772345721722,-0.85401725769043,-0.344333112239838,-0.38998618721962,-0.904691994190216,-0.425640136003494,0.0190488751977682,-0.886295557022095,-0.46275606751442,0.0183589663356543,-0.921938717365265,-0.386804580688477,0.0202840138226748,-0.886195659637451,-0.462703913450241,0.0237186178565025,-0.90458345413208,-0.425722479820251,0.0221153032034636,-0.937676012516022,-0.346703797578812,0.02366728708148,-0.915408313274384,-0.402118414640427,0.0181223545223475,-0.922450423240662,-0.385755121707916,-0.0166807137429714,-0.914403319358826,-0.404182225465775,-0.0224350299686193,-0.922333300113678,-0.386382728815079,0.00311214243993163,-0.887833416461945,-0.459640622138977,0.0219629257917404,-0.905138373374939,-0.425112009048462,0.0020815278403461,-0.806196689605713,-0.589910626411438,0.0453030467033386,-0.817928671836853,-0.570355534553528,-0.0754138380289078,
- -0.811108410358429,-0.584667801856995,-0.0163393542170525,-0.921151101589203,-0.387752056121826,-0.0336039885878563,-0.920431852340698,-0.390517711639404,0.0173520464450121,-0.919526994228363,-0.392366021871567,-0.0227824877947569,-0.818868398666382,-0.573947608470917,0.00622088648378849,-0.81540846824646,-0.573843717575073,-0.0762390494346619,-0.803617000579834,-0.59348052740097,0.044503178447485,-0.836549937725067,-0.543515503406525,-0.069101519882679,-0.815079808235168,-0.579208791255951,-0.0127305639907718,-0.884388446807861,-0.462705820798874,-0.0613240599632263,-0.900495767593384,-0.433796167373657,0.0304671227931976,-0.940341651439667,-0.340182334184647,-0.00581488758325577,-0.937394320964813,-0.347394466400146,-0.0246814172714949,-0.939890801906586,-0.340685665607452,-0.0232080370187759,-0.940046608448029,-0.340943723917007,-0.00835066474974155,-0.938588559627533,-0.345035433769226,-0.00144023378379643,-0.940526008605957,-0.339434385299683,0.0139759788289666,-0.940585434436798,-0.338791280984879,-0.0227924920618534,-0.939268410205841,-0.343181967735291,-0.00101720972452313,-0.23721732199192,-0.936377763748169,0.258697867393494,-0.891669273376465,-0.451917260885239,-0.0263944156467915,-0.938092350959778,-0.345559865236282,-0.0238984096795321,-0.90653532743454,-0.421692371368408,-0.0192216821014881,-0.267305761575699,-0.502026855945587,0.822506308555603,-0.525082588195801,-0.423432230949402,0.738236725330353,-0.541929185390472,-0.429460912942886,0.722409904003143,-0.90379273891449,-0.427475243806839,-0.0205866470932961,-0.524075627326965,-0.426372021436691,0.737259566783905,-0.816675841808319,-0.575569868087769,0.0419517643749714,-0.891878187656403,-0.451510518789291,-0.0262972451746464,-0.52871835231781,-0.457953959703445,0.714657306671143,-0.5263312458992,0.437422931194305,0.729134142398834,-0.812620401382446,0.582781255245209,-0.00374842761084437,-0.654252588748932,0.405529111623764,0.638357043266296,-0.949701845645905,-0.312916547060013,0.0122333103790879,-0.950049102306366,-0.312041997909546,0.00604347884654999,
- -0.948313593864441,-0.31634309887886,-0.0250668339431286,-0.967708349227905,-0.25004181265831,-0.0319325290620327,-0.967292428016663,-0.252935737371445,0.0192115996032953,-0.968626618385315,-0.246375620365143,0.0325807705521584,-0.762346744537354,0.645003378391266,-0.0528974458575249,-0.769685387611389,0.636168539524078,-0.0536097921431065,-0.964554011821747,-0.250940889120102,-0.0816362127661705,-0.967102468013763,-0.252405613660812,-0.0316925048828125,-0.967797219753265,-0.249600172042847,0.03268813341856,-0.953879058361053,-0.299565315246582,-0.019373869523406,-0.757921516895294,0.639382898807526,0.129401221871376,-0.627362072467804,-0.18512362241745,0.756403386592865,-0.385455787181854,0.922325134277344,-0.027206763625145,-0.959078848361969,-0.283006846904755,-0.0086651761084795,-0.954022288322449,-0.299610286951065,-0.00867041945457459,-0.966009676456451,-0.256402134895325,0.0329136997461319,-0.719140529632568,-0.187093481421471,-0.669203281402588,-0.695695281028748,-0.20528718829155,-0.688378751277924,-0.684342563152313,0.583030700683594,-0.437893122434616,-0.900060057640076,-0.300151348114014,-0.315913110971451,-0.760102987289429,-0.649641275405884,0.0144867785274982,-0.905531823635101,-0.284381806850433,-0.314863651990891,-0.959034740924835,-0.282993853092194,-0.0129158301278949,-0.94935816526413,-0.313941806554794,-0.0126351658254862,-0.953978538513184,-0.299596548080444,-0.0129187684506178,-0.949312448501587,-0.313651114702225,0.0207100808620453,-0.952659547328949,-0.30381640791893,0.0116367843002081,-0.951147496700287,-0.307641863822937,-0.0259839035570621,-0.967279314994812,-0.251649916172028,0.0322969704866409,-0.94904500246048,-0.313465714454651,0.0324472934007645,-0.958615362644196,-0.282870084047318,0.0322693884372711,-0.999681890010834,0.0234261304140091,-0.00934717711061239,-0.94070965051651,-0.309837222099304,0.138080701231956,-0.896271586418152,-0.426193088293076,0.122706681489944,-0.949010252952576,-0.31395760178566,-0.0284626688808203,-0.96738064289093,-0.251676291227341,-0.0288779009133577,-0.937544107437134,-0.346655011177063,-0.0290052369236946,
- -0.92009699344635,-0.3402039706707,-0.194120496511459,-0.890042245388031,-0.409195631742477,-0.200957074761391,-0.931020081043243,-0.309375375509262,-0.193619415163994,0.419538378715515,-0.905158936977386,0.0683731734752655,-0.0313870832324028,-0.996538937091827,0.0769751965999603,0.401657849550247,-0.913574755191803,0.0636564493179321,-0.0249041840434074,-0.790707588195801,0.611687242984772,0.351217448711395,-0.716595649719238,0.602608621120453,-0.0115920705720782,-0.787451982498169,0.616266965866089,0.348937004804611,-0.794622421264648,-0.496807992458344,0.566953182220459,-0.686836242675781,-0.454774707555771,-0.0503121763467789,-0.804794728755951,-0.591417253017426,-0.0622317008674145,-0.997933328151703,0.0160082057118416,-0.0314767621457577,-0.999387145042419,0.0153216384351254,-0.038859199732542,-0.999130189418793,0.015133073553443,-0.0314734615385532,-0.999282419681549,0.0210741460323334,-0.0620542019605637,-0.997864246368408,0.0204061977565289,-0.157955273985863,-0.987220525741577,0.02111841365695,0.253303408622742,-0.801192224025726,-0.542151629924774,0.342788457870483,-0.939274847507477,-0.0160878077149391,-0.0484845191240311,-0.58226466178894,-0.811552286148071,-0.15516360104084,-0.969772517681122,-0.188323438167572,-0.0692371129989624,-0.978862881660461,-0.192441880702972,-0.195564076304436,-0.962471544742584,-0.188157513737679,-0.197778642177582,-0.97980523109436,-0.029419532045722,-0.244287416338921,-0.969269454479218,-0.0289892870932817,-0.157923549413681,-0.987022221088409,-0.029107915237546,-0.0392742715775967,-0.999226331710815,0.00207472569309175,-0.0291990749537945,-0.99933660030365,0.0217670705169439,-0.0627461075782776,-0.998024761676788,0.00308845681138337,-0.0333361849188805,-0.999212861061096,0.0215035434812307,-0.0394931249320507,-0.999207854270935,-0.00489697325974703,-0.030574657022953,-0.998998463153839,-0.0326682478189468,-0.445728152990341,-0.895141661167145,-0.00693230703473091,-0.195192888379097,-0.973063409328461,0.122668541967869,-0.0579810328781605,-0.991773664951324,0.114120095968246,
- -0.0277598518878222,-0.824040949344635,-0.565849721431732,0.0667218565940857,-0.995764970779419,-0.063248410820961,-0.0525344274938107,-0.998056948184967,-0.0335031300783157,-0.0376953855156899,-0.999063849449158,0.0212254263460636,-0.0351515971124172,-0.998842179775238,-0.0328435190021992,-0.0458007715642452,-0.998229146003723,-0.0379592962563038,-0.68625271320343,-0.717354357242584,0.120249576866627,-0.697715640068054,-0.581361711025238,-0.418582707643509,-0.690579533576965,-0.624783396720886,-0.36434268951416,-0.80525130033493,-0.485861331224442,-0.339866667985916,-0.673827528953552,-0.72959041595459,0.116851828992367,-0.714705467224121,-0.607207298278809,-0.347124665975571,-0.197482824325562,-0.980169653892517,0.016370402649045,-0.178337454795837,-0.983896136283875,0.0120077859610319,-0.173951879143715,-0.984380185604095,-0.0271405391395092,-0.207891240715981,-0.948662757873535,0.238369986414909,-0.822357535362244,-0.546226382255554,0.159263327717781,-0.882663547992706,-0.46352556347847,-0.0777760744094849,-0.902024447917938,-0.424252867698669,-0.0797580927610397,-0.208555951714516,-0.947881281375885,0.24088491499424,-0.881661355495453,-0.464403539896011,-0.0836829543113709,-0.155239328742027,-0.986601829528809,0.0501756519079208,-0.87978184223175,-0.415129154920578,-0.23162829875946,-0.134737730026245,-0.893523514270782,-0.428324103355408,-0.149104401469231,-0.988797605037689,0.00686949165537953,-0.10293547809124,-0.994636118412018,0.0101615469902754,-0.139808252453804,-0.99017745256424,-0.00151420466136187,-0.103104837238789,-0.994613349437714,0.010663908906281,-0.123904794454575,-0.99209201335907,-0.0200259480625391,-0.139909774065018,-0.990163564682007,-0.00117854448035359,-0.0985407903790474,-0.995128929615021,-0.0028451809193939,-0.149104326963425,-0.988797068595886,-0.00694592669606209,-0.306765288114548,-0.951758861541748,-0.00708333915099502,-0.122060008347034,-0.992246747016907,-0.0234030652791262,-0.119538627564907,-0.992701888084412,0.0159196648746729,-0.121855810284615,-0.992336094379425,-0.0205004308372736,
- -0.117872953414917,-0.992732048034668,-0.02427071146667,-0.117988921701908,-0.992784380912781,-0.021395293995738,-0.103080809116364,-0.994616687297821,0.0105925863608718,-0.17554435133934,-0.984395980834961,0.0121955387294292,-0.180509895086288,-0.983509540557861,-0.0111960461363196,-0.171309843659401,-0.984851241111755,-0.0268507152795792,-0.305869579315186,-0.948979735374451,-0.0766893625259399,-0.334984302520752,-0.911284625530243,-0.239470019936562,-0.0602890066802502,-0.991673827171326,-0.113790482282639,-0.328947454690933,-0.909847021102905,-0.252927243709564,0.129958748817444,-0.988750815391541,-0.0740441381931305,-0.0579819940030575,-0.991036057472229,-0.120356105268002,-0.385404884815216,-0.922711491584778,0.00817595701664686,-0.306765794754028,-0.951760649681091,0.00682743219658732,-0.35369810461998,-0.935334980487823,0.00680603552609682,-0.42199981212616,-0.906468391418457,-0.0152071118354797,-0.306744903326035,-0.95169585943222,-0.0135128302499652,-0.382699996232986,-0.923872709274292,-0.000449907907750458,-0.395805716514587,-0.918005108833313,0.0245864130556583,-0.421365737915039,-0.906729400157928,-0.0171091910451651,-0.382183909416199,-0.924083948135376,-0.00208402518182993,-0.416279345750809,-0.908667027950287,-0.0321824587881565,-0.360623598098755,-0.932556211948395,0.0170165877789259,-0.35843750834465,-0.933159947395325,0.0271127242594957,-0.967377662658691,-0.182697281241417,0.175505459308624,-0.461892515420914,-0.416731864213943,0.782936692237854,-0.764868855476379,-0.132029071450233,0.630510866641998,-0.745564043521881,-0.174732834100723,0.643119513988495,-0.745518147945404,0.00940535869449377,0.666418969631195,-0.963499784469604,-0.203810229897499,0.173578575253487,-0.357604652643204,-0.933729588985443,0.0163712371140718,-0.362343639135361,-0.932012379169464,0.00775054143741727,-0.355461448431015,-0.934316575527191,0.0264567509293556,-0.166110053658485,-0.985756993293762,-0.0262801460921764,-0.170414239168167,-0.98528254032135,-0.0133172497153282,-0.169387325644493,-0.985409617424011,0.0166085995733738,
- -0.973171174526215,0.225555077195168,-0.0454179421067238,-0.951747894287109,0.236167818307877,0.195960983633995,-0.886173725128174,0.1057503297925,0.451124131679535,-0.411855697631836,-0.911233723163605,0.00531041482463479,-0.40304759144783,-0.914805173873901,0.0261560510843992,-0.412212908267975,-0.911002278327942,0.0124641330912709,-0.454028159379959,-0.884573578834534,0.106714516878128,-0.969781816005707,0.238882705569267,0.0495816431939602,-0.985686659812927,0.165595352649689,0.0316255204379559,-0.1716468334198,-0.985020279884338,0.0165104456245899,-0.20515288412571,-0.97870260477066,0.00731085892766714,-0.167642518877983,-0.985493004322052,-0.0264483261853457,-0.190608859062195,-0.933239102363586,-0.304521024227142,0.224053636193275,-0.974425733089447,0.0171613711863756,-0.197760969400406,-0.931415677070618,-0.305541276931763,-0.965982139110565,0.209657102823257,0.151401564478874,-0.377802044153214,-0.736064195632935,0.561671733856201,-0.396283358335495,-0.821541607379913,0.409913301467896,-0.966076850891113,0.209971100091934,0.150358274579048,-0.398479789495468,-0.824770271778107,0.401208013296127,-0.972572445869446,0.22811159491539,-0.0454748757183552,-0.457688629627228,-0.888783156871796,-0.0241988170892,-0.456466645002365,-0.889322936534882,-0.0272609554231167,-0.357727855443954,-0.933335781097412,-0.0302540361881256,-0.457746773958206,-0.888709962368011,-0.0257439911365509,-0.357789903879166,-0.933261215686798,-0.0317793004214764,-0.404534518718719,-0.914432108402252,0.0128744579851627,-0.41096630692482,-0.911564528942108,0.0125309228897095,-0.358259111642838,-0.932582318782806,-0.0440528057515621,-0.410537272691727,-0.911827981472015,0.00537635898217559,-0.357937574386597,-0.933070838451386,-0.0354923643171787,-0.456395506858826,-0.889184355735779,-0.0324702672660351,-0.330175489187241,-0.943358659744263,-0.0325387977063656,0.615285813808441,-0.787140548229218,0.0428177192807198,-0.328121304512024,-0.903365731239319,0.276164323091507,-0.120344862341881,-0.978795826435089,0.165758490562439,-0.324657618999481,-0.927593111991882,0.184847682714462,
- -0.120344862341881,-0.978795826435089,0.165758490562439,-0.328121304512024,-0.903365731239319,0.276164323091507,-0.125730276107788,-0.992013394832611,0.0100668137893081,-0.205104649066925,-0.978663206100464,0.0122642293572426,-0.226907178759575,-0.973814845085144,0.0140701467171311,-0.126315131783485,-0.991873025894165,-0.0152458362281322,-0.19772133231163,-0.980169177055359,-0.013216688297689,-0.205298691987991,-0.978610992431641,-0.0131541015580297,-0.123809278011322,-0.989349901676178,0.0765393376350403,-0.329980552196503,-0.942801177501678,0.0473160967230797,0.53277999162674,-0.846180200576782,0.0111603671684861,-0.244302228093147,-0.969328165054321,0.0268238987773657,-0.19735860824585,-0.979967296123505,0.0267150681465864,-0.125350117683411,-0.991800129413605,0.0248963199555874,-0.127747610211372,-0.986111521720886,-0.106135845184326,0.486459732055664,-0.772609770298004,-0.407959938049316,-0.243664667010307,-0.966799139976501,-0.076988123357296,0.832304656505585,0.550960719585419,-0.0609201602637768,0.159605532884598,0.0827607065439224,-0.983705639839172,0.131833255290985,0.316087543964386,-0.939525783061981,0.129932716488838,0.114462643861771,-0.984893798828125,-0.0325694493949413,-0.329234093427658,-0.943686485290527,0.04473926872015,0.327802330255508,-0.943686425685883,0.871920645236969,0.48618945479393,-0.0580880679190159,0.986848175525665,0.124151200056076,-0.103523708879948,0.217552334070206,0.0194366443902254,-0.975855112075806,-0.032410204410553,-0.329252511262894,-0.943685531616211,0.130039393901825,0.114349514245987,-0.984892845153809,-0.121505260467529,-0.123379811644554,-0.984892845153809,0.330902308225632,0.140610784292221,-0.933130383491516,0.204638436436653,0.0337157286703587,-0.978256821632385,0.99155068397522,0.0672712400555611,-0.11091361194849,-0.49224853515625,-0.867622852325439,-0.0701569095253944,-0.0676375776529312,-0.324972629547119,-0.943301618099213,-0.115282975137234,-0.129939407110214,-0.984797239303589,0.077975869178772,0.11823820322752,-0.989918947219849,0.331349015235901,0.138926759362221,-0.933224081993103,
- 0.992059111595154,0.0567608550190926,-0.112235873937607,-0.190143823623657,-0.0496271923184395,-0.980501115322113,-0.972581088542938,-0.214008986949921,-0.0910287201404572,-0.822139084339142,-0.565950214862823,-0.0615444481372833,0.99017471075058,0.0885947421193123,-0.108189672231674,0.467781901359558,-0.0608485378324986,-0.881746888160706,0.0768980830907822,0.131400361657143,-0.988342463970184,-0.204598322510719,-0.0337599441409111,-0.978263676166534,-0.330921530723572,-0.140538409352303,-0.933134436607361,-0.991566896438599,-0.0669683218002319,-0.110951907932758,0.132734671235085,-0.288364082574844,-0.948276162147522,-0.0283455010503531,-0.0180139616131783,-0.99943596124649,0.0882921516895294,-0.0188590586185455,-0.995916068553925,-0.330825358629227,-0.140900447964668,-0.933113932609558,-0.0778101086616516,-0.120274886488914,-0.989686608314514,-0.991840898990631,-0.0615588426589966,-0.111633934080601,0.0875731632113457,-0.00854216050356627,-0.996121466159821,-0.0218980293720961,-0.0139165036380291,-0.999663352966309,0.000934031559154391,-0.0148277375847101,-0.999889731407166,0.0176528990268707,0.0112186633050442,-0.999781250953674,-0.0868461057543755,-0.00175725331064314,-0.996220171451569,-0.000288518349407241,0.00458021508529782,-0.999989569187164,-0.495807528495789,0.038476899266243,-0.867579638957977,-0.966428697109222,-0.241772085428238,-0.0869588702917099,-0.0708802491426468,-0.20165166258812,-0.976889252662659,-0.0869344472885132,-0.000512813276145607,-0.996213912963867,0.0205940008163452,0.0130877746269107,-0.999702274799347,-0.14054174721241,0.28376641869545,-0.948538184165955
- }
- TangentsW: *1305 {
- 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
- }
- }
- LayerElementTangent: 1 {
- Version: 102
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *3915 {
- a: -0.921521306037903,-0.227131739258766,-0.314975708723068,-0.789316117763519,-0.525700271129608,-0.317205429077148,-0.767505943775177,-0.555761933326721,-0.319473445415497,-0.645589232444763,0.763684868812561,5.22828349858173e-006,-0.623731732368469,0.781638503074646,5.23013250131044e-006,-0.62373685836792,0.781634449958801,-0.000415470101870596,-0.645538091659546,0.763624429702759,-0.0125821176916361,-0.623840272426605,0.781441032886505,-0.0131709398701787,-0.646002590656281,0.763225317001343,-0.012963505461812,-0.64529025554657,0.763898193836212,0.00775003572925925,-0.623624324798584,0.781689703464508,0.00734086101874709,-0.630046010017395,0.776551783084869,0.00309334159828722,-0.00327514344826341,0.00346337165683508,-0.999988734722137,-0.00905012246221304,-0.00190165708772838,-0.999957263469696,-0.00280541204847395,0.00313546136021614,-0.999991178512573,-0.000564613728784025,0.000631038623396307,-0.999999642372131,-0.00595564302057028,-0.00513693550601602,-0.999969065189362,-0.0239206347614527,-0.0205819979310036,-0.999502062797546,-0.0252980701625347,-0.0190585423260927,-0.99949836730957,-0.00189664354547858,0.0020974634680897,-0.9999960064888,-0.00197170209139585,0.00220366683788598,-0.999995648860931,-0.645290493965149,0.763898015022278,-0.00774314487352967,-0.630047023296356,0.776550889015198,-0.00308754877187312,-0.623624444007874,0.781689703464508,-0.00733380857855082,-0.64600282907486,0.763224899768829,0.012972466647625,-0.623840272426605,0.781440854072571,0.0131800062954426,-0.645538032054901,0.763624310493469,0.0125912232324481,-0.623736977577209,0.781634211540222,0.00042592769023031,-0.623731732368469,0.781638503074646,5.23013250131044e-006,-0.645589232444763,0.763684868812561,5.22828349858173e-006,0.000678705924656242,-0.000717710703611374,0.999999523162842,0.00103565200697631,-0.00115749309770763,0.999998807907104,-0.00507428497076035,-0.00605834554880857,0.999968767166138,-0.00594953121617436,-0.00514332484453917,0.999969065189362,-0.000559350533876568,0.000625156215392053,0.999999642372131,
- -0.0239152312278748,-0.0205879677087069,0.999502003192902,-0.0245456248521805,-0.0198907721787691,0.999500811100006,-0.00120412569958717,0.00134578731376678,0.999998390674591,-0.00114531232975423,0.00126657984219491,0.999998569488525,0.902090191841125,0.431434452533722,-0.00989063736051321,0.915386617183685,0.40245446562767,-0.00988560263067484,0.915386617183685,0.40245446562767,-0.00988560263067484,0.915398001670837,0.402459442615509,-0.00853881146758795,0.902101457118988,0.431439816951752,-0.00853892043232918,0.85535204410553,0.517990112304688,-0.00768979964777827,0.898484468460083,0.429709911346436,-0.0898624584078789,0.803558707237244,0.590852022171021,-0.0720227435231209,0.851711392402649,0.516524851322174,-0.088259682059288,0.85524308681488,0.517995655536652,-0.0154913701117039,0.805563271045685,0.592325925827026,-0.0147656640037894,0.808240115642548,0.588667809963226,-0.0147694405168295,0.855204284191132,0.517991662025452,-0.0176158212125301,0.808203816413879,0.58866161108017,-0.0168565679341555,0.811938226222992,0.583498418331146,-0.016910133883357,0.81224250793457,0.583177447319031,-0.0128909274935722,0.808264553546906,0.58867073059082,-0.0132453599944711,0.805580854415894,0.592338860034943,-0.013196581043303,0.00487814797088504,0.00180368509609252,-0.999986469745636,0.00553944986313581,0.00135108549147844,-0.999983847141266,0.00553944986313581,0.00135108549147844,-0.999983847141266,1.25631177070318e-005,4.64518689113902e-006,-1,1.2763038284902e-005,3.11293592858419e-006,-1,1.25631177070318e-005,4.64518689113902e-006,-1,1.25631177070318e-005,4.64518689113902e-006,-1,1.25631177070318e-005,4.64518689113902e-006,-1,2.60118872574822e-006,8.81514279171824e-006,-1,-1.63579966283578e-006,-5.54354346604669e-006,-1,-1.96020278053766e-006,-7.24781102690031e-007,-1,-1.63579966283578e-006,-5.54354346604669e-006,-1,-0.999871492385864,3.16362980089148e-018,-0.0160326827317476,-0.999871492385864,3.16362980089148e-018,-0.0160326827317476,-0.999871492385864,3.16362980089148e-018,-0.0160326827317476,-0.999998390674591,0,0.00180666404776275,
- -0.999998390674591,0,0.00180666404776275,-0.999998390674591,0,0.00180666404776275,-0.999999284744263,-2.59842840357348e-019,0.00119361083488911,-0.999999284744263,-2.59842840357348e-019,0.00119361083488911,-0.999999284744263,-2.59842840357348e-019,0.00119361083488911,-1,0,9.94615402305499e-005,-1,0,9.94615402305499e-005,-1,0,9.94615402305499e-005,-0.999870538711548,-3.1636999044484e-018,0.0160906855016947,-0.999870538711548,-3.1636999044484e-018,0.0160906855016947,-0.999870538711548,-3.1636999044484e-018,0.0160906855016947,0.00192935334052891,-0.0058362940326333,-0.999981105327606,0.00192935334052891,-0.0058362940326333,-0.999981105327606,0.00192935334052891,-0.0058362940326333,-0.999981105327606,0.00191692856606096,-0.00579870957881212,-0.999981343746185,0.00191692856606096,-0.00579870957881212,-0.999981343746185,0.00191692856606096,-0.00579870957881212,-0.999981343746185,0.0019129600841552,-0.00578670483082533,-0.99998152256012,0.0019129600841552,-0.00578670483082533,-0.99998152256012,0.00211389502510428,-0.00571712478995323,-0.99998152256012,0.00149806193076074,-0.00405157543718815,-0.99999076128006,0.0089905122295022,-0.00129620602820069,-0.999958753585815,0.00126135582104325,-0.00381560693494976,-0.999991953372955,0.00273012113757432,-0.00738373631611466,-0.999969005584717,0.00255927885882556,-0.00774181447923183,-0.999966859817505,0.00273012113757432,-0.00738373631611466,-0.999969005584717,-0.999995768070221,0,-0.00291363522410393,-0.999995768070221,0,-0.00291363522410393,-0.999995768070221,0,-0.00291363522410393,-0.999992787837982,8.00290625200154e-019,-0.00380007526837289,-0.999992787837982,8.00290625200154e-019,-0.00380007526837289,-0.999992787837982,8.00290625200154e-019,-0.00380007526837289,-0.99992424249649,0,-0.0123168397694826,-0.99992424249649,0,-0.0123168397694826,-0.99992424249649,0,-0.0123168397694826,-0.999998986721039,3.96160369999103e-019,-0.00148786371573806,-0.999998986721039,3.96160369999103e-019,-0.00148786371573806,-0.999998986721039,3.96160369999103e-019,-0.00148786371573806,-1,0,1.38685481942957e-006,
- -1,0,1.38685481942957e-006,-1,0,1.38685481942957e-006,-0.999999582767487,3.96184073893531e-019,-0.000925743544939905,-0.999999582767487,3.96184073893531e-019,-0.000925743544939905,-0.999999582767487,3.96184073893531e-019,-0.000925743544939905,-0.999992549419403,8.00355403781874e-019,-0.00388618977740407,-0.999992549419403,8.00355403781874e-019,-0.00388618977740407,-0.999992549419403,8.00355403781874e-019,-0.00388618977740407,-0.999983131885529,0,-0.00581319723278284,-0.999983131885529,0,-0.00581319723278284,-0.999983131885529,0,-0.00581319723278284,-0.999923408031464,0,0.012383820489049,-0.999923408031464,0,0.012383820489049,-0.999923408031464,0,0.012383820489049,0.00251940661109984,-0.013692426495254,0.999903082847595,0.00251940661109984,-0.013692426495254,0.999903082847595,0.00251940661109984,-0.013692426495254,0.999903082847595,-0.000885287532582879,0.00481134466826916,0.9999880194664,-0.000885287532582879,0.00481134466826916,0.9999880194664,-0.000885287532582879,0.00481134466826916,0.9999880194664,-0.000763048359658569,0.00414700107648969,0.999991118907928,-0.000763048359658569,0.00414700107648969,0.999991118907928,-0.000763048359658569,0.00414700107648969,0.999991118907928,-9.09009213501122e-006,4.94026317028329e-005,1,-9.09009213501122e-006,4.94026317028329e-005,1,-9.09009213501122e-006,4.94026317028329e-005,1,-1.0725167385317e-006,5.82889515499119e-006,1,-1.0725167385317e-006,5.82889515499119e-006,1,-1.0725167385317e-006,5.82889515499119e-006,1,9.62510785029735e-006,-5.23103299201466e-005,1,9.62510785029735e-006,-5.23103299201466e-005,1,9.62510785029735e-006,-5.23103299201466e-005,1,0.000887242727912962,-0.00482197012752295,0.999988079071045,0.000887242727912962,-0.00482197012752295,0.999988079071045,0.000887242727912962,-0.00482197012752295,0.999988079071045,0.00940382108092308,-0.051107719540596,0.998648881912231,0.00940382108092308,-0.051107719540596,0.998648881912231,0.00940382108092308,-0.051107719540596,0.998648881912231,0.000764614960644394,-0.00415551476180553,0.999991059303284,0.000764614960644394,-0.00415551476180553,0.999991059303284,
- 0.000764614960644394,-0.00415551476180553,0.999991059303284,0.334811806678772,-0.0526238046586514,0.940814554691315,0.000251617952017114,0.00264195003546774,0.999996483325958,-0.0265801046043634,-0.0300608314573765,0.999194622039795,0.00283183041028678,0.0297342203557491,0.999553918838501,0.339641511440277,-0.019842429086566,0.940345644950867,-0.00833979249000549,0.0298163797706366,0.999520599842072,-0.00819493923336267,0.0205006431788206,0.999756276607513,0.337796807289124,-0.0326671935617924,0.940652012825012,0.368921339511871,-0.0310316830873489,0.928942561149597,0.360635489225388,-0.0899179577827454,0.928362429141998,-0.0110008353367448,-0.026267297565937,0.999594449996948,-0.00720097590237856,-0.0422785431146622,0.999080002307892,0.985905408859253,0.034550528973341,0.1636972874403,0.38526862859726,0.136247232556343,0.912690937519073,0.358794361352921,0.152051880955696,0.92094886302948,0.986007273197174,-0.0115950461477041,0.166298553347588,0.35606524348259,0.120528340339661,0.926655530929565,0.899819016456604,-0.127914547920227,0.417089462280273,0.992760717868805,-0.0982972234487534,-0.0690220296382904,0.986203849315643,0.00314568355679512,0.165506079792976,0.978439211845398,0.136385858058929,0.155098870396614,0.276376307010651,-0.189014121890068,0.942279040813446,-0.0221040267497301,-0.0527790002524853,0.998361647129059,0.354744553565979,-0.126950070261955,0.926304459571838,0.0160749815404415,0.0383831113576889,0.999133765697479,0.31740340590477,-0.100168533623219,0.942985355854034,0.0161622427403927,0.0393954589962959,0.999092996120453,0.293884038925171,-0.152019858360291,0.943674921989441,0.000902636907994747,-0.0169066712260246,0.999856770038605,-0.00672721862792969,-0.0163975916802883,0.999842941761017,0.985835015773773,-0.0187324620783329,0.166669294238091,0.992381036281586,-0.108048647642136,-0.0592066049575806,0.999505341053009,-0.0277169086039066,-0.0148672694340348,-0.999479055404663,-0.027671979740262,0.0166113991290331,-0.948571026325226,0.289021342992783,-0.12914976477623,-0.626344919204712,-0.431329697370529,0.649343311786652,
- 0.58933424949646,-0.34808012843132,-0.729057848453522,0.918575525283813,-0.374226748943329,-0.127174511551857,0.930637896060944,-0.365927994251251,-0.00313041405752301,0.999509930610657,-0.0275481790304184,-0.0148726552724838,0.984521865844727,-0.0192633010447025,0.174200490117073,0.985845565795898,-0.0183483175933361,0.166649550199509,0.974426567554474,-0.137045204639435,0.178077235817909,0.989547729492188,-0.143781319260597,-0.01105488371104,0.982733726501465,-0.137730494141579,-0.123550735414028,0.367994666099548,-0.0381131172180176,0.92904657125473,0.975362479686737,-0.138612672686577,0.171623215079308,0.974908530712128,-0.133675903081894,0.178000375628471,0.974579095840454,-0.135988131165504,0.178053393959999,0.404247730970383,0.119545482099056,0.906803548336029,0.36767315864563,-0.0405364111065865,0.929071187973022,0.917081415653229,-0.377874851226807,-0.12717042863369,0.909938275814056,-0.369512587785721,0.188342839479446,0.908269047737122,-0.378620177507401,0.178029105067253,0.884702086448669,-0.431484431028366,0.176418855786324,0.871054530143738,-0.453022986650467,0.189827382564545,0.283297419548035,-0.174543678760529,0.943014860153198,0.828130602836609,-0.556703865528107,-0.0654252544045448,0.812909066677094,-0.550719678401947,0.189437806606293,0.821263790130615,-0.556847214698792,-0.12428605556488,0.296097725629807,-0.147248208522797,0.943739533424377,0.323531746864319,0.0311071146279573,0.945705831050873,0.00298172188922763,-0.0123966233804822,0.999918818473816,0.825391948223114,-0.531730711460114,0.189712002873421,0.48280131816864,-0.447421222925186,0.752806186676025,0.249408289790154,-0.243589490652084,0.937261760234833,-0.0250340681523085,-0.073130689561367,0.997008144855499,0.388627648353577,-0.130548685789108,0.912099540233612,0.28797709941864,-0.232590273022652,0.928962290287018,0.822229444980621,-0.536629498004913,0.189650982618332,0.35319447517395,-0.157674208283424,0.922167301177979,0.485465198755264,-0.460036218166351,0.743431389331818,0.283008277416229,-0.238074868917465,0.929100036621094,0.0103869531303644,0.0112324040383101,0.999883055686951,
- 0.0112233338877559,0.00548606365919113,0.999921977519989,0.72800874710083,-0.381066352128983,-0.569905042648315,0.870233237743378,-0.479979157447815,-0.110969036817551,0.878838181495667,-0.472827225923538,-0.0638582110404968,0.279371976852417,-0.21723584830761,0.935286104679108,0.0125569691881537,0.0135790500789881,0.999829053878784,0.285253405570984,-0.235600411891937,0.929044127464294,-0.000673140108119696,-0.000727931095752865,0.999999523162842,0.266710579395294,-0.231940418481827,0.93545126914978,-0.000353434588760138,-0.000408791733207181,0.99999988079071,-0.000974332971964031,-0.00112693919800222,0.999998986721039,0.266034513711929,-0.232719942927361,0.935450315475464,-0.0119191603735089,0.0149366687983274,0.999817371368408,-0.00895149447023869,0.0112176965922117,0.999897003173828,0.2666375041008,-0.232024729251862,0.935451209545136,0.00338670890778303,0.0210665892809629,0.999772429466248,0.223238453269005,-0.301768153905869,0.926876783370972,0.683852314949036,-0.709005951881409,0.172211319208145,0.201440930366516,-0.304638892412186,0.930922508239746,0.682523012161255,-0.710299372673035,0.172154411673546,0.494204878807068,-0.603477954864502,0.6257603764534,0.200373649597168,-0.305786222219467,0.930776655673981,0.785800814628601,-0.593248248100281,0.174853101372719,0.325005382299423,-0.190743982791901,0.926276564598084,0.790853023529053,-0.582172214984894,0.188751846551895,0.833105862140656,-0.549244523048401,-0.0653078928589821,0.822354435920715,-0.541480898857117,0.17473304271698,0.817973136901855,-0.543127119541168,0.189559683203697,0.630869090557098,-0.757129192352295,0.169586569070816,0.643834412097931,-0.762275695800781,-0.0664303973317146,0.640728771686554,-0.758785665035248,-0.117094688117504,0.682570159435272,-0.710253655910492,0.172156453132629,0.603780269622803,-0.529069483280182,0.596267461776733,0.49964565038681,-0.610582590103149,0.614445328712463,0.632424354553223,-0.755811035633087,0.169673442840576,0.64250659942627,-0.757279396057129,-0.117104284465313,0.645593106746674,-0.763681590557098,0.000106543033325579,
- 0.64529025554657,-0.763898193836212,-0.00775003572925925,0.630046010017395,-0.776551783084869,-0.00309334159828722,0.630881547927856,-0.75711864233017,0.169587269425392,-0.000450577208539471,-0.00473110238090158,-0.999988734722137,0.333523750305176,-0.0609586462378502,-0.940768837928772,-0.0327207706868649,-0.0370056331157684,-0.998779237270355,-0.00806230213493109,0.0242385342717171,-0.999673783779144,0.338793277740479,-0.0257893167436123,-0.940507352352142,0.00229527428746223,0.0241003800183535,-0.999706923961639,0.337915301322937,-0.0318553373217583,-0.940637290477753,-0.0080387219786644,0.0211741160601377,-0.999743580818176,0.369027823209763,-0.0302082523703575,-0.928927302360535,-0.011261603794992,-0.0268899500370026,-0.999574959278107,0.360584527254105,-0.0902532860636711,-0.928349792957306,-0.00753533653914928,-0.042097520083189,-0.999085187911987,0.385306388139725,0.136823236942291,-0.912588834762573,0.985890626907349,0.0351330935955048,-0.163662180304527,0.358841359615326,0.152633413672447,-0.920834362506866,0.35712057352066,0.132236525416374,-0.924650430679321,0.986156642436981,-0.00226112874224782,-0.16580094397068,0.904089510440826,-0.12022652477026,-0.41008260846138,0.993795335292816,-0.0880236402153969,0.0679900199174881,0.978500306606293,0.138524442911148,-0.152800992131233,0.986212134361267,0.00473620230332017,-0.165418401360512,-0.0234882235527039,-0.0560841225087643,-0.998149752616882,0.27476954460144,-0.192345380783081,-0.942074835300446,0.354142665863037,-0.130555659532547,-0.926033556461334,0.314619779586792,-0.106442973017693,-0.943230748176575,0.0136850085109472,0.0326764397323132,-0.99937230348587,0.0138125494122505,0.033668078482151,-0.999337732791901,0.00422961544245481,-0.00968940649181604,-0.99994421005249,0.2973473072052,-0.144545078277588,-0.943764448165894,-0.00372419157065451,-0.00907771196216345,-0.999951958656311,0.985929608345032,-0.015072732232511,-0.166480228304863,0.999596059322357,-0.0241521373391151,0.0149809736758471,0.993500888347626,-0.09714575111866,0.0593188628554344,-0.951470792293549,0.282406717538834,0.12226939946413,
- -0.999845027923584,-0.00739377085119486,-0.0159784778952599,-0.639857947826386,-0.367806524038315,-0.674759387969971,0.91107040643692,-0.392157435417175,0.127134889364243,0.582774460315704,-0.367796212434769,0.724637746810913,0.923074066638947,-0.384614884853363,0.00242273579351604,0.984621703624725,-0.0153077114373446,-0.174028187990189,0.999608039855957,-0.0236404426395893,0.0149972783401608,0.985945522785187,-0.0144010316580534,-0.166445299983025,0.983090996742249,-0.135226830840111,0.123474046587944,0.989903807640076,-0.141302466392517,0.0111385649070144,0.97478723526001,-0.134531497955322,-0.178020060062408,0.976920664310455,-0.127641648054123,-0.171270608901978,0.369467616081238,-0.0267868041992188,-0.928857445716858,0.976395785808563,-0.122724182903767,-0.177736461162567,0.407017827033997,0.127542942762375,-0.904471814632416,0.975759625434875,-0.127518981695175,-0.177854642271996,0.368825376033783,-0.0317712239921093,-0.928955554962158,0.909942865371704,-0.369501382112503,-0.188342526555061,0.917085945606232,-0.377864062786102,0.127170458436012,0.908273339271545,-0.378609389066696,-0.178029358386993,0.876222431659698,-0.448715060949326,-0.175753504037857,0.274834096431732,-0.192211285233498,-0.942083358764648,0.862101137638092,-0.469794601202011,-0.189933270215988,0.821260452270508,-0.556852340698242,0.124285906553268,0.812905430793762,-0.550725042819977,-0.189437702298164,0.828127205371857,-0.556709170341492,0.0654253363609314,0.298035144805908,-0.143054157495499,-0.94377464056015,0.00489052245393395,-0.00825554877519608,-0.999953985214233,0.321775078773499,0.0351330190896988,-0.946164071559906,0.482713848352432,-0.447014629840851,-0.753103911876678,0.825752675533295,-0.531167924404144,-0.189718574285507,0.249697357416153,-0.24301914870739,-0.937332987785339,-0.0250478517264128,-0.0731605440378189,-0.997005701065063,0.287962585687637,-0.232606336474419,-0.928962767124176,0.388641506433487,-0.130586162209511,-0.91208827495575,0.353211462497711,-0.15765392780304,-0.922164261341095,0.82224977016449,-0.536598443984985,-0.189651429653168,
- 0.485457360744476,-0.459998488426209,-0.743459820747375,0.283008486032486,-0.238074630498886,-0.929100036621094,0.0112234130501747,0.00548623641952872,-0.999921977519989,0.0103871570900083,0.0112326247617602,-0.999883055686951,0.870231807231903,-0.47998172044754,0.11096914857626,0.728007316589355,-0.381068855524063,0.569905161857605,0.878837823867798,-0.472827941179276,0.063858225941658,0.285253673791885,-0.235600128769875,-0.92904406785965,0.012557215988636,0.013579317368567,-0.999829053878784,0.279372215270996,-0.217235565185547,-0.935286104679108,0.266710579395294,-0.231940433382988,-0.93545126914978,-0.00067315372871235,-0.000727945822291076,-0.999999523162842,-0.00035344174830243,-0.000408799998695031,-0.99999988079071,0.264717370271683,-0.234236821532249,-0.935445249080658,-0.00219526654109359,-0.00253910315223038,-0.999994456768036,-0.0113338436931372,0.0142031712457538,-0.999834895133972,-0.00895167607814074,0.0112179229035974,-0.999897003173828,0.00338652799837291,0.0210668165236712,-0.999772429466248,0.266637474298477,-0.232024729251862,-0.935451209545136,0.683851540088654,-0.709006667137146,-0.172211289405823,0.223236873745918,-0.301769852638245,-0.926876723766327,0.201438710093498,-0.304641276597977,-0.930922210216522,0.681143164634705,-0.711637079715729,-0.172094836831093,0.199020430445671,-0.307239085435867,-0.93058854341507,0.49445316195488,-0.603801965713501,-0.625251352787018,0.325015276670456,-0.190732568502426,-0.926275432109833,0.785811603069305,-0.593233942985535,-0.174853160977364,0.790863692760468,-0.58215743303299,-0.188752219080925,0.822350978851318,-0.541486144065857,-0.174733087420464,0.833102464675903,-0.549249827861786,0.0653079822659492,0.817969620227814,-0.543132483959198,-0.18955959379673,0.643826544284821,-0.762282371520996,0.0664303377270699,0.630861937999725,-0.757135212421417,-0.169586181640625,0.640720844268799,-0.758792281150818,0.117094628512859,0.682570159435272,-0.710253655910492,-0.172156453132629,0.49964565038681,-0.610582590103149,-0.614445328712463,0.603780269622803,-0.529069483280182,-0.596267461776733,
- 0.633035659790039,-0.755291521549225,-0.169707447290421,0.645623505115509,-0.763655424118042,-0.000955857336521149,0.643085360527039,-0.756787359714508,0.117107257246971,0.630047023296356,-0.776550889015198,0.00308754877187312,0.645290493965149,-0.763898015022278,0.00774314487352967,0.630878269672394,-0.757121443748474,-0.169587090611458,-0.980477273464203,0.16556878387928,-0.106073208153248,-0.993367731571198,0.108913108706474,-0.0368602834641933,-0.658262193202972,-0.74446314573288,-0.111649133265018,-0.647735714912415,-0.732558310031891,-0.209276765584946,-0.981591165065765,0.124147288501263,-0.14514197409153,-0.712268829345703,-0.668812036514282,-0.212987303733826,-0.678048729896545,-0.734811544418335,0.0173789616674185,-0.606289327144623,-0.795242667198181,0.001536556170322,-0.662403225898743,-0.749146521091461,0.00121509761083871,-0.810001194477081,-0.585633814334869,-0.0305139534175396,-0.711561799049377,-0.672978401184082,-0.201940327882767,-0.988974630832672,0.116708502173424,-0.0911509394645691,-0.990597665309906,-0.0476534515619278,-0.128240406513214,-0.979676067829132,0.0735189989209175,0.186627194285393,-0.940545916557312,0.135134652256966,0.311627954244614,-0.606253802776337,-0.79526299238205,-0.00361983152106404,-0.680790603160858,-0.732457458972931,0.00550287123769522,-0.611450731754303,-0.790987730026245,-0.0216008462011814,-0.998885989189148,8.70867734192871e-005,0.0471907742321491,-0.990692257881165,-0.044305969029665,-0.128708526492119,-0.939106345176697,0.127252876758575,0.319195806980133,-0.854610860347748,-0.0942428335547447,0.510645270347595,-0.773894488811493,-0.238358154892921,0.586747586727142,-0.995850682258606,-0.0775245130062103,0.0476584620773792,0.30765625834465,-0.951239764690399,-0.022147923707962,-0.601351201534271,-0.790310144424438,-0.117417454719543,-0.456144243478775,-0.793704330921173,0.402449786663055,-0.823673844337463,-0.566560566425323,0.023886039853096,-0.602806031703949,-0.789165616035461,0.117655292153358,0.316331624984741,-0.948167085647583,0.0302240233868361,-0.68113899230957,-0.732143521308899,0.00396058522164822,
- -0.666835904121399,-0.745175302028656,-0.00660332664847374,-0.611769735813141,-0.79069995880127,-0.0230517219752073,-0.455765217542648,-0.793557226657867,0.403168618679047,0.405698210000992,-0.898756265640259,0.166271343827248,0.308477520942688,-0.951072335243225,-0.0174086913466454,-0.622860610485077,-0.782321631908417,0.00418668333441019,-0.677951335906982,-0.734891533851624,0.0177926085889339,-0.625273287296295,-0.780121684074402,0.0210593771189451,-0.671625792980194,-0.542587101459503,-0.504497826099396,-0.336374253034592,0.633103549480438,-0.697160124778748,-0.674438834190369,-0.17474240064621,-0.717354416847229,-0.948197960853577,0.269102811813354,-0.168832764029503,-0.677067458629608,-0.177963525056839,-0.714078843593597,-0.323255240917206,0.553268551826477,-0.767723917961121,-0.883266568183899,-0.464157283306122,0.0663186460733414,-0.823489785194397,-0.566962778568268,0.0204453989863396,-0.814127087593079,-0.580430328845978,0.0172536633908749,-0.820154070854187,-0.571607053279877,-0.0247527994215488,-0.895749390125275,-0.444554418325424,0.00215357076376677,-0.908962666988373,-0.415584713220596,-0.032806396484375,-0.814937233924866,-0.579393982887268,0.0134130865335464,-0.836153864860535,-0.544107139110565,0.0692399591207504,-0.884235024452209,-0.462906897068024,0.0620135292410851,-0.815500140190125,-0.573717653751373,0.07620919495821,-0.818939507007599,-0.573841989040375,-0.00659290188923478,-0.803706407546997,-0.593357443809509,-0.0445308238267899,-0.940385103225708,-0.34006804227829,0.00543508818373084,-0.90956449508667,-0.415537178516388,0.00461071915924549,-0.900580763816834,-0.433572828769684,-0.0311276558786631,-0.937278389930725,-0.347702026367188,0.0247490331530571,-0.940302908420563,-0.340283095836639,0.00615011900663376,-0.900452017784119,-0.433910608291626,-0.0301284268498421,-0.909563481807709,-0.415561258792877,0.00176091550383717,-0.939511477947235,-0.342277735471725,0.0128126665949821,-0.940482795238495,-0.339838325977325,0.00141685863491148,-0.942216873168945,-0.334791541099548,-0.0119142178446054,
- -0.937823116779327,-0.346758157014847,0.0157020837068558,-0.940367996692657,-0.339796811342239,0.0156910512596369,-0.274422496557236,-0.92998743057251,0.244572892785072,-0.860447883605957,-0.318148851394653,0.398008525371552,-0.647662878036499,-0.44460991024971,0.618752598762512,-0.93651819229126,-0.348850637674332,0.035172525793314,-0.234648749232292,-0.941724002361298,-0.241030812263489,-0.282734125852585,-0.958154797554016,-0.0447306931018829,-0.893043696880341,-0.44923260807991,0.0257534049451351,-0.238056883215904,-0.934519708156586,-0.26457867026329,-0.938597083091736,-0.344431132078171,0.0200684890151024,-0.940069019794464,-0.340886890888214,0.00816096924245358,-0.9399533867836,-0.340515434741974,0.023170692846179,-0.938651382923126,-0.344864636659622,0.0014012377941981,-0.267343491315842,-0.502589523792267,-0.822150349617004,-0.906251013278961,-0.42229625582695,0.0193640738725662,-0.524925529956818,-0.423892110586166,-0.738084435462952,-0.903369426727295,-0.428358823060989,0.0207955129444599,-0.541666865348816,-0.430043309926987,-0.722260177135468,-0.523865163326263,-0.4269839823246,-0.737054944038391,-0.894011259078979,-0.447329670190811,0.0252995118498802,-0.819255948066711,-0.571897685527802,-0.0418681390583515,-0.530433595180511,-0.454347521066666,-0.715687453746796,-0.527330219745636,0.438280194997787,-0.727896511554718,-0.654020130634308,0.406836748123169,-0.637762904167175,-0.812126040458679,0.583469927310944,0.0037872192915529,-0.769861400127411,0.63631397485733,0.0491730161011219,-0.76254141330719,0.645122170448303,0.0484558343887329,-0.965065717697144,-0.251074016094208,0.0749011933803558,-0.757183969020844,0.638681530952454,-0.136961296200752,-0.387494742870331,0.921472787857056,0.0271250437945127,-0.613503634929657,-0.181034237146378,-0.768661081790924,-0.696085631847382,-0.205402389168739,0.687949597835541,-0.719512164592743,-0.187190145254135,0.668776571750641,-0.684445023536682,0.583114504814148,0.437621384859085,-0.965803802013397,-0.25717356801033,-0.0329392068088055,-0.954026699066162,-0.299611687660217,0.00812070071697235,
- -0.959083199501038,-0.283008128404617,0.00811589881777763,-0.95859682559967,-0.282864600419998,-0.0328624248504639,-0.945856213569641,-0.322891443967819,-0.0331263169646263,-0.967260539531708,-0.251645028591156,-0.0328907780349255,-0.946190655231476,-0.323382765054703,0.0121183786541224,-0.959040224552155,-0.282995462417603,0.0124746030196548,-0.953983843326569,-0.29959824681282,0.0124774500727654,-0.967374682426453,-0.251674711704254,0.0290911495685577,-0.945830583572388,-0.323397219181061,0.0286137722432613,-0.937538266181946,-0.346652835607529,0.0292194318026304,-0.967570543289185,-0.250473588705063,-0.0327171646058559,-0.966872692108154,-0.253295361995697,0.0316020622849464,-0.953886210918427,-0.299567550420761,0.018984466791153,-0.894198596477509,-0.308223277330399,0.324664920568466,-0.90225487947464,-0.283352673053741,0.325034528970718,-0.752661228179932,-0.658221960067749,-0.0156493149697781,-0.967068612575531,-0.253804087638855,-0.0190202817320824,-0.967482089996338,-0.250927239656448,0.0318426601588726,-0.968397200107574,-0.247271999716759,-0.0326106436550617,-0.890442192554474,-0.409486889839172,0.198577970266342,-0.920543611049652,-0.34036910533905,0.191698685288429,-0.928349614143372,-0.318779200315475,0.191172808408737,-0.949575781822205,-0.313297837972641,-0.0122583210468292,-0.948186814785004,-0.316726118326187,0.0250263530761003,-0.949938118457794,-0.312381207942963,-0.00596703588962555,-0.952650904655457,-0.303843468427658,-0.0116385566070676,-0.94613116979599,-0.323084205389023,-0.0212703160941601,-0.95113331079483,-0.307685762643814,0.0259792841970921,-0.939140141010284,-0.319827914237976,-0.125402927398682,-0.999572217464447,0.0276233311742544,0.00961070414632559,-0.898000061511993,-0.426390051841736,-0.108569763600826,-0.939362227916718,-0.342925488948822,0.000958687043748796,-0.940679490566254,-0.338533908128738,0.022736057639122,-0.940622329711914,-0.339168071746826,-0.0139584448188543,-0.937671959400177,-0.34670227766037,-0.0238552819937468,-0.904576659202576,-0.42572745680809,-0.0223029348999262,
- -0.886191606521606,-0.462701767683029,-0.0239070151001215,-0.920592963695526,-0.390138924121857,-0.0173269174993038,-0.921307981014252,-0.387385964393616,0.0335225909948349,-0.919688761234283,-0.391986072063446,0.0227935649454594,-0.811288416385651,-0.584417521953583,0.0163489654660225,-0.81810188293457,-0.570114612579346,0.0753568857908249,-0.806370317935944,-0.589669287204742,-0.0453570000827312,-0.887442171573639,-0.460393130779266,-0.02201340906322,-0.922319173812866,-0.386408239603043,-0.00403019692748785,-0.905120849609375,-0.425143837928772,-0.00300282961688936,-0.922449588775635,-0.385746389627457,0.0169259645044804,-0.915384769439697,-0.40217188000679,-0.0181259084492922,-0.914376378059387,-0.404243499040604,0.022433215752244,-0.886289417743683,-0.462752848863602,-0.0187381971627474,-0.9046790599823,-0.425650507211685,-0.0194276552647352,-0.92192679643631,-0.386812567710876,-0.0206635762006044,-0.659223020076752,-0.425106525421143,0.620249509811401,-0.744406998157501,-0.38867262005806,0.542947351932526,-0.794799149036407,-0.31513375043869,0.518637657165527,-0.711705148220062,-0.458950370550156,0.531827509403229,-0.858681380748749,-0.346715688705444,0.377431482076645,-0.684871315956116,0.727914869785309,0.033033974468708,-0.886411964893341,-0.462816834449768,-0.00862698815762997,-0.840381443500519,-0.541928172111511,-0.00853948947042227,-0.726548254489899,-0.687061846256256,-0.00858284533023834,-0.816660046577454,-0.57687920331955,0.0166368652135134,-0.811729252338409,-0.582137048244476,-0.0470325574278831,-0.817293345928192,-0.57599288225174,-0.0162415038794279,-0.816497147083282,-0.577119767665863,-0.0162921380251646,-0.840384066104889,-0.54192990064621,-0.00816306658089161,-0.815876662731171,-0.577987790107727,0.0165947340428829,-0.726495683193207,-0.687012195587158,-0.0147749111056328,-0.840320348739624,-0.541888833045959,-0.0147709203884006,-0.722435295581818,-0.691312313079834,-0.0132116004824638,-0.840395450592041,-0.541937232017517,-0.00630723824724555,-0.784554779529572,-0.619791626930237,-0.0182236488908529,
- -0.722581088542938,-0.691269338130951,-0.00482147978618741,-0.623088598251343,-0.781765520572662,-0.0245666448026896,-0.726327002048492,-0.686852633953094,-0.0261280033737421,-0.722078919410706,-0.691275596618652,-0.027205053716898,-0.657017409801483,-0.753477513790131,-0.0244911015033722,-0.623518466949463,-0.7817462682724,-0.00987535528838634,-0.722452282905579,-0.691310167312622,-0.0123681919649243,-0.726557970046997,-0.687071025371552,-0.00685987202450633,-0.623620331287384,-0.781708002090454,-0.00550604006275535,-0.619884192943573,-0.784663558006287,-0.00684890523552895,-0.619880974292755,-0.784659445285797,-0.00755513645708561,-0.623535692691803,-0.781741201877594,-0.00917370058596134,-0.583456993103027,-0.812108993530273,-0.00754113215953112,-0.659835755825043,-0.751394212245941,-0.00484902644529939,-0.659717917442322,-0.750925004482269,0.0297314431518316,-0.661603093147278,-0.749460458755493,-0.0242968443781137,-0.623634397983551,-0.781701028347015,-0.00485954154282808,-0.666691541671753,-0.74494481086731,-0.0240789968520403,-0.664598226547241,-0.746594190597534,0.0301070678979158,-0.622809052467346,-0.78191065788269,0.0269185155630112,-0.624885559082031,-0.780707716941834,0.0037014139816165,-0.627283334732056,-0.778519451618195,0.0205681100487709,-0.520812451839447,-0.852478623390198,0.0451065935194492,-0.51141756772995,-0.858775913715363,0.0309234764426947,-0.511373043060303,-0.859155774116516,0.0186824630945921,-0.591665387153625,-0.805737614631653,-0.0268173553049564,-0.622974574565887,-0.781746685504913,-0.0278360396623611,-0.541066884994507,-0.840721249580383,0.0208432506769896,-0.591039419174194,-0.805517315864563,-0.042594600468874,-0.505480706691742,-0.862644731998444,0.0182563476264477,-0.506218373775482,-0.861858665943146,0.0307021215558052,-0.583411335945129,-0.812045454978943,-0.0146088525652885,-0.623320698738098,-0.781777024269104,-0.0172104761004448,-0.592002868652344,-0.805772662162781,-0.016218738630414,-0.905468940734863,-0.388306617736816,0.171300753951073,-0.586350321769714,-0.790328919887543,0.177690014243126,
- -0.996499538421631,-0.0687098205089569,0.0476197376847267,-0.902960956096649,-0.381508529186249,0.197770074009895,-0.571890771389008,-0.796010136604309,0.198264420032501,-0.582036256790161,-0.782758116722107,0.220280572772026,-0.583413898944855,-0.812049090862274,0.0143091008067131,-0.905057430267334,-0.425273656845093,-0.00366175640374422,-0.876307904720306,-0.48157462477684,0.0130603713914752,-0.0313659906387329,-0.995869278907776,-0.0852087959647179,0.419528484344482,-0.904624998569489,-0.0751631706953049,0.4014732837677,-0.91315495967865,-0.070478692650795,0.350697457790375,-0.715331375598907,-0.604410707950592,-0.0248603783547878,-0.789316773414612,-0.613482713699341,-0.0114815263077617,-0.786062717437744,-0.618040084838867,0.566861689090729,-0.686886966228485,0.45481213927269,0.34891152381897,-0.794574320316315,0.496902793645859,-0.0503123700618744,-0.804736614227295,0.591496169567108,-0.0314774513244629,-0.999409079551697,-0.0138100301846862,-0.0622924230992794,-0.9979527592659,-0.0144969820976257,-0.0389075838029385,-0.999149978160858,-0.0136215621605515,-0.157951071858406,-0.987194240093231,-0.0223379004746675,-0.0620049796998501,-0.997841656208038,-0.0216202214360237,-0.031472634524107,-0.999256134033203,-0.0222910735756159,-0.0483403243124485,-0.57377701997757,0.817583739757538,0.324719041585922,-0.945657730102539,0.0170002337545156,0.238628923892975,-0.804069697856903,0.544544041156769,-0.0693442597985268,-0.978058755397797,0.196450114250183,-0.15504102408886,-0.969006419181824,0.192324936389923,-0.195441797375679,-0.961704790592194,0.192162394523621,-0.244281813502312,-0.969247221946716,0.0297694113105536,-0.197780057787895,-0.979781091213226,0.0302007105201483,-0.157919898629189,-0.98699939250946,0.0298912711441517,-0.0299479216337204,-0.999315559864044,-0.0217194017022848,-0.0392996408045292,-0.999226689338684,-0.00126972782891244,-0.0627780333161354,-0.998024940490723,-0.0022779528517276,-0.03950559720397,-0.99920529127121,0.00529615255072713,-0.0337138138711452,-0.999200701713562,-0.0214794687926769,
- -0.0309434346854687,-0.998986780643463,0.0326823964715004,-0.195305958390236,-0.973482131958008,-0.119114063680172,-0.448183000087738,-0.893913507461548,0.00711595453321934,-0.0581561513245106,-0.992191076278687,-0.110339991748333,0.0489809699356556,-0.997037589550018,0.0593039840459824,-0.0447637513279915,-0.823305189609528,0.565831065177917,-0.0711500495672226,-0.996879279613495,0.0341989398002625,-0.0461963638663292,-0.998214423656464,0.0378692597150803,-0.0355690345168114,-0.998826861381531,0.0328594706952572,-0.0381117388606071,-0.999048590660095,-0.0211988389492035,-0.694213330745697,-0.584210157394409,0.420435905456543,-0.682411313056946,-0.721184372901917,-0.119196847081184,-0.687079966068268,-0.627224087715149,0.36675751209259,-0.802339971065521,-0.485957622528076,0.346548408269882,-0.709949016571045,-0.610779583454132,0.35060065984726,-0.669634461402893,-0.733621776103973,-0.115709938108921,-0.831316769123077,-0.531668543815613,-0.161990791559219,-0.217274844646454,-0.936789095401764,-0.27425879240036,-0.88636988401413,-0.459820657968521,0.0539760775864124,-0.217751234769821,-0.936136245727539,-0.276103794574738,-0.903683185577393,-0.424806207418442,0.0538176447153091,-0.88564544916153,-0.460610419511795,0.0589081458747387,-0.883377969264984,-0.416669249534607,0.214546903967857,-0.165143698453903,-0.982677340507507,-0.0841010734438896,-0.136600688099861,-0.905877888202667,0.400905877351761,-0.102513290941715,-0.994691729545593,-0.00890960916876793,-0.149105682969093,-0.988806128501892,-0.00547655439004302,-0.139421612024307,-0.990229189395905,0.00279190973378718,-0.102654360234737,-0.994673371315002,-0.00932788942009211,-0.139508932828903,-0.990217745304108,0.00250347005203366,-0.122523762285709,-0.992256999015808,0.0203457772731781,-0.149102285504341,-0.988783597946167,0.00869164057075977,-0.0980194285511971,-0.995174825191498,0.00438455538824201,-0.306760936975479,-0.951745331287384,0.00886346679180861,-0.119294665753841,-0.992634832859039,0.0210932102054358,-0.119169920682907,-0.992583811283112,0.0240020547062159,
- -0.10349079221487,-0.994560301303864,-0.0118090538308024,-0.123586237430573,-0.992130279541016,0.0200997311621904,-0.121351413428783,-0.992483854293823,-0.0158003214746714,-0.123807802796364,-0.992038786411285,0.0230406243354082,-0.306093513965607,-0.949674487113953,0.0665218085050583,-0.0632981210947037,-0.992434024810791,0.105205811560154,-0.338911980390549,-0.912120640277863,0.230596646666527,0.120184041559696,-0.990127086639404,0.0721400231122971,-0.333888649940491,-0.91103732585907,0.24192850291729,-0.0613858066499233,-0.991960406303406,0.110664263367653,-0.306758344173431,-0.951737523078918,-0.00975702330470085,-0.379682183265686,-0.925030589103699,-0.0126426229253411,-0.346784502267838,-0.937894344329834,-0.009730139747262,-0.376207590103149,-0.926534056663513,-0.00158573919907212,-0.306743830442429,-0.951692461967468,0.0137726524844766,-0.421877503395081,-0.906519055366516,0.0155744226649404,-0.421094238758087,-0.906839787960052,0.0179221052676439,-0.390268415212631,-0.920187056064606,-0.0307625569403172,-0.375565707683563,-0.926795780658722,0.000439396273577586,-0.359099447727203,-0.932986438274384,-0.0241637472063303,-0.416193038225174,-0.908697605133057,0.0324354842305183,-0.358204334974289,-0.933250963687897,-0.0270613096654415,-0.963875710964203,-0.200406417250633,-0.175444662570953,-0.757835984230042,-0.138336926698685,-0.637610971927643,-0.460990875959396,-0.429692178964615,-0.776435494422913,-0.730766236782074,0.023506186902523,-0.682222962379456,-0.731121063232422,-0.195571213960648,-0.653616011142731,-0.957419216632843,-0.231335505843163,-0.172720402479172,-0.171625792980194,-0.9850834608078,-0.0124586150050163,-0.167413517832756,-0.985532581806183,0.0264231991022825,-0.176753595471382,-0.984182178974152,0.0119859091937542,-0.17747363448143,-0.984051585197449,-0.0120658716186881,-0.197442784905434,-0.980112373828888,-0.0199029985815287,-0.172949701547623,-0.984559774398804,0.027030611410737,-0.361937552690506,-0.93216997385025,-0.00777025194838643,-0.355901002883911,-0.934228420257568,-0.0234900303184986,
- -0.355072230100632,-0.934466958045959,-0.0263710040599108,-0.170291930437088,-0.985254347324371,-0.0165693163871765,-0.171279639005661,-0.985134899616241,0.0131356315687299,-0.167006835341454,-0.985602796077728,0.0263785645365715,-0.190039649605751,-0.930013477802277,0.314578860998154,-0.1971635222435,-0.928178906440735,0.315611571073532,0.217319250106812,-0.97596275806427,-0.0164009109139442,-0.173401236534119,-0.984714150428772,-0.0164341423660517,-0.169428586959839,-0.985182344913483,0.0266443137079477,-0.205159872770309,-0.97870659828186,-0.00654609408229589,-0.19771745800972,-0.980179727077484,0.0124723333865404,-0.126299053430557,-0.991886258125305,0.0144995450973511,-0.205294892191887,-0.978621482849121,0.0124098155647516,-0.20510146021843,-0.978659927845001,-0.0125749362632632,-0.125722497701645,-0.99201112985611,-0.0103815551847219,-0.226724103093147,-0.973857283592224,-0.0140783553943038,-0.125308498740196,-0.991765081882477,-0.0264575015753508,-0.197338089346886,-0.979927778244019,-0.0282713733613491,-0.244291692972183,-0.969286382198334,-0.0283812154084444,0.412936627864838,-0.655838251113892,0.631949007511139,-0.128128096461296,-0.976192712783813,0.175017133355141,-0.241972491145134,-0.960084974765778,0.140308052301407,-0.326342910528183,-0.932407915592194,-0.155292734503746,-0.121774099767208,-0.983733236789703,-0.132061392068863,0.532447457313538,-0.845652043819427,-0.0370446965098381,-0.120334036648273,-0.978756010532379,-0.166001111268997,-0.324638187885284,-0.927537620067596,-0.185159578919411,-0.328075170516968,-0.903291165828705,-0.276462912559509,0.615267276763916,-0.787154912948608,-0.0428173281252384,-0.120334036648273,-0.978756010532379,-0.166001111268997,-0.328075170516968,-0.903291165828705,-0.276462912559509,-0.456401526927948,-0.8891960978508,0.0320619828999043,-0.357921600341797,-0.933092296123505,0.0350849777460098,-0.330179840326309,-0.943371057510376,0.0321296192705631,-0.97085040807724,0.239218398928642,-0.0149751985445619,-0.456635743379593,-0.889653861522675,-0.000146464313729666,
- -0.986179888248444,0.165678218007088,-4.3072705011582e-005,-0.411024510860443,-0.91141140460968,-0.0197002738714218,-0.410147190093994,-0.912003397941589,-0.00539585994556546,-0.358249425888062,-0.932598650455475,0.04378467425704,-0.401619970798492,-0.915205121040344,-0.0331811904907227,-0.411640673875809,-0.911330699920654,-0.00532117020338774,-0.412376195192337,-0.91080242395401,-0.0196230802685022,-0.778104722499847,0.0483971349895,-0.626267313957214,-0.974703848361969,0.113413654267788,-0.192587018013,-0.99672544002533,0.0691197663545609,0.041962455958128,-0.357718348503113,-0.933346807956696,0.0300223883241415,-0.456469476222992,-0.889328420162201,0.0270287673920393,-0.441999047994614,-0.896669447422028,0.0249139200896025,-0.387764185667038,-0.755472600460052,-0.528109967708588,-0.950099050998688,0.177701205015183,-0.256386637687683,-0.370491415262222,-0.810848236083984,-0.453057914972305,-0.357785493135452,-0.933266580104828,0.031670406460762,-0.44206240773201,-0.8965904712677,0.0265781972557306,-0.404828011989594,-0.914172947406769,-0.0200529508292675,-0.949819922447205,0.177331119775772,-0.257673710584641,-0.995059728622437,0.0896241664886475,0.0427041053771973,-0.361776113510132,-0.79694139957428,-0.483737975358963,-0.684081315994263,0.723396420478821,-0.0934371426701546,-0.687938153743744,0.720225512981415,-0.0895336717367172,-0.841507077217102,-0.522046029567719,-0.139045923948288,-0.849446177482605,-0.526971161365509,-0.0272503271698952,-0.691099762916565,0.722653806209564,-0.0123545909300447,-0.823531806468964,-0.331769466400146,-0.460135459899902,-0.84961611032486,-0.527076661586761,-0.0185107477009296,-0.845524907112122,-0.533871293067932,0.00832389295101166,-0.72644978761673,-0.686968743801117,-0.0185654796659946,-0.86869752407074,0.47465968132019,-0.141644075512886,-0.822024762630463,-0.328931480646133,-0.464843392372131,-0.691201984882355,0.72239875793457,0.0194926504045725,-0.99418181180954,-0.0845984071493149,-0.0666755959391594,-0.560554146766663,0.579309463500977,0.59175968170166,-0.542719185352325,0.571206092834473,0.615775525569916,
- -0.726014852523804,-0.686557471752167,-0.039260633289814,-0.845821559429169,-0.5334233045578,0.00674630701541901,-0.863124787807465,-0.504444241523743,0.0234861429780722,-0.865460216999054,-0.500836312770844,0.0119088040664792,-0.847579479217529,-0.530660927295685,-0.00286996806971729,-0.817543864250183,-0.575443506240845,0.0220639053732157,-0.724500119686127,-0.68512499332428,0.0755205675959587,-0.773872017860413,-0.565290689468384,0.285602062940598,-0.924755096435547,-0.368334621191025,0.0956956148147583,-0.843962907791138,-0.536350190639496,0.0074239051900804,-0.928993582725525,-0.370022863149643,0.00735193444415927,-0.872185468673706,-0.488482415676117,-0.026028485968709,-0.84395307302475,-0.536343991756439,0.00885011069476604,-0.871770918369293,-0.489352941513062,-0.0234348047524691,-0.861083090305328,-0.507732629776001,-0.0272673685103655,-0.860569298267365,-0.508777976036072,-0.0237791482359171,-0.871094703674316,-0.490736097097397,-0.0192902162671089,-0.896095335483551,-0.440481513738632,-0.0546736568212509,-0.868001699447632,-0.496559172868729,-0.00151149556040764,-0.864236831665039,-0.503032147884369,0.00732194446027279,-0.859354317188263,-0.509656012058258,-0.0419637933373451,-0.998202741146088,-0.0369770638644695,0.0471591800451279,-0.991352617740631,-0.115812458097935,-0.0617047250270844,-0.561134696006775,0.593392789363861,0.577072620391846,-0.30986300110817,0.300218731164932,0.902138352394104,-0.501485586166382,-0.310863196849823,0.807388544082642,-0.932209730148315,-0.359228849411011,0.0440413951873779,-0.813225150108337,-0.581454932689667,-0.0239847581833601,-0.808924376964569,-0.586669266223907,0.0382169000804424,-0.29849562048912,-0.802326261997223,0.516887784004211,-0.869032502174377,-0.494569003582001,-0.0135741587728262,-0.863577365875244,-0.502349615097046,-0.0433473326265812,-0.86839884519577,-0.495831340551376,0.00589445559307933,-0.780131340026855,-0.624768197536469,0.0325542539358139,-0.775009214878082,-0.630888342857361,0.0366146117448807,-0.776665687561035,-0.629512429237366,-0.022466579452157,
- -0.786363661289215,-0.617384552955627,-0.021645387634635,-0.784981966018677,-0.618407607078552,0.0370857641100883,-0.799598693847656,-0.598742663860321,-0.046361468732357,-0.893308579921722,-0.446230351924896,-0.0536493882536888,-0.900142133235931,-0.435485392808914,-0.00982766505330801,-0.899495005607605,-0.433375179767609,-0.055629774928093,-0.631412744522095,-0.670486867427826,-0.389570683240891,-0.353628724813461,-0.934257745742798,-0.0459255650639534,-0.555769383907318,-0.764757871627808,-0.325984358787537,-0.902101159095764,-0.431418746709824,-0.00957266800105572,-0.981731832027435,0.0507795363664627,-0.183368653059006,-0.901496112346649,-0.429222702980042,-0.0554312318563461,-0.893515765666962,-0.448198437690735,0.027345160022378,-0.981572508811951,0.0504261776804924,-0.184316739439964,-0.907433450222015,-0.420102596282959,-0.00886496994644403,-0.535407602787018,0.592097878456116,-0.602294623851776,-0.53951358795166,0.567362904548645,-0.62211287021637,-0.993339717388153,-0.0585554502904415,-0.0992342829704285,-0.991482317447662,-0.114591248333454,0.0619007237255573,-0.994659721851349,-0.0180352032184601,-0.101621612906456,-0.561878681182861,0.594293415546417,-0.575419545173645,-0.560414612293243,0.579160451889038,-0.592037856578827,-0.994176745414734,-0.0846676379442215,0.0666646733880043,-0.542584955692291,0.57104504108429,-0.616043150424957,-0.841507315635681,-0.522046148777008,0.1390440762043,-0.687938272953033,0.720225632190704,0.0895326510071754,-0.684081315994263,0.723396480083466,0.0934361144900322,-0.691101014614105,0.722654104232788,0.012265283614397,-0.84945011138916,-0.526973605155945,0.0270843748003244,-0.823598504066467,-0.331896215677261,0.459924310445786,-0.868765830993652,0.474538266658783,0.141631081700325,-0.691201388835907,0.722397267818451,-0.0195657107979059,-0.822088837623596,-0.329051315784454,0.464645236730576,-0.72644978761673,-0.686968743801117,0.0185654796659946,-0.845524907112122,-0.533871293067932,-0.00832389295101166,-0.84961611032486,-0.527076661586761,0.0185107477009296,-0.845820069313049,-0.533425569534302,-0.00675423117354512,
- -0.726014971733093,-0.686557590961456,0.0392544306814671,-0.8631232380867,-0.504446744918823,-0.0234941765666008,-0.817539274692535,-0.57545018196106,-0.0220652893185616,-0.847578048706055,-0.530663073062897,0.00286249397322536,-0.865458726882935,-0.500838696956635,-0.0119163570925593,-0.924755096435547,-0.368334621191025,-0.0956964120268822,-0.773871719837189,-0.565290868282318,-0.285602957010269,-0.724500060081482,-0.68512499332428,-0.0755211561918259,-0.843962788581848,-0.536350131034851,-0.00744049344211817,-0.87218314409256,-0.488487303256989,0.0260139834135771,-0.928993463516235,-0.370022833347321,-0.00736836157739162,-0.871771335601807,-0.489352077245712,0.0234373603016138,-0.843953192234039,-0.536343991756439,-0.00885185599327087,-0.861083388328552,-0.507731974124908,0.0272695701569319,-0.871095240116119,-0.490734994411469,0.0192935187369585,-0.860569834709167,-0.508777141571045,0.0237821508198977,-0.896100163459778,-0.44047150015831,0.0546754375100136,-0.859353363513947,-0.509657621383667,0.0419634878635406,-0.864235818386078,-0.503033638000488,-0.00732224993407726,-0.868002951145172,-0.496556729078293,0.00151893647853285,-0.868398010730743,-0.495832771062851,-0.00589473731815815,-0.863576531410217,-0.502351105213165,0.0433470495045185,-0.86903041601181,-0.494572430849075,0.0135743785649538,-0.776037693023682,-0.6297886967659,-0.0336448736488819,-0.77379184961319,-0.633032917976379,0.022705877199769,-0.769538342952728,-0.637082755565643,-0.0440033338963985,-0.900142431259155,-0.435484796762466,0.00982762686908245,-0.893308341503143,-0.446231126785278,0.0536492690443993,-0.899495303630829,-0.433374643325806,0.0556297525763512,-0.8192138671875,-0.56466406583786,0.100216493010521,-0.785542845726013,-0.617037415504456,-0.0467682331800461,-0.791745185852051,-0.610484182834625,0.0211803037673235,-0.902101635932922,-0.431417465209961,0.00957259070128202,-0.901496648788452,-0.429221540689468,0.0554311759769917,-0.981733024120331,0.0507821775972843,0.183361575007439,-0.981918454170227,0.0511962324380875,0.182250216603279,
- -0.888933300971985,-0.456247091293335,-0.0404496863484383,-0.905794322490692,-0.423620283603668,0.00908467266708612,-0.635865151882172,-0.769318640232086,0.0618413873016834,-0.983432054519653,0.180973678827286,-0.010482513345778,-0.982010781764984,0.181117162108421,0.0534001924097538,-0.971995651721954,0.197705313563347,0.127032488584518,-0.625797152519226,-0.757137417793274,0.18740576505661,-0.69772332906723,-0.68403285741806,0.212793841958046,-0.606287956237793,-0.795244157314301,-0.00128084572497755,-0.661109268665314,-0.750123977661133,-0.0157656595110893,-0.637084305286407,-0.770793378353119,-0.00109149806667119,-0.821736037731171,-0.568829357624054,0.0343952998518944,-0.977630019187927,0.19284600019455,0.0839652195572853,-0.697007775306702,-0.687567949295044,0.203544855117798,-0.96623033285141,0.150549545884132,-0.209126695990562,-0.991012632846832,-0.0255993362516165,0.131296202540398,-0.94111168384552,0.141767606139183,-0.306937992572784,-0.664445400238037,-0.747334599494934,-0.00183081021532416,-0.606254518032074,-0.795262813568115,0.0035380928311497,-0.61087441444397,-0.791499614715576,0.0189957227557898,-0.991024672985077,-0.0238163191825151,0.131540328264236,-0.998682379722595,0.02056316845119,-0.0470199249684811,-0.940470099449158,0.138109028339386,-0.310551315546036,-0.581562221050262,-0.397193640470505,-0.709945499897003,-0.786027848720551,-0.616763293743134,-0.0419915392994881,-0.484616369009018,-0.623137950897217,-0.613878011703491,-0.60136467218399,-0.790325522422791,0.117244601249695,0.307677298784256,-0.951235890388489,0.0220271144062281,-0.455995380878448,-0.793646693229675,-0.40273243188858,-0.823686599731445,-0.566531836986542,-0.0241304431110621,0.315980315208435,-0.948352754116058,-0.0279946960508823,-0.602882981300354,-0.789281785488129,-0.116475075483322,-0.664847254753113,-0.746979355812073,-0.000111181070678867,-0.611212909221649,-0.79120010137558,0.0205233562737703,-0.660629868507385,-0.750694990158081,0.00504729757085443,0.308480203151703,-0.951071739196777,0.0173932183533907,0.405795156955719,-0.898710906505585,-0.166279852390289,
- -0.455720096826553,-0.793539702892303,-0.403254181146622,-0.662220001220703,-0.749225914478302,-0.0111914956942201,-0.621705591678619,-0.783238291740417,-0.00446300115436316,-0.624122500419617,-0.781035184860229,-0.0213401131331921,-0.671544909477234,-0.542553246021271,0.504641890525818,-0.67441588640213,-0.174714356660843,0.717382788658142,-0.336352109909058,0.632952630519867,0.697307825088501,-0.677172958850861,-0.178093150258064,0.713946521282196,-0.948251903057098,0.268921047449112,0.168818727135658,-0.323243826627731,0.553205370903015,0.767774224281311,-0.511354446411133,-0.858813464641571,-0.0309207886457443,-0.520757019519806,-0.852512001991272,-0.0451186709105968,-0.511309444904327,-0.859193682670593,-0.0186778604984283,-0.623824656009674,-0.781554341316223,-0.00395578239113092,-0.621641039848328,-0.782842755317688,-0.0268302615731955,-0.62622481584549,-0.779364466667175,-0.0208269823342562,-0.499784886837006,-0.865614950656891,-0.0304277520626783,-0.499078899621964,-0.866373956203461,-0.0177943557500839,-0.571633040904999,-0.819287240505219,0.0447675548493862,-0.823492288589478,-0.566957235336304,-0.0204931292682886,-0.883256196975708,-0.464170515537262,-0.0663643851876259,-0.814117431640625,-0.580442726612091,-0.0172996018081903,-0.89573210477829,-0.444588422775269,-0.00225951592437923,-0.820166349411011,-0.571595311164856,0.0246210657060146,-0.908967077732086,-0.415585607290268,0.0326752103865147,-0.576199650764465,-0.816179156303406,-0.0429600588977337,-0.583416283130646,-0.812052369117737,-0.0140132531523705,-0.876310884952545,-0.481576234102249,-0.012788949534297,-0.909564554691315,-0.415537416934967,-0.00458384910598397,-0.94038724899292,-0.340062528848648,-0.00541679514572024,-0.90058296918869,-0.433566987514496,0.0311448946595192,-0.939383327960968,-0.342588663101196,-0.0138562116771936,-0.909563183784485,-0.415562570095062,-0.0015931063098833,-0.940482974052429,-0.33983838558197,-0.00128086353652179,-0.937821328639984,-0.346757501363754,-0.0158233344554901,-0.942384600639343,-0.334252178668976,0.0136671150103211,
- -0.940366208553314,-0.339796185493469,-0.0158114675432444,-0.274455338716507,-0.93009877204895,-0.244111776351929,-0.64801013469696,-0.444610297679901,-0.618388652801514,-0.860724985599518,-0.318251311779022,-0.397326856851578,-0.936525404453278,-0.348836272954941,-0.0351229608058929,-0.282738894224167,-0.95817095041275,0.0443532355129719,-0.234659463167191,-0.941702723503113,0.241103529930115,-0.583416342735291,-0.812052369117737,0.0140115888789296,-0.573569655418396,-0.818984150886536,0.0168252605944872,-0.623338043689728,-0.781776010990143,0.0166122410446405,-0.57276314496994,-0.819198489189148,0.029265608638525,-0.542493283748627,-0.839799046516418,-0.0209476258605719,-0.622912347316742,-0.781733572483063,0.0295437145978212,-0.623536109924316,-0.781741082668304,0.00915730465203524,-0.619881093502045,-0.784659564495087,0.00753873120993376,-0.583457112312317,-0.812109112739563,0.00752475718036294,-0.623620629310608,-0.78170782327652,0.00549148907884955,-0.726557970046997,-0.687071084976196,0.00684528751298785,-0.619884192943573,-0.784663558006287,0.00683434447273612,-0.666972696781158,-0.744693398475647,0.0240668822079897,-0.623644053936005,-0.781696021556854,0.00440811784937978,-0.664887249469757,-0.746335804462433,-0.0301293432712555,-0.660242557525635,-0.750462114810944,-0.0297717824578285,-0.660345017910004,-0.750946044921875,0.00497615290805697,-0.662129104137421,-0.748996496200562,0.0242744367569685,-0.722107470035553,-0.691282391548157,0.0262600854039192,-0.726344585418701,-0.686869263648987,0.025182731449604,-0.623120248317719,-0.781769275665283,0.0236219801008701,-0.623533308506012,-0.781741857528687,0.00926858279854059,-0.657493233680725,-0.753063082695007,0.024471040815115,-0.722464144229889,-0.691308379173279,0.0117633584886789,-0.840307652950287,-0.54188060760498,0.0157701149582863,-0.726484596729279,-0.687001705169678,0.0157743729650974,-0.722414553165436,-0.691314160823822,0.0142114413902164,-0.784368097782135,-0.620027601718903,0.0182344075292349,-0.840391993522644,-0.54193502664566,0.00690777879208326,
- -0.722572326660156,-0.691274046897888,0.00542583223432302,-0.726548314094543,-0.687061905860901,0.00857427529990673,-0.840381503105164,-0.541928231716156,0.00853096321225166,-0.886412024497986,-0.462816894054413,0.00861837342381477,-0.816673517227173,-0.576870262622833,0.0162809286266565,-0.811127543449402,-0.58299058675766,0.0468434914946556,-0.816039860248566,-0.577757120132446,-0.0166035052388906,-0.840379357337952,-0.541926860809326,0.00883427448570728,-0.815737843513489,-0.578191101551056,0.016340296715498,-0.815119206905365,-0.579056859016418,-0.0165540389716625,-0.744735360145569,-0.388844043016434,-0.542374014854431,-0.65962028503418,-0.42536273598671,-0.619651198387146,-0.795080363750458,-0.315269082784653,-0.518124103546143,-0.712012231349945,-0.459148377180099,-0.531245112419128,-0.684981048107147,0.727811515331268,-0.0330358035862446,-0.858795821666718,-0.346774369478226,-0.377117067575455,-0.904721260070801,-0.42561599612236,0.0181778836995363,-0.886309385299683,-0.462763279676437,0.017487620934844,-0.92196524143219,-0.386785835027695,0.0194113347679377,-0.886196076869965,-0.462704122066498,0.0236937124282122,-0.904584407806396,-0.425721853971481,0.0220905020833015,-0.937676608562469,-0.346703976392746,0.0236424393951893,-0.915393531322479,-0.402152240276337,0.0181246008723974,-0.922449588775635,-0.385746270418167,-0.0169292148202658,-0.914384961128235,-0.404223799705505,-0.0224337968975306,-0.922339141368866,-0.386371791362762,0.00272016692906618,-0.88799923658371,-0.459321200847626,0.0219414979219437,-0.905145585536957,-0.425098299980164,0.00168816489167511,-0.806509792804718,-0.589475035667419,0.0454003997147083,-0.8182412981987,-0.569920539855957,-0.0753110200166702,-0.811430871486664,-0.584219515323639,-0.0163565706461668,-0.921312630176544,-0.387375086545944,-0.0335201732814312,-0.920598030090332,-0.390127003192902,0.0173261258751154,-0.919693887233734,-0.391974240541458,-0.0227939132601023,-0.818957567214966,-0.573815107345581,0.00668768817558885,-0.815653681755066,-0.573505759239197,-0.0761590451002121,
- -0.803860008716583,-0.593145728111267,0.0445783473551273,-0.836148977279663,-0.544114410877228,-0.0692416727542877,-0.814935326576233,-0.579396426677704,-0.0134222600609064,-0.884233057498932,-0.462909638881683,-0.0620227865874767,-0.900452077388763,-0.433910489082336,0.0301288291811943,-0.940303087234497,-0.340282738208771,-0.00614891201257706,-0.937271475791931,-0.347720324993134,-0.0247530546039343,-0.940195739269257,-0.339855819940567,-0.0230259783565998,-0.940151453018188,-0.340675324201584,-0.00745587330311537,-0.93889445066452,-0.344202935695648,-0.00125019066035748,-0.940971195697784,-0.338201284408569,0.0138947954401374,-0.941019058227539,-0.337602525949478,-0.0225318465381861,-0.939700722694397,-0.341997146606445,-0.000746954523492604,-0.237987473607063,-0.934675455093384,0.264090448617935,-0.893172323703766,-0.448980271816254,-0.0256931893527508,-0.938553869724274,-0.344529271125793,-0.020400770008564,-0.894830703735352,-0.445710152387619,-0.0249135121703148,-0.268426775932312,-0.519466698169708,0.811234652996063,-0.519106030464172,-0.440585672855377,0.732402324676514,-0.532914698123932,-0.449083179235458,0.717165410518646,-0.888842046260834,-0.457375943660736,-0.0277001410722733,-0.517065942287445,-0.446284383535385,0.730392396450043,-0.809580862522125,-0.585491538047791,0.0421747826039791,-0.885887324810028,-0.462990194559097,-0.0290465150028467,-0.523931205272675,-0.467880308628082,0.711747229099274,-0.524969577789307,0.436254531145096,0.73081386089325,-0.813396215438843,0.581698358058929,-0.00368746928870678,-0.654581665992737,0.403663367033005,0.639201760292053,-0.949562907218933,-0.313337117433548,0.0122608980163932,-0.949917495250702,-0.312444120645523,0.00595285417512059,-0.948175072669983,-0.316761583089828,-0.0250226054340601,-0.967747986316681,-0.249886646866798,-0.0319482795894146,-0.967330873012543,-0.252786159515381,0.0192445442080498,-0.968666613101959,-0.246219083666801,0.0325755551457405,-0.762531459331512,0.645116150379181,-0.0486942268908024,-0.769852340221405,0.636306464672089,-0.0494111403822899,
- -0.965039372444153,-0.251067161560059,-0.0752627775073051,-0.967130184173584,-0.252297610044479,-0.0317034758627415,-0.967824518680573,-0.249494254589081,0.0326846055686474,-0.953878164291382,-0.299565047025681,-0.0194229763001204,-0.758657455444336,0.640088021755219,0.121352478861809,-0.643193602561951,-0.189795255661011,0.741808533668518,-0.383328527212143,0.923208773136139,-0.0272918026894331,-0.959080398082733,-0.283007323741913,-0.00846274197101593,-0.954024016857147,-0.29961085319519,-0.00846782233566046,-0.965933203697205,-0.256688803434372,0.0329231768846512,-0.720447242259979,-0.187433436512947,-0.667700886726379,-0.697032988071442,-0.205681920051575,-0.686906099319458,-0.684883654117584,0.583473324775696,-0.436455339193344,-0.900136888027191,-0.300174742937088,-0.315671861171722,-0.759993731975555,-0.649768710136414,0.0145039735361934,-0.905608892440796,-0.284406006336212,-0.314620077610016,-0.959040999412537,-0.282995671033859,-0.0124037610366941,-0.949365556240082,-0.313940018415451,-0.0121224382892251,-0.953984797000885,-0.299598515033722,-0.012406594119966,-0.949306070804596,-0.313645988702774,0.0210755001753569,-0.952639162540436,-0.303880125284195,0.0116409594193101,-0.951122999191284,-0.307718276977539,-0.0259758718311787,-0.967262029647827,-0.251645416021347,0.0328450202941895,-0.949029326438904,-0.313455998897552,0.0329950042068958,-0.958598256111145,-0.282865047454834,0.0328169800341129,-0.999641835689545,0.0250390395522118,-0.00944846216589212,-0.940987646579742,-0.309946954250336,0.135923132300377,-0.896570384502411,-0.426231622695923,0.120366774499416,-0.949013292789459,-0.313957780599594,-0.0283606238663197,-0.96738338470459,-0.251676976680756,-0.02877601608634,-0.937546908855438,-0.346656054258347,-0.0289029031991959,-0.920026302337646,-0.340177834033966,-0.194501012563705,-0.889977514743805,-0.409148633480072,-0.201339095830917,-0.93094789981842,-0.309354662895203,-0.193999335169792,0.41952919960022,-0.904645204544067,0.0749154910445213,-0.0313667990267277,-0.995894908905029,0.0849085450172424,
- 0.401480406522751,-0.913171112537384,0.0702297762036324,-0.0248626302927732,-0.789388239383698,0.613390624523163,0.350724369287491,-0.715396821498871,0.604317665100098,-0.0114871961995959,-0.78613406419754,0.617949247360229,0.348902225494385,-0.794556736946106,-0.496937423944473,0.56684935092926,-0.686893820762634,-0.454817175865173,-0.0503124631941319,-0.804709792137146,-0.591532588005066,-0.0622919239103794,-0.997952520847321,0.0145092569291592,-0.0314774438738823,-0.999408900737762,0.0138217071071267,-0.0389071963727474,-0.999149799346924,0.0136337168514729,-0.0314726196229458,-0.999255776405334,0.0223027281463146,-0.0620045103132725,-0.997841417789459,0.0216318406164646,-0.157951042056084,-0.987194001674652,0.0223495792597532,0.238593146204948,-0.804076433181763,-0.544549703598022,0.324702829122543,-0.945663392543793,-0.0170010514557362,-0.0483384318649769,-0.57366681098938,-0.817661285400391,-0.15504065155983,-0.969004094600677,-0.192336946725845,-0.0693445801734924,-0.978056192398071,-0.196462199091911,-0.195441424846649,-0.961702466011047,-0.192174434661865,-0.197780057787895,-0.979781150817871,-0.0301984958350658,-0.244281828403473,-0.969247281551361,-0.0297672003507614,-0.15791991353035,-0.986999452114105,-0.029889052733779,-0.0392990037798882,-0.999226689338684,0.00128993950784206,-0.0299234017729759,-0.999316275119781,0.0217209625989199,-0.0627772286534309,-0.998024940490723,0.00229834765195847,-0.0337132215499878,-0.999200701713562,0.0214795060455799,-0.0395053066313267,-0.999205350875854,-0.00528683187440038,-0.0309430770576,-0.998986780643463,-0.0326823852956295,-0.448320895433426,-0.893844306468964,-0.00712627684697509,-0.19531112909317,-0.973501205444336,0.118949554860592,-0.0581642501056194,-0.992210030555725,0.11016446352005,-0.0447633266448975,-0.823305308818817,-0.565831124782562,0.0490106679499149,-0.997035801410675,-0.059310607612133,-0.0711556896567345,-0.996878862380981,-0.0341991484165192,-0.0381109938025475,-0.99904865026474,0.0211988873779774,-0.0355685912072659,-0.99882698059082,-0.0328594595193863,
- -0.0461989119648933,-0.998214244842529,-0.0378686748445034,-0.682418048381805,-0.721177697181702,0.119198687374592,-0.694223701953888,-0.584201753139496,-0.420430421829224,-0.687093019485474,-0.627215027809143,-0.366748541593552,-0.802359521389008,-0.485957115888596,-0.346504122018814,-0.66963917016983,-0.73361724615097,0.115711227059364,-0.709965109825134,-0.610767602920532,-0.350588977336884,-0.197442695498466,-0.980112195014954,0.0199106689542532,-0.177477240562439,-0.984050929546356,0.0120656294748187,-0.172952950000763,-0.984559118747711,-0.0270309653133154,-0.21723710000515,-0.93684059381485,0.274112671613693,-0.831335961818695,-0.531636714935303,0.16199666261673,-0.88635241985321,-0.459840297698975,-0.0540975257754326,-0.903676390647888,-0.424804151058197,-0.0539506562054157,-0.217713877558708,-0.936187624931335,0.275959044694901,-0.885628223419189,-0.46062895655632,-0.0590242370963097,-0.165109142661095,-0.982693374156952,0.0839816331863403,-0.883365452289581,-0.416663885116577,-0.214608252048492,-0.136594071984291,-0.905833959579468,-0.401007652282715,-0.149105682969093,-0.988806068897247,0.00548125198110938,-0.102514080703259,-0.994691729545593,0.00891190953552723,-0.139422386884689,-0.990229070186615,-0.00278936303220689,-0.102655127644539,-0.994673252105713,0.0093301460146904,-0.122518830001354,-0.992257595062256,-0.0203469209372997,-0.139509677886963,-0.990217566490173,-0.00250096572563052,-0.098006583750248,-0.995175957679749,-0.00442247372120619,-0.149102285504341,-0.988783597946167,-0.00870075542479753,-0.306760907173157,-0.951745271682739,-0.00887290388345718,-0.123811341822147,-0.992038369178772,-0.0230398904532194,-0.121354557573795,-0.992483556270599,0.0158001184463501,-0.123589798808098,-0.992129921913147,-0.0200989115983248,-0.119172625243664,-0.992583394050598,-0.0240014884620905,-0.119297415018082,-0.99263459444046,-0.0210925787687302,-0.103491611778736,-0.994560182094574,0.011811482720077,-0.17162974178791,-0.985082864761353,0.0124583533033729,-0.176759287714958,-0.98418116569519,-0.0119847124442458,
- -0.167417138814926,-0.985531985759735,-0.0264235939830542,-0.306092441082001,-0.94967120885849,-0.0665736198425293,-0.338888704776764,-0.912115931510925,-0.230649530887604,-0.0632807835936546,-0.992429792881012,-0.10525531321764,-0.333857119083405,-0.911030113697052,-0.241999179124832,0.120244093239307,-0.99011892080307,-0.0721517354249954,-0.0613638460636139,-0.991954684257507,-0.110726855695248,-0.386186003684998,-0.922359049320221,0.0106861628592014,-0.306758642196655,-0.95173841714859,0.00965018384158611,-0.353689908981323,-0.935313284397125,0.00961995497345924,-0.421798676252365,-0.906551659107208,-0.0158110279589891,-0.306742042303085,-0.951686918735504,-0.0141902435570955,-0.382507055997849,-0.923951983451843,-0.00106114882510155,-0.395237475633621,-0.918253183364868,0.0244634225964546,-0.421169251203537,-0.906809389591217,-0.0176976006478071,-0.381998598575592,-0.924159049987793,-0.00267003034241498,-0.416191458702087,-0.90869814157486,-0.032440111041069,-0.360390216112137,-0.932647347450256,0.0169666707515717,-0.358203381299973,-0.933251321315765,0.0270611029118299,-0.964746713638306,-0.197291865944862,0.174183011054993,-0.464275300502777,-0.430346637964249,0.774112522602081,-0.760836958885193,-0.141312703490257,0.633370280265808,-0.73586368560791,-0.194702863693237,0.648533344268799,-0.732284605503082,0.00191559200175107,0.680996000766754,-0.959303915500641,-0.224230527877808,0.171629428863525,-0.357213467359543,-0.933880746364594,0.0162876658141613,-0.361937612295151,-0.932170033454895,0.00777025148272514,-0.355071127414703,-0.934467375278473,0.0263707581907511,-0.167002171278,-0.985603630542755,-0.0263780523091555,-0.171278238296509,-0.985135138034821,-0.0131359240040183,-0.170287907123566,-0.985255062580109,0.0165694933384657,-0.972088158130646,0.230157494544983,-0.0455202646553516,-0.950762510299683,0.240080088376999,0.195990890264511,-0.888849198818207,0.108069896697998,0.445272952318192,-0.411622643470764,-0.911338984966278,0.00532207638025284,-0.402821689844131,-0.914906084537506,0.0261070244014263,
- -0.411979883909225,-0.911107540130615,0.0124766211956739,-0.456635743379593,-0.889653861522675,-0.000146464313729666,-0.968839704990387,0.246895775198936,0.0198010448366404,-0.986179888248444,0.165678218007088,-4.3072705011582e-005,-0.17339688539505,-0.984714925289154,0.0164343323558569,-0.205159679055214,-0.978706479072571,0.00656726816669106,-0.169422909617424,-0.985183238983154,-0.0266436897218227,-0.190048962831497,-0.930066108703613,-0.314417988061905,0.217338547110558,-0.975958466529846,0.0164030883461237,-0.197173252701759,-0.928231596946716,-0.315450191497803,-0.966850638389587,0.21268530189991,0.141297578811646,-0.386014342308044,-0.752064049243927,0.534221470355988,-0.405206441879272,-0.834514021873474,0.373355180025101,-0.966850638389587,0.21268530189991,0.141297578811646,-0.405206441879272,-0.834514021873474,0.373355180025101,-0.971957385540009,0.230706840753555,-0.045532401651144,-0.457679837942123,-0.888794004917145,-0.0239670518785715,-0.456469476222992,-0.889328420162201,-0.0270287394523621,-0.35771831870079,-0.933346807956696,-0.0300223603844643,-0.457742691040039,-0.888715088367462,-0.0256354175508022,-0.357785493135452,-0.933266580104828,-0.031670406460762,-0.404413461685181,-0.914485573768616,0.0128809083253145,-0.410567671060562,-0.911743879318237,0.0125522650778294,-0.358249366283417,-0.932598769664764,-0.0437828451395035,-0.410139381885529,-0.912006914615631,0.0053962511010468,-0.357921212911606,-0.933092772960663,-0.0350755415856838,-0.456401735544205,-0.889196455478668,-0.0320525169372559,-0.330179929733276,-0.9433713555336,-0.0321201309561729,0.615285813808441,-0.787140548229218,0.0428177192807198,-0.328121304512024,-0.903365731239319,0.276164323091507,-0.120344862341881,-0.978795826435089,0.165758490562439,-0.324657618999481,-0.927593111991882,0.184847682714462,-0.120344862341881,-0.978795826435089,0.165758490562439,-0.328121304512024,-0.903365731239319,0.276164323091507,-0.125722348690033,-0.992011070251465,0.0103874439373612,-0.205101430416107,-0.978659987449646,0.0125807980075479,-0.226723775267601,-0.973857462406158,0.0140783740207553,
- -0.126298755407333,-0.991886496543884,-0.0144857931882143,-0.197717383503914,-0.980179905891418,-0.0124586261808872,-0.205294817686081,-0.978621661663055,-0.0123961102217436,-0.121778711676598,-0.983748018741608,0.131946325302124,-0.326354414224625,-0.93244081735611,0.155071303248405,0.532448530197144,-0.845653772354126,0.0369906313717365,-0.244291573762894,-0.969285905361176,0.0283983834087849,-0.197337850928307,-0.97992730140686,0.0282884687185287,-0.125308021903038,-0.991764605045319,0.0264745131134987,-0.128128319978714,-0.976154148578644,-0.17523193359375,0.412699222564697,-0.655461132526398,-0.632495105266571,-0.241965591907501,-0.960057616233826,-0.140506267547607,0.739770650863647,0.669665217399597,-0.0654831305146217,0.144263505935669,0.0992115586996078,-0.984553277492523,0.109441615641117,0.319346994161606,-0.941296994686127,0.1307113468647,0.11363685131073,-0.984886407852173,-0.0314296744763851,-0.329365640878677,-0.943679213523865,0.0458826199173927,0.327665269374847,-0.943679094314575,0.851587235927582,0.520810723304749,-0.0596285201609135,0.981891095638275,0.161887019872665,-0.0984005630016327,0.206058651208878,0.0321501642465591,-0.9780113697052,-0.031607873737812,-0.329345107078552,-0.94368040561676,0.130587458610535,0.113768257200718,-0.984887659549713,-0.12095507979393,-0.12396065890789,-0.984887599945068,0.326561510562897,0.156760230660439,-0.932085752487183,0.194365009665489,0.0450058653950691,-0.979896306991577,0.988753974437714,0.10550731420517,-0.105989679694176,-0.668317973613739,-0.740787506103516,-0.0677127838134766,-0.0956467315554619,-0.321269303560257,-0.94214528799057,-0.134775310754776,-0.109321467578411,-0.984827220439911,0.0765997320413589,0.135010793805122,-0.987878918647766,0.327097922563553,0.154785349965096,-0.932227790355682,0.989540874958038,0.0965736731886864,-0.10715614259243,-0.19797246158123,-0.0410483479499817,-0.979347705841064,-0.977516531944275,-0.188400283455849,-0.0946940258145332,-0.836791932582855,-0.544153392314911,-0.0606329254806042,0.984873652458191,0.140565603971481,-0.101317048072815,
- 0.477146416902542,-0.0534447841346264,-0.877197206020355,0.0749194025993347,0.155085235834122,-0.985056161880493,-0.188066601753235,-0.0518975965678692,-0.980784177780151,-0.323906421661377,-0.166452676057816,-0.931331396102905,-0.986333191394806,-0.128663197159767,-0.102920480072498,0.135748684406281,-0.286592662334442,-0.948386490345001,-0.0253439843654633,-0.0161064546555281,-0.999549031257629,0.0877703428268433,-0.0113582666963339,-0.996075987815857,-0.324326187372208,-0.164929553866386,-0.931456387042999,-0.075710766017437,-0.14568518102169,-0.986429750919342,-0.987083792686462,-0.122023969888687,-0.103807270526886,0.087725006043911,-0.0107098165899515,-0.996087253093719,-0.0227945577353239,-0.0144862588495016,-0.999635219573975,0.00106988265179098,-0.0169843733310699,-0.999855279922485,0.017260504886508,0.0109692923724651,-0.999790847301483,-0.0867786854505539,-0.00270584132522345,-0.996224045753479,-0.000229061683057807,0.00363634061068296,-0.99999338388443,-0.481722563505173,0.0498010255396366,-0.874907553195953,-0.981338620185852,-0.165499106049538,-0.097900815308094,-0.073949471116066,-0.166478961706162,-0.983268141746521,-0.0868289992213249,-0.00199802056886256,-0.996221244335175,0.0199995059520006,0.0127099649980664,-0.999719202518463,-0.141143694519997,0.283410727977753,-0.94855523109436
- }
- TangentsW: *1305 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *1354 {
- a: 0.98974609375,0.779052734375,0.9951171875,0.7930908203125,0.39892578125,0.05029296875,0.1959228515625,0.19482421875,0.022857666015625,0.1943359375,0.02203369140625,0.064453125,0.1959228515625,0.02392578125,0.063720703125,0.02392578125,0.224365234375,0.05029296875,0.22509765625,0.177734375,0.264404296875,0.21826171875,0.398681640625,0.21826171875,0.397216796875,0.21923828125,0.438232421875,0.560546875,0.51513671875,0.43896484375,0.51611328125,0.5615234375,0.43701171875,0.44140625,0.432373046875,0.5615234375,0.365478515625,0.501953125,0.36572265625,0.43896484375,0.365234375,0.56396484375,0.367919921875,0.548095703125,0.367431640625,0.4580078125,0.5068359375,0.45654296875,0.50830078125,0.547607421875,0.367919921875,0.559326171875,0.50830078125,0.558837890625,0.289306640625,0.06103515625,0.271728515625,0.12890625,0.267578125,0.07470703125,0.361083984375,0.05859375,0.289306640625,0.1962890625,0.361083984375,0.19873046875,0.267578125,0.1826171875,0.373291015625,0.5537109375,0.5078125,0.47900390625,0.51123046875,0.554443359375,0.375244140625,0.47802734375,0.441650390625,0.46435546875,0.495361328125,0.46240234375,0.3876953125,0.4619140625,0.1627197265625,0.03857421875,0.105712890625,0.033203125,0.1568603515625,0.03173828125,0.09033203125,0.0908203125,0.09130859375,0.0458984375,0.160888671875,0.1240234375,0.09033203125,0.15771484375,0.1627197265625,0.2099609375,0.105712890625,0.21533203125,0.1568603515625,0.216796875,0.09130859375,0.20263671875,0.24267578125,-0.037109375,0.296875,-0.03125,0.2457275390625,-0.0302734375,0.314697265625,-0.091796875,0.31396484375,-0.044921875,0.2421875,-0.126953125,0.314697265625,-0.162109375,0.2425537109375,-0.216796875,0.296875,-0.22265625,0.24560546875,-0.2236328125,0.313720703125,-0.208984375,0.69091796875,0.57958984375,0.68359375,0.44677734375,0.69140625,0.44189453125,0.53857421875,0.447265625,0.529296875,0.582275390625,0.52197265625,0.447265625,0.6806640625,0.63818359375,0.6904296875,0.631103515625,0.689453125,0.7666015625,0.244873046875,0.57861328125,0.352294921875,
- 0.447265625,0.2265625,0.44482421875,0.68212890625,0.7642822265625,0.52978515625,0.7774658203125,0.365234375,0.775634765625,0.52880859375,0.634765625,0.2078857421875,0.639892578125,0.2159423828125,0.7681884765625,0.208740234375,0.5810546875,0.2008056640625,0.578857421875,0.201416015625,0.44384765625,0.19970703125,0.779052734375,0.0185089111328125,0.7799072265625,0.0180206298828125,0.572509765625,0.0208282470703125,0.44580078125,0.00980377197265625,0.44384765625,0.00980377197265625,0.573486328125,0.01751708984375,0.639404296875,0.00980377197265625,0.63818359375,0.00980377197265625,0.77880859375,0.53857421875,0.44677734375,0.68896484375,0.7666015625,0.98828125,0.44384765625,0.98828125,0.571044921875,0.97607421875,0.44580078125,0.96826171875,0.574462890625,0.70654296875,0.4453125,0.9794921875,0.63330078125,0.98974609375,0.632568359375,0.69677734375,0.578125,0.98291015625,0.77490234375,0.68896484375,0.5791015625,0.6796875,0.4423828125,0.68994140625,0.635009765625,0.68212890625,0.57763671875,0.53369140625,0.58154296875,0.52490234375,0.44775390625,0.53125,0.636962890625,0.232421875,0.57861328125,0.3447265625,0.447265625,0.22314453125,0.4453125,0.212158203125,0.44091796875,0.219970703125,0.638916015625,0.2083740234375,0.638671875,0.2098388671875,0.7586669921875,0.2178955078125,0.77099609375,0.208984375,0.79296875,0.212646484375,0.945831298828125,0.21875,0.945556640625,0.218017578125,0.7760009765625,0.31982421875,0.7740478515625,0.349365234375,0.80224609375,0.357421875,0.942413330078125,0.3271484375,0.7672119140625,0.402099609375,0.7740478515625,0.401611328125,0.7679443359375,0.53173828125,0.945770263671875,0.53955078125,0.766357421875,0.52734375,0.778564453125,0.53662109375,0.7745361328125,0.69091796875,0.946868896484375,0.66357421875,0.7672119140625,0.68408203125,0.7772216796875,0.84716796875,0.781982421875,0.8515625,0.94775390625,0.98046875,0.948577880859375,0.8515625,0.77001953125,0.98388671875,0.779541015625,0.98974609375,0.948486328125,0.51904296875,0.945465087890625,0.529296875,0.7923583984375,0.5302734375,0.9459228515625,
- 0.5234375,0.7772216796875,0.53076171875,0.758056640625,0.3486328125,0.942596435546875,0.52392578125,0.7664794921875,0.348388671875,0.8017578125,0.52001953125,0.63623046875,0.52783203125,0.632080078125,0.529296875,0.580078125,0.5244140625,0.57861328125,0.5244140625,0.451171875,0.52001953125,0.44677734375,0.2254638671875,0.58056640625,0.2061767578125,0.4443359375,0.223388671875,0.641357421875,0.011871337890625,0.573974609375,0.0129318237304688,0.44580078125,0.327392578125,0.7677001953125,0.2047119140625,0.7640380859375,0.2120361328125,0.7791748046875,0.2054443359375,0.9456787109375,0.20166015625,0.7791748046875,0.01641845703125,0.9508056640625,0.00980377197265625,0.950531005859375,0.0187530517578125,0.772705078125,0.0184478759765625,0.7781982421875,0.98974609375,0.443359375,0.98974609375,0.568603515625,0.982421875,0.4453125,0.98291015625,0.570068359375,0.8642578125,0.447265625,0.97802734375,0.63134765625,0.8505859375,0.580810546875,0.8486328125,0.44677734375,0.705078125,0.4453125,0.7001953125,0.63623046875,0.98828125,0.7789306640625,0.85693359375,0.7806396484375,0.84814453125,0.7706298828125,0.6962890625,0.7698974609375,0.849609375,0.7822265625,0.69775390625,0.7777099609375,0.98388671875,0.781005859375,0.84716796875,0.78076171875,0.970703125,0.44580078125,0.9892578125,0.571044921875,0.9892578125,0.44384765625,0.9599609375,0.57421875,0.7060546875,0.4453125,0.97998046875,0.6328125,0.9873046875,0.7789306640625,0.689453125,0.635009765625,0.85107421875,0.77001953125,0.344482421875,0.447265625,0.3505859375,0.802001953125,0.206298828125,0.4443359375,0.01116943359375,0.574951171875,0.0110244750976563,0.44580078125,0.0104293823242188,0.778076171875,0.3681640625,0.555908203125,0.37158203125,0.557861328125,0.51220703125,0.55859375,0.3681640625,0.4775390625,0.51611328125,0.556884765625,0.5146484375,0.478515625,0.387451171875,0.45263671875,0.441162109375,0.45361328125,0.4951171875,0.45361328125,0.1959228515625,0.02392578125,0.063720703125,0.02392578125,0.02203369140625,0.064453125,0.1959228515625,0.02392578125,0.02203369140625,0.064453125,
- 0.02203369140625,0.064453125,0.22509765625,0.177734375,0.22509765625,0.177734375,0.264404296875,0.21826171875,0.264404296875,0.21826171875,0.69091796875,0.57958984375,0.69091796875,0.57958984375,0.69091796875,0.57958984375,0.529296875,0.582275390625,0.529296875,0.582275390625,0.529296875,0.582275390625,0.6806640625,0.63818359375,0.69091796875,0.57958984375,0.69091796875,0.57958984375,0.6806640625,0.63818359375,0.6904296875,0.631103515625,0.6904296875,0.631103515625,0.6806640625,0.63818359375,0.244873046875,0.57861328125,0.529296875,0.582275390625,0.244873046875,0.57861328125,0.244873046875,0.57861328125,0.6806640625,0.63818359375,0.68212890625,0.7642822265625,0.68212890625,0.7642822265625,0.52978515625,0.7774658203125,0.365234375,0.775634765625,0.52978515625,0.7774658203125,0.68212890625,0.7642822265625,0.52880859375,0.634765625,0.68212890625,0.7642822265625,0.6806640625,0.63818359375,0.365234375,0.775634765625,0.68212890625,0.7642822265625,0.52880859375,0.634765625,0.6806640625,0.63818359375,0.529296875,0.582275390625,0.52880859375,0.634765625,0.244873046875,0.57861328125,0.52880859375,0.634765625,0.529296875,0.582275390625,0.2078857421875,0.639892578125,0.365234375,0.775634765625,0.52880859375,0.634765625,0.52880859375,0.634765625,0.244873046875,0.57861328125,0.2078857421875,0.639892578125,0.365234375,0.775634765625,0.2078857421875,0.639892578125,0.2159423828125,0.7681884765625,0.244873046875,0.57861328125,0.208740234375,0.5810546875,0.208740234375,0.5810546875,0.2078857421875,0.639892578125,0.244873046875,0.57861328125,0.2008056640625,0.578857421875,0.208740234375,0.5810546875,0.2008056640625,0.578857421875,0.2078857421875,0.639892578125,0.208740234375,0.5810546875,0.2008056640625,0.578857421875,0.0185089111328125,0.7799072265625,0.19970703125,0.779052734375,0.2159423828125,0.7681884765625,0.2008056640625,0.578857421875,0.0180206298828125,0.572509765625,0.0180206298828125,0.572509765625,0.0180206298828125,0.572509765625,0.00980377197265625,0.573486328125,0.0180206298828125,0.572509765625,0.01751708984375,0.639404296875,
- 0.2008056640625,0.578857421875,0.0180206298828125,0.572509765625,0.01751708984375,0.639404296875,0.0180206298828125,0.572509765625,0.00980377197265625,0.573486328125,0.2008056640625,0.578857421875,0.01751708984375,0.639404296875,0.2078857421875,0.639892578125,0.01751708984375,0.639404296875,0.2159423828125,0.7681884765625,0.2078857421875,0.639892578125,0.2159423828125,0.7681884765625,0.01751708984375,0.639404296875,0.0185089111328125,0.7799072265625,0.01751708984375,0.639404296875,0.00980377197265625,0.573486328125,0.00980377197265625,0.63818359375,0.01751708984375,0.639404296875,0.00980377197265625,0.77880859375,0.0185089111328125,0.7799072265625,0.00980377197265625,0.63818359375,0.00980377197265625,0.77880859375,0.01751708984375,0.639404296875,0.98974609375,0.779052734375,0.208740234375,0.5810546875,0.208740234375,0.5810546875,0.208740234375,0.5810546875,0.98974609375,0.779052734375,0.98974609375,0.779052734375,0.98974609375,0.779052734375,0.402099609375,0.7740478515625,0.402099609375,0.7740478515625,0.402099609375,0.7740478515625,0.21875,0.945556640625,0.401611328125,0.7679443359375,0.402099609375,0.7740478515625,0.401611328125,0.7679443359375,0.401611328125,0.7679443359375,0.402099609375,0.7740478515625,0.401611328125,0.7679443359375,0.401611328125,0.7679443359375,0.2008056640625,0.578857421875,0.2008056640625,0.578857421875,0.2008056640625,0.578857421875,0.2008056640625,0.578857421875,0.01751708984375,0.639404296875,0.01751708984375,0.639404296875,0.2008056640625,0.578857421875,0.01751708984375,0.639404296875,0.00980377197265625,0.63818359375,0.00980377197265625,0.77880859375,0.00980377197265625,0.63818359375,0.01751708984375,0.639404296875,0.401611328125,0.7679443359375,0.401611328125,0.7679443359375,0.01751708984375,0.639404296875,0.31982421875,0.7740478515625,0.31982421875,0.7740478515625,0.31982421875,0.7740478515625,0.31982421875,0.7740478515625,0.21875,0.945556640625,0.212646484375,0.945831298828125,0.21875,0.945556640625,0.212646484375,0.945831298828125,0.00980377197265625,0.77880859375,0.01751708984375,
- 0.639404296875,0.00980377197265625,0.77880859375,0.01751708984375,0.639404296875,0.00980377197265625,0.77880859375,0.00980377197265625,0.77880859375,0.98974609375,0.632568359375,0.69677734375,0.578125,0.69677734375,0.578125,0.98291015625,0.77490234375,0.98974609375,0.632568359375,0.98974609375,0.632568359375,0.98291015625,0.77490234375,0.98291015625,0.77490234375,0.98291015625,0.77490234375,0.98291015625,0.77490234375,0.98974609375,0.632568359375,0.97802734375,0.63134765625,0.98974609375,0.632568359375,0.98974609375,0.568603515625,0.97802734375,0.63134765625,0.98974609375,0.632568359375,0.98974609375,0.568603515625,0.98974609375,0.568603515625,0.98291015625,0.570068359375,0.97802734375,0.63134765625,0.98974609375,0.568603515625,0.98291015625,0.570068359375,0.98291015625,0.570068359375,0.98291015625,0.570068359375,0.8505859375,0.580810546875,0.97802734375,0.63134765625,0.98291015625,0.570068359375,0.8505859375,0.580810546875,0.8505859375,0.580810546875,0.8505859375,0.580810546875,0.8505859375,0.580810546875,0.69677734375,0.578125,0.8505859375,0.580810546875,0.69677734375,0.578125,0.7001953125,0.63623046875,0.7001953125,0.63623046875,0.97802734375,0.63134765625,0.8505859375,0.580810546875,0.97802734375,0.63134765625,0.7001953125,0.63623046875,0.84814453125,0.7706298828125,0.97802734375,0.63134765625,0.84814453125,0.7706298828125,0.84814453125,0.7706298828125,0.7001953125,0.63623046875,0.6962890625,0.7698974609375,0.84814453125,0.7706298828125,0.84814453125,0.7706298828125,0.6962890625,0.7698974609375,0.69775390625,0.7777099609375,0.69775390625,0.7777099609375,0.84814453125,0.7706298828125,0.98974609375,0.632568359375,0.69677734375,0.578125,0.98291015625,0.77490234375,0.98974609375,0.632568359375,0.98974609375,0.632568359375,0.98291015625,0.77490234375,0.68896484375,0.5791015625,0.69677734375,0.578125,0.6796875,0.4423828125,0.68896484375,0.5791015625,0.69677734375,0.578125,0.68896484375,0.5791015625,0.69677734375,0.578125,0.6796875,0.4423828125,0.68212890625,0.57763671875,0.68896484375,0.5791015625,0.68212890625,0.57763671875,
- 0.68896484375,0.5791015625,0.98291015625,0.77490234375,0.98291015625,0.77490234375,0.6796875,0.4423828125,0.53369140625,0.58154296875,0.68212890625,0.57763671875,0.53369140625,0.58154296875,0.6796875,0.4423828125,0.52490234375,0.44775390625,0.52490234375,0.44775390625,0.232421875,0.57861328125,0.53369140625,0.58154296875,0.232421875,0.57861328125,0.52490234375,0.44775390625,0.22314453125,0.4453125,0.232421875,0.57861328125,0.212158203125,0.44091796875,0.232421875,0.57861328125,0.22314453125,0.4453125,0.232421875,0.57861328125,0.212158203125,0.44091796875,0.208740234375,0.5810546875,0.84716796875,0.781982421875,0.84716796875,0.781982421875,0.84716796875,0.781982421875,0.84716796875,0.781982421875,0.66357421875,0.7672119140625,0.84716796875,0.781982421875,0.66357421875,0.7672119140625,0.68408203125,0.7772216796875,0.84716796875,0.781982421875,0.84716796875,0.781982421875,0.66357421875,0.7672119140625,0.68408203125,0.7772216796875,0.53662109375,0.7745361328125,0.68408203125,0.7772216796875,0.66357421875,0.7672119140625,0.53662109375,0.7745361328125,0.68408203125,0.7772216796875,0.53662109375,0.7745361328125,0.66357421875,0.7672119140625,0.53955078125,0.766357421875,0.53662109375,0.7745361328125,0.66357421875,0.7672119140625,0.53955078125,0.766357421875,0.53662109375,0.7745361328125,0.52734375,0.778564453125,0.53662109375,0.7745361328125,0.53955078125,0.766357421875,0.52734375,0.778564453125,0.402099609375,0.7740478515625,0.52734375,0.778564453125,0.402099609375,0.7740478515625,0.401611328125,0.7679443359375,0.52734375,0.778564453125,0.53955078125,0.766357421875,0.52734375,0.778564453125,0.401611328125,0.7679443359375,0.402099609375,0.7740478515625,0.53125,0.636962890625,0.53955078125,0.766357421875,0.53125,0.636962890625,0.401611328125,0.7679443359375,0.53955078125,0.766357421875,0.68212890625,0.57763671875,0.53125,0.636962890625,0.53125,0.636962890625,0.68212890625,0.57763671875,0.53369140625,0.58154296875,0.53369140625,0.58154296875,0.232421875,0.57861328125,0.53125,0.636962890625,0.53125,0.636962890625,0.232421875,
- 0.57861328125,0.219970703125,0.638916015625,0.401611328125,0.7679443359375,0.53125,0.636962890625,0.219970703125,0.638916015625,0.208740234375,0.5810546875,0.219970703125,0.638916015625,0.232421875,0.57861328125,0.219970703125,0.638916015625,0.208740234375,0.5810546875,0.2083740234375,0.638671875,0.2098388671875,0.7586669921875,0.219970703125,0.638916015625,0.2083740234375,0.638671875,0.2178955078125,0.77099609375,0.219970703125,0.638916015625,0.2098388671875,0.7586669921875,0.208984375,0.79296875,0.2178955078125,0.77099609375,0.2098388671875,0.7586669921875,0.401611328125,0.7679443359375,0.219970703125,0.638916015625,0.3271484375,0.7672119140625,0.3271484375,0.7672119140625,0.219970703125,0.638916015625,0.2178955078125,0.77099609375,0.208984375,0.79296875,0.3271484375,0.7672119140625,0.2178955078125,0.77099609375,0.31982421875,0.7740478515625,0.208984375,0.79296875,0.218017578125,0.7760009765625,0.2178955078125,0.77099609375,0.218017578125,0.7760009765625,0.31982421875,0.7740478515625,0.2178955078125,0.77099609375,0.218017578125,0.7760009765625,0.208984375,0.79296875,0.3271484375,0.7672119140625,0.31982421875,0.7740478515625,0.218017578125,0.7760009765625,0.31982421875,0.7740478515625,0.401611328125,0.7679443359375,0.3271484375,0.7672119140625,0.218017578125,0.7760009765625,0.401611328125,0.7679443359375,0.402099609375,0.7740478515625,0.402099609375,0.7740478515625,0.529296875,0.7923583984375,0.529296875,0.7923583984375,0.5234375,0.7772216796875,0.529296875,0.7923583984375,0.53076171875,0.758056640625,0.5234375,0.7772216796875,0.402099609375,0.7740478515625,0.5234375,0.7772216796875,0.402099609375,0.7740478515625,0.53076171875,0.758056640625,0.52392578125,0.7664794921875,0.5234375,0.7772216796875,0.402099609375,0.7740478515625,0.348388671875,0.8017578125,0.348388671875,0.8017578125,0.21875,0.945556640625,0.5234375,0.7772216796875,0.401611328125,0.7679443359375,0.402099609375,0.7740478515625,0.401611328125,0.7679443359375,0.5234375,0.7772216796875,0.52392578125,0.7664794921875,0.401611328125,0.7679443359375,0.348388671875,
- 0.8017578125,0.402099609375,0.7740478515625,0.53076171875,0.758056640625,0.52001953125,0.63623046875,0.52392578125,0.7664794921875,0.401611328125,0.7679443359375,0.52392578125,0.7664794921875,0.52001953125,0.63623046875,0.52001953125,0.63623046875,0.53076171875,0.758056640625,0.52783203125,0.632080078125,0.529296875,0.580078125,0.52001953125,0.63623046875,0.52783203125,0.632080078125,0.348388671875,0.8017578125,0.401611328125,0.7679443359375,0.327392578125,0.7677001953125,0.5244140625,0.57861328125,0.52001953125,0.63623046875,0.529296875,0.580078125,0.5244140625,0.451171875,0.5244140625,0.57861328125,0.529296875,0.580078125,0.5244140625,0.57861328125,0.5244140625,0.451171875,0.52001953125,0.44677734375,0.52001953125,0.44677734375,0.2254638671875,0.58056640625,0.5244140625,0.57861328125,0.2254638671875,0.58056640625,0.52001953125,0.63623046875,0.5244140625,0.57861328125,0.2254638671875,0.58056640625,0.52001953125,0.44677734375,0.223388671875,0.641357421875,0.401611328125,0.7679443359375,0.52001953125,0.63623046875,0.223388671875,0.641357421875,0.52001953125,0.63623046875,0.2254638671875,0.58056640625,0.401611328125,0.7679443359375,0.223388671875,0.641357421875,0.327392578125,0.7677001953125,0.2008056640625,0.578857421875,0.2254638671875,0.58056640625,0.2008056640625,0.578857421875,0.223388671875,0.641357421875,0.2254638671875,0.58056640625,0.2008056640625,0.578857421875,0.01751708984375,0.639404296875,0.2008056640625,0.578857421875,0.2008056640625,0.578857421875,0.01751708984375,0.639404296875,0.223388671875,0.641357421875,0.01751708984375,0.639404296875,0.00980377197265625,0.63818359375,0.00980377197265625,0.63818359375,0.01751708984375,0.639404296875,0.01751708984375,0.639404296875,0.2047119140625,0.7640380859375,0.223388671875,0.641357421875,0.327392578125,0.7677001953125,0.223388671875,0.641357421875,0.2047119140625,0.7640380859375,0.0187530517578125,0.772705078125,0.01751708984375,0.639404296875,0.2047119140625,0.7640380859375,0.01751708984375,0.639404296875,0.0187530517578125,0.772705078125,0.2047119140625,0.7640380859375,
- 0.31982421875,0.7740478515625,0.327392578125,0.7677001953125,0.348388671875,0.8017578125,0.327392578125,0.7677001953125,0.31982421875,0.7740478515625,0.0184478759765625,0.7781982421875,0.0184478759765625,0.7781982421875,0.0187530517578125,0.772705078125,0.0184478759765625,0.7781982421875,0.20166015625,0.7791748046875,0.0184478759765625,0.7781982421875,0.20166015625,0.7791748046875,0.0187530517578125,0.772705078125,0.0187530517578125,0.772705078125,0.20166015625,0.7791748046875,0.2047119140625,0.7640380859375,0.20166015625,0.7791748046875,0.2047119140625,0.7640380859375,0.20166015625,0.7791748046875,0.2120361328125,0.7791748046875,0.2120361328125,0.7791748046875,0.20166015625,0.7791748046875,0.2120361328125,0.7791748046875,0.31982421875,0.7740478515625,0.2047119140625,0.7640380859375,0.2120361328125,0.7791748046875,0.348388671875,0.8017578125,0.31982421875,0.7740478515625,0.2120361328125,0.7791748046875,0.212646484375,0.945831298828125,0.21875,0.945556640625,0.348388671875,0.8017578125,0.2120361328125,0.7791748046875,0.2120361328125,0.7791748046875,0.212646484375,0.945831298828125,0.21875,0.945556640625
- }
- UVIndex: *1305 {
- a: 0,1,2,3,4,5,3,5,6,6,5,7,8,9,2,2,9,10,10,11,2,212,213,214,215,216,3,217,4,3,8,2,218,219,2,220,221,2,12,13,14,15,14,13,16,13,17,16,16,17,18,16,18,19,20,18,17,21,22,23,21,23,24,21,24,25,25,24,26,27,28,29,27,30,28,30,31,28,31,30,32,28,31,33,34,35,36,37,35,34,35,37,38,38,39,35,38,37,40,41,42,43,44,42,41,42,44,45,46,44,41,44,46,47,48,47,46,49,47,48,49,48,50,47,49,51,52,53,54,55,53,52,53,55,56,57,55,52,55,57,58,59,58,57,60,58,59,60,59,61,58,60,62,63,64,65,64,63,66,66,63,67,67,68,66,69,67,63,69,63,70,71,69,70,72,68,67,68,72,73,72,74,73,69,71,75,75,71,76,76,77,75,75,78,69,78,75,77,67,69,78,78,72,67,77,79,78,78,79,72,80,79,77,72,81,74,79,81,72,74,81,82,79,82,81,82,83,74,84,85,80,86,83,82,83,86,87,87,86,88,88,86,89,82,90,86,90,89,86,90,82,79,80,90,79,90,80,85,90,91,89,90,85,92,92,91,90,64,222,65,93,223,64,224,93,225,68,226,93,227,228,229,230,231,232,94,233,234,68,235,236,237,68,73,74,238,73,239,240,94,94,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,74,268,269,270,271,74,272,273,274,275,276,277,74,83,278,279,280,281,83,282,283,83,87,284,87,88,88,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,95,96,97,97,96,98,98,99,97,100,98,96,100,96,101,99,98,102,103,100,101,101,311,103,104,99,102,105,99,104,98,106,102,102,106,104,106,98,100,105,104,107,106,107,104,108,105,107,105,108,109,107,110,108,110,107,106,111,109,108,110,111,108,109,111,112,111,113,112,114,113,111,111,312,114,115,313,111,111,110,115,314,115,116,115,117,116,115,118,117,119,117,118,120,119,121,119,118,122,122,121,119,118,123,122,122,124,121,124,122,123,121,124,125,118,126,123,124,123,126,115,126,118,127,125,124,128,126,115,128,124,126,124,128,127,115,110,128,125,127,129,128,110,130,130,110,106,128,131,127,131,128,130,129,127,131,132,129,131,132,131,130,129,132,133,130,106,134,134,132,130,133,132,135,132,134,135,136,133,135,134,136,135,133,136,137,137,136,138,106,139,134,136,134,139,139,106,100,100,103,139,140,136,139,140,139,103,
- 138,136,140,315,140,103,316,138,140,138,317,141,142,143,144,143,142,145,146,143,145,142,318,145,147,319,142,145,148,146,320,147,149,321,149,147,322,145,323,145,324,148,149,325,326,150,146,148,150,148,327,146,150,151,152,151,150,150,153,152,153,154,152,154,153,155,156,155,153,156,153,150,155,156,157,150,158,156,150,328,158,157,156,329,158,330,156,157,159,160,159,157,331,332,333,159,334,335,158,336,337,159,338,339,340,341,161,158,342,149,161,162,343,158,162,158,161,149,344,161,162,161,345,149,163,346,347,163,162,163,149,348,349,163,350,164,163,351,163,164,165,162,163,165,166,165,164,352,166,167,168,162,165,353,162,168,354,355,168,165,166,169,166,356,169,165,169,168,357,168,169,170,171,172,172,171,173,172,173,174,175,173,171,175,171,358,174,173,176,176,173,175,174,176,177,178,177,176,178,176,359,360,176,179,176,175,179,361,175,362,363,180,364,181,365,180,182,179,175,175,366,182,182,367,181,179,182,183,184,182,181,182,185,183,184,185,182,0,368,186,369,186,370,371,372,373,172,374,170,375,172,376,377,378,379,174,380,172,381,174,382,383,384,385,177,386,174,178,387,177,388,178,389,390,391,392,393,394,395,396,397,398,399,400,186,401,402,403,187,186,404,405,406,407,408,187,409,188,189,190,189,188,191,192,191,188,193,189,191,189,193,410,191,192,411,193,412,413,414,415,194,192,416,417,418,419,192,191,420,195,421,195,422,191,195,193,423,424,425,426,195,427,428,193,196,195,196,193,429,196,194,430,431,432,433,434,435,194,138,141,436,437,438,439,440,197,441,442,197,443,444,445,446,447,448,138,194,449,194,196,450,451,137,138,452,133,137,453,454,196,196,195,455,456,133,457,458,459,460,461,133,462,463,464,465,133,466,129,467,195,468,469,470,471,129,472,473,474,475,476,477,129,478,129,479,125,480,481,482,483,484,485,195,486,487,488,489,490,491,492,195,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,120,121,527,528,529,530,531,532,533,534,535,121,536,537,198,538,539,540,198,541,198,542,543,121,198,544,545,198,546,198,121,125,125,547,198,548,142,144,
- 142,549,550,551,552,553,554,142,555,142,556,147,557,558,559,147,560,561,562,563,147,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,199,605,606,607,608,609,610,611,612,613,199,614,615,616,617,618,200,199,201,619,199,200,620,621,200,622,623,624,625,200,626,627,202,628,629,630,631,632,633,634,635,636,202,637,638,639,166,202,167,640,641,642,643,644,645,202,166,646,202,647,648,649,166,650,651,652,653,654,655,656,657,166,164,658,659,660,164,661,662,663,664,665,666,667,668,669,164,670,671,672,673,674,675,676,203,34,204,34,205,204,203,206,34,205,34,36,37,34,206,207,205,36,40,37,206,36,208,207,206,209,40,36,35,208,209,210,40,35,39,208,40,210,38,210,39,38,211,208,39,39,210,211
- }
- }
- LayerElementUV: 1 {
- Version: 101
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *700 {
- a: 0.716796875,0.61376953125,0.7119140625,0.611572265625,0.9638671875,0.85009765625,0.2325439453125,0.18359375,0.150390625,0.18359375,0.14990234375,0.13916015625,0.2325439453125,0.125,0.1697998046875,0.125,0.77392578125,0.13232421875,0.73046875,0.1328125,0.77392578125,0.216796875,0.71630859375,0.15185546875,0.71630859375,0.216796875,0.0992431640625,0.125,0.036468505859375,0.125,0.01666259765625,0.13916015625,0.0992431640625,0.18359375,0.017059326171875,0.18359375,0.67431640625,0.59912109375,0.67431640625,0.683349609375,0.63037109375,0.599365234375,0.61669921875,0.618408203125,0.6162109375,0.6826171875,0.4189453125,0.38037109375,0.490966796875,0.2666015625,0.492431640625,0.38134765625,0.417724609375,0.2685546875,0.41357421875,0.38134765625,0.350830078125,0.32568359375,0.35107421875,0.2666015625,0.3505859375,0.3837890625,0.0169525146484375,0.07763671875,0.01666259765625,0.03125,0.088623046875,0.03076171875,0.08935546875,0.07763671875,0.0169677734375,0.08349609375,0.08941650390625,0.08349609375,0.599609375,0.1025390625,0.5849609375,0.15869140625,0.58154296875,0.1142578125,0.65966796875,0.1005859375,0.599609375,0.21484375,0.65966796875,0.216796875,0.58154296875,0.203125,0.82080078125,0.979110717773438,0.93115234375,0.91650390625,0.93408203125,0.979812622070313,0.822265625,0.91583251953125,0.876953125,0.90460205078125,0.9208984375,0.9029541015625,0.83251953125,0.90240478515625,0.89599609375,0.056640625,0.83349609375,0.05078125,0.8896484375,0.04931640625,0.81640625,0.11376953125,0.8173828125,0.06494140625,0.89404296875,0.14990234375,0.81640625,0.18603515625,0.89599609375,0.24267578125,0.83349609375,0.2490234375,0.8896484375,0.25,0.8173828125,0.23486328125,0.357666015625,0.13818359375,0.3515625,0.197265625,0.349853515625,0.1416015625,0.4140625,0.216796875,0.365234375,0.2158203125,0.4501953125,0.1376953125,0.486328125,0.216796875,0.54296875,0.13818359375,0.548828125,0.197265625,0.55078125,0.14111328125,0.53515625,0.2158203125,0.90771484375,0.583251953125,0.96240234375,0.580322265625,0.96435546875,0.58349609375,
- 0.96240234375,0.518310546875,0.90673828125,0.514404296875,0.96240234375,0.51123046875,0.8837890625,0.578857421875,0.88671875,0.583251953125,0.83056640625,0.582763671875,0.908203125,0.3935546875,0.96240234375,0.439453125,0.96337890625,0.3857421875,0.83154296875,0.57958984375,0.826171875,0.5146484375,0.8271484375,0.44482421875,0.884765625,0.51416015625,0.8828125,0.37744140625,0.830078125,0.380859375,0.9072265625,0.3779296875,0.908203125,0.37451171875,0.96337890625,0.375,0.82568359375,0.3740234375,0.8251953125,0.296875,0.91064453125,0.296875,0.962890625,0.2978515625,0.96337890625,0.29345703125,0.91015625,0.29345703125,0.8828125,0.29638671875,0.88330078125,0.29345703125,0.82568359375,0.29345703125,0.76220703125,0.546875,0.70751953125,0.550048828125,0.76416015625,0.550048828125,0.76220703125,0.4853515625,0.70654296875,0.4814453125,0.76220703125,0.47802734375,0.68359375,0.545654296875,0.6865234375,0.5498046875,0.630859375,0.549072265625,0.7080078125,0.35986328125,0.76220703125,0.40576171875,0.76318359375,0.3525390625,0.6318359375,0.546142578125,0.6259765625,0.4814453125,0.626953125,0.41162109375,0.68505859375,0.48095703125,0.68310546875,0.34423828125,0.6298828125,0.34765625,0.70703125,0.3447265625,0.7080078125,0.34130859375,0.763671875,0.341796875,0.625,0.263671875,0.62548828125,0.3408203125,0.71044921875,0.263671875,0.7626953125,0.2646484375,0.763671875,0.259765625,0.71044921875,0.259765625,0.68310546875,0.26318359375,0.68359375,0.259765625,0.62548828125,0.259765625,0.78125,0.739990234375,0.78125,0.8013916015625,0.775390625,0.740966796875,0.771484375,0.802978515625,0.6494140625,0.74072265625,0.77685546875,0.831298828125,0.78173828125,0.8310546875,0.64501953125,0.8048095703125,0.77880859375,0.899658203125,0.78173828125,0.90167236328125,0.64111328125,0.8052978515625,0.63671875,0.739501953125,0.6416015625,0.8321533203125,0.63818359375,0.8045654296875,0.568359375,0.806396484375,0.564453125,0.741943359375,0.5673828125,0.8331298828125,0.427734375,0.804931640625,0.48046875,0.74169921875,0.423583984375,0.74072265625,0.41845703125,
- 0.73876953125,0.416748046875,0.80615234375,0.421875,0.8341064453125,0.41650390625,0.833984375,0.417236328125,0.89178466796875,0.421142578125,0.897705078125,0.416748046875,0.9083251953125,0.41845703125,0.982009887695313,0.42138671875,0.981887817382813,0.421142578125,0.900146484375,0.46875,0.89923095703125,0.482421875,0.91278076171875,0.486328125,0.980361938476563,0.47216796875,0.89593505859375,0.5068359375,0.899169921875,0.5068359375,0.89630126953125,0.56787109375,0.98199462890625,0.5712890625,0.8955078125,0.56591796875,0.9013671875,0.56982421875,0.89947509765625,0.64208984375,0.982528686523438,0.62939453125,0.8958740234375,0.638671875,0.90069580078125,0.71533203125,0.903076171875,0.71728515625,0.982955932617188,0.77734375,0.98333740234375,0.71728515625,0.89727783203125,0.77880859375,0.90185546875,0.78173828125,0.983306884765625,0.55078125,0.680908203125,0.5556640625,0.60693359375,0.55615234375,0.68115234375,0.55322265625,0.599609375,0.55615234375,0.59033203125,0.4970703125,0.59814453125,0.47265625,0.679443359375,0.55322265625,0.594482421875,0.472412109375,0.611572265625,0.412841796875,0.680908203125,0.496826171875,0.59521484375,0.55126953125,0.531494140625,0.55517578125,0.529541015625,0.5556640625,0.50439453125,0.55322265625,0.50390625,0.55322265625,0.4423828125,0.55126953125,0.4404296875,0.415771484375,0.504638671875,0.406982421875,0.43896484375,0.414794921875,0.5341796875,0.404541015625,0.50390625,0.3173828125,0.50146484375,0.31787109375,0.43994140625,0.320068359375,0.533203125,0.316650390625,0.532470703125,0.316650390625,0.600341796875,0.462890625,0.594970703125,0.40625,0.59326171875,0.459228515625,0.59814453125,0.40966796875,0.6005859375,0.409912109375,0.68115234375,0.406494140625,0.680908203125,0.40478515625,0.6005859375,0.319580078125,0.683349609375,0.316650390625,0.683349609375,0.320556640625,0.597412109375,0.320556640625,0.60009765625,0.305908203125,0.244140625,0.305908203125,0.29541015625,0.302978515625,0.24462890625,0.302978515625,0.29638671875,0.25341796875,0.24560546875,0.301025390625,0.3212890625,0.305908203125,
- 0.32177734375,0.247802734375,0.30078125,0.2469482421875,0.2451171875,0.186767578125,0.24462890625,0.1834716796875,0.29931640625,0.184814453125,0.3232421875,0.302978515625,0.38037109375,0.305419921875,0.38232421875,0.25048828125,0.3828125,0.246826171875,0.37890625,0.1832275390625,0.37841796875,0.247314453125,0.3837890625,0.183837890625,0.3818359375,0.139404296875,0.38232421875,0.139404296875,0.32177734375,0.1368408203125,0.38330078125,0.1343994140625,0.3212890625,0.139404296875,0.29541015625,0.1363525390625,0.24462890625,0.139404296875,0.244140625,0.1363525390625,0.29638671875,0.0869140625,0.24560546875,0.0811767578125,0.30078125,0.080322265625,0.2451171875,0.020172119140625,0.24462890625,0.0168304443359375,0.29931640625,0.0182342529296875,0.3232421875,0.0802001953125,0.37890625,0.01666259765625,0.37841796875,0.07965087890625,0.3828125,0.0171966552734375,0.3818359375,0.373046875,0.74072265625,0.381591796875,0.80126953125,0.381591796875,0.739990234375,0.3681640625,0.8028564453125,0.24951171875,0.740478515625,0.377197265625,0.8310546875,0.382080078125,0.8309326171875,0.2451171875,0.8046875,0.378662109375,0.89959716796875,0.380859375,0.9014892578125,0.2413330078125,0.80517578125,0.237060546875,0.7392578125,0.24169921875,0.83203125,0.23828125,0.804443359375,0.317138671875,0.897216796875,0.168701171875,0.8062744140625,0.16455078125,0.74169921875,0.37744140625,0.98333740234375,0.382080078125,0.983306884765625,0.027923583984375,0.8048095703125,0.080322265625,0.741455078125,0.023590087890625,0.740478515625,0.0184478759765625,0.738525390625,0.016845703125,0.8060302734375,0.3154296875,0.90301513671875,0.3173828125,0.982955932617188,0.2423095703125,0.982528686523438,0.2296142578125,0.8958740234375,0.2391357421875,0.90069580078125,0.170166015625,0.8994140625,0.16796875,0.98199462890625,0.171630859375,0.89544677734375,0.1658935546875,0.90130615234375,0.10723876953125,0.899169921875,0.08636474609375,0.980377197265625,0.10699462890625,0.896240234375,0.167724609375,0.8330078125,0.022064208984375,0.8341064453125,0.01666259765625,0.8338623046875,
- 0.017364501953125,0.8917236328125,0.0211334228515625,0.897705078125,0.0169219970703125,0.90826416015625,0.07220458984375,0.8958740234375,0.0186767578125,0.982009887695313,0.021514892578125,0.981887817382813,0.06878662109375,0.899169921875,0.021148681640625,0.90008544921875,0.08319091796875,0.91265869140625,0.256103515625,0.60693359375,0.25146484375,0.680908203125,0.256591796875,0.68115234375,0.253662109375,0.599609375,0.257080078125,0.59033203125,0.1976318359375,0.59814453125,0.1729736328125,0.679443359375,0.253662109375,0.594482421875,0.1728515625,0.611572265625,0.113037109375,0.680908203125,0.1973876953125,0.59521484375,0.252197265625,0.531494140625,0.255615234375,0.529541015625,0.25634765625,0.50439453125,0.1632080078125,0.594970703125,0.25390625,0.50390625,0.254150390625,0.4423828125,0.251953125,0.4404296875,0.11614990234375,0.504638671875,0.1072998046875,0.43896484375,0.115234375,0.5341796875,0.10479736328125,0.50390625,0.0172882080078125,0.501953125,0.0172271728515625,0.43994140625,0.0202178955078125,0.533203125,0.01666259765625,0.532470703125,0.0169525146484375,0.60009765625,0.1065673828125,0.59326171875,0.020782470703125,0.597412109375,0.01971435546875,0.683349609375,0.01666259765625,0.683349609375,0.15966796875,0.59814453125,0.0206451416015625,0.60009765625,0.10516357421875,0.6005859375,0.10687255859375,0.680908203125,0.1099853515625,0.6005859375,0.1102294921875,0.68115234375,0.81640625,0.981033325195313,0.8193359375,0.98260498046875,0.93505859375,0.98333740234375,0.81640625,0.91552734375,0.93798828125,0.981796264648438,0.93701171875,0.916259765625,0.83251953125,0.89483642578125,0.87646484375,0.89532470703125,0.9208984375,0.8953857421875
- }
- UVIndex: *1305 {
- a: 0,1,2,3,4,5,3,5,6,6,5,7,8,9,10,10,9,11,11,12,10,13,14,15,13,15,16,15,17,16,18,19,20,20,19,21,21,19,22,23,24,25,24,23,26,23,27,26,26,27,28,26,28,29,30,28,27,31,32,33,31,33,34,31,34,35,35,34,36,37,38,39,37,40,38,40,41,38,41,40,42,38,41,43,44,45,46,47,45,44,45,47,48,48,49,45,48,47,50,51,52,53,54,52,51,52,54,55,56,54,51,54,56,57,58,57,56,59,57,58,59,58,60,57,59,61,62,63,64,65,63,62,63,65,66,67,65,62,65,67,68,69,68,67,70,68,69,70,69,71,68,70,72,73,74,75,74,73,76,76,73,77,77,78,76,79,77,73,79,73,80,81,79,80,82,78,77,78,82,83,82,84,83,79,81,85,85,81,86,86,87,85,85,88,79,88,85,87,77,79,88,88,82,77,87,89,88,88,89,82,90,89,87,82,91,84,89,91,82,84,91,92,89,92,91,92,93,84,94,95,90,96,93,92,93,96,97,97,96,98,98,96,99,92,100,96,100,99,96,100,92,89,90,100,89,100,90,95,100,101,99,100,95,102,102,101,100,103,104,105,106,104,103,104,106,107,108,107,106,107,109,104,104,109,110,111,110,109,108,112,107,112,108,113,114,112,113,109,115,111,111,115,116,117,116,115,118,115,109,117,115,118,109,107,118,112,118,107,119,117,118,118,112,119,117,119,120,112,114,121,121,119,112,114,122,121,122,119,121,122,114,123,124,125,120,122,123,126,126,123,127,126,127,128,128,129,126,130,122,126,130,126,129,122,130,119,130,120,119,120,130,124,130,129,131,130,132,124,131,132,130,133,134,135,135,134,136,136,137,135,138,136,134,138,134,139,137,136,140,141,138,139,139,142,141,143,137,140,144,137,143,136,145,140,140,145,143,145,136,138,144,143,146,145,146,143,147,144,146,144,147,148,146,149,147,149,146,145,150,148,147,149,150,147,148,150,151,150,152,151,153,152,150,150,154,153,155,154,150,150,149,155,154,155,156,155,157,156,155,158,157,159,157,158,160,159,161,159,158,162,162,161,159,158,163,162,162,164,161,164,162,163,161,164,165,158,166,163,164,163,166,155,166,158,167,165,164,168,166,155,168,164,166,164,168,167,155,149,168,165,167,169,168,149,170,170,149,145,168,171,167,171,168,170,169,167,171,172,169,171,172,171,170,169,172,173,170,145,174,174,172,170,173,172,175,172,174,175,176,173,175,174,176,175,173,176,177,177,176,178,145,179,174,176,
- 174,179,179,145,138,138,141,179,180,176,179,180,179,141,178,176,180,142,180,141,142,178,180,178,142,181,182,183,184,183,182,185,186,183,185,182,187,185,188,187,182,185,189,186,187,188,190,191,190,188,192,185,187,185,192,189,190,192,187,193,186,189,193,189,192,186,193,194,195,194,193,193,196,195,196,197,195,197,196,198,199,198,196,199,196,193,198,199,200,193,201,199,193,192,201,200,199,202,201,202,199,200,203,204,203,200,202,202,205,203,205,202,201,205,206,203,207,206,205,192,208,201,192,190,208,209,205,201,209,201,208,190,210,208,209,208,210,190,211,210,210,211,209,211,190,191,212,211,191,213,211,212,211,213,214,209,211,214,215,214,213,207,215,216,217,209,214,205,209,217,207,205,217,214,215,218,215,207,218,214,218,217,207,217,218,219,220,221,221,220,222,221,222,223,224,222,220,224,220,225,223,222,226,226,222,224,223,226,227,228,227,226,228,226,229,229,226,230,226,224,230,231,224,225,225,232,231,233,231,232,234,230,224,224,231,234,234,231,233,230,234,235,236,234,233,234,237,235,236,237,234,238,239,240,241,240,239,242,241,239,243,242,244,242,243,245,241,242,245,246,245,243,245,246,247,241,245,247,248,247,246,249,247,248,247,249,250,247,250,251,251,241,247,241,251,252,241,252,240,252,251,253,254,240,252,252,253,255,255,254,252,256,257,258,257,256,259,260,259,256,261,257,259,257,261,262,259,260,263,261,264,262,262,264,265,260,266,263,267,266,260,259,263,268,266,268,263,259,268,261,267,269,266,269,268,266,264,261,270,268,270,261,264,270,265,267,271,269,271,267,272,265,273,274,272,275,271,275,272,276,277,275,276,278,275,277,275,278,279,273,265,280,265,270,280,280,281,273,280,282,281,283,280,270,270,268,283,284,282,280,280,283,284,285,282,284,283,285,284,282,285,286,283,268,287,285,283,287,286,285,288,285,287,288,289,286,288,286,289,290,291,288,287,288,291,289,268,292,287,292,291,287,269,292,268,292,269,271,271,275,292,292,275,293,291,292,293,279,293,275,293,279,294,295,293,294,296,293,295,297,296,295,291,293,298,298,293,296,297,299,300,298,296,301,297,302,296,302,301,296,300,302,297,303,298,301,302,303,301,303,291,298,300,
- 303,302,291,303,289,303,300,290,290,289,303,304,305,306,305,304,307,304,308,307,309,305,307,305,309,310,308,311,307,310,309,312,312,313,310,307,314,309,314,307,311,314,312,309,308,315,311,314,311,315,315,308,316,317,315,316,312,314,318,319,315,317,320,319,317,319,320,321,321,322,319,322,315,319,322,321,323,324,314,315,324,315,322,314,324,318,323,325,322,325,324,322,326,323,327,325,323,326,328,325,326,325,328,324,328,326,329,329,330,328,328,331,324,318,324,331,332,328,330,331,328,332,333,330,334,331,335,318,312,318,335,330,333,336,330,336,332,336,333,337,336,337,332,332,337,331,337,333,338,331,337,339,338,339,337,339,335,331,339,312,335,339,338,340,313,312,339,339,340,313,341,44,342,44,343,342,341,344,44,343,44,46,47,44,344,345,343,46,50,47,344,46,346,345,344,347,50,46,45,346,347,348,50,45,49,346,50,348,48,348,49,48,349,346,49,49,348,349
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *669 {
- 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
- }
- }
- 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: 2463645323056, "Geometry::", "Mesh" {
- Vertices: *369 {
- a: 166.873870849609,202.629013061523,20.1841888427734,139.295257568359,193.976348876953,20.3215637207031,139.298934936523,193.791213989258,-20.3254852294922,166.516296386719,202.67333984375,-20.208984375,70.9921875,162.991455078125,0.000244140625,101.453430175781,126.812919616699,-6.866455078125e-005,101.693214416504,126.48176574707,-24.5680389404297,70.8353424072266,163.000366210938,-33.6876220703125,93.70751953125,134.982711791992,-33.8654327392578,103.182838439941,124.5341796875,0,103.331733703613,126.385154724121,24.4579086303711,71.8251953125,160.92041015625,0,96.1731567382813,133.312271118164,33.2712554931641,71.7471237182617,160.682357788086,33.2599945068359,101.671783447266,183.068313598633,31.4804229736328,138.129547119141,200.459671020508,33.0612335205078,150.05615234375,164.707763671875,33.558349609375,154.06201171875,153.99072265625,24.63427734375,153.46533203125,153.808837890625,0.000244140625,70.8354110717773,163.000518798828,33.6875305175781,93.7092514038086,134.980163574219,33.8649291992188,101.693580627441,126.482009887695,24.5679473876953,103.33129119873,126.382354736328,-24.4570007324219,96.0876312255859,133.116027832031,-33.2223510742188,71.3512115478516,160.426635742188,-33.1905517578125,154.06201171875,153.990966796875,-24.634033203125,150.056640625,164.707763671875,-33.558837890625,100.872627258301,183.540252685547,-32.0798645019531,138.196823120117,200.184555053711,-33.1377105712891,39.912052154541,-0.528347015380859,32.2817115783691,47.4164123535156,0.146131575107574,0.000623762607574463,48.8517303466797,0.710498809814453,25.0122566223145,4.73762083053589,0.109157562255859,33.3811302185059,39.9410057067871,-0.0545005798339844,-31.872859954834,4.82239484786987,-0.220428466796875,-33.8664245605469,48.8515357971191,0.710453033447266,-25.0126914978027,140.08203125,198.628967285156,31.5747680664063,151.04052734375,165.383544921875,-30.368408203125,140.08203125,198.628967285156,-31.5746459960938,151.041015625,165.38330078125,30.3681640625,153.416229248047,158.9443359375,24.8945465087891,
- 153.7470703125,158.50146484375,-24.63134765625,165.855377197266,214.117874145508,57.1339721679688,165.711471557617,202.660659790039,47.7978668212891,158.134155273438,247.126312255859,57.0564880371094,157.90576171875,246.73095703125,0,158.005737304688,246.399383544922,-56.2388000488281,164.189453125,213.768127441406,-55.3773803710938,165.707824707031,202.667083740234,-47.8021545410156,16.2627811431885,70.6370544433594,-20.2408752441406,32.9171142578125,109.671920776367,-48.9799346923828,33.6073799133301,108.780685424805,-20.2613067626953,15.5664281845093,70.0350723266602,-47.7110214233398,5.89851045608521,-0.428268432617188,-20.2363739013672,6.96085357666016,-1.99618530273438,-48.4756774902344,26.1982612609863,112.865631103516,-56.6612243652344,-1.96622824668884,0.694168090820313,-56.4215545654297,4.02601003646851,70.30322265625,-57.4248046875,-36.4811782836914,0.201171875,-57.26220703125,-26.9044227600098,84.3677749633789,-57.2772445678711,-7.3399658203125,131.423721313477,-57.2134857177734,-33.0052337646484,76.006462097168,-54.957405090332,-38.7492828369141,0.972953796386719,-55.6549758911133,-40.140983581543,-0.121458664536476,0.000611647963523865,-32.5507125854492,74.1702651977539,-0.00112152099609375,-9.87451171875,133.671264648438,-0.0001220703125,-6.84469366073608,132.378570556641,0.010406494140625,-9.43798828125,132.439453125,-56.873046875,5.23743295669556,44.3885231018066,-32.4107933044434,17.2081832885742,86.0534973144531,-33.2702331542969,51.991081237793,74.0917663574219,-33.5039367675781,37.232234954834,126.061676025391,-33.5184020996094,51.5051879882813,37.1299896240234,-25.6502838134766,74.7803192138672,96.3960266113281,-25.2948913574219,51.6019172668457,33.7706489562988,-0.00425338745117188,71.9782791137695,91.2994766235352,0.00455474853515625,17.2081031799316,86.0532531738281,33.2700500488281,5.23603534698486,44.3866806030273,32.4106063842773,51.7291870117188,73.7123336791992,33.5702438354492,37.2323608398438,126.061737060547,33.5187606811523,51.5017166137695,37.1169281005859,25.6506195068359,74.7850189208984,96.4062576293945,25.2104568481445,
- 33.3668327331543,109.593757629395,48.8862380981445,16.2533016204834,70.6137390136719,20.2411804199219,34.2625770568848,108.703742980957,20.242805480957,15.5604286193848,70.0146484375,47.71337890625,5.90365791320801,-0.424468994140625,20.2439880371094,6.96082592010498,-1.99605560302734,48.4761123657227,-1.96774899959564,0.698333740234375,56.4248962402344,25.4959888458252,113.10188293457,56.8113555908203,4.02631616592407,70.3037109375,57.4248123168945,-36.5278091430664,0.194766998291016,57.252872467041,-26.9051647186279,84.3636627197266,57.2772369384766,-8.0126953125,131.68994140625,58.1533203125,-5.92657327651978,131.590484619141,56.3370513916016,-33.0620613098145,75.9604949951172,55.0024795532227,-38.7492485046387,0.972919464111328,55.6545600891113,-9.43798828125,132.439453125,56.873046875,73.8699111938477,158.320465087891,-20.3948669433594,88.0789794921875,172.172012329102,-47.6229095458984,81.2761001586914,181.297790527344,-56.7139282226563,162.624588012695,212.582763671875,-57.5192718505859,15.0355815887451,161.709609985352,-56.8826751708984,60.4345817565918,209.4140625,-56.99462890625,-4.23681640625,131.85546875,-57.1748046875,14.4161167144775,163.639251708984,-54.7567443847656,36.5853309631348,189.467819213867,-0.0023956298828125,61.5623092651367,211.437850952148,-54.0562896728516,85.2487182617188,224.803298950195,7.62939453125e-005,116.306442260742,236.365447998047,-55.6472473144531,156.46630859375,247.725341796875,-0.000244140625,156.275390625,246.818603515625,-57.360107421875,156.02734375,248.28466796875,-56.330078125,88.0958251953125,172.309753417969,47.7975463867188,73.9651794433594,158.634246826172,20.3730163574219,81.2089691162109,181.24658203125,56.7084808349609,60.3308792114258,209.330703735352,56.9962310791016,15.0379104614258,161.714050292969,56.8825073242188,-4.23681640625,131.85546875,57.1748046875,14.4284534454346,163.654907226563,54.7559814453125,61.5646934509277,211.441146850586,54.062255859375,116.409828186035,236.405059814453,55.6364898681641,156.02734375,248.284912109375,56.329833984375
- }
- PolygonVertexIndex: *651 {
- a: 0,1,-3,0,2,-4,4,5,-7,4,6,-8,7,6,-9,9,10,-12,11,10,-13,12,13,-12,14,13,-16,12,15,-14,12,16,-16,16,12,-11,10,17,-17,10,18,-18,18,10,-10,19,20,-22,19,21,-5,21,5,-5,9,11,-23,22,11,-24,23,11,-25,18,9,-23,18,22,-26,25,22,-27,22,23,-27,27,26,-24,26,27,-29,23,24,-28,29,30,-32,29,32,-31,32,33,-31,33,32,-35,30,33,-36,36,37,-39,39,37,-37,37,39,-41,40,41,-38,27,15,-29,15,27,-15,14,27,-12,14,11,-14,24,11,-28,0,42,-44,42,0,-45,44,0,-46,3,45,-1,45,3,-47,3,47,-47,47,3,-49,49,50,-52,50,49,-53,53,52,-50,52,53,-55,52,55,-51,52,54,-57,56,57,-53,55,52,-58,56,58,-58,59,55,-58,59,57,-59,55,59,-61,59,58,-62,60,59,-62,58,62,-62,63,61,-63,64,61,-64,65,61,-65,60,65,-67,61,67,-61,61,65,-68,65,60,-68,68,69,-35,70,34,-70,34,70,-34,71,70,-70,8,71,-8,71,8,-71,72,33,-71,33,72,-36,8,73,-71,70,73,-73,73,8,-7,74,35,-73,73,74,-73,30,35,-75,74,73,-76,6,75,-74,75,6,-6,76,77,-33,76,32,-79,76,78,-80,78,32,-30,79,20,-20,20,79,-79,29,80,-79,80,29,-32,81,20,-79,81,78,-81,20,81,-22,31,74,-81,74,81,-81,74,31,-31,81,74,-76,81,75,-22,21,75,-6,82,83,-85,85,83,-83,85,86,-84,86,85,-88,85,88,-88,89,85,-83,90,88,-86,85,89,-91,90,91,-89,89,92,-91,91,90,-93,92,89,-94,93,89,-95,92,95,-92,93,95,-93,96,91,-96,95,63,-97,63,95,-65,95,65,-65,65,94,-67,97,95,-94,97,65,-96,94,97,-94,94,65,-98,96,88,-92,86,88,-97,88,86,-88,63,86,-97,86,63,-54,62,53,-64,56,53,-63,56,62,-59,53,56,-55,50,98,-52,98,50,-100,98,99,-3,50,100,-100,48,2,-100,48,3,-3,100,48,-100,100,50,-56,48,100,-102,48,101,-48,101,46,-48,102,100,-56,101,100,-104,100,102,-104,55,104,-103,55,60,-105,60,102,-105,60,105,-103,105,103,-103,66,105,-61,106,105,-67,105,106,-108,103,105,-108,108,107,-107,108,109,-108,103,107,-110,110,109,-109,45,46,-111,111,103,-110,101,103,-112,101,111,-47,112,109,-111,111,109,-113,112,110,-47,46,111,-113,0,43,-2,1,43,-114,113,114,-2,114,82,-85,82,114,-114,113,43,-116,82,113,-116,115,43,-43,82,115,-90,116,115,-43,116,42,-45,115,117,-90,117,115,-117,118,89,-118,89,118,-95,118,117,-95,94,117,-120,116,119,-118,66,94,-120,119,106,-67,120,106,-120,119,116,-121,106,120,-109,120,116,
- -122,121,108,-121,116,44,-122,121,110,-109,44,45,-111,122,121,-45,110,121,-123,110,122,-45,38,37,-27,37,41,-27,38,26,-29,25,26,-42,28,36,-39,41,18,-26,36,28,-16,18,41,-41,15,16,-37,17,18,-41,16,17,-41,39,36,-17,40,39,-17
- }
- Edges: *336 {
- a: 0,1,2,4,5,6,7,8,10,11,13,14,15,16,17,19,20,21,22,24,25,26,27,30,31,35,36,37,39,40,44,45,46,47,49,50,51,55,56,58,59,61,62,65,67,68,70,71,73,75,77,79,80,82,84,85,86,87,88,90,91,94,95,97,98,99,100,101,102,104,106,107,108,109,111,112,115,118,119,126,127,128,130,131,133,134,135,139,140,141,142,145,146,147,148,149,151,152,153,155,157,158,159,160,163,164,165,166,170,171,172,174,176,179,181,182,184,185,188,189,190,192,194,195,197,198,200,201,202,203,204,205,208,213,214,215,216,218,220,222,224,225,226,229,231,233,235,237,238,241,245,246,248,249,254,256,257,258,263,264,265,266,268,269,271,272,275,276,278,281,282,283,287,288,290,293,295,297,298,300,308,310,315,316,317,318,320,321,322,325,326,327,328,330,332,333,335,337,339,340,342,343,347,349,350,352,353,354,355,357,360,362,363,364,367,369,372,373,375,377,378,381,387,390,392,396,400,401,402,405,407,414,415,418,419,421,422,423,424,426,428,432,437,439,440,442,444,447,449,451,452,454,456,457,460,462,465,466,468,471,474,476,478,479,482,483,485,486,487,491,492,494,496,497,498,500,503,505,507,509,512,515,520,523,524,525,526,528,530,533,535,536,539,542,544,546,548,551,552,553,557,558,560,562,565,568,569,570,575,576,579,581,583,586,589,590,591,595,597,602,603,605,608,613,614,616,620,623,624,627,632,635,637,641,644,647
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *1953 {
- a: 0.440903872251511,-0.897554337978363,-1.99297098375154e-016,0.236956179141998,-0.971520364284515,-2.15720855464178e-016,0.236956179141998,-0.971520364284515,-2.15720855464178e-016,0.440903872251511,-0.897554337978363,-1.99297098375154e-016,0.236956179141998,-0.971520364284515,-2.15720855464178e-016,0.551061511039734,-0.834464609622955,-1.8528836456765e-016,0.763684928417206,0.645589292049408,1.43349619296941e-016,0.781638503074646,0.623731732368469,1.38496266092962e-016,0.781541049480438,0.623654007911682,-0.0157887078821659,0.763684928417206,0.645589292049408,1.43349619296941e-016,0.781541049480438,0.623654007911682,-0.0157887078821659,0.759207665920258,0.648489892482758,-0.0553588904440403,0.759207665920258,0.648489892482758,-0.0553588904440403,0.781541049480438,0.623654007911682,-0.0157887078821659,0.754970014095306,0.605548858642578,-0.25165668129921,-0.726575016975403,-0.687087178230286,-1.52564001039198e-016,-0.722619593143463,-0.691201388835907,0.00785456132143736,-0.745241343975067,-0.666794836521149,-1.48058196041389e-016,-0.745241343975067,-0.666794836521149,-1.48058196041389e-016,-0.722619593143463,-0.691201388835907,0.00785456132143736,-0.741353571414948,-0.670372903347015,0.0315469615161419,-0.741353571414948,-0.670372903347015,0.0315469615161419,-0.741722702980042,-0.670706689357758,-1.48926801859019e-016,-0.745241343975067,-0.666794836521149,-1.48058196041389e-016,-0.361009269952774,0.643538236618042,0.674930334091187,-0.118080973625183,0.0472323894500732,0.991880118846893,0.0474163927137852,0.0790273174643517,0.995744228363037,0.0552123263478279,-0.157749503850937,0.985934436321259,0.0474163927137852,0.0790273174643517,0.995744228363037,-0.118080973625183,0.0472323894500732,0.991880118846893,0.0552123263478279,-0.157749503850937,0.985934436321259,0.118308454751968,-0.118308454751968,0.985903739929199,0.0474163927137852,0.0790273174643517,0.995744228363037,0.118308454751968,-0.118308454751968,0.985903739929199,0.0552123263478279,-0.157749503850937,0.985934436321259,0.40115225315094,-0.857364654541016,0.322494953870773,
- 0.40115225315094,-0.857364654541016,0.322494953870773,0.489343255758286,-0.812941193580627,0.315705329179764,0.118308454751968,-0.118308454751968,0.985903739929199,0.40115225315094,-0.857364654541016,0.322494953870773,0.5363649725914,-0.8439861536026,-1.87402572038886e-016,0.489343255758286,-0.812941193580627,0.315705329179764,0.5363649725914,-0.8439861536026,-1.87402572038886e-016,0.40115225315094,-0.857364654541016,0.322494953870773,0.456579744815826,-0.889543294906616,-0.0157441291958094,0.759207665920258,0.648489892482758,0.0553588904440403,0.754970014095306,0.605548858642578,0.25165668129921,0.781541049480438,0.623654007911682,0.0157887078821659,0.759207665920258,0.648489892482758,0.0553588904440403,0.781541049480438,0.623654007911682,0.0157887078821659,0.763684928417206,0.645589292049408,1.43349619296941e-016,0.781541049480438,0.623654007911682,0.0157887078821659,0.781638503074646,0.623731732368469,1.38496266092962e-016,0.763684928417206,0.645589292049408,1.43349619296941e-016,-0.726575016975403,-0.687087178230286,-1.52564001039198e-016,-0.745241343975067,-0.666794836521149,-1.48058196041389e-016,-0.722619593143463,-0.691201388835907,-0.00785456132143736,-0.722619593143463,-0.691201388835907,-0.00785456132143736,-0.745241343975067,-0.666794836521149,-1.48058196041389e-016,-0.741353571414948,-0.670372903347015,-0.0315469615161419,-0.741353571414948,-0.670372903347015,-0.0315469615161419,-0.745241343975067,-0.666794836521149,-1.48058196041389e-016,-0.741722702980042,-0.670706689357758,-1.48926801859019e-016,0.5363649725914,-0.8439861536026,-1.87402572038886e-016,0.456579744815826,-0.889543294906616,0.0157441291958094,0.40115225315094,-0.857364654541016,-0.322494953870773,0.5363649725914,-0.8439861536026,-1.87402572038886e-016,0.40115225315094,-0.857364654541016,-0.322494953870773,0.489343255758286,-0.812941193580627,-0.315705329179764,0.489343255758286,-0.812941193580627,-0.315705329179764,0.40115225315094,-0.857364654541016,-0.322494953870773,0.118308454751968,-0.118308454751968,-0.985903739929199,0.40115225315094,-0.857364654541016,-0.322494953870773,
- 0.0473439991474152,-0.157813340425491,-0.98633337020874,0.118308454751968,-0.118308454751968,-0.985903739929199,-0.0394091904163361,0.110345736145973,-0.993111670017242,0.118308454751968,-0.118308454751968,-0.985903739929199,0.0473439991474152,-0.157813340425491,-0.98633337020874,0.118308454751968,-0.118308454751968,-0.985903739929199,-0.0394091904163361,0.110345736145973,-0.993111670017242,0.0394165366888046,0.165549457073212,-0.985413491725922,0.0473439991474152,-0.157813340425491,-0.98633337020874,-0.220233619213104,-0.0157309714704752,-0.975320279598236,-0.0394091904163361,0.110345736145973,-0.993111670017242,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.949465155601501,0.313872754573822,6.96937517860756e-017,0.937909722328186,0.346790164709091,-0.00788159482181072,0.937909722328186,0.346790164709091,-0.00788159482181072,0.928989887237549,0.370021402835846,0.00787279568612576,0.949465155601501,0.313872754573822,6.96937517860756e-017,-0.48764505982399,0.873041987419128,1.93854263179445e-016,-0.402474135160446,0.915431380271912,2.03266599168453e-016,-0.402474135160446,0.915431380271912,2.03266599168453e-016,-0.402474135160446,0.915431380271912,2.03266599168453e-016,-0.48764505982399,0.873041987419128,1.93854263179445e-016,-0.517937839031219,0.855382263660431,0.00784754380583763,
- -0.517937839031219,0.855382263660431,0.00784754380583763,-0.48764505982399,0.873041987419128,1.93854263179445e-016,-0.588620185852051,0.808371663093567,0.00784826837480068,-0.517937839031219,0.855382263660431,0.00784754380583763,-0.588620185852051,0.808371663093567,0.00784826837480068,-0.583455502986908,0.812106966972351,0.00788453407585621,-0.583310425281525,0.811905026435852,-0.0236477199941874,-0.588620185852051,0.808371663093567,0.00784826837480068,-0.48764505982399,0.873041987419128,1.93854263179445e-016,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.98349004983902,0.180962175130844,4.01816746833026e-017,0.951782822608948,-0.306772977113724,-6.81172845048925e-017,0.86552482843399,-0.346209943294525,-0.361946761608124,0.937938749790192,-0.346800923347473,-7.70052740123257e-017,0.86552482843399,-0.346209943294525,-0.361946761608124,0.951782822608948,-0.306772977113724,-6.81172845048925e-017,0.922719836235046,-0.197162359952927,-0.331232756376266,
- 0.978716969490051,-0.205214828252792,-4.55668454641494e-017,0.922719836235046,-0.197162359952927,-0.331232756376266,0.951782822608948,-0.306772977113724,-6.81172845048925e-017,0.922719836235046,-0.197162359952927,-0.331232756376266,0.978716969490051,-0.205214828252792,-4.55668454641494e-017,0.928558349609375,-0.196728453040123,-0.31476554274559,0.922719836235046,-0.197162359952927,-0.331232756376266,0.282459378242493,-0.0627687498927116,-0.957223474979401,0.86552482843399,-0.346209943294525,-0.361946761608124,0.922719836235046,-0.197162359952927,-0.331232756376266,0.928558349609375,-0.196728453040123,-0.31476554274559,0.243476361036301,-0.086394838988781,-0.966051340103149,0.243476361036301,-0.086394838988781,-0.966051340103149,0.197414219379425,-0.0473794117569923,-0.979174554347992,0.922719836235046,-0.197162359952927,-0.331232756376266,0.282459378242493,-0.0627687498927116,-0.957223474979401,0.922719836235046,-0.197162359952927,-0.331232756376266,0.197414219379425,-0.0473794117569923,-0.979174554347992,0.243476361036301,-0.086394838988781,-0.966051340103149,-0.0392619036138058,-0.0628190487623215,-0.997252345085144,0.197414219379425,-0.0473794117569923,-0.979174554347992,-0.0393286496400833,0.0235971882939339,-0.99894767999649,0.282459378242493,-0.0627687498927116,-0.957223474979401,0.197414219379425,-0.0473794117569923,-0.979174554347992,-0.0393286496400833,0.0235971882939339,-0.99894767999649,0.197414219379425,-0.0473794117569923,-0.979174554347992,-0.0392619036138058,-0.0628190487623215,-0.997252345085144,0.282459378242493,-0.0627687498927116,-0.957223474979401,-0.0393286496400833,0.0235971882939339,-0.99894767999649,-0.0157558489590883,0.173314332962036,-0.984740495681763,-0.0393286496400833,0.0235971882939339,-0.99894767999649,-0.0392619036138058,-0.0628190487623215,-0.997252345085144,-0.967036128044128,0.251586616039276,-0.039310410618782,-0.0157558489590883,0.173314332962036,-0.984740495681763,-0.0393286496400833,0.0235971882939339,-0.99894767999649,-0.967036128044128,0.251586616039276,-0.039310410618782,
- -0.0392619036138058,-0.0628190487623215,-0.997252345085144,-0.997775554656982,-0.0471390038728714,-0.0471390038728714,-0.967036128044128,0.251586616039276,-0.039310410618782,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.967036128044128,0.251586616039276,-0.039310410618782,-0.997775554656982,-0.0471390038728714,-0.0471390038728714,-0.971929013729095,0.23514412343502,0.00783813744783401,-0.967036128044128,0.251586616039276,-0.039310410618782,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.889653563499451,0.456636339426041,1.01393635582268e-016,-0.967036128044128,0.251586616039276,-0.039310410618782,-0.971929013729095,0.23514412343502,0.00783813744783401,-0.0157558489590883,0.173314332962036,-0.984740495681763,-0.889653563499451,0.456636339426041,1.01393635582268e-016,0.275761604309082,0.961226165294647,2.13435084116453e-016,-0.967036128044128,0.251586616039276,-0.039310410618782,-0.896194398403168,0.44023585319519,-0.0550294816493988,-0.0157558489590883,0.173314332962036,-0.984740495681763,-0.967036128044128,0.251586616039276,-0.039310410618782,-0.889653563499451,0.456636339426041,1.01393635582268e-016,-0.896194398403168,0.44023585319519,-0.0550294816493988,-0.889653563499451,0.456636339426041,1.01393635582268e-016,-0.0157558489590883,0.173314332962036,-0.984740495681763,-0.896194398403168,0.44023585319519,-0.0550294816493988,-0.749100506305695,0.10250848531723,-0.65447723865509,-0.118080973625183,0.0472323894500732,-0.991880118846893,0.0394730009138584,-0.0947351977229118,-0.994719624519348,0.157675951719284,-0.0630703791975975,-0.985474705696106,0.0394730009138584,-0.0947351977229118,-0.994719624519348,-0.118080973625183,0.0472323894500732,-0.991880118846893,0.0394730009138584,-0.0947351977229118,-0.994719624519348,0.157675951719284,-0.0630703791975975,-0.985474705696106,0.259834468364716,-0.157475426793098,-0.952726364135742,-0.078916497528553,0.0710248425602913,-0.994347870349884,0.157675951719284,-0.0630703791975975,-0.985474705696106,-0.118080973625183,0.0472323894500732,-0.991880118846893,
- 0.164940670132637,-0.0942518189549446,-0.981789767742157,-0.078916497528553,0.0710248425602913,-0.994347870349884,-0.0157446153461933,0.125956922769547,-0.991910755634308,-0.078916497528553,0.0710248425602913,-0.994347870349884,0.164940670132637,-0.0942518189549446,-0.981789767742157,0.157675951719284,-0.0630703791975975,-0.985474705696106,0.92054671049118,-0.125886723399162,-0.369792282581329,0.259834468364716,-0.157475426793098,-0.952726364135742,0.157675951719284,-0.0630703791975975,-0.985474705696106,0.259834468364716,-0.157475426793098,-0.952726364135742,0.92054671049118,-0.125886723399162,-0.369792282581329,0.930056929588318,-0.141873091459274,-0.338919043540955,0.164940670132637,-0.0942518189549446,-0.981789767742157,0.809694349765778,-0.455944418907166,-0.369472205638886,0.157675951719284,-0.0630703791975975,-0.985474705696106,0.157675951719284,-0.0630703791975975,-0.985474705696106,0.809694349765778,-0.455944418907166,-0.369472205638886,0.92054671049118,-0.125886723399162,-0.369792282581329,0.809694349765778,-0.455944418907166,-0.369472205638886,0.164940670132637,-0.0942518189549446,-0.981789767742157,0.733079254627228,-0.575427830219269,-0.362598359584808,0.97369521856308,-0.227719038724899,0.00785238109529018,0.930056929588318,-0.141873091459274,-0.338919043540955,0.92054671049118,-0.125886723399162,-0.369792282581329,0.809694349765778,-0.455944418907166,-0.369472205638886,0.97369521856308,-0.227719038724899,0.00785238109529018,0.92054671049118,-0.125886723399162,-0.369792282581329,0.978716969490051,-0.205214828252792,-4.55668454641494e-017,0.930056929588318,-0.141873091459274,-0.338919043540955,0.97369521856308,-0.227719038724899,0.00785238109529018,0.97369521856308,-0.227719038724899,0.00785238109529018,0.809694349765778,-0.455944418907166,-0.369472205638886,0.834464609622955,-0.551061511039734,-1.22360235508208e-016,0.733079254627228,-0.575427830219269,-0.362598359584808,0.834464609622955,-0.551061511039734,-1.22360235508208e-016,0.809694349765778,-0.455944418907166,-0.369472205638886,0.834464609622955,-0.551061511039734,-1.22360235508208e-016,
- 0.733079254627228,-0.575427830219269,-0.362598359584808,0.801882803440094,-0.597481369972229,-1.3266751474555e-016,-0.118080973625183,0.0472323894500732,0.991880118846893,-0.749100506305695,0.10250848531723,0.65447723865509,0.0472748801112175,-0.110308051109314,0.99277251958847,-0.118080973625183,0.0472323894500732,0.991880118846893,0.0472748801112175,-0.110308051109314,0.99277251958847,0.150044173002243,-0.0552794300019741,0.987132668495178,-0.118080973625183,0.0472323894500732,0.991880118846893,0.150044173002243,-0.0552794300019741,0.987132668495178,-0.078916497528553,0.0710248425602913,0.994347870349884,0.150044173002243,-0.0552794300019741,0.987132668495178,0.0472748801112175,-0.110308051109314,0.99277251958847,0.252469897270203,-0.157793685793877,0.954651832580566,-0.078916497528553,0.0710248425602913,0.994347870349884,0.164940670132637,-0.0942518189549446,0.981789767742157,-0.0157446153461933,0.125956922769547,0.991910755634308,0.164940670132637,-0.0942518189549446,0.981789767742157,-0.078916497528553,0.0710248425602913,0.994347870349884,0.150044173002243,-0.0552794300019741,0.987132668495178,0.252469897270203,-0.157793685793877,0.954651832580566,0.92054671049118,-0.125886723399162,0.369792282581329,0.150044173002243,-0.0552794300019741,0.987132668495178,0.92054671049118,-0.125886723399162,0.369792282581329,0.252469897270203,-0.157793685793877,0.954651832580566,0.930056929588318,-0.141873091459274,0.338919043540955,0.812031269073486,-0.457260340452194,0.362654745578766,0.164940670132637,-0.0942518189549446,0.981789767742157,0.150044173002243,-0.0552794300019741,0.987132668495178,0.812031269073486,-0.457260340452194,0.362654745578766,0.150044173002243,-0.0552794300019741,0.987132668495178,0.92054671049118,-0.125886723399162,0.369792282581329,0.164940670132637,-0.0942518189549446,0.981789767742157,0.812031269073486,-0.457260340452194,0.362654745578766,0.733079254627228,-0.575427830219269,0.362598359584808,0.930056929588318,-0.141873091459274,0.338919043540955,0.97369521856308,-0.227719038724899,-0.00785238109529018,
- 0.92054671049118,-0.125886723399162,0.369792282581329,0.97369521856308,-0.227719038724899,-0.00785238109529018,0.812031269073486,-0.457260340452194,0.362654745578766,0.92054671049118,-0.125886723399162,0.369792282581329,0.97369521856308,-0.227719038724899,-0.00785238109529018,0.930056929588318,-0.141873091459274,0.338919043540955,0.978716969490051,-0.205214828252792,-4.55668454641494e-017,0.812031269073486,-0.457260340452194,0.362654745578766,0.97369521856308,-0.227719038724899,-0.00785238109529018,0.834464609622955,-0.551061511039734,-1.22360235508208e-016,0.812031269073486,-0.457260340452194,0.362654745578766,0.834464609622955,-0.551061511039734,-1.22360235508208e-016,0.733079254627228,-0.575427830219269,0.362598359584808,0.733079254627228,-0.575427830219269,0.362598359584808,0.834464609622955,-0.551061511039734,-1.22360235508208e-016,0.801882803440094,-0.597481369972229,-1.3266751474555e-016,0.867973446846008,-0.355080038309097,0.347189396619797,0.951782822608948,-0.306772977113724,-6.81172845048925e-017,0.935356557369232,-0.353706270456314,-7.85385690829785e-017,0.922719836235046,-0.197162359952927,0.331232756376266,0.951782822608948,-0.306772977113724,-6.81172845048925e-017,0.867973446846008,-0.355080038309097,0.347189396619797,0.922719836235046,-0.197162359952927,0.331232756376266,0.978716969490051,-0.205214828252792,-4.55668454641494e-017,0.951782822608948,-0.306772977113724,-6.81172845048925e-017,0.978716969490051,-0.205214828252792,-4.55668454641494e-017,0.922719836235046,-0.197162359952927,0.331232756376266,0.928558349609375,-0.196728453040123,0.31476554274559,0.922719836235046,-0.197162359952927,0.331232756376266,0.243476361036301,-0.086394838988781,0.966051340103149,0.928558349609375,-0.196728453040123,0.31476554274559,0.267924249172211,-0.0630410015583038,0.961375296115875,0.922719836235046,-0.197162359952927,0.331232756376266,0.867973446846008,-0.355080038309097,0.347189396619797,0.197414219379425,-0.0473794117569923,0.979174554347992,0.243476361036301,-0.086394838988781,0.966051340103149,0.922719836235046,-0.197162359952927,0.331232756376266,
- 0.922719836235046,-0.197162359952927,0.331232756376266,0.267924249172211,-0.0630410015583038,0.961375296115875,0.197414219379425,-0.0473794117569923,0.979174554347992,0.197414219379425,-0.0473794117569923,0.979174554347992,-0.0314182415604591,-0.0628364831209183,0.997529208660126,0.243476361036301,-0.086394838988781,0.966051340103149,0.267924249172211,-0.0630410015583038,0.961375296115875,-0.0393286496400833,0.0235971882939339,0.99894767999649,0.197414219379425,-0.0473794117569923,0.979174554347992,-0.0314182415604591,-0.0628364831209183,0.997529208660126,0.197414219379425,-0.0473794117569923,0.979174554347992,-0.0393286496400833,0.0235971882939339,0.99894767999649,-0.0393286496400833,0.0235971882939339,0.99894767999649,0.267924249172211,-0.0630410015583038,0.961375296115875,-0.039320133626461,0.031456109136343,0.998731434345245,-0.039320133626461,0.031456109136343,0.998731434345245,0.267924249172211,-0.0630410015583038,0.961375296115875,0.243476361036301,0.934635043144226,0.259184509515762,-0.0393286496400833,0.0235971882939339,0.99894767999649,-0.967036128044128,0.251586616039276,0.039310410618782,-0.0314182415604591,-0.0628364831209183,0.997529208660126,-0.039320133626461,0.031456109136343,0.998731434345245,-0.967036128044128,0.251586616039276,0.039310410618782,-0.0393286496400833,0.0235971882939339,0.99894767999649,-0.997775554656982,-0.0471390038728714,0.0471390038728714,-0.0314182415604591,-0.0628364831209183,0.997529208660126,-0.967036128044128,0.251586616039276,0.039310410618782,-0.967036128044128,0.251586616039276,0.039310410618782,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.997775554656982,-0.0471390038728714,0.0471390038728714,-0.999969005584717,0.00787377171218395,1.74832852910177e-018,-0.967036128044128,0.251586616039276,0.039310410618782,-0.975441098213196,0.22026090323925,4.89077452401899e-017,-0.967036128044128,0.251586616039276,0.039310410618782,-0.889653563499451,0.456636339426041,1.01393635582268e-016,-0.975441098213196,0.22026090323925,4.89077452401899e-017,-0.889653563499451,0.456636339426041,1.01393635582268e-016,
- 0.243476361036301,0.934635043144226,0.259184509515762,0.275761604309082,0.961226165294647,2.13435084116453e-016,-0.888305485248566,0.455944418907166,0.0550277754664421,-0.967036128044128,0.251586616039276,0.039310410618782,-0.039320133626461,0.031456109136343,0.998731434345245,-0.888305485248566,0.455944418907166,0.0550277754664421,-0.889653563499451,0.456636339426041,1.01393635582268e-016,-0.967036128044128,0.251586616039276,0.039310410618782,0.243476361036301,0.934635043144226,0.259184509515762,-0.888305485248566,0.455944418907166,0.0550277754664421,-0.039320133626461,0.031456109136343,0.998731434345245,0.243476361036301,0.934635043144226,0.259184509515762,-0.889653563499451,0.456636339426041,1.01393635582268e-016,-0.888305485248566,0.455944418907166,0.0550277754664421,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0,-1,-2.22044604925031e-016,0.647135436534882,-0.678703010082245,-0.347243428230286,0.709630072116852,-0.701745271682739,0.0630782321095467,0.662383198738098,-0.749123811721802,0.00788551475852728,0.709630072116852,-0.701745271682739,0.0630782321095467,0.647135436534882,-0.678703010082245,-0.347243428230286,0.559454143047333,-0.756445050239563,-0.338824331760406,0.709630072116852,-0.701745271682739,0.0630782321095467,0.559454143047333,-0.756445050239563,-0.338824331760406,0.32327589392662,-0.946173369884491,-0.0157695561647415,0.647135436534882,-0.678703010082245,-0.347243428230286,
- 0.102397121489048,-0.141780629754066,-0.984587788581848,0.559454143047333,-0.756445050239563,-0.338824331760406,0.362328290939331,-0.874313950538635,-0.322944790124893,0.32327589392662,-0.946173369884491,-0.0157695561647415,0.559454143047333,-0.756445050239563,-0.338824331760406,0.362328290939331,-0.874313950538635,-0.322944790124893,0.496988266706467,-0.867757260799408,-1.92680818145032e-016,0.32327589392662,-0.946173369884491,-0.0157695561647415,0.102397121489048,-0.141780629754066,-0.984587788581848,0.362328290939331,-0.874313950538635,-0.322944790124893,0.559454143047333,-0.756445050239563,-0.338824331760406,0.102397121489048,-0.141780629754066,-0.984587788581848,0.647135436534882,-0.678703010082245,-0.347243428230286,0.118271671235561,-0.173465117812157,-0.977712452411652,0.362328290939331,-0.874313950538635,-0.322944790124893,0.102397121489048,-0.141780629754066,-0.984587788581848,0.0709696188569069,-0.197137832641602,-0.977803647518158,0.362328290939331,-0.874313950538635,-0.322944790124893,0.0709696188569069,-0.197137832641602,-0.977803647518158,0.793261647224426,0.0706866830587387,-0.604763865470886,0.0709696188569069,-0.197137832641602,-0.977803647518158,0.759778141975403,0.554004848003387,-0.340317279100418,0.793261647224426,0.0706866830587387,-0.604763865470886,-0.0628597587347031,0.0157149396836758,-0.997898638248444,0.102397121489048,-0.141780629754066,-0.984587788581848,0.118271671235561,-0.173465117812157,-0.977712452411652,0.0709696188569069,-0.197137832641602,-0.977803647518158,0.102397121489048,-0.141780629754066,-0.984587788581848,-0.0235971882939339,0.0393286496400833,-0.99894767999649,0.102397121489048,-0.141780629754066,-0.984587788581848,-0.0628597587347031,0.0157149396836758,-0.997898638248444,-0.0235971882939339,0.0393286496400833,-0.99894767999649,0.118271671235561,-0.173465117812157,-0.977712452411652,-0.047189999371767,-0.00786499958485365,-0.998854994773865,-0.0628597587347031,0.0157149396836758,-0.997898638248444,0.118271671235561,-0.173465117812157,-0.977712452411652,-0.781030118465424,0.623246312141418,-0.0394459664821625,
- -0.047189999371767,-0.00786499958485365,-0.998854994773865,-0.781030118465424,0.623246312141418,-0.0394459664821625,-0.0628597587347031,0.0157149396836758,-0.997898638248444,-0.047189999371767,-0.00786499958485365,-0.998854994773865,-0.781030118465424,0.623246312141418,-0.0394459664821625,-0.781419336795807,0.623556852340698,-0.0236793737858534,-0.0628597587347031,0.0157149396836758,-0.997898638248444,-0.781419336795807,0.623556852340698,-0.0236793737858534,-0.0235971882939339,0.0393286496400833,-0.99894767999649,-0.0628597587347031,0.0157149396836758,-0.997898638248444,-0.795250952243805,0.606280446052551,1.34621302117511e-016,-0.781419336795807,0.623556852340698,-0.0236793737858534,-0.781030118465424,0.623246312141418,-0.0394459664821625,-0.722641825675964,0.691222667694092,1.53482264163361e-016,-0.781419336795807,0.623556852340698,-0.0236793737858534,-0.795250952243805,0.606280446052551,1.34621302117511e-016,-0.781419336795807,0.623556852340698,-0.0236793737858534,-0.722641825675964,0.691222667694092,1.53482264163361e-016,-0.588565766811371,0.808296978473663,-0.0156950876116753,-0.0235971882939339,0.0393286496400833,-0.99894767999649,-0.781419336795807,0.623556852340698,-0.0236793737858534,-0.588565766811371,0.808296978473663,-0.0156950876116753,-0.425038784742355,0.905175149440765,2.00989258445531e-016,-0.588565766811371,0.808296978473663,-0.0156950876116753,-0.722641825675964,0.691222667694092,1.53482264163361e-016,-0.425038784742355,0.905175149440765,2.00989258445531e-016,-0.369849503040314,0.928558349609375,-0.031476553529501,-0.588565766811371,0.808296978473663,-0.0156950876116753,-0.0235971882939339,0.0393286496400833,-0.99894767999649,-0.588565766811371,0.808296978473663,-0.0156950876116753,-0.369849503040314,0.928558349609375,-0.031476553529501,-0.25178125500679,0.96778416633606,2.14891252866791e-016,-0.369849503040314,0.928558349609375,-0.031476553529501,-0.425038784742355,0.905175149440765,2.00989258445531e-016,0.637084722518921,0.770793914794922,1.71150630289257e-016,0.759778141975403,0.554004848003387,-0.340317279100418,
- -0.25178125500679,0.96778416633606,2.14891252866791e-016,0.0235971882939339,0.0393286496400833,-0.99894767999649,-0.0235971882939339,0.0393286496400833,-0.99894767999649,-0.369849503040314,0.928558349609375,-0.031476553529501,0.0709696188569069,-0.197137832641602,-0.977803647518158,-0.0235971882939339,0.0393286496400833,-0.99894767999649,0.0235971882939339,0.0393286496400833,-0.99894767999649,0.0709696188569069,-0.197137832641602,-0.977803647518158,0.0235971882939339,0.0393286496400833,-0.99894767999649,0.759778141975403,0.554004848003387,-0.340317279100418,-0.283017456531525,0.959114789962769,2.12966264615037e-016,-0.369849503040314,0.928558349609375,-0.031476553529501,-0.25178125500679,0.96778416633606,2.14891252866791e-016,0.0235971882939339,0.0393286496400833,-0.99894767999649,-0.369849503040314,0.928558349609375,-0.031476553529501,-0.283017456531525,0.959114789962769,2.12966264615037e-016,-0.283017456531525,0.959114789962769,2.12966264615037e-016,-0.25178125500679,0.96778416633606,2.14891252866791e-016,0.759778141975403,0.554004848003387,-0.340317279100418,0.759778141975403,0.554004848003387,-0.340317279100418,0.0235971882939339,0.0393286496400833,-0.99894767999649,-0.283017456531525,0.959114789962769,2.12966264615037e-016,0.496988266706467,-0.867757260799408,-1.92680818145032e-016,0.362328290939331,-0.874313950538635,0.322944790124893,0.32327589392662,-0.946173369884491,0.0157695561647415,0.32327589392662,-0.946173369884491,0.0157695561647415,0.362328290939331,-0.874313950538635,0.322944790124893,0.545169353485107,-0.766397535800934,0.339743196964264,0.545169353485107,-0.766397535800934,0.339743196964264,0.701745271682739,-0.709630072116852,-0.0630782321095467,0.32327589392662,-0.946173369884491,0.0157695561647415,0.701745271682739,-0.709630072116852,-0.0630782321095467,0.661253333091736,-0.661253333091736,0.354242891073227,0.662383198738098,-0.749123811721802,-0.00788551475852728,0.661253333091736,-0.661253333091736,0.354242891073227,0.701745271682739,-0.709630072116852,-0.0630782321095467,0.545169353485107,-0.766397535800934,0.339743196964264,
- 0.545169353485107,-0.766397535800934,0.339743196964264,0.362328290939331,-0.874313950538635,0.322944790124893,0.110181584954262,-0.141662031412125,0.983764171600342,0.661253333091736,-0.661253333091736,0.354242891073227,0.545169353485107,-0.766397535800934,0.339743196964264,0.110181584954262,-0.141662031412125,0.983764171600342,0.110181584954262,-0.141662031412125,0.983764171600342,0.362328290939331,-0.874313950538635,0.322944790124893,0.0945850014686584,-0.189170002937317,0.977378308773041,0.661253333091736,-0.661253333091736,0.354242891073227,0.110181584954262,-0.141662031412125,0.983764171600342,0.109923161566257,-0.157033085823059,0.981456816196442,-0.0235971882939339,0.0393286496400833,0.99894767999649,0.110181584954262,-0.141662031412125,0.983764171600342,0.0945850014686584,-0.189170002937317,0.977378308773041,-0.0235971882939339,0.0393286496400833,0.99894767999649,0.0945850014686584,-0.189170002937317,0.977378308773041,0.102172337472439,0.0943129286170006,0.990285754203796,0.110181584954262,-0.141662031412125,0.983764171600342,-0.0628597587347031,0.0157149396836758,0.997898638248444,0.109923161566257,-0.157033085823059,0.981456816196442,-0.0628597587347031,0.0157149396836758,0.997898638248444,0.110181584954262,-0.141662031412125,0.983764171600342,-0.0235971882939339,0.0393286496400833,0.99894767999649,-0.047189999371767,-0.00786499958485365,0.998854994773865,0.109923161566257,-0.157033085823059,0.981456816196442,-0.0628597587347031,0.0157149396836758,0.997898638248444,0.109923161566257,-0.157033085823059,0.981456816196442,-0.047189999371767,-0.00786499958485365,0.998854994773865,-0.816874265670776,0.573382973670959,0.0628364831209183,-0.047189999371767,-0.00786499958485365,0.998854994773865,-0.0628597587347031,0.0157149396836758,0.997898638248444,-0.816874265670776,0.573382973670959,0.0628364831209183,-0.816874265670776,0.573382973670959,0.0628364831209183,-0.0628597587347031,0.0157149396836758,0.997898638248444,-0.781419336795807,0.623556852340698,0.0236793737858534,-0.0235971882939339,0.0393286496400833,0.99894767999649,
- -0.781419336795807,0.623556852340698,0.0236793737858534,-0.0628597587347031,0.0157149396836758,0.997898638248444,-0.801882803440094,0.597481369972229,1.3266751474555e-016,-0.816874265670776,0.573382973670959,0.0628364831209183,-0.781419336795807,0.623556852340698,0.0236793737858534,-0.781419336795807,0.623556852340698,0.0236793737858534,-0.718856811523438,0.695158243179321,1.54356137467131e-016,-0.801882803440094,0.597481369972229,1.3266751474555e-016,-0.588565766811371,0.808296978473663,0.0156950876116753,-0.718856811523438,0.695158243179321,1.54356137467131e-016,-0.781419336795807,0.623556852340698,0.0236793737858534,-0.781419336795807,0.623556852340698,0.0236793737858534,-0.0235971882939339,0.0393286496400833,0.99894767999649,-0.588565766811371,0.808296978473663,0.0156950876116753,-0.718856811523438,0.695158243179321,1.54356137467131e-016,-0.588565766811371,0.808296978473663,0.0156950876116753,-0.425038784742355,0.905175149440765,2.00989258445531e-016,-0.588565766811371,0.808296978473663,0.0156950876116753,-0.0235971882939339,0.0393286496400833,0.99894767999649,-0.363027215003967,0.931243658065796,0.0315675809979439,-0.363027215003967,0.931243658065796,0.0315675809979439,-0.425038784742355,0.905175149440765,2.00989258445531e-016,-0.588565766811371,0.808296978473663,0.0156950876116753,-0.0235971882939339,0.0393286496400833,0.99894767999649,0.102172337472439,0.0943129286170006,0.990285754203796,-0.363027215003967,0.931243658065796,0.0315675809979439,-0.363027215003967,0.931243658065796,0.0315675809979439,-0.25178125500679,0.96778416633606,2.14891252866791e-016,-0.425038784742355,0.905175149440765,2.00989258445531e-016,0.102172337472439,0.0943129286170006,0.990285754203796,0.637084722518921,0.770793914794922,1.71150630289257e-016,-0.25178125500679,0.96778416633606,2.14891252866791e-016,-0.283017456531525,0.959114789962769,2.12966264615037e-016,-0.363027215003967,0.931243658065796,0.0315675809979439,0.102172337472439,0.0943129286170006,0.990285754203796,-0.25178125500679,0.96778416633606,2.14891252866791e-016,-0.363027215003967,0.931243658065796,0.0315675809979439,
- -0.283017456531525,0.959114789962769,2.12966264615037e-016,-0.25178125500679,0.96778416633606,2.14891252866791e-016,-0.283017456531525,0.959114789962769,2.12966264615037e-016,0.102172337472439,0.0943129286170006,0.990285754203796,0.71582567691803,0.676494598388672,-0.1730567663908,0.908190488815308,0.221124649047852,-0.355378895998001,0.118308454751968,-0.118308454751968,-0.985903739929199,0.908190488815308,0.221124649047852,-0.355378895998001,0.993698358535767,0.0709784477949142,-0.0867514461278915,0.118308454751968,-0.118308454751968,-0.985903739929199,0.71582567691803,0.676494598388672,-0.1730567663908,0.118308454751968,-0.118308454751968,-0.985903739929199,0.102806150913239,0.86989825963974,-0.482398122549057,0.489343255758286,-0.812941193580627,-0.315705329179764,0.118308454751968,-0.118308454751968,-0.985903739929199,0.993698358535767,0.0709784477949142,-0.0867514461278915,0.102806150913239,0.86989825963974,-0.482398122549057,0.71582567691803,0.676494598388672,0.1730567663908,0.71582567691803,0.676494598388672,-0.1730567663908,0.993698358535767,0.0709784477949142,-0.0867514461278915,0.5363649725914,-0.8439861536026,-1.87402572038886e-016,0.489343255758286,-0.812941193580627,-0.315705329179764,0.71582567691803,0.676494598388672,0.1730567663908,0.102806150913239,0.86989825963974,-0.482398122549057,0.110086165368557,0.794193029403687,0.597610652446747,0.5363649725914,-0.8439861536026,-1.87402572038886e-016,0.993698358535767,0.0709784477949142,-0.0867514461278915,0.994347870349884,0.0710248425602913,0.078916497528553,0.110086165368557,0.794193029403687,0.597610652446747,0.118308454751968,-0.118308454751968,0.985903739929199,0.71582567691803,0.676494598388672,0.1730567663908,0.489343255758286,-0.812941193580627,0.315705329179764,0.5363649725914,-0.8439861536026,-1.87402572038886e-016,0.994347870349884,0.0710248425602913,0.078916497528553,0.118308454751968,-0.118308454751968,0.985903739929199,0.489343255758286,-0.812941193580627,0.315705329179764,0.994347870349884,0.0710248425602913,0.078916497528553,0.908190488815308,0.221124649047852,0.355378895998001,
- 0.71582567691803,0.676494598388672,0.1730567663908,0.118308454751968,-0.118308454751968,0.985903739929199,0.994347870349884,0.0710248425602913,0.078916497528553,0.908190488815308,0.221124649047852,0.355378895998001,0.118308454751968,-0.118308454751968,0.985903739929199
- }
- NormalsW: *651 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *1953 {
- a: 0.897543430328369,0.440898507833481,0.00492975488305092,0.971503257751465,0.236952006816864,0.00593134015798569,0.971503257751465,0.236952006816864,0.00593134015798569,0.897550642490387,0.440902054309845,0.00285808951593935,0.971518337726593,0.236955687403679,0.00205290294252336,0.834460139274597,0.55105859041214,0.00326854037120938,-0.00123785331379622,0.00146428996231407,0.999998211860657,-0.00119635520968586,0.00149923004209995,0.999998211860657,0.0108856838196516,0.0116716781631112,0.99987268447876,-0.0106881326064467,0.0126432795077562,0.999863028526306,0.00173982256092131,0.0231293607503176,0.999731063842773,0.031564325094223,0.0482703968882561,0.998335480690002,0.0480041727423668,0.0290314015001059,0.998425126075745,0.0171395763754845,0.00383384246379137,0.999845802783966,0.19975446164608,0.153158858418465,0.967801928520203,-1.15692153919406e-016,-9.97034673628054e-017,1,0.00595792895182967,0.00513454154133797,0.999969065189362,-1.12175087833949e-016,-9.66724526052845e-017,1,0.031924907118082,-0.0356807820498943,0.998853206634521,0.0387340225279331,-0.0291443821042776,0.998824536800385,0.054838515818119,-0.0136613287031651,0.998401820659637,0.0233317147940397,0.0212332755327225,0.999502301216125,-0.000205890217330307,0.000227690354222432,1,-0.00020468515867833,0.000228765784413554,0.999999940395355,-0.449456244707108,0.514067351818085,-0.730564117431641,-0.613719701766968,0.781782805919647,-0.110289618372917,-0.613775074481964,0.788775205612183,-0.0333738252520561,-0.553501904010773,0.816996872425079,0.161715596914291,-0.560897290706635,0.826969861984253,-0.0389231368899345,-0.558325588703156,0.822867095470428,-0.10565148293972,-0.490511387586594,0.855787932872772,0.164394706487656,-0.490726888179779,0.856190979480743,0.161630153656006,-0.495901793241501,0.86720085144043,-0.0452110953629017,-0.493123322725296,0.854790389537811,0.161749646067619,-0.492913037538528,0.854423046112061,0.164310812950134,-0.162125632166862,0.280051529407501,0.946195721626282,-0.146646857261658,0.287413507699966,0.946513772010803,
- -0.143706753849983,0.281893908977509,0.948622286319733,-0.461719244718552,0.872458100318909,0.160101279616356,-0.148299440741539,0.286632508039474,0.946493029594421,0.00604043202474713,0.00383877893909812,0.999974370002747,-0.145216032862663,0.28099924325943,0.948657870292664,-3.54407688973879e-006,-2.25231019612693e-006,1,-0.162849679589272,0.279704600572586,0.946174085140228,0.00792894791811705,-0.0136271910741925,0.999875783920288,0.0479966588318348,0.0290402080863714,-0.998425245285034,0.199748933315277,0.15316578745842,-0.967801928520203,0.0171320512890816,0.00384327536448836,-0.999845862388611,0.0315621607005596,0.048272930085659,-0.998335421085358,0.00173790473490953,0.0231317616999149,-0.999730944633484,-0.0106900446116924,0.0126455407589674,-0.999862909317017,0.0108774285763502,0.0116820214316249,-0.999872624874115,-0.00120461138430983,0.001509576337412,-0.999998211860657,-0.00124639563728124,0.00147439492866397,-0.999998211860657,1.15692153919406e-016,9.97034673628054e-017,-1,1.12175087833949e-016,9.66724526052845e-017,-1,0.00595792895182967,0.00513454154133797,-0.999969065189362,0.0402591563761234,-0.030740063637495,-0.998716354370117,0.0334495380520821,-0.037384781986475,-0.998740971088409,0.0561946555972099,-0.0151656307280064,-0.998304724693298,0.0228032469749451,0.0218176804482937,-0.999501943588257,-0.000575448444578797,0.000643148319795728,-0.999999642372131,-0.000578813895117491,0.000640100101009011,-0.999999642372131,3.54407688973879e-006,2.25231019612693e-006,-1,0.00793642271310091,-0.0136233540251851,-0.999875783920288,-0.162842497229576,0.279708057641983,-0.946174323558807,0.00603058468550444,0.00383252068422735,-0.999974489212036,-0.148321837186813,0.286621928215027,-0.946492731571198,-0.145237103104591,0.280986726284027,-0.948658347129822,-0.14372755587101,0.281881600618362,-0.948622822761536,-0.146668970584869,0.287403076887131,-0.946513473987579,-0.461758464574814,0.872436761856079,-0.160103440284729,-0.162034437060356,0.280095219612122,-0.946198463439941,-0.493862003087997,0.854610145092011,-0.160442993044853,
- -0.493752896785736,0.854420840740204,-0.16178086400032,-0.492605209350586,0.862569212913513,0.115388840436935,-0.490763425827026,0.856169700622559,-0.161631971597672,-0.490844070911407,0.856322765350342,-0.160572156310081,-0.432351619005203,0.887682497501373,-0.158404096961021,-0.428568840026855,0.895959317684174,0.116557732224464,-0.427281498908997,0.894261240959167,0.133144617080688,-0.623185038566589,0.767034590244293,-0.152638405561447,-0.631704330444336,0.76417738199234,0.130317479372025,-0.632786095142365,0.766434848308563,0.110269978642464,-0.0062963804230094,2.22040197706728e-016,-0.99998015165329,-0.0062963804230094,2.22040197706728e-016,-0.99998015165329,-0.0062963804230094,2.22040197706728e-016,-0.99998015165329,0.000838986015878618,2.22044525515693e-016,-0.999999642372131,0.000838986015878618,2.22044525515693e-016,-0.999999642372131,0.000838986015878618,2.22044525515693e-016,-0.999999642372131,0.0062140105292201,2.22040316820736e-016,-0.999980688095093,0.0062140105292201,2.22040316820736e-016,-0.999980688095093,0.0062140105292201,2.22040316820736e-016,-0.999980688095093,-0.00125964020844549,2.22044432871464e-016,-0.999999225139618,-0.00125964020844549,2.22044432871464e-016,-0.999999225139618,-0.00125964020844549,2.22044432871464e-016,-0.999999225139618,0.00412332592532039,2.2204271233579e-016,-0.999991476535797,0.00412332592532039,2.2204271233579e-016,-0.999991476535797,0.00412332592532039,2.2204271233579e-016,-0.999991476535797,-0.313868165016174,0.949451267719269,-0.00538266124203801,-0.313868165016174,0.949451267719269,-0.00538266124203801,-0.313868165016174,0.949451267719269,-0.00538266124203801,-0.313864082098007,0.9494389295578,-0.00742828333750367,-0.313864082098007,0.9494389295578,-0.00742828333750367,-0.313864082098007,0.9494389295578,-0.00742828333750367,-0.313864529132843,0.94944030046463,-0.00723730958998203,-0.313864529132843,0.94944030046463,-0.00723730958998203,-0.346845358610153,0.937894463539124,-0.00724131055176258,-0.346840560436249,0.937902987003326,-0.00629171496257186,-0.369978815317154,0.929018378257751,-0.00636570295318961,
- -0.3138667345047,0.9494469165802,-0.00618086894974113,-0.00890389923006296,-0.00497334916144609,-0.999948024749756,-0.00929868873208761,-0.00408821646124125,-0.999948441982269,-0.00929868873208761,-0.00408821646124125,-0.999948441982269,-0.0108379479497671,-0.00476495968177915,-0.999929904937744,-0.0103519391268492,-0.0057821637019515,-0.99992972612381,-0.0135710965842009,0.000956102274358273,-0.999907493591309,-0.0147369559854269,0.000250021432293579,-0.999891400337219,-0.010211443528533,-0.00570368906483054,-0.999931693077087,-0.0141140883788466,-0.000569480471313,-0.999900221824646,-0.0160021372139454,-0.000516229774802923,-0.999871850013733,-0.0153107196092606,-0.00144099351018667,-0.999881744384766,-0.015383018180728,-0.00134429626632482,-0.999880790710449,0.00519440043717623,-0.0253845378756523,-0.999664306640625,-0.0141898561269045,-0.000624661741312593,-0.99989914894104,-0.0102137234061956,-0.00570496264845133,-0.999931573867798,0.00719191366806626,-0.0390864834189415,-0.999210059642792,0.00719191366806626,-0.0390864834189415,-0.999210059642792,0.00719191366806626,-0.0390864834189415,-0.999210059642792,0.000414098118199036,-0.00225053308531642,-0.99999737739563,0.000414098118199036,-0.00225053308531642,-0.99999737739563,0.000414098118199036,-0.00225053308531642,-0.99999737739563,-0.000612730102147907,0.00333005492575467,-0.999994277954102,-0.000612730102147907,0.00333005492575467,-0.999994277954102,-0.000612730102147907,0.00333005492575467,-0.999994277954102,-4.99198722536676e-005,0.000271303637418896,-1,-4.99198722536676e-005,0.000271303637418896,-1,-4.99198722536676e-005,0.000271303637418896,-1,0.000976238923612982,-0.00530564598739147,-0.999985456466675,0.000976238923612982,-0.00530564598739147,-0.999985456466675,0.000976238923612982,-0.00530564598739147,-0.999985456466675,0.00161176850087941,-0.00875961128622293,-0.999960362911224,0.00161176850087941,-0.00875961128622293,-0.999960362911224,0.00161176850087941,-0.00875961128622293,-0.999960362911224,-0.007665129378438,0.0416583120822906,-0.999102532863617,
- -0.007665129378438,0.0416583120822906,-0.999102532863617,-0.007665129378438,0.0416583120822906,-0.999102532863617,0.0021214815787971,0.00658203242346644,-0.999976098537445,-0.327331781387329,0.155978515744209,-0.931946694850922,0.0023887304123491,0.00646042870357633,-0.999976277351379,-0.338713377714157,0.127763122320175,-0.932174861431122,-0.00622803997248411,-0.019322894513607,-0.999793887138367,-0.31342750787735,0.116464018821716,-0.942443311214447,-0.0017075389623642,-0.0081436475738883,-0.99996542930603,-0.329981803894043,0.0401487536728382,-0.943133115768433,-0.00258367764763534,-0.00801602471619844,-0.999964535236359,-0.329309910535812,0.0434424988925457,-0.943222045898438,0.000868925009854138,0.00414410419762135,-0.999991118907928,-0.312865942716599,0.0414973795413971,-0.948890388011932,-0.312881201505661,0.11882945895195,-0.942329525947571,-0.877393245697021,0.386503010988235,-0.284247368574142,-0.337746888399124,0.130194187164307,-0.932189106941223,-0.329419553279877,0.0429063402116299,-0.943208277225494,-0.312954097986221,0.0410648845136166,-0.948880136013031,-0.961305618286133,0.110858276486397,-0.252194434404373,-0.961671650409698,0.108015403151512,-0.252032428979874,-0.973399996757507,0.108998186886311,-0.201524123549461,-0.329530537128448,0.042363066226244,-0.943194031715393,-0.88464093208313,0.368856251239777,-0.285228878259659,-0.319858461618423,0.0879339203238487,-0.943375945091248,-0.902508676052094,0.381204456090927,-0.200402766466141,-0.960885405540466,0.114047802984715,-0.252373784780502,-0.99207079410553,0.121697455644608,0.0313919223845005,-0.972535967826843,0.116157330572605,-0.201696321368217,-0.932037353515625,0.359533697366714,0.045187309384346,-0.892016291618347,0.349884063005447,-0.286161124706268,-0.91245448589325,0.356292545795441,-0.201202556490898,-0.989532053470612,0.13800011575222,0.0422178022563457,-0.969986796379089,0.135202020406723,-0.20210388302803,-0.989961504936218,0.138056471943855,0.030278392136097,-0.871846377849579,0.399419188499451,-0.283457577228546,-0.908440053462982,0.41552272439003,0.0455808527767658,
- -0.905935168266296,0.414295673370361,0.0874110013246536,-0.988786578178406,0.14321593940258,0.0423116646707058,-0.989253878593445,0.143111363053322,0.0299321115016937,-0.0356671512126923,0.0190266668796539,0.99918258190155,-0.911660611629486,0.40198603272438,0.0853361189365387,-0.914337277412415,0.402389079332352,0.045502781867981,-0.0319213755428791,0.033385444432497,0.998932659626007,-0.996328890323639,0.0784433111548424,0.034284234046936,-0.0470074266195297,-0.00389641243964434,0.998886942863464,-0.0417370796203613,-0.00431451294571161,0.999119341373444,-1.37042270580423e-005,-0.00174043688457459,0.999998509883881,-0.040266290307045,0.00134958140552044,0.99918806552887,-0.0472803860902786,0.00188831379637122,0.998879849910736,0.00713384198024869,-0.00384569214656949,0.999967157840729,-0.0403544306755066,0.00101029209326953,0.999184906482697,-2.45209284912562e-005,-0.0031141578219831,0.999995172023773,0.014388345181942,0.0280324649065733,0.999503433704376,-0.0290127359330654,0.0445116050541401,0.998587608337402,0.0148042552173138,0.0278741959482431,0.999501824378967,0.382585912942886,0.910959959030151,0.154207572340965,-0.190212175250053,-0.370585829019547,0.909112453460693,-0.0316832885146141,0.00908946897834539,0.999456644058228,-0.0289745200425386,0.0446576401591301,0.998582124710083,-0.0376178212463856,0.048187080770731,0.998129725456238,-0.921194911003113,0.380428940057755,0.0816946104168892,-0.0303375236690044,0.0394465774297714,0.998761117458344,0.0113306641578674,0.0220752581954002,0.99969208240509,-0.0399536937475204,0.0434477590024471,0.998256504535675,-0.456171333789825,-0.88874763250351,0.0451140366494656,0.280329793691635,0.946129202842712,0.16203348338604,-0.442077547311783,-0.896570920944214,0.026981458067894,-0.632571935653687,0.182701259851456,0.752644002437592,-0.957499980926514,0.259293437004089,0.12633541226387,-0.964139580726624,0.257854461669922,-0.0628170743584633,-0.962388634681702,0.213769197463989,-0.167663410305977,-0.974647879600525,0.215763568878174,-0.0592254102230072,-0.968897819519043,0.213275581598282,0.125500962138176,
- -0.981932640075684,0.180700287222862,-0.056175135076046,-0.970163404941559,0.17623595893383,-0.166505247354507,-0.943475246429443,0.168834909796715,-0.285218000411987,-0.887711524963379,0.448842197656631,0.102513447403908,-0.880223453044891,0.443366974592209,-0.169211238622665,-0.885160207748413,0.447704821825027,0.12669549882412,-0.727284491062164,0.66075998544693,-0.185616731643677,-0.735293030738831,0.669381976127625,0.106169581413269,-0.73602420091629,0.67000412940979,0.0967628136277199,-0.813996016979218,0.571227133274078,0.105404794216156,-0.804601192474365,0.562865257263184,-0.189208075404167,-0.808036625385284,0.565416574478149,-0.165472507476807,-0.3659987449646,0.0528972744941711,-0.929110825061798,-0.945486724376678,0.159091413021088,-0.284156143665314,-0.972217440605164,0.164926365017891,-0.166110068559647,-0.958147406578064,0.080729641020298,-0.274656653404236,-0.369655549526215,0.0253144800662994,-0.928824067115784,-0.339248508214951,0.0226085279136896,-0.940425097942352,-0.8076131939888,0.558505356311798,-0.189295515418053,-0.304656773805618,0.211521118879318,-0.928678154945374,-0.811127841472626,0.560912072658539,-0.165678828954697,-0.917694687843323,0.359163582324982,-0.169817611575127,-0.345165878534317,0.139167919754982,-0.928166449069977,-0.352214872837067,0.141906082630157,-0.925098598003387,-0.292030870914459,0.233053043484688,-0.927579879760742,-0.754913568496704,0.62854939699173,-0.187166213989258,-0.283597856760025,0.225955456495285,-0.931942343711853,0.00712262652814388,-0.00402623834088445,-0.999966561794281,-0.339406818151474,0.0214966982603073,-0.940394043922424,-0.369852840900421,0.0237614884972572,-0.92878645658493,-0.344956785440445,0.139555096626282,-0.928186058998108,0.00833501759916544,0.00115784700028598,-0.999964594841003,-0.352136671543121,0.142360329627991,-0.925058543682098,0.00163511920254678,0.00779826194047928,-0.999968290328979,-0.335345715284348,0.0491217710077763,-0.940813660621643,0.00965503137558699,0.00680322293192148,-0.999930322170258,0.00612237770110369,-0.00830248091369867,-0.999946773052216,
- -0.355286359786987,0.120243236422539,-0.92699146270752,-0.0032817383762449,-0.0049694892950356,-0.999982357025146,-0.28013202548027,0.230352982878685,-0.93191397190094,-0.00863715633749962,-0.0130791235715151,-0.999877214431763,-0.288921773433685,0.238285928964615,-0.927223920822144,0.00106437993235886,0.00161177548579872,-0.999998211860657,-0.278003364801407,0.233044788241386,-0.93188214302063,0.00114875542931259,0.0015417505055666,-0.999998152256012,-0.957506418228149,0.259269863367081,-0.126335054636002,-0.632488191127777,0.183117106556892,-0.752613306045532,-0.963455438613892,0.25730949640274,0.074468769133091,-0.968798518180847,0.213720589876175,-0.125510349869728,-0.97407728433609,0.215022772550583,0.0702760517597198,-0.964139103889465,0.212891280651093,0.158471062779427,-0.885158658027649,0.447707861661911,-0.126695469021797,-0.881729662418365,0.444189578294754,0.158897534012794,-0.887710213661194,0.448844820261002,-0.102513529360294,-0.972190916538239,0.173334926366806,0.157479777932167,-0.982034683227539,0.176636248826981,0.066389799118042,-0.946097254753113,0.166605696082115,0.27774566411972,-0.735295057296753,0.669379770755768,-0.10616958886385,-0.727284729480743,0.660759747028351,0.185616761445999,-0.736026108264923,0.670001924037933,-0.0967625677585602,-0.805587828159332,0.561442375183105,0.189237207174301,-0.815162420272827,0.569566130638123,-0.105378724634647,-0.810437262058258,0.564995884895325,0.15482622385025,-0.947984218597412,0.157339632511139,0.276713103055954,-0.365623027086258,0.0556131973862648,0.929100096225739,-0.974117994308472,0.16246123611927,0.157163769006729,-0.369608253240585,0.0256857648491859,0.928832650184631,-0.960210740566254,0.0808795467019081,0.267308533191681,-0.339193880558014,0.0229915827512741,0.940435588359833,-0.299214094877243,0.207325533032417,0.93138986825943,-0.808038949966431,0.557885050773621,0.189307495951653,-0.812987387180328,0.561270952224731,0.155005261301994,-0.338617205619812,0.136964410543442,0.930902302265167,-0.919568002223969,0.358935743570328,0.159874737262726,
- -0.352163106203079,0.142206817865372,0.925072133541107,-0.754394173622131,0.629180729389191,0.187139555811882,-0.287167936563492,0.227910369634628,0.930371701717377,-0.284098386764526,0.225318804383278,0.931943953037262,-0.339412659406662,0.021455742418766,0.940392911434174,0.00711869774386287,-0.00404303381219506,0.999966502189636,-0.369858294725418,0.0237184837460518,0.928785383701324,0.00847312994301319,0.00174846453592181,0.999962627887726,-0.338307738304138,0.137536332011223,0.930930495262146,-0.352043896913528,0.142898797988892,0.925010919570923,0.00972082186490297,0.00708462204784155,0.999927759170532,-0.335305124521255,0.0493891909718513,0.940814197063446,0.00169429706875235,0.00808049459010363,0.999965906143188,-0.348937511444092,0.117703273892403,0.929725050926209,0.00605892203748226,-0.00857374630868435,0.999944925308228,-0.00343893584795296,-0.00520753161981702,0.999980568885803,-0.284186780452728,0.232942089438438,0.930040836334229,-0.00914227869361639,-0.0138440225273371,0.999862372875214,-0.280626744031906,0.229726359248161,0.931919753551483,-0.277887403964996,0.233191162347794,0.931880056858063,0.00117544934619218,0.00177996617276222,0.999997735023499,0.00126862968318164,0.00170263438485563,0.999997735023499,-0.311584681272507,0.155005797743797,0.937490344047546,0.00225804420188069,0.00700572691857815,0.999972999095917,0.00258985324762762,0.00684872223064303,0.999973177909851,-0.312899231910706,0.118751563131809,0.942333340644836,-0.00658510439097881,-0.0204307101666927,0.999769568443298,-0.324370354413986,0.124020338058472,0.937764763832092,-0.329973101615906,0.0401916205883026,0.943134427070618,-0.00168743159156293,-0.00804775208234787,0.999966204166412,-0.00255329348146915,-0.00792175624519587,0.99996542930603,0.000864051165990531,0.00412086024880409,0.999991178512573,-0.329317718744278,0.0434045009315014,0.943221092224121,-0.312873542308807,0.0414600484073162,0.948889493942261,-0.329427987337112,0.0428650304675102,0.943207204341888,-0.961312890052795,0.11080276966095,0.252191305160522,-0.312962353229523,0.0410242490470409,0.94887912273407,
- -0.878146708011627,0.394505679607391,0.270598649978638,-0.312588006258011,0.120095513761044,0.942266285419464,-0.323834717273712,0.125339344143867,0.937774658203125,-0.973396360874176,0.109029553830624,0.201524883508682,-0.961667418479919,0.108048640191555,0.252034366130829,-0.329520791769028,0.0424108393490314,0.943195343017578,-0.319008946418762,0.0917778536677361,0.943297445774078,-0.889407992362976,0.367411494255066,0.271960347890854,-0.904194951057434,0.37711176276207,0.200544700026512,-0.972529947757721,0.116205044090748,0.201697409152985,-0.992291390895844,0.121660761535168,-0.0235895998775959,-0.960878908634186,0.114096619188786,0.252376526594162,-0.896051585674286,0.350329548120499,0.27269172668457,-0.931968331336975,0.359712511301041,-0.0451888144016266,-0.912666261196136,0.355740904808044,0.20121856033802,-0.990144371986389,0.138235166668892,-0.0224779229611158,-0.969968855381012,0.135327160358429,0.202106311917305,-0.989510357379913,0.138154685497284,-0.0422205962240696,-0.910321354866028,0.411387532949448,-0.0455572381615639,-0.879259586334229,0.391921818256378,0.27073934674263,-0.910161256790161,0.411371052265167,-0.0487896874547005,0.216281875967979,0.976077914237976,-0.0222275778651237,0.228360220789909,0.973576724529266,0.000199723959667608,-0.400623679161072,0.340276211500168,-0.850713193416595,-0.988833248615265,0.142895326018333,-0.0423059239983559,-0.0358334556221962,0.0183883868157864,-0.999188661575317,-0.989513695240021,0.142726719379425,-0.0221751276403666,-0.917233884334564,0.395377665758133,-0.0485644079744816,-0.026935700327158,0.0524441003799438,-0.998260498046875,-0.917414605617523,0.395327866077423,-0.0454571433365345,-0.0470525808632374,-0.00294181914068758,-0.99888813495636,-0.996577262878418,0.078319825232029,-0.0264547280967236,-0.0414948277175426,-0.00338120898231864,-0.999132990837097,-0.0397067479789257,0.00350300502032042,-0.999205231666565,3.80395908905484e-006,0.000483102776343003,-0.99999988079071,-0.0473837070167065,0.00408673379570246,-0.998868405818939,-5.43302958249114e-005,-0.00689994776621461,-0.999976217746735,
- -0.0413115993142128,-0.00267541594803333,-0.99914276599884,-0.00152411533053964,-0.00674965372309089,-0.9999760389328,-0.0278420932590961,0.0489837415516377,-0.998411476612091,0.0165047682821751,0.032155841588974,-0.999346613883972,0.00799193140119314,0.035392839461565,-0.999341607093811,-0.207100495696068,-0.403488904237747,-0.891238451004028,0.0685707479715347,0.249970138072968,-0.965822458267212,-0.0350385159254074,0.0100520327687263,-0.999335408210754,-0.0398943386971951,0.0427579469978809,-0.998288691043854,-0.0304764844477177,0.0389150232076645,-0.998777687549591,-0.923909306526184,0.379547119140625,-0.0483286194503307,-0.0408513620495796,0.0408981181681156,-0.998327851295471,0.0100790914148092,0.0196368489414454,-0.999756455421448,-0.031028475612402,0.0368031524121761,-0.998840689659119,-0.0861088484525681,0.287000864744186,-0.954052329063416,-0.228313818573952,-0.334467828273773,-0.914332628250122,0.229252681136131,0.973126769065857,-0.0216239653527737,-0.0871653407812119,0.287230312824249,-0.953887283802032,-0.256479680538177,-0.499693185091019,-0.827360153198242,-0.232105284929276,-0.342321634292603,-0.910463094711304,0.00365003221668303,2.22043122617374e-016,-0.999993324279785,0.00365003221668303,2.22043122617374e-016,-0.999993324279785,0.00365003221668303,2.22043122617374e-016,-0.999993324279785,0.0046679824590683,2.22042182940198e-016,-0.999989092350006,0.0046679824590683,2.22042182940198e-016,-0.999989092350006,0.0046679824590683,2.22042182940198e-016,-0.999989092350006,0.0173759870231152,2.22011080949166e-016,-0.999849021434784,0.0173759870231152,2.22011080949166e-016,-0.999849021434784,0.0173759870231152,2.22011080949166e-016,-0.999849021434784,0.00012246667756699,2.22044604925031e-016,-1,0.00012246667756699,2.22044604925031e-016,-1,0.00012246667756699,2.22044604925031e-016,-1,6.94021800882183e-005,2.22044604925031e-016,-1,6.94021800882183e-005,2.22044604925031e-016,-1,6.94021800882183e-005,2.22044604925031e-016,-1,-0.00233311159536242,2.220439961201e-016,-0.99999725818634,-0.00233311159536242,2.220439961201e-016,-0.99999725818634,
- -0.00233311159536242,2.220439961201e-016,-0.99999725818634,-0.00469704018905759,2.22042156470418e-016,-0.999988973140717,-0.00469704018905759,2.22042156470418e-016,-0.999988973140717,-0.00469704018905759,2.22042156470418e-016,-0.999988973140717,-0.00344760087318718,2.22043281436051e-016,-0.999994039535522,-0.00344760087318718,2.22043281436051e-016,-0.999994039535522,-0.00344760087318718,2.22043281436051e-016,-0.999994039535522,-0.00867127068340778,2.22036253709567e-016,-0.999962389469147,-0.00867127068340778,2.22036253709567e-016,-0.999962389469147,-0.00867127068340778,2.22036253709567e-016,-0.999962389469147,-0.274949312210083,0.217049613595009,-0.936638832092285,0.0454758554697037,-0.0437217950820923,-0.998008191585541,0.00220502726733685,-0.00857619568705559,-0.999960780143738,0.0550864711403847,-0.0339937061071396,-0.997902750968933,-0.253695696592331,0.237804770469666,-0.937596678733826,-0.25071507692337,0.235194057226181,-0.939055800437927,0.0396977365016937,-0.0495624542236328,-0.997981786727905,-0.153494134545326,0.307160496711731,-0.939197540283203,0.00337503617629409,0.0178170632570982,-0.999835610389709,-0.25451847910881,0.237009197473526,-0.937575101852417,-0.74091112613678,0.649575710296631,-0.170593649148941,-0.251616269350052,0.234497562050819,-0.938988924026489,-0.121535994112492,0.299210608005524,-0.946415364742279,-0.00952271278947592,0.0134108196943998,-0.999864816665649,-0.130858615040779,0.323047786951065,-0.937291920185089,-0.118240103125572,0.300571382045746,-0.946401655673981,-0.0178702045232058,-0.010234753601253,-0.999787986278534,-0.0239762179553509,0.00846940279006958,-0.999676644802094,-0.362518310546875,0.916403114795685,-0.169663935899735,-0.121782809495926,0.299108505249023,-0.946415901184082,-0.131126806139946,0.322861433029175,-0.937318682670593,-0.760228037834167,0.627187430858612,-0.169378682971001,-0.263006150722504,0.228765442967415,-0.937280237674713,-0.755252003669739,0.623534440994263,-0.201988220214844,-0.117892473936081,0.300714641809464,-0.946399569511414,-0.349368691444397,0.921609938144684,-0.169046178460121,
- -0.346764177083969,0.914257526397705,-0.20949450135231,0.54789263010025,0.480098068714142,-0.685068964958191,-0.417002022266388,0.884639203548431,-0.208620950579643,-0.308636367321014,0.902862071990967,-0.299305379390717,-0.419972091913223,0.883248448371887,-0.208556115627289,-0.598028361797333,0.800859272480011,-0.031408816576004,-0.309202492237091,0.902404069900513,-0.300101459026337,-0.765604615211487,0.640662789344788,0.058316245675087,-0.755863428115845,0.632362604141235,-0.16967000067234,-0.751128733158112,0.62837940454483,-0.202349036931992,-0.345099866390228,0.914885699748993,-0.209500342607498,-0.347496628761292,0.92233407497406,-0.168955743312836,-0.350353449583054,0.935530722141266,0.0451079867780209,-0.742986857891083,0.647232413291931,-0.170472085475922,-0.75245726108551,0.656106054782867,0.0577312633395195,-0.753015339374542,0.656554400920868,0.043636366724968,-0.841522753238678,0.505169570446014,-0.191423982381821,-0.857726514339447,0.512810051441193,0.0364846400916576,-0.85674661397934,0.511993646621704,0.0620311871170998,-0.225917935371399,0.954100489616394,-0.196604683995247,-0.0207751579582691,0.0371989756822586,0.999091982841492,-0.232706308364868,0.972541332244873,0.00333619257435203,-0.0430300235748291,0.00930607691407204,0.999030470848084,-0.937983691692352,0.340635865926743,0.0644499361515045,-0.939074635505676,0.341176986694336,0.0416793003678322,-0.0567619502544403,-0.00794495921581984,0.998356223106384,-0.043863981962204,-0.0170361679047346,0.998892307281494,-0.817991435527802,0.572036266326904,0.0605354681611061,-0.033773384988308,-0.00437095202505589,0.999419987201691,-0.740197479724884,0.670954823493958,0.0439005270600319,-0.739932000637054,0.67024838924408,0.0571649819612503,-0.0104802353307605,-0.013746801763773,0.999850630760193,-0.0304755978286266,-0.000233891449170187,0.99953556060791,-0.0435733050107956,0.00862415321171284,0.999013006687164,-0.00485875457525253,-0.0050796065479517,0.999975323677063,-0.0232030563056469,0.00888571329414845,0.999691247940063,-0.00423470232635736,-0.00555460946634412,0.999975621700287,
- -0.0313197374343872,-0.00129276141524315,0.999508619308472,-0.0158361084759235,-0.016555929556489,0.999737620353699,-0.0300923194736242,-0.00250325840897858,0.999544084072113,-0.712579369544983,0.700185239315033,0.0443989336490631,-0.0270214509218931,0.00409817416220903,0.999626457691193,-0.0244745463132858,0.00159036251716316,0.999699175357819,-0.0124986041337252,-0.0058689103461802,0.999904692173004,-0.0201749298721552,0.00472282478585839,0.999785304069519,-0.00953029841184616,-0.00996349286288023,0.999904990196228,0.0178679693490267,0.00839017704129219,0.999805152416229,0.00528491009026766,0.0359808877110481,0.999338507652283,0.00964249484241009,0.0264310259371996,0.999604225158691,-0.414286941289902,0.909004628658295,0.045573890209198,0.0126296561211348,0.0286043360829353,0.999511122703552,0.0086419153958559,0.0373155474662781,0.99926620721817,0.00409267470240593,0.0010647609597072,0.999991059303284,-0.00573971401900053,0.031594667583704,0.999484360218048,0.00385297019965947,0.00180922087747604,0.999990940093994,0.0396205373108387,-0.0327475853264332,0.998678088188171,0.234500259160995,0.254696369171143,0.938157439231873,0.075766034424305,0.0197114888578653,0.996930778026581,-0.320578992366791,0.946756064891815,0.0297011286020279,-0.320136219263077,0.946310758590698,0.044818602502346,0.00686650071293116,0.0366097427904606,0.999306082725525,-0.329924762248993,0.920461654663086,-0.209523111581802,-0.336169272661209,0.94072699546814,0.0449775047600269,-0.336422652006149,0.941261172294617,0.0291105378419161,0.594348847866058,0.795611619949341,-0.117267355322838,0.530899405479431,0.846193313598633,0.0458556301891804,-0.0788645893335342,0.598079144954681,0.797547340393066,-0.00109027908183634,-0.000321721658110619,0.999999344348907,-0.0101350359618664,0.0298446305096149,0.999503254890442,-0.00110086868517101,-0.000286404887447134,0.999999403953552,-0.302008211612701,0.952821135520935,0.0303785894066095,-0.0043736482039094,0.0321384221315384,0.999473869800568,0.00532373506575823,0.00157093803863972,0.999984622001648,
- -0.437007665634155,-0.128953069448471,0.890165984630585,-0.422185927629471,-0.109836988151073,0.899830460548401,0.0908165276050568,0.427860736846924,0.89927065372467,0.0865608304738998,0.432569861412048,0.897435545921326,0.57326602935791,0.818091094493866,0.0457500293850899,-0.298635303974152,-0.0881218835711479,0.950290262699127,-0.0171225611120462,-0.00980655755847692,0.999805331230164,-0.114073067903519,0.302285522222519,0.946367204189301,-0.0229691714048386,0.00881382264196873,0.999697327613831,-0.00918653979897499,0.0135257048532367,0.999866306781769,-0.120752468705177,0.299534499645233,0.946413278579712,-0.129934325814247,0.323119133710861,0.937395930290222,-0.153410911560059,0.307215958833694,0.939193069934845,0.0394712314009666,-0.0496771335601807,0.997985124588013,0.00319301476702094,0.0177549012005329,0.999837279319763,0.045996505767107,-0.0432262197136879,0.998005926609039,-0.282293021678925,0.218166798353195,0.934191584587097,0.00229320744983852,-0.00849823094904423,0.999961256980896,-0.259972512722015,0.240957364439964,0.935068964958191,0.0556949786841869,-0.0336244404315948,0.997881531715393,-0.253640592098236,0.235477715730667,0.938198626041412,-0.130463287234306,0.322764456272125,0.937444686889648,-0.121234081685543,0.299335420131683,0.946414589881897,-0.362433195114136,0.915910363197327,0.172483593225479,-0.260247677564621,0.240679517388344,0.935064017772675,-0.253946632146835,0.235248774290085,0.938173294067383,-0.741476655006409,0.64741051197052,0.176272496581078,-0.349174082279205,0.92118227481842,0.171757742762566,-0.112791031599045,0.302811473608017,0.94635272026062,-0.346424549818039,0.914164543151855,0.210460036993027,-0.269883751869202,0.230901002883911,0.934798121452332,-0.758042275905609,0.628188610076904,0.17535987496376,-0.756630122661591,0.627101838588715,0.185078859329224,-0.350486814975739,0.935480713844299,-0.0451091676950455,-0.346563786268234,0.92219477891922,0.171611189842224,-0.34407913684845,0.915062129497528,0.210406795144081,-0.335234194993973,0.941061079502106,-0.0449685640633106,
- -0.32824245095253,0.920951247215271,0.210014030337334,-0.335059463977814,0.940589725971222,-0.0550103485584259,-0.75606781244278,0.630531311035156,0.175476089119911,-0.766855537891388,0.63916003704071,-0.0583713725209236,-0.754686892032623,0.629395246505737,0.185228168964386,-0.753042817115784,0.655431747436523,-0.0577575340867043,-0.742819011211395,0.645888686180115,0.176203697919846,-0.753603279590607,0.655880391597748,-0.0436237156391144,-0.857734680175781,0.512796401977539,-0.036485131829977,-0.844114661216736,0.506593286991119,0.175595760345459,-0.856756508350372,0.511976897716522,-0.0620315447449684,-0.766868233680725,0.614787042140961,0.184255167841911,-0.673156559467316,0.739043414592743,-0.0259834323078394,0.30554124712944,0.522524237632751,-0.795998156070709,-0.863947153091431,0.502231657505035,-0.0368618182837963,-0.863345801830292,0.500756025314331,-0.0622699111700058,-0.0764063149690628,0.000415854156017303,-0.997076749801636,-0.0685239657759666,0.0117007428780198,-0.997580885887146,-0.837901830673218,0.542365312576294,-0.0613224059343338,-0.0372184589505196,-0.00869391392916441,-0.999269366264343,-0.740585386753082,0.670527279376984,-0.0438928529620171,-0.0340000428259373,-0.00465533323585987,-0.99941098690033,-0.740322053432465,0.669816076755524,-0.057182751595974,-0.00895992573350668,-0.0120251625776291,-0.999887585639954,-0.0616615638136864,0.0215084981173277,-0.997865438461304,-0.029475498944521,0.00102051056455821,-0.999565005302429,-0.0232507418841124,0.0088259344920516,-0.999690711498261,-0.00494287582114339,-0.00511138280853629,-0.999974727630615,-0.00421900628134608,-0.0056623499840498,-0.999975085258484,-0.0304986257106066,-0.00279937032610178,-0.999530911445618,-0.0162701699882746,-0.0168248359113932,-0.999726057052612,-0.0316307172179222,-0.00168286729604006,-0.999498248100281,-0.0271195098757744,0.00397520698606968,-0.999624311923981,-0.712586462497711,0.70017808675766,-0.0443988144397736,-0.0246026813983917,0.00149700324982405,-0.99969619512558,-0.00951158348470926,-0.00983584206551313,-0.999906420707703,
- -0.0201021339744329,0.00477585522457957,-0.999786555767059,-0.0124156018719077,-0.00582993496209383,-0.999905943870544,0.0128775760531425,0.0287846960127354,-0.999502658843994,-0.413910716772079,0.909176111221313,-0.045571755617857,0.00895432289689779,0.0373639427125454,-0.999261617660522,0.00626564677804708,0.0363178178668022,-0.99932062625885,0.018797118216753,0.00882647279649973,-0.999784350395203,0.0104927225038409,0.0270496346056461,-0.999579012393951,-0.320638954639435,0.94614040851593,-0.0448237732052803,-0.320300042629242,0.945599138736725,-0.0570102334022522,0.00108030147384852,0.034299474209547,-0.999411046504974,-0.00575953163206577,0.0316355377435684,-0.999482989311218,0.00408655032515526,0.00106316758319736,-0.999991178512573,0.00384720368310809,0.00180651305709034,-0.999990999698639,0.56847757101059,0.811391949653625,-0.135927870869637,0.0395303592085838,-0.0326730497181416,-0.998684048652649,0.0755376443266869,0.01965207234025,-0.996949255466461,0.00942172203212976,0.00278018019162118,-0.999951839447021,-0.000435586145613343,0.0337092354893684,-0.999431669712067,-0.302416265010834,0.951323330402374,-0.0594005510210991,-0.00180720107164234,-0.000470166152808815,-0.999998271465302,-0.0108334440737963,0.0296581964939833,-0.999501407146454,-0.00178982887882739,-0.000528146221768111,-0.999998271465302,-0.539417862892151,-0.140336349606514,-0.830261409282684,-0.546355009078979,-0.161219492554665,-0.821890830993652,0.425336867570877,0.895766258239746,-0.129195034503937,-0.667632520198822,0.735673427581787,0.114243440330029,-0.25628337264061,0.965066254138947,-0.0544607266783714,-0.0528977774083614,0.990716159343719,-0.125233680009842,-0.256407499313354,0.965013444423676,-0.0548107996582985,-0.0806804373860359,0.990199983119965,-0.113994099199772,-0.0474838539958,0.991066932678223,-0.124626100063324,-0.631378293037415,0.732907712459564,0.253392696380615,-0.206155121326447,0.968316555023193,-0.140936598181725,-0.792682945728302,0.364618688821793,0.488576710224152,0.717438578605652,0.581073343753815,-0.384233951568604,
- -0.228076055645943,0.96309369802475,-0.142940387129784,-0.0868316516280174,0.976882100105286,-0.195349916815758,-0.993404448032379,0.114547416567802,-0.00514821289107203,-0.686067461967468,0.727512419223785,-0.00608733296394348,-0.687622487545013,0.726042926311493,-0.00608894322067499,-0.070754200220108,0.99747771024704,0.00566089013591409,0.843734860420227,0.536205291748047,0.0244008749723434,0.860692322254181,0.508530557155609,0.0246070101857185,-0.685848474502563,0.727703213691711,-0.00773917883634567,-0.993379712104797,0.114780150353909,-0.00472326204180717,-0.990010499954224,0.140909060835838,-0.00489037483930588,0.843979954719543,0.536361038684845,0.00382605893537402,-0.0715988948941231,0.997425317764282,-0.00405760621652007,-0.0709264054894447,0.997473359107971,-0.00405319966375828,-0.730154514312744,0.472566246986389,-0.493513464927673,-0.0982828512787819,0.986606240272522,0.130186706781387,-0.602648019790649,0.723704397678375,-0.336254894733429,0.861779093742371,0.506265640258789,-0.0321235284209251,0.843539893627167,0.536081373691559,-0.032518032938242,-0.069255992770195,0.997287333011627,-0.0249330699443817,-0.0915059596300125,0.987353086471558,0.129463091492653,0.755008101463318,0.576092958450317,0.313176810741425,-0.0810846611857414,0.987846791744232,0.132604733109474,-0.256308197975159,0.965055704116821,0.0545307099819183,-0.667620241641998,0.735675394535065,-0.114302210509777,-0.0532009564340115,0.990695655345917,0.12526760995388,-0.0796757265925407,0.990451216697693,0.112508051097393,-0.255919575691223,0.965220093727112,0.0534352213144302,-0.0431694015860558,0.991325318813324,0.124139368534088
- }
- BinormalsW: *651 {
- 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
- }
- }
- LayerElementBinormal: 1 {
- Version: 102
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *1953 {
- a: 0.89749538898468,0.44087490439415,0.0114589231088758,0.971444129943848,0.23693759739399,0.0125231929123402,0.971444129943848,0.23693759739399,0.0125231929123402,0.897554039955139,0.440903723239899,-0.000841523229610175,0.97151905298233,0.236955851316452,-0.00167302472982556,0.8344646692276,0.551061511039734,-0.000334658689098433,4.26992255597725e-006,-5.05100661030156e-006,1,4.1267771848652e-006,-5.1715310291911e-006,1,0.0120860701426864,0.0101674627512693,0.99987530708313,-0.0121983187273145,0.0144297191873193,0.999821543693542,0.000279827043414116,0.0249578952789307,0.999688446521759,0.0300453081727028,0.0500453002750874,0.998294949531555,0.0460826195776463,0.0312829576432705,0.998447775840759,0.0152975739911199,0.0061426367610693,0.999864101409912,0.197930246591568,0.155437991023064,0.967813372612,-0.687074959278107,0.726562082767487,-0.00596194807440043,-0.691243708133698,0.722599685192108,-0.00564926723018289,-0.666776299476624,0.745220601558685,-0.00745797948911786,-0.666741251945496,0.745181441307068,0.0126783102750778,-0.691115498542786,0.722657263278961,0.0112174553796649,-0.670362770557404,0.741928935050964,0.0124648967757821,-0.670614540576935,0.741796553134918,0.00373513251543045,-0.670702040195465,0.741717517375946,0.00373436138033867,-0.666790127754211,0.745236039161682,0.00376872718334198,-0.448804765939713,0.514519155025482,-0.73064649105072,-0.613068819046021,0.782300710678101,-0.110236801207066,-0.613139867782593,0.789266109466553,-0.0334430262446404,-0.554187774658203,0.816538631916046,0.161680683493614,-0.561589658260345,0.826503217220306,-0.0388531275093555,-0.559009790420532,0.822394847869873,-0.105710446834564,-0.492579072713852,0.854613363742828,0.164322569966316,-0.492782026529312,0.854990422725677,0.161732703447342,-0.498002856969833,0.866006135940552,-0.0450162291526794,-0.494429081678391,0.854023575782776,0.161814317107201,-0.494229972362518,0.853670835494995,0.16426420211792,-0.163565889000893,0.279361218214035,0.946151971817017,-0.149270907044411,0.286172896623611,0.946479499340057,
- -0.146191880106926,0.280420213937759,0.948679327964783,-0.464376479387283,0.871019661426544,0.160247534513474,-0.150503873825073,0.28558886051178,0.946460604667664,0.00386048969812691,0.00245339493267238,0.999989569187164,-0.14731602370739,0.279752522706985,0.948702573776245,-3.54407688973879e-006,-2.25231019612693e-006,1,-0.162849679589272,0.279704600572586,0.946174085140228,0.00792894791811705,-0.0136271910741925,0.999875783920288,0.0460753738880157,0.0312914438545704,-0.998447775840759,0.197924897074699,0.155444651842117,-0.967813372612,0.015290318056941,0.00615173112601042,-0.999864161014557,0.0300431735813618,0.0500477962195873,-0.99829488992691,0.000277938292128965,0.0249602627009153,-0.999688386917114,-0.0122001999989152,0.01443194411695,-0.999821424484253,0.0120778176933527,0.0101778050884604,-0.99987530708313,-4.1267771848652e-006,5.1715310291911e-006,-1,-4.26992255597725e-006,5.05100661030156e-006,-1,-0.687078058719635,0.726565361022949,-0.00515969656407833,-0.666790366172791,0.745236337184906,-0.00367593136616051,-0.691181361675262,0.722660779953003,-0.00546405464410782,-0.691224694252014,0.722639918327332,0.000353784271283075,-0.666794002056122,0.745240390300751,-0.00159007543697953,-0.670676052570343,0.741749286651611,-0.00128521292936057,-0.670671880245209,0.741752803325653,-0.00145737081766129,-0.666794002056122,0.745240449905396,-0.00156463542953134,-0.67070597410202,0.741721928119659,-0.00145642529241741,3.54407688973879e-006,2.25231019612693e-006,-1,0.00793642271310091,-0.0136233540251851,-0.999875783920288,-0.162842497229576,0.279708057641983,-0.946174323558807,0.0038506961427629,0.00244717113673687,-0.999989628791809,-0.150526225566864,0.285578280687332,-0.946460247039795,-0.147337034344673,0.279740035533905,-0.948703050613403,-0.146212697029114,0.280407816171646,-0.948679804801941,-0.149293020367622,0.286162376403809,-0.946479082107544,-0.464415580034256,0.870998501777649,-0.160249695181847,-0.161439999938011,0.280379861593246,-0.946215748786926,-0.493321865797043,0.854917585849762,-0.160466268658638,
- -0.493216425180435,0.854735791683197,-0.161754280328751,-0.4919713139534,0.862928926944733,0.115403659641743,-0.490143060684204,0.856530845165253,-0.161600887775421,-0.490219175815582,0.856675744056702,-0.160598635673523,-0.433551907539368,0.887084066867828,-0.158476322889328,-0.429789841175079,0.89537638425827,0.116541415452957,-0.428511023521423,0.893694221973419,0.133000180125237,-0.623766481876373,0.766570925712585,-0.15259213745594,-0.632270216941834,0.763686120510101,0.130453184247017,-0.633363246917725,0.765962183475494,0.110240370035172,0.0161826331168413,2.22015527872139e-016,-0.999869048595428,0.0161826331168413,2.22015527872139e-016,-0.999869048595428,0.0161826331168413,2.22015527872139e-016,-0.999869048595428,-0.0001473215961596,2.22044604925031e-016,-1,-0.0001473215961596,2.22044604925031e-016,-1,-0.0001473215961596,2.22044604925031e-016,-1,0.00280179595574737,2.22043731422304e-016,-0.999996066093445,0.00280179595574737,2.22043731422304e-016,-0.999996066093445,0.00280179595574737,2.22043731422304e-016,-0.999996066093445,-0.00550504820421338,2.22041243263022e-016,-0.999984860420227,-0.00550504820421338,2.22041243263022e-016,-0.999984860420227,-0.00550504820421338,2.22041243263022e-016,-0.999984860420227,-0.00124897330533713,2.22044432871464e-016,-0.999999225139618,-0.00124897330533713,2.22044432871464e-016,-0.999999225139618,-0.00124897330533713,2.22044432871464e-016,-0.999999225139618,-0.313866794109344,0.949447095394135,-0.00614692829549313,-0.313866794109344,0.949447095394135,-0.00614692829549313,-0.313866794109344,0.949447095394135,-0.00614692829549313,-0.313866883516312,0.949447333812714,-0.00610734336078167,-0.313866883516312,0.949447333812714,-0.00610734336078167,-0.313866883516312,0.949447333812714,-0.00610734336078167,-0.313866972923279,0.949447691440582,-0.00605358835309744,-0.313866972923279,0.949447691440582,-0.00605358835309744,-0.346839338541031,0.937905073165894,-0.00605689967051148,-0.346838921308517,0.937905728816986,-0.00597488228231668,-0.369981855154037,0.929019331932068,-0.00604880414903164,
- -0.313867300748825,0.949448704719543,-0.00586448842659593,-0.0109542738646269,-0.00611860305070877,-0.999921321868896,-0.011439966969192,-0.00502964062616229,-0.999921917915344,-0.011439966969192,-0.00502964062616229,-0.999921917915344,-0.0138567192479968,-0.00609217816963792,-0.999885439872742,-0.013235286809504,-0.00739268213510513,-0.999885082244873,-0.0164043586701155,-0.00075983814895153,-0.999865174293518,-0.0181154385209084,-0.00179618899710476,-0.999834299087524,-0.0136746754869819,-0.00763810705393553,-0.999877333641052,-0.0172898136079311,-0.00288242404349148,-0.999846398830414,-0.0143012320622802,0.000513911712914705,-0.999897599220276,-0.0137108005583286,-0.000275768805295229,-0.999906003475189,-0.0137755442410707,-0.000189176716958173,-0.999905109405518,0.002979701384902,-0.026974730193615,-0.999631702899933,-0.0163934640586376,-0.00222957925871015,-0.999863147735596,-0.0126211848109961,-0.0070496704429388,-0.999895572662354,0.180962041020393,-0.983489334583282,-0.00119480583816767,0.180962041020393,-0.983489334583282,-0.00119480583816767,0.180962041020393,-0.983489334583282,-0.00119480583816767,0.180962160229683,-0.983489990234375,0.000393119233194739,0.180962160229683,-0.983489990234375,0.000393119233194739,0.180962160229683,-0.983489990234375,0.000393119233194739,0.180961057543755,-0.983484029769897,-0.00351191195659339,0.180961057543755,-0.983484029769897,-0.00351191195659339,0.180961057543755,-0.983484029769897,-0.00351191195659339,0.180961534380913,-0.983486533164978,-0.00268119596876204,0.180961534380913,-0.983486533164978,-0.00268119596876204,0.180961534380913,-0.983486533164978,-0.00268119596876204,0.180962041020393,-0.983489274978638,0.00125599990133196,0.180962041020393,-0.983489274978638,0.00125599990133196,0.180962041020393,-0.983489274978638,0.00125599990133196,0.180959343910217,-0.983474612236023,0.0056004342623055,0.180959343910217,-0.983474612236023,0.0056004342623055,0.180959343910217,-0.983474612236023,0.0056004342623055,0.180960044264793,-0.983478486537933,0.00484658125787973,0.180960044264793,-0.983478486537933,0.00484658125787973,
- 0.180960044264793,-0.983478486537933,0.00484658125787973,0.0029972093179822,0.00929903425276279,-0.999952256679535,-0.326314359903336,0.158457815647125,-0.931885242462158,0.00337476306594908,0.00912719871848822,-0.999952733516693,-0.33860182762146,0.12804388999939,-0.932176828384399,-0.00612877495586872,-0.0190149173140526,-0.999800384044647,-0.313357681035995,0.11676687002182,-0.942429006099701,-0.00176739657763392,-0.00842912308871746,-0.99996292591095,-0.33003705739975,0.0398772321641445,-0.943125307559967,-0.00267424993216991,-0.0082970317453146,-0.999962091445923,-0.329217940568924,0.0438918396830559,-0.9432333111763,0.00097031140467152,0.00462763989344239,-0.999988794326782,-0.312773644924164,0.0419498533010483,-0.948900938034058,-0.312767416238785,0.119321279227734,-0.942305147647858,-0.877208709716797,0.386940449476242,-0.284221619367599,-0.337561279535294,0.130660250782967,-0.932191133499146,-0.329323083162308,0.0433782190084457,-0.943220376968384,-0.312858879566193,0.0415320061147213,-0.948891162872314,-0.961241543292999,0.111349195241928,-0.252222210168839,-0.961448907852173,0.109752267599106,-0.252131640911102,-0.973200261592865,0.110691115260124,-0.201565757393837,-0.329193979501724,0.0440090112388134,-0.943236231803894,-0.885301470756531,0.367200970649719,-0.285315245389938,-0.320241838693619,0.0861914232373238,-0.943406701087952,-0.90315717458725,0.379636734724045,-0.200457662343979,-0.960600852966309,0.116164021193981,-0.252491325139999,-0.991806447505951,0.123869694769382,0.0312446821480989,-0.972267389297485,0.1182996109128,-0.201745823025703,-0.933036327362061,0.356936007738113,0.0451652742922306,-0.892954289913177,0.347389727830887,-0.286274373531342,-0.913428485393524,0.353746682405472,-0.201275736093521,-0.989508152008057,0.138170450925827,0.0422208830714226,-0.969962894916534,0.13536873459816,-0.202107131481171,-0.989938080310822,0.138226941227913,0.0302667319774628,-0.87163245677948,0.399908095598221,-0.283426493406296,-0.90820974111557,0.416025608778,0.0455836653709412,-0.905699133872986,0.414793699979782,0.0874948874115944,
- -0.988847553730011,0.142796412110329,0.0423041544854641,-0.989313244819641,0.142694264650345,0.0299607254564762,-0.0357189513742924,0.0188278611749411,0.999184489250183,-0.911674439907074,0.401955723762512,0.0853310003876686,-0.914350092411041,0.402359664440155,0.045502595603466,-0.0319292768836021,0.0333551913499832,0.998933434486389,-0.996294140815735,0.0788961946964264,0.0342543385922909,-0.0470229871571064,-0.0035675223916769,0.998887479305267,-0.0416543483734131,-0.00399574404582381,0.99912416934967,-2.83343069895636e-006,-0.000359845696948469,0.999999940395355,-0.0399143397808075,0.0027041737921536,0.999199450016022,-0.0473455786705017,0.00327473506331444,0.998873293399811,0.00734107475727797,-0.00298918085172772,0.999968647956848,-0.040132611989975,0.00186412502080202,0.999192655086517,-1.76159410330001e-005,-0.00223722448572516,0.999997496604919,0.0133152296766639,0.0259417407214642,0.999574780464172,-0.0296061672270298,0.0422432608902454,0.998668611049652,0.0142511129379272,0.0255855638533831,0.999571025371552,0.38731062412262,0.909031629562378,0.153792604804039,-0.0205711182206869,-0.0400782115757465,0.998984813690186,-0.00309600820764899,0.000888199079781771,0.999994874000549,-0.0290578231215477,0.0443392731249332,0.998593866825104,-0.0377694852650166,0.0478794723749161,0.998138785362244,-0.921872735023499,0.378841102123261,0.0814259946346283,-0.0307469498366117,0.0378803350031376,0.998809158802032,0.0105960890650749,0.0206441041082144,0.99973076581955,-0.0406634137034416,0.0420070923864841,0.998289465904236,-0.456159770488739,-0.888725101947784,0.0456738136708736,0.283419251441956,0.945243418216705,0.161828130483627,-0.442085951566696,-0.896560072898865,0.0272047128528357,-0.273399621248245,-0.947732329368591,0.164487302303314,-0.309469610452652,-0.950871884822845,-0.0084379967302084,-0.292405426502228,-0.953012526035309,0.0791597068309784,-0.355857163667679,-0.934536039829254,0.00287316017784178,-0.35442516207695,-0.932095408439636,0.074706494808197,-0.355888366699219,-0.934526085853577,-0.00213358178734779,
- -0.00434066401794553,-0.995502352714539,0.0946374908089638,-0.00256467005237937,-0.997981131076813,0.0634604394435883,-0.00811961758881807,-0.986934900283813,0.160915285348892,-0.355714797973633,-0.933802545070648,-0.0384688414633274,-0.355737119913101,-0.934581577777863,0.00289528071880341,-0.355767071247101,-0.934572279453278,-0.00215022242628038,-0.762254297733307,-0.643878757953644,-0.0662463456392288,-0.763591885566711,-0.645536541938782,0.0144927836954594,-0.762088477611542,-0.643716335296631,-0.0696451142430305,-0.549381017684937,-0.83541738986969,-0.0160710047930479,-0.549399137496948,-0.835472643375397,-0.0120936799794436,-0.549184799194336,-0.83499151468277,-0.0344301089644432,-0.0638325810432434,-0.982402086257935,0.17553237080574,-0.0357096493244171,-0.987505555152893,0.153485059738159,0.0640732571482658,-0.995201885700226,0.0739446431398392,-0.0219087582081556,-0.987320899963379,0.157218411564827,-0.0542395785450935,-0.978671312332153,0.198142752051353,-0.0693812966346741,-0.973661780357361,0.217184171080589,-0.640410542488098,-0.767282962799072,-0.0339298024773598,-0.530825972557068,-0.837479591369629,-0.129814013838768,-0.623474895954132,-0.780254602432251,-0.0498196892440319,-0.434907525777817,-0.900395810604095,-0.0119598712772131,-0.470809906721115,-0.88052886724472,0.0548353120684624,-0.247034788131714,-0.920923411846161,-0.301453083753586,-0.564052224159241,-0.77842116355896,-0.275509595870972,-0.724552512168884,-0.686958968639374,-0.0557767525315285,-0.657069802284241,-0.736856758594513,-0.159063965082169,-0.227436736226082,-0.973418772220612,-0.0269895121455193,-0.160748690366745,-0.986594438552856,-0.0281313098967075,-0.146609410643578,-0.98878800868988,-0.0283552035689354,-0.498634338378906,-0.866495013237,-0.0234599895775318,-0.227263882756233,-0.973074436187744,-0.0384362675249577,-0.151863977313042,-0.987514317035675,-0.0418692901730537,-0.205202460289001,-0.978658020496368,0.010978389531374,-0.145689651370049,-0.989227116107941,0.0142955929040909,-0.227789521217346,-0.973662197589874,0.00969766080379486,
- -0.227768465876579,-0.973696351051331,0.00609466945752501,-0.492202788591385,-0.870469093322754,-0.00446119857951999,-0.551048040390015,-0.834444165229797,-0.00699678808450699,-0.616474449634552,-0.787368535995483,0.00316923856735229,-0.55106121301651,-0.834464132785797,-0.00101823674049228,-0.492249041795731,-0.870442390441895,-0.00459551811218262,-0.551052033901215,-0.834450244903564,0.00586934201419353,-0.616031050682068,-0.787708520889282,0.00460511492565274,-0.597473978996277,-0.801872849464417,0.00497714942321181,-0.29802605509758,-0.954505741596222,0.00997336581349373,-0.269221067428589,-0.949798822402954,-0.159380957484245,-0.281613558530808,-0.955039024353027,-0.0927052721381187,-0.359593540430069,-0.933107674121857,0.00162494904361665,-0.35758176445961,-0.92988646030426,-0.0862930193543434,-0.359598875045776,-0.933103859424591,0.0024052148219198,-0.359414637088776,-0.933176517486572,0.00164952105842531,-0.35941955447197,-0.933173060417175,0.0023740828037262,-0.359428972005844,-0.932395398616791,0.0380735658109188,-0.0124205835163593,-0.998462378978729,-0.0540259666740894,-0.0141038578003645,-0.993858397006989,-0.109757088124752,-0.0155642591416836,-0.98714804649353,-0.159048795700073,-0.763530969619751,-0.645608842372894,-0.0144827775657177,-0.762193620204926,-0.643952369689941,0.0662290826439857,-0.762026429176331,-0.643788635730743,0.0696552842855453,-0.546780943870544,-0.837196886539459,0.011488288640976,-0.546762704849243,-0.837126970291138,0.0164009146392345,-0.546554863452911,-0.836639523506165,0.0362245291471481,-0.00372065976262093,-0.986764430999756,-0.162117585539818,-0.0533377043902874,-0.978290259838104,-0.200258120894432,0.110069833695889,-0.991294920444489,-0.0722431316971779,-0.0493541583418846,-0.976545095443726,-0.20958049595356,-0.00842524878680706,-0.986934542655945,-0.160901501774788,-0.0650671347975731,-0.971460700035095,-0.228101655840874,-0.532264471054077,-0.835116147994995,0.138837039470673,-0.650616526603699,-0.758529484272003,0.0364847406744957,-0.63298100233078,-0.772353649139404,0.0529613010585308,
- -0.466555744409561,-0.881926536560059,-0.0673152506351471,-0.422796458005905,-0.906123757362366,0.0135221388190985,-0.24305072426796,-0.925674915313721,0.289917767047882,-0.724634945392609,-0.686870217323303,0.055799126625061,-0.562477231025696,-0.778900921344757,0.277367293834686,-0.657087564468384,-0.736820876598358,0.159156873822212,-0.163963928818703,-0.985760748386383,0.0373034961521626,-0.227301001548767,-0.973153829574585,0.0361368022859097,-0.15018193423748,-0.98794561624527,0.0375352613627911,-0.227113500237465,-0.972729563713074,0.0470816344022751,-0.501211166381836,-0.864734649658203,0.0319595448672771,-0.155104890465736,-0.986619651317596,0.0502416789531708,-0.227759689092636,-0.973705947399139,-0.00472626043483615,-0.14751560986042,-0.989017069339752,-0.0091968635097146,-0.205211147665977,-0.978699386119843,-0.00599432783201337,-0.492473304271698,-0.87031102180481,0.00536324037238956,-0.227763056755066,-0.973702490329742,-0.00524782855063677,-0.551044404506683,-0.834438741207123,0.00788690615445375,-0.491956830024719,-0.870611190795898,0.00382833136245608,-0.551061511039734,-0.834464609622955,0.00019765023898799,-0.616215169429779,-0.787567734718323,-0.00400952994823456,-0.616036355495453,-0.787704467773438,-0.00458797859027982,-0.551052093505859,-0.834450364112854,-0.00585282640531659,-0.597474038600922,-0.801872968673706,-0.00496026640757918,-0.31053364276886,0.157508298754692,0.937422096729279,0.00313949678093195,0.00974049046635628,0.999947607517242,0.00360081135295331,0.0095221446827054,0.99994820356369,-0.313111782073975,0.117832139134407,0.942378163337708,-0.00688626430928707,-0.0213650763034821,0.999748110771179,-0.324716508388519,0.123167008161545,0.93775749206543,-0.33002832531929,0.0399199798703194,0.943126559257507,-0.0017473183106631,-0.00833336543291807,0.999963760375977,-0.0026439109351486,-0.00820290297269821,0.99996292591095,0.000965441926382482,0.00460441596806049,0.999988913536072,-0.32922574877739,0.0438538789749146,0.943232357501984,-0.312781244516373,0.0419125594198704,0.948899984359741,
- -0.329331457614899,0.0433371923863888,0.943219304084778,-0.961248755455017,0.11129392683506,0.252219080924988,-0.312867105007172,0.0414916574954987,0.948890268802643,-0.878623306751251,0.39340153336525,0.270659029483795,-0.312862396240234,0.118910789489746,0.942325532436371,-0.324286103248596,0.124227903783321,0.937766492366791,-0.973196685314178,0.110722102224827,0.201566532254219,-0.961444795131683,0.109785109758377,0.252133548259735,-0.329184263944626,0.0440565012395382,0.943237483501434,-0.319053173065186,0.091578297317028,0.943301916122437,-0.889483273029327,0.367222607135773,0.271968930959702,-0.904268860816956,0.376931220293045,0.200550884008408,-0.972256660461426,0.118384264409542,0.201747760176659,-0.992021381855011,0.123871482908726,-0.0234418362379074,-0.960589289665222,0.116249263286591,0.252496033906937,-0.896301925182343,0.349668055772781,0.272718101739883,-0.932233095169067,0.359026342630386,-0.0451830290257931,-0.912923812866211,0.355068147182465,0.201237931847572,-0.990067958831787,0.138787567615509,-0.0224407166242599,-0.96989119052887,0.135867327451706,0.202116787433624,-0.989432752132416,0.138706639409065,-0.0422305800020695,-0.910433232784271,0.411140024662018,-0.0455557964742184,-0.87936407327652,0.39167845249176,0.270752489566803,-0.910273134708405,0.411123663187027,-0.0487863011658192,0.220601782202721,0.975115180015564,-0.0220271814614534,0.231855556368828,0.972749948501587,-0.000828597694635391,-0.394842565059662,0.339593887329102,-0.853683412075043,-0.988734781742096,0.143571183085442,-0.0423180162906647,-0.0357521548867226,0.0187004096806049,-0.999185740947723,-0.989417850971222,0.143396615982056,-0.0221299082040787,-0.917268037796021,0.395298421382904,-0.0485632531344891,-0.0269537828862667,0.052375104278326,-0.998263657093048,-0.917448699474335,0.395248860120773,-0.0454566143453121,-0.0470493286848068,-0.00301060033962131,-0.99888801574707,-0.996584355831146,0.0782268792390823,-0.0264608077704906,-0.041512131690979,-0.00344787025824189,-0.999132037162781,-0.0397672578692436,0.00327016552910209,-0.999203681945801,
- 1.93572009266063e-006,0.000245836446993053,-1,-0.0473725199699402,0.00384847889654338,-0.998869895935059,-5.39637003384996e-005,-0.00685339001938701,-0.999976515769959,-0.04129983112216,-0.0026300884783268,-0.999143362045288,-0.0015138314338401,-0.00670411018654704,-0.999976396560669,-0.0281999837607145,0.0476168878376484,-0.998467624187469,0.0158580001443625,0.030895758420229,-0.999396800994873,0.00767881376668811,0.0340061746537685,-0.999392151832581,0.0205711182206869,0.0400782115757465,-0.998984813690186,0.105770826339722,0.240046307444572,-0.964982032775879,0.00309600820764899,-0.000888199079781771,-0.999994874000549,-0.0397287718951702,0.0430796444416046,-0.998281419277191,-0.030385572463274,0.0392627567052841,-0.998766779899597,-0.923742175102234,0.379953026771545,-0.0483348295092583,-0.0406826511025429,0.041226040571928,-0.998321354389191,0.010247552767396,0.0199650600552559,-0.999748170375824,-0.0309345908463001,0.0371624007821083,-0.998830318450928,-0.0769369304180145,0.284995287656784,-0.955436229705811,-0.216150656342506,-0.309355825185776,-0.926055014133453,0.231846436858177,0.972514748573303,-0.021502573043108,-0.0769369304180145,0.284995287656784,-0.955436229705811,-0.243944942951202,-0.47527202963829,-0.845344603061676,-0.216150656342506,-0.309355825185776,-0.926055014133453,0.00365003221668303,2.22043122617374e-016,-0.999993324279785,0.00365003221668303,2.22043122617374e-016,-0.999993324279785,0.00365003221668303,2.22043122617374e-016,-0.999993324279785,0.0060198362916708,2.22040581518532e-016,-0.999981880187988,0.0060198362916708,2.22040581518532e-016,-0.999981880187988,0.0060198362916708,2.22040581518532e-016,-0.999981880187988,7.22555751053733e-006,2.22044604925031e-016,-1,7.22555751053733e-006,2.22044604925031e-016,-1,7.22555751053733e-006,2.22044604925031e-016,-1,0.00121167348697782,2.22044446106354e-016,-0.999999284744263,0.00121167348697782,2.22044446106354e-016,-0.999999284744263,0.00121167348697782,2.22044446106354e-016,-0.999999284744263,6.94021800882183e-005,2.22044604925031e-016,-1,6.94021800882183e-005,2.22044604925031e-016,-1,
- 6.94021800882183e-005,2.22044604925031e-016,-1,0.00112575676757842,2.22044459341244e-016,-0.999999344348907,0.00112575676757842,2.22044459341244e-016,-0.999999344348907,0.00112575676757842,2.22044459341244e-016,-0.999999344348907,0.00150998414028436,2.22044353462125e-016,-0.999998867511749,0.00150998414028436,2.22044353462125e-016,-0.999998867511749,0.00150998414028436,2.22044353462125e-016,-0.999998867511749,0.00103893165942281,2.22044485811023e-016,-0.999999463558197,0.00103893165942281,2.22044485811023e-016,-0.999999463558197,0.00103893165942281,2.22044485811023e-016,-0.999999463558197,-0.038911908864975,2.21876442415222e-016,-0.999242663383484,-0.038911908864975,2.21876442415222e-016,-0.999242663383484,-0.038911908864975,2.21876442415222e-016,-0.999242663383484,-0.275028228759766,0.21697174012661,-0.936633706092834,0.045394241809845,-0.0438043251633644,-0.998008251190186,0.00211694114841521,-0.00865407753735781,-0.999960362911224,0.0549499690532684,-0.03413200750947,-0.997905611991882,-0.2538241147995,0.237680599093437,-0.937593340873718,-0.250858932733536,0.235082939267159,-0.939045250415802,0.0399807170033455,-0.0492765605449677,-0.997984647750854,-0.15317115187645,0.307389467954636,-0.939175367355347,0.00375052029266953,0.0179452933371067,-0.999831974506378,-0.254657626152039,0.236874610185623,-0.937571346759796,-0.741040349006653,0.649430274963379,-0.170586138963699,-0.251771509647369,0.234377533197403,-0.938977241516113,-0.121595479547977,0.299186021089554,-0.946415603160858,-0.00958818849176168,0.013388441875577,-0.999864399433136,-0.130912348628044,0.323010474443436,-0.937297344207764,-0.119035214185715,0.300243496894836,-0.946406126022339,-0.0186702124774456,-0.0106929400935769,-0.999768614768982,-0.0248305182904005,0.00817721057683229,-0.999658226966858,-0.362577795982361,0.91637909412384,-0.169666662812233,-0.121841050684452,0.299084395170212,-0.946416020393372,-0.131180852651596,0.322823852300644,-0.937324047088623,-0.759934663772583,0.627537608146667,-0.169398605823517,-0.26262691617012,0.22913521528244,-0.937296152114868,
- -0.754949688911438,0.623891770839691,-0.202015042304993,-0.118257321417332,0.300564289093018,-0.94640177488327,-0.349716484546661,0.921474993228912,-0.169062897562981,-0.34712216258049,0.914121925830841,-0.20949313044548,0.547484755516052,0.480059444904327,-0.68542206287384,-0.417851239442825,0.88424277305603,-0.208602666854858,-0.308977007865906,0.902586698532104,-0.299784362316132,-0.42101576924324,0.882757067680359,-0.208532810211182,-0.598223865032196,0.800684690475464,-0.0321293734014034,-0.309594362974167,0.902086079120636,-0.300652682781219,-0.765144646167755,0.64121401309967,0.058295950293541,-0.755403935909271,0.632903456687927,-0.169700086116791,-0.750669598579407,0.628914952278137,-0.202388495206833,-0.345525741577148,0.914725244045258,-0.209498882293701,-0.347924619913101,0.922168850898743,-0.168976470828056,-0.350787550210953,0.935367822647095,0.0451118275523186,-0.743054151535034,0.647156238555908,-0.170468106865883,-0.752524733543396,0.656028389930725,0.0577342920005322,-0.753083050251007,0.656476855278015,0.0436349101364613,-0.841715693473816,0.504860043525696,-0.19139239192009,-0.857915937900543,0.51249235868454,0.0364960879087448,-0.856935560703278,0.511676371097565,0.0620380938053131,-0.222131684422493,0.955048799514771,-0.196314930915833,-0.0206731259822845,0.0373266637325287,0.999089241027832,-0.228834763169289,0.97346019744873,0.00314605096355081,-0.0433133617043495,0.00895043928176165,0.999021530151367,-0.942350268363953,0.328346878290176,0.0645314678549767,-0.943442642688751,0.328866988420486,0.0419825874269009,-0.0566348358988762,-0.00778512191027403,0.998364686965942,-0.0437381975352764,-0.0168782230466604,0.998900532722473,-0.817896544933319,0.572172343730927,0.0605316311120987,-0.0336896181106567,-0.00426585180684924,0.999423265457153,-0.740119636058807,0.671040713787079,0.0439020656049252,-0.739853084087372,0.67033576965332,0.0571613870561123,-0.0100958049297333,-0.0132425492629409,0.999861359596252,-0.0300798527896404,0.000262494198977947,0.999547481536865,-0.0431779436767101,0.00912041123956442,0.999025762081146,
- -0.00484429765492678,-0.00506449257954955,0.999975442886353,-0.0231901090592146,0.00890194531530142,0.999691486358643,-0.00422210153192282,-0.00553808128461242,0.999975800514221,-0.0316128991544247,-0.00166051462292671,0.999498844146729,-0.0161591917276382,-0.0168936997652054,0.999726712703705,-0.0304753221571445,-0.00278238672763109,0.999531686306,-0.712617933750153,0.700146079063416,0.0443983003497124,-0.0271565206348896,0.00392879685387015,0.999623477458954,-0.0246509164571762,0.00146185792982578,0.999695062637329,-0.012489034794271,-0.00586441671475768,0.999904811382294,-0.0201665461063385,0.00472893519327044,0.999785542488098,-0.00952300056815147,-0.00995586439967155,0.999905109405518,0.0182704720646143,0.00857917871326208,0.999796271324158,0.00569893885403872,0.0361455194652081,0.999330341815948,0.0100096631795168,0.0266981720924377,0.999593496322632,-0.414195150136948,0.909046471118927,0.0455733686685562,0.0127958487719297,0.0287252403795719,0.999505519866943,0.00883011240512133,0.0373903587460518,0.999261736869812,0.00410982267931104,0.00106922222767025,0.999990999698639,-0.00572326267138124,0.0316012129187584,0.999484181404114,0.0038691139779985,0.00181680137757212,0.999990880489349,0.0365162156522274,-0.0301817655563354,0.998877167701721,0.232074245810509,0.257862746715546,0.937895774841309,0.0698467269539833,0.0181715060025454,0.997392296791077,-0.321287095546722,0.946516752243042,0.029674980789423,-0.320846527814865,0.946069896221161,0.0448258966207504,0.00661960337311029,0.0365115813910961,0.999311327934265,-0.330091238021851,0.920401990413666,-0.209523156285286,-0.336339622735977,0.940666019916534,0.0449791252613068,-0.336593210697174,0.941200375556946,0.0291041154414415,0.594058871269226,0.795818984508514,-0.117330200970173,0.530540645122528,0.846418261528015,0.0458560101687908,-0.0790683329105377,0.598261892795563,0.797390043735504,-0.00171737419441342,-0.000506766140460968,0.999998450279236,-0.0107442745938897,0.0296019930392504,0.999504029750824,-0.00173405429814011,-0.000451136089395732,0.999998390674591,
- -0.302386850118637,0.95270162820816,0.0303649418056011,-0.00463875057175756,0.0320329070091248,0.999476075172424,0.00506253493949771,0.0014938625972718,0.999986052513123,-0.448053449392319,-0.132212489843369,0.88417649269104,-0.433098524808884,-0.112676039338112,0.894276142120361,0.0862033069133759,0.432964444160461,0.897279739379883,0.0826185941696167,0.436911582946777,0.895702242851257,0.569677710533142,0.820593118667603,0.0457637682557106,-0.303737163543701,-0.0896273553371429,0.948530793190002,-0.0178767293691635,-0.010238490998745,0.9997878074646,-0.114823095500469,0.301977515220642,0.946374773979187,-0.0237728450447321,0.00853896047919989,0.999680936336517,-0.00990101043134928,0.0132815344259143,0.999862790107727,-0.121400482952595,0.299266666173935,0.9464151263237,-0.13052424788475,0.322723597288132,0.937450289726257,-0.153119534254074,0.307415306568146,0.939175248146057,0.0397265888750553,-0.0494248196482658,0.997987508773804,0.00352896330878139,0.0178696308284998,0.99983412027359,0.0447301343083382,-0.0444787368178368,0.99800843000412,-0.283471971750259,0.216948613524437,0.934118330478668,0.000941810081712902,-0.00969306007027626,0.999952554702759,-0.259618788957596,0.241314336657524,0.935075104236603,0.0560863465070724,-0.0332366302609444,0.997872591018677,-0.253227978944778,0.235786274075508,0.938232660293579,-0.131171524524689,0.322289258241653,0.937509298324585,-0.121991910040379,0.299022018909454,0.946416318416595,-0.363210469484329,0.915594518184662,0.17252516746521,-0.259812533855438,0.241118878126144,0.93507182598114,-0.253443419933319,0.235625177621841,0.938214898109436,-0.741061449050903,0.647880017757416,0.176293596625328,-0.34942501783371,0.921084523200989,0.171771764755249,-0.113044045865536,0.302707731723785,0.946355760097504,-0.346681743860245,0.914065599441528,0.210465773940086,-0.269714802503586,0.231073260307312,0.934804320335388,-0.757899224758148,0.628358721733093,0.175368368625641,-0.756485760211945,0.62727278470993,0.18509005010128,-0.350780367851257,0.935370564460754,-0.0451117642223835,
- -0.346852898597717,0.922083020210266,0.171627476811409,-0.344366550445557,0.914952397346497,0.210413366556168,-0.335193753242493,0.941075503826141,-0.0449681803584099,-0.328202992677689,0.920965433120728,0.210012957453728,-0.335018992424011,0.940603852272034,-0.0550158694386482,-0.755841434001923,0.630798876285553,0.175489291548729,-0.766628444194794,0.639433205127716,-0.0583613738417625,-0.754460155963898,0.629661858081818,0.185245424509048,-0.753094971179962,0.655371606349945,-0.0577598698437214,-0.742870986461639,0.645829677581787,0.176201015710831,-0.753655612468719,0.655820310115814,-0.0436225868761539,-0.857921719551086,0.512482583522797,-0.0364964380860329,-0.844304502010345,0.506286442279816,0.17556793987751,-0.856943249702454,0.511663675308228,-0.0620383732020855,-0.753179848194122,0.631164371967316,0.185342445969582,-0.657517790794373,0.753019750118256,-0.0251345448195934,0.305649667978287,0.522664070129395,-0.795864641666412,-0.864863157272339,0.500648498535156,-0.0369175635278225,-0.864273607730865,0.499148637056351,-0.0623030439019203,-0.0771500840783119,-0.000650055706501007,-0.997019290924072,-0.0682559460401535,0.0120840966701508,-0.997594714164734,-0.837705016136169,0.542670011520386,-0.0613148063421249,-0.036933146417141,-0.00833585578948259,-0.999282956123352,-0.740513503551483,0.67060661315918,-0.0438942797482014,-0.0339226014912128,-0.00455816648900509,-0.999414086341858,-0.740249156951904,0.669896841049194,-0.0571794211864471,-0.00837921164929867,-0.011245783418417,-0.999901652336121,-0.0611054189503193,0.0223026499152184,-0.997882127761841,-0.0288676824420691,0.00178284198045731,-0.999581694602966,-0.0232279449701309,0.00885451026260853,-0.999691009521484,-0.00491726491600275,-0.00508489878848195,-0.999974966049194,-0.00419714581221342,-0.00563301052898169,-0.999975383281708,-0.0303908511996269,-0.00272082607261837,-0.999534368515015,-0.0161787457764149,-0.0167302936315537,-0.999729156494141,-0.0315482243895531,-0.00157938245683908,-0.99950098991394,-0.027064261958003,0.00404448993504047,-0.999625563621521,
- -0.712570905685425,0.700193822383881,-0.0443990714848042,-0.0245305337011814,0.00154957082122564,-0.999697923660278,-0.00950399413704872,-0.00982799381017685,-0.999906539916992,-0.0200934559106827,0.00478217750787735,-0.999786734580994,-0.0124056991189718,-0.00582528486847878,-0.999906122684479,0.0125511409714818,0.0285472124814987,-0.999513685703278,-0.414095252752304,0.909091949462891,-0.0455728061497211,0.00858344230800867,0.0372196584939957,-0.99927031993866,0.00543435709550977,0.0359943211078644,-0.999337315559387,0.0179916061460972,0.008448232896626,-0.999802470207214,0.00975789315998554,0.0265149883925915,-0.999600768089294,-0.320334285497665,0.946243703365326,-0.0448206402361393,-0.319993227720261,0.945700526237488,-0.0570515431463718,0.0011718551395461,0.0343351177871227,-0.999409675598145,-0.00574891734868288,0.0316396690905094,-0.999482810497284,0.00409758696332574,0.00106603896711022,-0.999991059303284,0.00385759421624243,0.00181139213964343,-0.999990940093994,0.568058431148529,0.811687886714935,-0.135912820696831,0.0364453606307507,-0.0301232021301985,-0.99888151884079,0.0696634873747826,0.0181238353252411,-0.997405886650085,0.00949294026941061,0.00280119548551738,-0.999951004981995,-0.000360782258212566,0.0337383598089218,-0.999430656433105,-0.302237957715988,0.951378464698792,-0.0594241954386234,-0.00147937680594623,-0.000384878541808575,-0.999998927116394,-0.0105172945186496,0.0297814309597015,-0.99950110912323,-0.00146515539381653,-0.000432340893894434,-0.999998807907104,-0.534762918949127,-0.139125317335129,-0.833470344543457,-0.541732847690582,-0.159855589270592,-0.825210094451904,0.425997138023376,0.895447015762329,-0.129232749342918,-0.672476410865784,0.734616696834564,0.0900764092803001,-0.265094071626663,0.960935711860657,-0.0795470327138901,-0.114673182368279,0.984606027603149,-0.131913512945175,-0.264580398797989,0.961198270320892,-0.0780709236860275,-0.0826536491513252,0.986781656742096,-0.139393284916878,-0.108022600412369,0.985450804233551,-0.131216809153557,-0.627304494380951,0.73186993598938,0.266186833381653,
- -0.187611222267151,0.972330868244171,-0.139193058013916,-0.787750005722046,0.367318600416183,0.494496643543243,0.726970851421356,0.580212473869324,-0.367242306470871,-0.151583701372147,0.979088008403778,-0.135680615901947,-0.0842331275343895,0.983487069606781,-0.160181045532227,-0.993452191352844,0.114093214273453,-0.00597745645791292,-0.685937523841858,0.727626204490662,-0.00706976652145386,-0.687743484973907,0.725919425487518,-0.00707194302231073,-0.0708835572004318,0.997475862503052,0.00417755730450153,0.843749165534973,0.536214351654053,0.0236964859068394,0.860593736171722,0.508728861808777,0.0239435918629169,-0.685870170593262,0.727684497833252,-0.00757639855146408,-0.993372023105621,0.1148516908288,-0.00459262356162071,-0.990025222301483,0.14081010222435,-0.00475615262985229,0.843979895114899,0.5363609790802,0.00384928658604622,-0.0715952962636948,0.997425734996796,-0.0040160221979022,-0.0709296986460686,0.997473239898682,-0.00401165755465627,-0.737582385540009,0.468303978443146,-0.486480861902237,-0.119247823953629,0.983998417854309,0.132389560341835,-0.607969224452972,0.725704967975616,-0.322064757347107,0.861352443695068,0.507172167301178,-0.0291280597448349,0.843624532222748,0.536135137081146,-0.0292717833071947,-0.0698761194944382,0.997406899929047,-0.0172270368784666,-0.0812355056405067,0.988395571708679,0.128355726599693,0.75591641664505,0.575914263725281,0.311308771371841,-0.0807984247803688,0.988414287567139,0.128487333655357,-0.261816382408142,0.9625643491745,0.0701573491096497,-0.670683205127716,0.735071122646332,-0.0992705374956131,-0.09148059040308,0.987355828285217,0.129460379481316,-0.0808045715093613,0.988402247428894,0.128575593233109,-0.261075079441071,0.962917387485504,0.0680432170629501,-0.0814267471432686,0.988377153873444,0.128376469016075
- }
- BinormalsW: *651 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *1953 {
- a: 0.00442472286522388,0.00217354809865355,-0.999987840652466,0.00576241733506322,0.00140546774491668,-0.999982416629791,0.00576241733506322,0.00140546774491668,-0.999982416629791,0.00256529077887535,0.00126014277338982,-0.9999960064888,0.00199443683959544,0.000486447825096548,-0.999997913837433,0.00272748153656721,0.00180116714909673,-0.99999475479126,-0.645588040351868,0.763683438301086,-0.00191740063019097,-0.623730599880219,0.781637072563171,-0.00191806058865041,-0.623758912086487,0.78161346912384,-0.00233299564570189,-0.645500719547272,0.763580203056335,-0.0165556222200394,-0.623851418495178,0.781358242034912,-0.0169914960861206,-0.650082647800446,0.759691298007965,-0.0161781087517738,-0.649075746536255,0.760669469833374,0.00908935908228159,-0.623618364334106,0.781691133975983,0.00769285997375846,-0.624594688415527,0.780930876731873,0.00533074140548706,-0.687087178230286,0.726575016975403,-7.04854827462971e-018,-0.691220343112946,0.722644031047821,0.000407808576710522,-0.666794836521149,0.745241343975067,-2.75345595733996e-018,-0.666030168533325,0.744386672973633,0.0478781573474407,-0.690159857273102,0.722074329853058,0.0478333048522472,-0.668870449066162,0.741898655891418,0.0468901209533215,-0.670709013938904,0.74172055721283,-0.000100415942142718,-0.670706629753113,0.741722643375397,-0.000306975038256496,-0.666794776916504,0.745241284370422,-0.000306968722725287,-0.817105531692505,-0.567092001438141,0.103659197688103,-0.780643999576569,-0.621759414672852,-0.0633262470364571,-0.788055777549744,-0.609580457210541,0.0859058722853661,-0.831015884876251,-0.554645299911499,-0.0422063618898392,-0.826526403427124,-0.5566645860672,0.083538144826889,-0.821175634860992,-0.566267430782318,-0.0707939118146896,-0.869683980941772,-0.492688655853271,-0.0301278792321682,-0.86324405670166,-0.502931654453278,0.0432374812662601,-0.867083132266998,-0.49164754152298,0.0803093314170837,-0.86187732219696,-0.505308449268341,0.0427882671356201,-0.868324995040894,-0.495051920413971,-0.03058210760355,-0.901549994945526,-0.431853234767914,-0.0266574993729591,
- -0.904196679592133,-0.426988899707794,-0.0104332640767097,-0.860169470310211,-0.509570896625519,0.021117752417922,-0.879100978374481,-0.474152028560638,0.0485938712954521,-0.903927087783813,-0.42751356959343,-0.0121634155511856,-0.843964636325836,-0.536351263523102,0.0071570286527276,-0.859916090965271,-0.510064840316772,0.0194529909640551,-0.8439861536026,-0.5363649725914,-4.19921207139851e-006,-0.901419401168823,-0.432077974081039,-0.0274174250662327,-0.88964718580246,-0.456647783517838,0.00083124270895496,-0.649076342582703,0.760669231414795,-0.00907779764384031,-0.624596536159515,0.780929625034332,-0.00532214622944593,-0.623618543148041,0.781691074371338,-0.00768079422414303,-0.650082767009735,0.759691119194031,0.0161814354360104,-0.623851418495178,0.781358182430267,0.0169945694506168,-0.645500719547272,0.763580143451691,0.0165585856884718,-0.623758971691132,0.781613230705261,0.00234622810967267,-0.623730599880219,0.781637132167816,0.00193129724357277,-0.645588040351868,0.763683438301086,0.00193063251208514,-0.687087178230286,0.726575016975403,-7.04854827462971e-018,-0.666794836521149,0.745241343975067,-2.75345595733996e-018,-0.691220343112946,0.722644031047821,-0.000407808576710522,-0.690072655677795,0.722008168697357,-0.0500405579805374,-0.665955305099487,0.744303047657013,-0.0501646623015404,-0.668757915496826,0.741869449615479,-0.0489144623279572,-0.67072719335556,0.741703629493713,0.000887937669176608,-0.66679459810257,0.745241045951843,0.000863006745930761,-0.670706450939178,0.741722404956818,0.000862991088069975,-0.8439861536026,-0.5363649725914,-4.19921207139851e-006,-0.889647126197815,-0.456647872924805,-0.000839644460938871,-0.901420712471008,-0.43207573890686,0.0274098850786686,-0.843964695930481,-0.536351323127747,-0.00714536057785153,-0.903923451900482,-0.427520662546158,0.0121868643909693,-0.859912395477295,-0.510071694850922,-0.0194297470152378,-0.860166013240814,-0.509577691555023,-0.021094799041748,-0.904193103313446,-0.426995933055878,0.0104564027860761,-0.879080414772034,-0.474191069602966,-0.0485867224633694,
- -0.90156626701355,-0.431824862957001,0.0265617724508047,-0.868250489234924,-0.494708567857742,0.0374773517251015,-0.861516892910004,-0.505932927131653,-0.0426700711250305,-0.869360148906708,-0.493759334087372,-0.0203637313097715,-0.863223254680634,-0.502967894077301,-0.0432306453585625,-0.869960129261017,-0.491737991571426,0.0369199924170971,-0.893910050392151,-0.444997638463974,-0.0538694858551025,-0.902649223804474,-0.430210143327713,-0.0119817163795233,-0.903259038925171,-0.415800839662552,-0.105984896421433,-0.780640125274658,-0.621894717216492,0.0620324313640594,-0.743267714977264,-0.644814372062683,0.178234875202179,-0.773323178291321,-0.632772862911224,-0.0396206676959991,-0.999980270862579,0,0.00629638135433197,-0.999980270862579,0,0.00629638135433197,-0.999980270862579,0,0.00629638135433197,-0.999999642372131,0,-0.000838986015878618,-0.999999642372131,0,-0.000838986015878618,-0.999999642372131,0,-0.000838986015878618,-0.999980688095093,9.49053991886564e-019,-0.0062140105292201,-0.999980688095093,9.49053991886564e-019,-0.0062140105292201,-0.999980688095093,9.49053991886564e-019,-0.0062140105292201,-0.999999225139618,0,0.00125964020844549,-0.999999225139618,0,0.00125964020844549,-0.999999225139618,0,0.00125964020844549,-0.999991595745087,0,-0.00412332639098167,-0.999991595745087,0,-0.00412332639098167,-0.999991595745087,0,-0.00412332639098167,0.0016894704895094,-0.00511064892634749,-0.99998551607132,0.0016894704895094,-0.00511064892634749,-0.99998551607132,0.0016894704895094,-0.00511064892634749,-0.99998551607132,0.00233153556473553,-0.00705289514735341,-0.999972403049469,0.00233153556473553,-0.00705289514735341,-0.999972403049469,0.00233153556473553,-0.00705289514735341,-0.999972403049469,0.00227159378118813,-0.00687157223001122,-0.999973833560944,0.00227159378118813,-0.00687157223001122,-0.999973833560944,-0.00488088978454471,-0.00952538847923279,-0.999942719936371,-0.00521026784554124,-0.0086347172036767,-0.999949157238007,0.00966941844671965,-0.00300090597011149,-0.999948740005493,0.00194000569172204,-0.00586851965636015,-0.999980926513672,
- 0.872996687889099,0.487619757652283,-0.0101987076923251,0.915384232997894,0.402453422546387,-0.0101577136665583,0.915384232997894,0.402453422546387,-0.0101577136665583,0.915367186069489,0.402445912361145,-0.0118391700088978,0.87298059463501,0.487610787153244,-0.0118573205545545,0.855310618877411,0.517996430397034,-0.0111132739111781,0.855291426181793,0.517997264862061,-0.0124762374907732,0.872982263565063,0.487611711025238,-0.0116963936015964,0.808286488056183,0.58867222070694,-0.0117446361109614,0.855268597602844,0.517997026443481,-0.0139553183689713,0.80826473236084,0.58867073059082,-0.0132249491289258,0.811999559402466,0.583507239818573,-0.0132769932970405,0.812232732772827,0.583237409591675,-0.0105897048488259,0.808285295963287,0.58867222070694,-0.0118383672088385,0.872982263565063,0.487611681222916,-0.0116990059614182,0.180819198489189,-0.982713043689728,0.0397426299750805,0.180819198489189,-0.982713043689728,0.0397426299750805,0.180819198489189,-0.982713043689728,0.0397426299750805,0.180961698293686,-0.983487486839294,0.00228831311687827,0.180961698293686,-0.983487486839294,0.00228831311687827,0.180961698293686,-0.983487486839294,0.00228831311687827,0.180961132049561,-0.983484447002411,-0.00338595686480403,0.180961132049561,-0.983484447002411,-0.00338595686480403,0.180961132049561,-0.983484447002411,-0.00338595686480403,0.180962190032005,-0.983490109443665,-0.000275858037639409,0.180962190032005,-0.983490109443665,-0.000275858037639409,0.180962190032005,-0.983490109443665,-0.000275858037639409,0.180959537625313,-0.983475744724274,0.00539471255615354,0.180959537625313,-0.983475744724274,0.00539471255615354,0.180959537625313,-0.983475744724274,0.00539471255615354,0.180954992771149,-0.983451068401337,0.00890665967017412,0.180954992771149,-0.983451068401337,0.00890665967017412,0.180954992771149,-0.983451068401337,0.00890665967017412,0.180799782276154,-0.982607483863831,-0.0423576384782791,0.180799782276154,-0.982607483863831,-0.0423576384782791,0.180799782276154,-0.982607483863831,-0.0423576384782791,-0.306765586137772,-0.951759994029999,-0.00691547803580761,
- -0.379105120897293,-0.925099670886993,-0.0216777659952641,-0.346792697906494,-0.93791651725769,-0.00688790064305067,-0.368971645832062,-0.929416716098785,0.00668378220871091,-0.306709736585617,-0.951586663722992,0.0203017927706242,-0.224391058087349,-0.973428666591644,-0.0456675626337528,-0.205207720398903,-0.978683054447174,0.00832073856145144,-0.19924895465374,-0.979548513889313,0.0280139464884996,-0.306762099266052,-0.951748967170715,0.00842211674898863,-0.20035745203495,-0.979407846927643,0.0248422678560019,-0.205212995409966,-0.978708207607269,-0.00423422129824758,-0.199735671281815,-0.979579448699951,0.023016894236207,-0.225152105093002,-0.973142623901367,-0.0479579046368599,-0.387811601161957,-0.920149743556976,-0.0540985241532326,-0.369856536388397,-0.929079294204712,0.00424502976238728,-0.200177147984505,-0.979431509971619,0.0253586042672396,-0.199597522616386,-0.979597687721252,0.0234358347952366,-0.128883078694344,-0.990073919296265,0.0560604706406593,-0.126122742891312,-0.990388214588165,0.056784275919199,-0.116276331245899,-0.992912173271179,0.0246013272553682,-0.199994429945946,-0.979455232620239,0.0258817840367556,-0.370981335639954,-0.927364647388458,-0.0486591048538685,-0.215124845504761,-0.976419389247894,-0.0180743113160133,-0.382760673761368,-0.923275887966156,-0.0324948504567146,-0.131979808211327,-0.989711582660675,0.0552475899457932,-0.119391053915024,-0.990577340126038,0.0670990124344826,-0.123294539749622,-0.992100119590759,0.0231470726430416,-0.360221654176712,-0.932833790779114,-0.00785348657518625,-0.352879196405411,-0.934687793254852,-0.042837280780077,-0.358405470848084,-0.933172464370728,-0.027105662971735,-0.138851135969162,-0.990151166915894,-0.0179228167980909,-0.141961947083473,-0.989684581756592,0.019266601651907,-0.135775074362755,-0.988430142402649,0.0676087960600853,-0.400125682353973,-0.91461706161499,-0.0580949857831001,-0.41616103053093,-0.90927666425705,-0.005094681866467,-0.423123329877853,-0.893488347530365,-0.150483965873718,-0.144063681364059,-0.989410221576691,-0.0177000965923071,
- -0.140837833285332,-0.987710952758789,0.0677628070116043,-0.252128928899765,-0.967647850513458,0.00942609831690788,-0.410641938447952,-0.899093747138977,-0.151670217514038,-0.403039336204529,-0.915164589881897,-0.00575037021189928,-0.252630472183228,-0.967258810997009,0.0242539402097464,-0.0760740786790848,-0.994937419891357,0.0656682625412941,0.047270230948925,-0.998880743980408,-0.00167186034377664,-0.251195430755615,-0.967825174331665,-0.0146727794781327,-0.00787375960499048,-0.999967515468597,-0.0017404907848686,-0.251435399055481,-0.967833817005157,-0.00882536545395851,0.0469972193241119,-0.99888664484024,0.00411286531016231,-0.235166549682617,-0.97195291519165,-0.00206025852821767,-0.251421302556992,-0.96783435344696,-0.00917564705014229,-0.00787373259663582,-0.99996417760849,-0.00311425444670022,-0.456409573554993,-0.889211714267731,0.0315094217658043,-0.252981007099152,-0.966810703277588,0.0357451140880585,-0.234808444976807,-0.971560776233673,0.0305728707462549,-0.92378556728363,0.374318182468414,0.0806605666875839,-0.415131390094757,-0.808796286582947,-0.416550755500793,-0.960703790187836,0.275611698627472,-0.032961331307888,-0.252985388040543,-0.966803967952728,0.0358959473669529,-0.442064166069031,-0.896588206291199,0.0266242772340775,-0.38878259062767,-0.908425033092499,-0.153662279248238,-0.252825558185577,-0.967030584812164,0.030513746663928,-0.456495702266693,-0.889379560947418,0.0248133223503828,-0.441859155893326,-0.896830379962921,0.0213485825806856,-0.0206004995852709,-0.0401359722018242,-0.998981952667236,-0.959774553775787,0.273499131202698,0.0634921863675117,0.0374599099159241,-0.0485080666840076,-0.998120188713074,-0.196726217865944,-0.977809906005859,0.0720176249742508,-0.26315513253212,-0.964642941951752,-0.0146073922514915,-0.262443870306015,-0.961528122425079,0.0811596661806107,-0.221238732337952,-0.974846184253693,0.0269919577986002,-0.220234975218773,-0.971839129924774,0.0838166251778603,-0.217471525073051,-0.975849807262421,-0.0205795746296644,-0.185067892074585,-0.978965103626251,0.0858907997608185,
- -0.184177622199059,-0.982325315475464,0.0334003977477551,-0.205768302083015,-0.972983181476593,0.104705028235912,-0.453586250543594,-0.890784025192261,-0.0276285167783499,-0.447599142789841,-0.89411848783493,-0.0143922809511423,-0.450053632259369,-0.892933070659637,0.0110571924597025,-0.666222095489502,-0.744656205177307,-0.0404383093118668,-0.673139214515686,-0.739515542984009,0.000601216219365597,-0.676772236824036,-0.731593787670136,-0.0821583867073059,-0.575484812259674,-0.81771332025528,-0.0127346916124225,-0.570448577404022,-0.821157395839691,-0.0170042477548122,-0.567640066146851,-0.822390615940094,-0.0381894074380398,-0.136523708701134,-0.990633368492126,-0.00262003112584352,-0.196318179368973,-0.974623739719391,0.107553496956825,-0.173007383942604,-0.984287261962891,0.0353132002055645,-0.120164938271046,-0.984217584133148,0.129908323287964,-0.126287698745728,-0.991721570491791,0.0232315640896559,-0.141083478927612,-0.98962664604187,0.0271030180156231,-0.566176295280457,-0.824128866195679,-0.0160012412816286,-0.501576781272888,-0.864507675170898,-0.0323608927428722,-0.563214123249054,-0.825469553470612,-0.0372842103242874,-0.364657074213028,-0.931141078472137,0.00124789273831993,-0.474610954523087,-0.8790602684021,0.0446929819881916,-0.168933406472206,-0.981842875480652,-0.0862920060753822,-0.509031474590302,-0.858953416347504,-0.0555518716573715,-0.634744107723236,-0.772037744522095,-0.0325213745236397,-0.618196606636047,-0.786019682884216,-0.00245314044877887,-0.227743029594421,-0.973718583583832,0.00229837140068412,-0.140702247619629,-0.989651441574097,0.028159536421299,-0.125708699226379,-0.991760015487671,0.0246860012412071,-0.474762946367264,-0.878998875617981,0.0442841537296772,-0.227701887488365,-0.973726212978363,-0.00302543235011399,-0.169096320867538,-0.981777012348175,-0.0867199897766113,-0.205208346247673,-0.978685975074768,-0.00796784274280071,-0.150124460458755,-0.988665401935577,0.00189048540778458,-0.227649763226509,-0.97370320558548,-0.0088229002431035,-0.227772146463394,-0.973691582679749,0.00668990518897772,
- -0.467083126306534,-0.881848216056824,0.0646305605769157,-0.551051735877991,-0.834449827671051,0.00595530215650797,-0.619774878025055,-0.784742295742035,-0.00767122628167272,-0.550993859767914,-0.834362208843231,0.0156736709177494,-0.510802567005157,-0.857516467571259,-0.0612064898014069,-0.551060497760773,-0.834463059902191,-0.00193150818813592,-0.620732605457306,-0.783947110176086,-0.0108694266527891,-0.597480237483978,-0.801881313323975,-0.00192266318481416,-0.263131737709045,-0.964649379253387,0.0146104851737618,-0.196995258331299,-0.977732241153717,-0.0723377093672752,-0.263664275407791,-0.960012495517731,-0.0941126123070717,-0.217913344502449,-0.975752353668213,0.0205223374068737,-0.221220701932907,-0.97035938501358,-0.0972833931446075,-0.218912124633789,-0.975510895252228,-0.0213539656251669,-0.450056701898575,-0.892931640148163,-0.0110576245933771,-0.447257816791534,-0.894225835800171,0.0179065428674221,-0.453588873147964,-0.890782713890076,0.0276282150298357,-0.179809957742691,-0.983310341835022,-0.027734262868762,-0.182682931423187,-0.978075563907623,-0.0999758690595627,-0.202876940369606,-0.973315834999084,-0.107225239276886,-0.673137009143829,-0.739517569541931,-0.000600894854869694,-0.666221857070923,-0.744656443595886,0.0404382385313511,-0.676770031452179,-0.731595754623413,0.082158662378788,-0.569054365158081,-0.822130799293518,0.0166765637695789,-0.573831379413605,-0.818871080875397,0.0129486164078116,-0.566284596920013,-0.823239862918854,0.0399738252162933,-0.193868145346642,-0.974856615066528,-0.10986240208149,-0.13752669095993,-0.990484595298767,0.00516746332868934,-0.169058725237846,-0.985165238380432,-0.0294723268598318,-0.126426085829735,-0.991712033748627,-0.0228838212788105,-0.119391404092312,-0.984154284000397,-0.131095543503761,-0.141214773058891,-0.989617824554443,-0.026739003136754,-0.501075148582459,-0.864829003810883,0.0315360873937607,-0.565568447113037,-0.824548900127411,0.015858793631196,-0.562617480754852,-0.825783967971802,0.0392739549279213,-0.475335538387299,-0.878722906112671,-0.0436168424785137,
- -0.363154977560043,-0.931723952293396,0.00302301859483123,-0.169041261076927,-0.981799244880676,0.0865753591060638,-0.635361433029175,-0.771523296833038,0.0326744727790356,-0.508074760437012,-0.85963362455368,0.0537598580121994,-0.617966771125793,-0.786202549934387,0.00169843866024166,-0.140688210725784,-0.989652395248413,-0.0281984563916922,-0.227743178606033,-0.973718583583832,-0.00231561972759664,-0.125692680478096,-0.991761147975922,-0.0247262790799141,-0.227696791291237,-0.973725318908691,0.00363196455873549,-0.475555777549744,-0.878633439540863,-0.0430109016597271,-0.169289454817772,-0.981698870658875,0.0872273743152618,-0.227646932005882,-0.973701119422913,0.00911187753081322,-0.150215148925781,-0.988651990890503,-0.00163602037355304,-0.205207839608192,-0.978683590888977,0.0082562118768692,-0.46781200170517,-0.881509482860565,-0.0639765411615372,-0.227773815393448,-0.973689138889313,-0.00696848332881927,-0.551050782203674,-0.834448397159576,-0.00624056626111269,-0.509748220443726,-0.858283817768097,0.0592089295387268,-0.55098569393158,-0.834349751472473,-0.016590304672718,-0.619551002979279,-0.784925878047943,0.00692719640210271,-0.620784461498261,-0.783903479576111,0.0110434666275978,-0.551060318946838,-0.834462821483612,0.00213306397199631,-0.597479999065399,-0.801881015300751,0.00212329579517245,-0.386700421571732,-0.921895563602448,0.0239034183323383,-0.306764602661133,-0.951756954193115,0.0073606357909739,-0.353696823120117,-0.935331583023071,0.00732204550877213,-0.225127056241035,-0.973152160644531,0.0478824712336063,-0.306702226400375,-0.95156341791153,-0.021465728059411,-0.376040071249008,-0.926572799682617,-0.00753106456249952,-0.199263378977776,-0.979546666145325,-0.0279726646840572,-0.205207884311676,-0.978683888912201,-0.00822275690734386,-0.306762367486954,-0.951749742031097,-0.00832307152450085,-0.205213040113449,-0.978708386421204,0.00421047210693359,-0.200344696640968,-0.979409635066986,-0.0248788688331842,-0.199723780155182,-0.979581117630005,-0.0230530630797148,-0.200163260102272,-0.979433298110962,-0.0253983940929174,
- -0.128829181194305,-0.990080118179321,-0.0560746118426323,-0.199584573507309,-0.979599475860596,-0.0234752036631107,-0.396326810121536,-0.916728496551514,0.0503383949398994,-0.225559040904045,-0.972987294197083,0.0491839274764061,-0.376501470804214,-0.926395297050476,-0.00619601830840111,-0.116307079792023,-0.992908716201782,-0.0245949607342482,-0.126155018806458,-0.990384578704834,-0.0567758157849312,-0.20001046359539,-0.979453086853027,-0.0258357729762793,-0.21638260781765,-0.976065576076508,0.0217886902391911,-0.370364934206009,-0.927919507026672,0.0423692725598812,-0.378759980201721,-0.924955189228058,0.0316069945693016,-0.123341344296932,-0.99209463596344,-0.0231373719871044,-0.119877882301807,-0.990580856800079,-0.0661744773387909,-0.132027208805084,-0.989705979824066,-0.055235143750906,-0.353988945484161,-0.93450266122818,0.0373737886548042,-0.360400289297104,-0.932764768600464,0.00784482341259718,-0.357866048812866,-0.933382868766785,0.0269867219030857,-0.136481165885925,-0.988404095172882,-0.0665602907538414,-0.14208459854126,-0.989667594432831,-0.019241051748395,-0.139005586504936,-0.99012953042984,0.0179162248969078,-0.412029623985291,-0.911155045032501,0.00530170788988471,-0.393851697444916,-0.91783618927002,0.0495759658515453,-0.412383943796158,-0.910925030708313,0.012454966083169,-0.975538849830627,0.215133517980576,-0.0451829209923744,-0.935985267162323,0.219486385583878,0.275240868330002,-0.883300602436066,0.103293098509312,0.457286059856415,-0.143743246793747,-0.989456474781036,0.0177138056606054,-0.252105325460434,-0.967660069465637,-0.0087670162320137,-0.140980660915375,-0.987765610218048,-0.0666617900133133,-0.396403789520264,-0.917979955673218,0.0133063113316894,-0.253210604190826,-0.966412961483002,-0.043938685208559,-0.395984560251236,-0.918237030506134,0.00610069651156664,0.0472252853214741,-0.99888402223587,0.000717262155376375,-0.076463982462883,-0.994946002960205,-0.0650820806622505,-0.251235604286194,-0.967828989028931,0.0137092955410481,-0.251524358987808,-0.967828452587128,0.00660215318202972,
- -0.0078737698495388,-0.999968886375427,-0.000483117764815688,0.046893049031496,-0.998880088329315,-0.00631126528605819,-0.00787358358502388,-0.999945223331451,0.00690016150474548,-0.25126576423645,-0.967831075191498,0.0129806697368622,-0.22025565803051,-0.975417733192444,0.00691959261894226,-0.253112554550171,-0.966594517230988,-0.0403643548488617,-0.456337928771973,-0.889072120189667,-0.0361442267894745,-0.220115840435028,-0.974798798561096,-0.0362839363515377,-0.406969517469406,-0.792894601821899,0.453534930944443,-0.967479884624481,0.252927392721176,-0.00322680547833443,-0.9605872631073,0.275578290224075,0.0364518985152245,-0.457517057657242,-0.888980686664581,-0.0197925195097923,-0.25280886888504,-0.967052102088928,-0.0299647580832243,-0.380585849285126,-0.924637496471405,0.0141387488692999,-0.45743253827095,-0.889068067073822,-0.0177040714770556,-0.456525057554245,-0.889436721801758,-0.0220724679529667,-0.252741724252701,-0.967134892940521,-0.0277836285531521,-0.966076850891113,0.209971100091934,0.150358274579048,-0.398479789495468,-0.824770271778107,0.401208013296127,-0.972572445869446,0.22811159491539,-0.0454748757183552,-0.965982139110565,0.209657102823257,0.151401564478874,-0.377802044153214,-0.736064195632935,0.561671733856201,-0.396283358335495,-0.821541607379913,0.409913301467896,-0.999993324279785,7.29634873528617e-019,-0.00365003221668303,-0.999993324279785,7.29634873528617e-019,-0.00365003221668303,-0.999993324279785,7.29634873528617e-019,-0.00365003221668303,-0.999989092350006,1.46070500881759e-018,-0.0046679824590683,-0.999989092350006,1.46070500881759e-018,-0.0046679824590683,-0.999989092350006,1.46070500881759e-018,-0.0046679824590683,-0.999849140644073,0,-0.0173759888857603,-0.999849140644073,0,-0.0173759888857603,-0.999849140644073,0,-0.0173759888857603,-1,0,-0.00012246667756699,-1,0,-0.00012246667756699,-1,0,-0.00012246667756699,-1,0,-6.94021800882183e-005,-1,0,-6.94021800882183e-005,-1,0,-6.94021800882183e-005,-0.99999737739563,0,0.00233311182819307,-0.99999737739563,0,0.00233311182819307,-0.99999737739563,0,0.00233311182819307,
- -0.999988973140717,-1.46064638239168e-018,0.00469704018905759,-0.999988973140717,-1.46064638239168e-018,0.00469704018905759,-0.999988973140717,-1.46064638239168e-018,0.00469704018905759,-0.999994158744812,-7.29983530156808e-019,0.00344760133884847,-0.999994158744812,-7.29983530156808e-019,0.00344760133884847,-0.999994158744812,-7.29983530156808e-019,0.00344760133884847,-0.999962508678436,0,0.00867127161473036,-0.999962508678436,0,0.00867127161473036,-0.999962508678436,0,0.00867127161473036,-0.711068689823151,-0.701606571674347,0.0461484268307686,-0.703105449676514,-0.711085140705109,-0.000886169786099344,-0.749162018299103,-0.662374556064606,0.00402888935059309,-0.70241779088974,-0.711616516113281,-0.0145337181165814,-0.718925774097443,-0.694846153259277,0.0182921215891838,-0.790033578872681,-0.610307037830353,0.0580718889832497,-0.7034552693367,-0.710701942443848,0.00731331249698997,-0.81452476978302,-0.577445507049561,-0.0557323433458805,-0.946298718452454,-0.323169499635696,-0.00895319599658251,-0.718634903430939,-0.695117890834808,0.0193654261529446,-0.663751125335693,-0.746960282325745,0.0385321639478207,-0.789746999740601,-0.610574960708618,0.0591432377696037,-0.924092650413513,-0.382162481546402,-0.00215184688568115,-0.946256935596466,-0.323382347822189,0.00467474246397614,-0.818466424942017,-0.568709969520569,-0.0817430689930916,-0.924520254135132,-0.381093174219131,-0.00552654732018709,-0.867573261260986,-0.496882855892181,0.0205935519188643,-0.946000993251801,-0.323549449443817,0.0199477057904005,-0.926334321498871,-0.374304205179214,-0.0424389652907848,-0.924060165882111,-0.382242381572723,-0.00189906393643469,-0.818423390388489,-0.568815767765045,-0.0814359411597252,-0.641535818576813,-0.765855252742767,0.0435634292662144,-0.7155721783638,-0.697874367237091,0.0304608512669802,-0.644675314426422,-0.762308776378632,0.0572634115815163,-0.9245645403862,-0.38098007440567,-0.00588238704949617,-0.931373476982117,-0.361294001340866,-0.0448364987969399,-0.935263574123383,-0.35393500328064,0.0034758341498673,-0.754010617733002,-0.0712807923555374,-0.652983367443085,
- -0.90613067150116,-0.422551929950714,0.0194243527948856,-0.524861454963684,-0.424079596996307,-0.738022327423096,-0.904757857322693,-0.425451397895813,0.0201085694134235,-0.255145579576492,-0.227383106946945,-0.939785957336426,-0.524528205394745,-0.425053477287292,-0.737699031829834,-0.640232920646667,-0.767661571502686,0.0282404758036137,-0.646672487258911,-0.761587738990784,0.0424146875739098,-0.649474859237671,-0.758319973945618,0.0559751354157925,-0.935878932476044,-0.352308034896851,0.00310314656235278,-0.932073473930359,-0.359441488981247,-0.045176062732935,-0.93632036447525,-0.351049214601517,0.00829696655273438,-0.661426782608032,-0.74899160861969,0.0390664041042328,-0.655634641647339,-0.754505157470703,0.0294178519397974,-0.657579720020294,-0.753252744674683,-0.0141222411766648,-0.527116000652313,-0.84540730714798,0.0862275809049606,-0.511935889720917,-0.85846608877182,0.0309455264359713,-0.51189261674881,-0.858845591545105,0.0187200773507357,-0.966939985752106,-0.244135558605194,-0.0736541673541069,-0.624147713184357,-0.781140387058258,0.0161054786294699,-0.971401512622833,-0.232597276568413,0.0477244630455971,-0.623009204864502,-0.781970322132111,-0.0195499788969755,-0.340932905673981,-0.940064072608948,0.00667193066328764,-0.340458512306213,-0.939966201782227,0.0234859641641378,-0.621908366680145,-0.781985223293304,-0.0415819212794304,-0.622462689876556,-0.78159236907959,-0.0406640768051147,-0.571785569190979,-0.820077896118164,0.0231033749878407,-0.623091638088226,-0.781765818595886,-0.024475172162056,-0.671975314617157,-0.740454494953156,-0.0132783185690641,-0.669738292694092,-0.741970479488373,0.0305036641657352,-0.606189906597137,-0.795132219791412,-0.0172861199826002,-0.623261630535126,-0.78177797794342,-0.019186032935977,-0.62297135591507,-0.781978070735931,-0.020421177148819,-0.691205620765686,-0.722624003887177,-0.00702921766787767,-0.623574793338776,-0.781727612018585,-0.00752495601773262,-0.606265664100647,-0.795231521129608,-0.00698472512885928,-0.623219788074493,-0.781776964664459,-0.0205398239195347,
- -0.691041231155396,-0.722452163696289,-0.0229102820158005,-0.807889103889465,-0.588769674301147,-0.0257968604564667,-0.701194584369659,-0.712877154350281,-0.0115023804828525,-0.62342095375061,-0.781767249107361,-0.0136470180004835,-0.80807888507843,-0.588772892951965,-0.0188466720283031,-0.905088841915131,-0.424998253583908,-0.0138079402968287,-0.808197677135468,-0.588756084442139,-0.0135276447981596,-0.691156983375549,-0.722573161125183,-0.0137875955551863,-0.904998779296875,-0.42495596408844,0.0197397917509079,-0.929076671600342,-0.369438499212265,0.0182148609310389,-0.808391809463501,-0.588181436061859,0.0233503933995962,-0.909840404987335,-0.414926379919052,0.00515660690143704,-0.808350682258606,-0.588079750537872,0.0270440429449081,-0.929051518440247,-0.369306057691574,0.0218256581574678,-0.967775523662567,-0.251778990030289,0.00422891275957227,-0.929073929786682,-0.369839429855347,0.00635561253875494,-0.905166923999786,-0.425034940242767,0.00425660191103816,-0.769774854183197,0.6362424492836,0.0514022447168827,-0.6064213514328,0.792595982551575,-0.0635984614491463,-0.964813828468323,-0.251008480787277,0.0782881528139114,-0.946927845478058,-0.319540768861771,-0.0349487215280533,-0.947077691555023,-0.320856928825378,0.00973974913358688,-0.929066300392151,-0.369376718997955,0.0199160426855087,-0.941335737705231,-0.337471425533295,-0.000284161564195529,-0.941506028175354,-0.33687686920166,0.00897742994129658,-0.941415429115295,-0.335381656885147,-0.0354421623051167,-0.801069796085358,0.572834014892578,-0.173632904887199,-0.847106277942657,0.531422734260559,0.000911788723897189,-0.6453817486763,0.57912003993988,-0.498098790645599,-0.959114134311676,-0.28301727771759,-0.00113675557076931,-0.929036498069763,-0.369984805583954,0.0016270496416837,-0.967783570289612,-0.251781105995178,-0.00113751471508294,-0.953013241291046,-0.300973564386368,-0.0343614779412746,-0.929081499576569,-0.369792610406876,0.00782519299536943,-0.959100008010864,-0.283013075590134,0.00555067555978894,-0.853771269321442,-0.251932591199875,-0.455636471509933,
- -0.870841801166534,-0.226560458540916,-0.436239808797836,-0.643808662891388,0.714152574539185,-0.27476641535759,-0.644394636154175,0.711310029029846,-0.280701994895935,-0.819029569625854,0.57374233007431,0.00324113597162068,-0.911437332630157,-0.268948793411255,-0.31136554479599,-0.867588341236115,-0.496891498565674,-0.0197319705039263,-0.925043642520905,-0.379734963178635,0.00979092344641685,-0.946025967597961,-0.323540240526199,-0.0188835207372904,-0.946260273456573,-0.323377579450607,-0.00431952532380819,-0.924195349216461,-0.381908655166626,0.00295427022501826,-0.828195333480835,-0.555183827877045,0.0765732973814011,-0.82416957616806,-0.564139485359192,0.0499109737575054,-0.711333692073822,-0.70282107591629,-0.00685072224587202,-0.946299374103546,-0.323172926902771,0.00876087695360184,-0.710941672325134,-0.703247308731079,0.00230670790188015,-0.695021331310272,-0.71773761510849,-0.0424036681652069,-0.749161779880524,-0.662375569343567,-0.00391118880361319,-0.703674912452698,-0.710410892963409,-0.0125738121569157,-0.71024763584137,-0.703771710395813,0.0159270372241735,-0.799035131931305,-0.597649753093719,-0.0660143345594406,-0.828112244606018,-0.555390119552612,0.0759745687246323,-0.924132287502289,-0.382064700126648,0.00246104155667126,-0.925474047660828,-0.375553250312805,0.0495734326541424,-0.703573167324066,-0.71050500869751,-0.012939527630806,-0.798937797546387,-0.59773987531662,-0.0663736611604691,-0.661870360374451,-0.748860120773315,-0.0337063744664192,-0.930557608604431,-0.362429469823837,0.0520326122641563,-0.925200760364532,-0.379315614700317,0.0111023774370551,-0.933297216892242,-0.358494192361832,0.0209331158548594,-0.699933409690857,-0.713742792606354,-0.0257774814963341,-0.642831265926361,-0.765056192874908,-0.0381709896028042,-0.644536912441254,-0.762944340705872,-0.0498829521238804,-0.936270356178284,-0.35118243098259,-0.00829054042696953,-0.931532919406891,-0.359845399856567,0.0525139532983303,-0.934164464473724,-0.356196790933609,0.0214616991579533,-0.941839277744293,-0.335942536592484,-0.00902208592742682,
- -0.939846038818359,-0.340681225061417,0.0250145401805639,-0.936640799045563,-0.326184093952179,0.127702683210373,-0.64515233039856,-0.763126611709595,-0.0376331657171249,-0.638734221458435,-0.768913209438324,-0.0281263571232557,-0.646811246871948,-0.761053502559662,-0.0493256896734238,-0.654962062835693,-0.755090951919556,-0.0293662566691637,-0.660363495349884,-0.750173091888428,-0.0340642109513283,-0.656905889511108,-0.753839731216431,0.0141612682491541,-0.511922240257263,-0.858474254608154,-0.0309449434280396,-0.524773836135864,-0.847764134407043,-0.0768675804138184,-0.511875927448273,-0.858855545520782,-0.018718870356679,-0.632321178913116,-0.772902071475983,-0.0528443679213524,-0.737992823123932,-0.673611879348755,-0.0401697978377342,-0.489245355129242,-0.631031215190887,-0.602028727531433,-0.50136661529541,-0.864697396755219,-0.0304952561855316,-0.500682294368744,-0.865445852279663,-0.0179099719971418,-0.571732938289642,-0.819287359714508,0.0434703789651394,-0.572731137275696,-0.819204032421112,0.0297324396669865,-0.542189300060272,-0.839995801448822,-0.0209253765642643,-0.622895359992981,-0.781729698181152,0.0300014149397612,-0.671547889709473,-0.740841805934906,0.0133036663755775,-0.623079299926758,-0.781764149665833,0.0248387269675732,-0.669307112693787,-0.742360830307007,-0.0304703563451767,-0.597414195537567,-0.801792621612549,0.0149961598217487,-0.573510527610779,-0.819005131721497,0.0177859533578157,-0.623309791088104,-0.781777441501617,0.0175822041928768,-0.623573005199432,-0.781728327274323,0.00760140269994736,-0.695140659809113,-0.718838572502136,0.00711043225601316,-0.59746652841568,-0.801862895488739,0.00706131896004081,-0.807873845100403,-0.588768362998962,0.0262995604425669,-0.694967806339264,-0.7186598777771,0.0234049912542105,-0.623204112052917,-0.781776189804077,0.0210385750979185,-0.623416721820831,-0.781767904758453,0.0138042531907558,-0.701187372207642,-0.712884247303009,0.0115028275176883,-0.80807489156723,-0.5887730717659,0.019005186855793,-0.695093095302582,-0.718789517879486,0.013682615943253,
- -0.808199524879456,-0.588755667209625,0.0134375914931297,-0.905089974403381,-0.424998790025711,0.0137162422761321,-0.80834686756134,-0.58807098865509,-0.0273505952209234,-0.91001170873642,-0.414550572633743,-0.00517544895410538,-0.931735515594482,-0.362476497888565,-0.021902784705162,-0.931757569313049,-0.362582832574844,-0.0190192013978958,-0.904980063438416,-0.424947172403336,-0.0207662787288427,-0.808381259441376,-0.588153302669525,-0.0244017243385315,-0.946907520294189,-0.321359217166901,-0.00971595570445061,-0.941790163516998,-0.311363697052002,0.126822501420975,-0.931778013706207,-0.362779319286346,-0.0134576670825481,-0.931760728359222,-0.363021284341812,-0.00612103240564466,-0.967775523662567,-0.251779019832611,-0.00422258395701647,-0.905166983604431,-0.425034940242767,-0.0042502311989665,-0.816329658031464,0.576843321323395,0.0292870253324509,-0.76977950334549,0.63624632358551,-0.0512852557003498,-0.964831829071045,-0.251013159751892,-0.0780521705746651,-0.959068596363068,-0.283003807067871,-0.00982335209846497,-0.931778430938721,-0.362834602594376,-0.0118317315354943,-0.947684228420258,-0.293409436941147,0.12572069466114,-0.967782497406006,-0.251780807971954,0.00186735962051898,-0.931715548038483,-0.363188177347183,-0.000678155978675932,-0.95911318063736,-0.283016979694366,0.0018661260837689,-0.803513884544373,-0.209044262766838,0.557374119758606,-0.788287580013275,-0.232609495520592,0.569645047187805,-0.89924943447113,0.434405267238617,0.0514077767729759,-0.204598322510719,-0.0337599441409111,-0.978263676166534,-0.330921530723572,-0.140538409352303,-0.933134436607361,-0.991566896438599,-0.0669683218002319,-0.110951907932758,-0.330825358629227,-0.140900447964668,-0.933113932609558,-0.0778101086616516,-0.120274886488914,-0.989686608314514,-0.991840898990631,-0.0615588426589966,-0.111633934080601,-0.298253446817398,0.0721207112073898,-0.951758205890656,-0.971340894699097,-0.219923108816147,-0.0901701748371124,-0.600903332233429,-0.332160025835037,-0.727038443088531,-0.495807528495789,0.038476899266243,-0.867579638957977,
- -0.966428697109222,-0.241772085428238,-0.0869588702917099,-0.0708802491426468,-0.20165166258812,-0.976889252662659,-0.0507790446281433,-0.479745775461197,-0.875937044620514,0.130018994212151,0.114371158182621,-0.984893023967743,-0.121527493000031,-0.123356342315674,-0.984893023967743,-0.0869344472885132,-0.000512813276145607,-0.996213912963867,0.0205940008163452,0.0130877746269107,-0.999702274799347,-0.14054174721241,0.28376641869545,-0.948538184165955,0.131169468164444,0.11315082013607,-0.984881460666656,-0.0512609705328941,-0.479690074920654,-0.87593936920166,0.0880926549434662,0.591102421283722,-0.801771521568298,0.00322914053685963,0.0020521639380604,-0.999992668628693,-0.0862400904297829,-0.0102433441206813,-0.996221721172333,0.0790049880743027,0.00156697339843959,-0.996873080730438,0.674355566501617,0.382019102573395,-0.631906628608704,0.988101005554199,0.112299621105194,-0.105096206068993,0.352716594934464,-0.136407569050789,-0.925734400749207,0.133716225624084,-0.287787675857544,-0.948313355445862,-0.0274447686970234,-0.0174415335059166,-0.999471127986908,0.0804732888936996,-0.0193267036229372,-0.996569395065308,0.988751709461212,0.10553266108036,-0.105986379086971,0.436469942331314,-0.0851091220974922,-0.895684361457825,0.0685391798615456,0.138254165649414,-0.988022446632385,0.330902308225632,0.140610784292221,-0.933130383491516,0.204638436436653,0.0337157286703587,-0.978256821632385,0.99155068397522,0.0672712400555611,-0.11091361194849,0.0701720714569092,0.118159882724285,-0.990512073040009,0.331202983856201,0.139477759599686,-0.933193743228912,0.992038071155548,0.0572476200759411,-0.112174935638905
- }
- TangentsW: *651 {
- 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
- }
- }
- LayerElementTangent: 1 {
- Version: 102
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *1953 {
- a: 0.0102850068360567,0.0050522843375802,-0.999934434890747,0.0121665382757783,0.00296744843944907,-0.999921679496765,0.0121665382757783,0.00296744843944907,-0.999921679496765,-0.000755312794353813,-0.000371030910173431,-0.999999642372131,-0.00162537745200098,-0.000396433693822473,-0.99999862909317,-0.000279260886600241,-0.000184417425771244,-0.999999940395355,-0.645589232444763,0.763684868812561,6.61399326418177e-006,-0.623731732368469,0.781638503074646,6.61626927467296e-006,-0.62373673915863,0.781634390354156,-0.000408764230087399,-0.645473957061768,0.763548493385315,-0.0188948586583138,-0.623853743076324,0.781301975250244,-0.0193311050534248,-0.650154590606689,0.759576439857483,-0.0185106974095106,-0.649215042591095,0.76058030128479,0.00613385019823909,-0.623666286468506,0.781676471233368,0.00473967008292675,-0.62517523765564,0.780480563640594,0.00250540650449693,0.00409637996926904,-0.00433180062100291,-0.999982237815857,-0.00177091755904257,-0.00951168220490217,-0.999953210353851,0.00497294357046485,-0.00555799482390285,-0.999972283840179,-0.00845383200794458,0.00944839976727962,-0.999919652938843,-0.0134296808391809,0.0026775395963341,-0.999906241893768,-0.0317617356777191,-0.0119070187211037,-0.999424517154694,-0.0259053651243448,-0.0183868017047644,-0.999495387077332,-0.0025046612136066,0.00276986043900251,-0.999993026256561,-0.00251296767964959,0.00280861114151776,-0.999992907047272,-0.817463517189026,-0.566682100296021,0.103076845407486,-0.781155228614807,-0.621107578277588,-0.0634181499481201,-0.788550019264221,-0.608944714069366,0.0858789533376694,-0.830558598041534,-0.555319547653198,-0.0423398427665234,-0.826056241989136,-0.557357370853424,0.0835707411170006,-0.820710062980652,-0.566953003406525,-0.0707058310508728,-0.868514537811279,-0.494723290205002,-0.0305189117789268,-0.8620725274086,-0.504969954490662,0.0428523123264313,-0.865878105163574,-0.493748903274536,0.0804187282919884,-0.861128985881805,-0.506603419780731,0.0425430685281754,-0.867576122283936,-0.496347784996033,-0.0308313835412264,
- -0.901289701461792,-0.432300090789795,-0.0281692463904619,-0.903767168521881,-0.427821397781372,-0.0131806954741478,-0.859750628471375,-0.510383367538452,0.0183763336390257,-0.877700209617615,-0.476789146661758,0.0481093265116215,-0.903562664985657,-0.428211450576782,-0.0144720831885934,-0.843977332115173,-0.536359369754791,0.00457411492243409,-0.859558701515198,-0.510749638080597,0.0171357654035091,-0.8439861536026,-0.5363649725914,-4.19921207139851e-006,-0.901419401168823,-0.432077974081039,-0.0274174250662327,-0.88964718580246,-0.456647783517838,0.00083124270895496,-0.649215519428253,0.760579884052277,-0.00612270832061768,-0.625176906585693,0.780479073524475,-0.00249716197140515,-0.62366646528244,0.781676411628723,-0.0047280378639698,-0.650154709815979,0.759576261043549,0.0185139775276184,-0.623853802680969,0.781302034854889,0.0193341355770826,-0.645473957061768,0.763548493385315,0.0188977755606174,-0.623736917972565,0.781634271144867,0.000421993463532999,-0.623731732368469,0.781638503074646,6.61626927467296e-006,-0.645589232444763,0.763684868812561,6.61399326418177e-006,-0.00354515947401524,0.00374890817329288,0.999986708164215,-0.00245109153911471,0.00273945648223162,0.99999326467514,-0.00945293996483088,-0.00148048915434629,0.999954223632813,-0.00543148955330253,-0.00568492384627461,0.999969184398651,-0.00106025475542992,0.00118498946540058,0.99999874830246,-0.0242615155875683,-0.0202050022780895,0.999501466751099,-0.0243770312517881,-0.0200772359967232,0.99950122833252,-0.00104329129680991,0.00116603099741042,0.999998867511749,-0.000976834679022431,0.00108026328962296,0.999998927116394,-0.8439861536026,-0.5363649725914,-4.19921207139851e-006,-0.889647126197815,-0.456647872924805,-0.000839644460938871,-0.901420712471008,-0.43207573890686,0.0274098850786686,-0.843977391719818,-0.536359369754791,-0.00456251110881567,-0.903558969497681,-0.428218513727188,0.0144954901188612,-0.859555125236511,-0.510756492614746,-0.0171125698834658,-0.859747171401978,-0.510390222072601,-0.0183533560484648,-0.90376353263855,-0.427828401327133,0.0132038705050945,
- -0.877679526805878,-0.476827919483185,-0.0481021925806999,-0.901673018932343,-0.431640148162842,0.0259379409253597,-0.868557572364807,-0.494176983833313,0.037377554923296,-0.861824154853821,-0.505400836467743,-0.0427707992494106,-0.8697190284729,-0.493130385875702,-0.0202796049416065,-0.863575756549835,-0.502352654933929,-0.0433467738330364,-0.870312452316284,-0.491122901439667,0.0368046723306179,-0.893328547477722,-0.446189492940903,-0.0536566898226738,-0.902068614959717,-0.431422144174576,-0.0121394209563732,-0.902676403522491,-0.417018115520477,-0.10616609454155,-0.780175566673279,-0.622466027736664,0.0621461383998394,-0.742786347866058,-0.645396113395691,0.178135558962822,-0.772850513458252,-0.633344888687134,-0.039702981710434,-0.999869048595428,0,-0.0161826331168413,-0.999869048595428,0,-0.0161826331168413,-0.999869048595428,0,-0.0161826331168413,-1,0,0.0001473215961596,-1,0,0.0001473215961596,-1,0,0.0001473215961596,-0.999996066093445,7.95643938109137e-019,-0.00280179595574737,-0.999996066093445,7.95643938109137e-019,-0.00280179595574737,-0.999996066093445,7.95643938109137e-019,-0.00280179595574737,-0.999984860420227,-1.58052811760534e-018,0.00550504820421338,-0.999984860420227,-1.58052811760534e-018,0.00550504820421338,-0.999984860420227,-1.58052811760534e-018,0.00550504820421338,-0.999999225139618,0,0.00124897330533713,-0.999999225139618,0,0.00124897330533713,-0.999999225139618,0,0.00124897330533713,0.00192935334052891,-0.0058362940326333,-0.999981105327606,0.00192935334052891,-0.0058362940326333,-0.999981105327606,0.00192935334052891,-0.0058362940326333,-0.999981105327606,0.00191692856606096,-0.00579870957881212,-0.999981343746185,0.00191692856606096,-0.00579870957881212,-0.999981343746185,0.00191692856606096,-0.00579870957881212,-0.999981343746185,0.00190005626063794,-0.00574767077341676,-0.999981701374054,0.00190005626063794,-0.00574767077341676,-0.999981701374054,-0.00529171526432037,-0.00841447152197361,-0.999950587749481,-0.00532016390934587,-0.00833754427731037,-0.999951183795929,0.00955216586589813,-0.00270648649893701,-0.999950706958771,
- 0.00184070284012705,-0.00556812807917595,-0.999982893466949,0.872973263263702,0.487606674432755,-0.0125472471117973,0.915359973907471,0.402442753314972,-0.0124968057498336,0.915359973907471,0.402442753314972,-0.0124968057498336,0.915326476097107,0.40242800116539,-0.0151368193328381,0.872941672801971,0.487589031457901,-0.015159965492785,0.855260968208313,0.517996728420258,-0.0144255459308624,0.855226516723633,0.517994225025177,-0.0164259411394596,0.872934997081757,0.48758527636528,-0.0156632531434298,0.80822491645813,0.58866548538208,-0.0156732480973005,0.855298697948456,0.517997026443481,-0.0119668459519744,0.808293461799622,0.588672399520874,-0.011245746165514,0.812028408050537,0.583508729934692,-0.0112975919619203,0.8122438788414,0.583166003227234,-0.0133154056966305,0.8082435131073,0.588668286800385,-0.014564385637641,0.872950732707977,0.487594097852707,-0.0144565589725971,0.000216214102692902,-0.00117507972754538,0.999999284744263,0.000216214102692902,-0.00117507972754538,0.999999284744263,0.000216214102692902,-0.00117507972754538,0.999999284744263,-7.11391476215795e-005,0.000386628962587565,0.999999940395355,-7.11391476215795e-005,0.000386628962587565,0.999999940395355,-7.11391476215795e-005,0.000386628962587565,0.999999940395355,0.000635523290839046,-0.00345393037423491,0.999993860721588,0.000635523290839046,-0.00345393037423491,0.999993860721588,0.000635523290839046,-0.00345393037423491,0.999993860721588,0.000485195167129859,-0.00263692950829864,0.999996423721313,0.000485195167129859,-0.00263692950829864,0.999996423721313,0.000485195167129859,-0.00263692950829864,0.999996423721313,-0.000227288488531485,0.00123526342213154,0.999999225139618,-0.000227288488531485,0.00123526342213154,0.999999225139618,-0.000227288488531485,0.00123526342213154,0.999999225139618,-0.00101346662268043,0.00550797116011381,0.999984323978424,-0.00101346662268043,0.00550797116011381,0.999984323978424,-0.00101346662268043,0.00550797116011381,0.999984323978424,-0.000877047597896308,0.0047665648162365,0.999988257884979,-0.000877047597896308,0.0047665648162365,0.999988257884979,
- -0.000877047597896308,0.0047665648162365,0.999988257884979,-0.306758314371109,-0.951737403869629,-0.00977012421935797,-0.379981219768524,-0.924678206443787,-0.024175887927413,-0.346784502267838,-0.937894344329834,-0.0097311232239008,-0.369073927402496,-0.929377973079681,0.00640215491876006,-0.306711733341217,-0.951592862606049,0.0199782140552998,-0.224488541483879,-0.973392248153687,-0.0459607727825642,-0.205207213759422,-0.978680670261383,0.00861242134124041,-0.199157491326332,-0.979559600353241,0.0282753724604845,-0.306761354207993,-0.951746642589569,0.00871735904365778,-0.200508520007133,-0.979387819766998,0.024409519508481,-0.205212563276291,-0.978706121444702,-0.00472827209159732,-0.199880167841911,-0.979560196399689,0.0225785933434963,-0.225310236215591,-0.973082542419434,-0.0484341606497765,-0.388228714466095,-0.919965863227844,-0.0542336665093899,-0.370025873184204,-0.929013788700104,0.00377738871611655,-0.200335845351219,-0.979410707950592,0.0249041710048914,-0.199746757745743,-0.979578077793121,0.0229833517223597,-0.129359737038612,-0.990018844604492,0.05593541264534,-0.127809211611748,-0.990197241306305,0.0563421547412872,-0.117935992777348,-0.992724895477295,0.0242576543241739,-0.200547903776169,-0.979382574558258,0.0242966748774052,-0.369402289390564,-0.928021311759949,-0.0481500998139381,-0.214553728699684,-0.976574778556824,-0.0163908991962671,-0.381228148937225,-0.923921644687653,-0.0321546234190464,-0.134034380316734,-0.989465534687042,0.0547077693045139,-0.121566601097584,-0.990308165550232,0.0671677067875862,-0.125394567847252,-0.991846978664398,0.0227114297449589,-0.357626169919968,-0.933830738067627,-0.00797922164201736,-0.350498676300049,-0.935617685317993,-0.0420738607645035,-0.355916053056717,-0.934140503406525,-0.0265569239854813,-0.139021351933479,-0.990127325057983,-0.0179155524820089,-0.142125338315964,-0.989661812782288,0.0192325599491596,-0.135945796966553,-0.988406360149384,0.0676140114665031,-0.400591671466827,-0.914403438568115,-0.0582464970648289,-0.416663438081741,-0.909046709537506,-0.0050694695673883,
- -0.423628300428391,-0.893257260322571,-0.150435224175453,-0.143644407391548,-0.989470839500427,-0.0177180357277393,-0.140420079231262,-0.987771272659302,0.0677501633763313,-0.252121597528458,-0.967651724815369,0.00922081246972084,-0.410611182451248,-0.899107217788696,-0.151673078536987,-0.403010010719299,-0.915177524089813,-0.00575183052569628,-0.252629488706589,-0.96725982427597,0.0242226962000132,-0.0765275880694389,-0.994901597499847,0.0656838640570641,0.0472547523677349,-0.998881995677948,-0.00134296831674874,-0.251209169626236,-0.967826545238495,-0.0143437031656504,-0.00787377078086138,-0.999968945980072,-0.000359856843715534,-0.251491516828537,-0.967831015586853,-0.00742687983438373,0.0469315499067307,-0.998883068561554,0.00549927493557334,-0.235160201787949,-0.971956014633179,-0.00117906054947525,-0.251456767320633,-0.967832982540131,-0.00829415116459131,-0.00787375122308731,-0.999966502189636,-0.00223729386925697,-0.456442147493362,-0.889275133609772,0.0291593782603741,-0.252912253141403,-0.966912448406219,0.0334022454917431,-0.234842672944069,-0.971623718738556,0.0282184164971113,-0.921814680099487,0.37897726893425,0.081449031829834,-0.456170082092285,-0.888751626014709,-0.0450492389500141,-0.961221098899841,0.275760114192963,-0.00322089460678399,-0.252975851297379,-0.966818571090698,0.035567119717598,-0.442051231861115,-0.896604716777802,0.0262818336486816,-0.387172430753708,-0.909088313579559,-0.153804779052734,-0.252776145935059,-0.967093288898468,0.0288961324840784,-0.456513404846191,-0.889414012432098,0.0232046619057655,-0.441794455051422,-0.896899104118347,0.0197450257837772,-0.0208561066538095,-0.0406339764595032,-0.998956501483917,-0.958866655826569,0.276544719934464,0.0640136897563934,0.037361029535532,-0.0487086065113544,-0.998114049434662,0.603407919406891,-0.302151381969452,-0.737972617149353,0.943549513816834,-0.305960386991501,-0.126896858215332,0.955479443073273,-0.287736743688583,0.0653193518519402,0.921142756938934,-0.350235164165497,0.169797882437706,0.934250891208649,-0.349604785442352,0.0703691393136978,
- 0.927038490772247,-0.352746605873108,-0.127159208059311,0.999211311340332,-0.000582118169404566,0.0397066809237003,0.98748767375946,0.00747876847162843,0.15751938521862,0.965619027614594,0.0340755619108677,0.257718324661255,0.931256771087646,-0.350668430328369,-0.0989570096135139,0.92118912935257,-0.350113421678543,0.169797509908676,0.927085161209106,-0.352624326944351,-0.127158954739571,0.625909745693207,-0.759300172328949,0.178045645356178,0.64085853099823,-0.76041966676712,-0.105177477002144,0.647281527519226,-0.754827320575714,-0.106125392019749,0.831837058067322,-0.545007586479187,-0.104947932064533,0.819118559360504,-0.541389167308807,0.189585268497467,0.820691406726837,-0.546636462211609,0.166295349597931,0.385381877422333,0.137980937957764,0.912382662296295,0.964992702007294,0.00585918314754963,0.262211382389069,0.985410034656525,0.0748018696904182,0.152878299355507,0.965404629707336,0.0199777092784643,0.259990066289902,0.386848658323288,0.162342295050621,0.907740771770477,0.360805124044418,0.178479000926018,0.915404260158539,0.750112593173981,-0.634344935417175,0.186916038393974,0.250237464904785,-0.301235139369965,0.920129656791687,0.765778958797455,-0.622274041175842,0.162350192666054,0.886562883853912,-0.430476099252701,0.169400542974472,0.350332826375961,-0.129551336169243,0.927622437477112,0.302601397037506,-0.368853211402893,0.878851473331451,0.161987945437431,-0.431480199098587,0.887459695339203,0.669192254543304,-0.720558106899261,0.181597873568535,0.175653249025345,-0.354858964681625,0.918270707130432,-0.0137896807864308,-0.0244936384260654,0.999604880809784,0.33038455247879,-0.0806445106863976,0.940394878387451,0.362076640129089,-0.0803173184394836,0.928681671619415,0.309449344873428,-0.203226923942566,0.928945600986481,-0.0163936205208302,-0.0356406457722187,0.999230206012726,0.35990434885025,-0.0947007536888123,0.928170561790466,0.00225293007679284,0.0107447355985641,0.999939739704132,0.337296068668365,-0.0360812768340111,0.94070702791214,-0.00543722417205572,0.0112312557175756,0.999922156333923,
- -0.00625796196982265,0.00772287417203188,0.999950587749481,0.319580107927322,-0.185467481613159,0.9292311668396,-0.00385566218756139,-0.0058385725133121,0.999975621700287,0.287322223186493,-0.221209302544594,0.931940138339996,-0.000561109976842999,-0.000849683419801295,0.999999582767487,0.319508969783783,-0.18559330701828,0.929230511188507,0.00323436851613224,0.00489775883033872,0.99998277425766,0.288271695375443,-0.21999591588974,0.931934118270874,0.00297375419177115,0.00399109022691846,0.999987602233887,0.947226166725159,-0.294428378343582,0.126785427331924,0.605283796787262,-0.295591413974762,0.739092171192169,0.958362698554993,-0.275195598602295,-0.0762136206030846,0.925607681274414,-0.35648176074028,0.127166748046875,0.932684540748596,-0.350917816162109,-0.0834044143557549,0.920964479446411,-0.355332732200623,-0.159885227680206,0.925677061080933,-0.356301426887512,0.127166420221329,0.921034395694733,-0.355151027441025,-0.159885689616203,0.929829657077789,-0.354392826557159,0.0991097837686539,0.988601267337799,-0.004154481459409,-0.150500044226646,0.998782336711884,-0.00881316792219877,-0.0485403053462505,0.967479586601257,0.0252965874969959,-0.251681119203568,0.640931129455566,-0.760358273983002,0.105178855359554,0.625983655452728,-0.759237766265869,-0.178052067756653,0.647354543209076,-0.754765629768372,0.106118723750114,0.82086855173111,-0.538718819618225,-0.189622908830643,0.833560287952423,-0.542378008365631,0.104896865785122,0.823871791362762,-0.544957458972931,-0.155746132135391,0.967597603797913,0.0373778715729713,-0.249715402722359,0.386974006891251,0.164623081684113,-0.907276332378387,0.982533156871796,0.119493193924427,-0.142653450369835,0.387502193450928,0.174677848815918,-0.905168354511261,0.967568099498749,0.0325796082615852,-0.250500708818436,0.361608028411865,0.190095037221909,-0.91274505853653,0.239374056458473,-0.3057681620121,-0.921523690223694,0.741277754306793,-0.644786477088928,-0.186434179544449,0.759487986564636,-0.632782816886902,-0.15087802708149,0.350615233182907,-0.114536456763744,-0.929489314556122,
- 0.893716990947723,-0.419385194778442,-0.159330561757088,0.305810630321503,-0.356761157512665,-0.882723927497864,0.669102966785431,-0.720642745494843,-0.181591004133224,0.155642956495285,-0.42921581864357,-0.889690399169922,0.175586774945259,-0.354933500289917,-0.918254613876343,0.328800737857819,-0.0902648791670799,-0.940075695514679,-0.015870613977313,-0.0334013812243938,-0.999316096305847,0.360609501600266,-0.0900890901684761,-0.928356051445007,-0.0183596275746822,-0.0440597794950008,-0.99886018037796,0.298986315727234,-0.207718759775162,-0.93137538433075,0.358519554138184,-0.103606402873993,-0.927755057811737,-0.00656965142115951,0.00639039278030396,-0.999958097934723,0.336501479148865,-0.0414422377943993,-0.94077056646347,0.00123012671247125,0.00586675014346838,-0.999982059001923,0.313170075416565,-0.182952910661697,-0.931908130645752,-0.00645085237920284,0.00689826766029,-0.999955415725708,-0.00434617092832923,-0.00658134277909994,-0.999968886375427,0.313980758190155,-0.181519210338593,-0.931915700435638,-0.000108916290628258,-0.000164932891493663,-1,0.287877976894379,-0.220499321818352,-0.931936979293823,0.288260370492935,-0.22001039981842,-0.931934237480164,0.00322526693344116,0.00488397665321827,-0.999982893466949,0.00296366680413485,0.00397755205631256,-0.999987721443176,-0.387544989585876,-0.921471297740936,0.0264487229287624,-0.306756883859634,-0.951732993125916,0.0102339442819357,-0.353687942028046,-0.93530809879303,0.0101802302524447,-0.224831357598305,-0.97326385974884,0.0469921939074993,-0.306695640087128,-0.951542913913727,-0.0224474277347326,-0.375741183757782,-0.926686644554138,-0.0083946418017149,-0.199171856045723,-0.979557752609253,-0.0282342080026865,-0.205207392573357,-0.97868150472641,-0.00851458124816418,-0.306761592626572,-0.951747357845306,-0.00861846096813679,-0.205212593078613,-0.978706240653992,0.00470454338937998,-0.20049574971199,-0.979389548301697,-0.0244460757821798,-0.19986829161644,-0.979561865329742,-0.0226147212088108,-0.200322046875954,-0.979412496089935,-0.024943683296442,-0.129306092858315,-0.990025162696838,-0.0559494979679585,
- -0.199733838438988,-0.97957968711853,-0.0230224374681711,-0.395269185304642,-0.917202949523926,0.0500125214457512,-0.225178256630898,-0.97313266992569,0.0480366535484791,-0.376112729310989,-0.926545023918152,-0.00732099544256926,-0.11796635389328,-0.992721438407898,-0.0242513660341501,-0.127841085195541,-0.990193605422974,-0.0563337914645672,-0.200563862919807,-0.979380428791046,-0.024250939488411,-0.216317355632782,-0.976084232330322,0.0215958375483751,-0.370183974504471,-0.92799437046051,0.0423139408230782,-0.378583461046219,-0.925028681755066,0.0315678603947163,-0.12547755241394,-0.991836845874786,-0.0226942114531994,-0.122092418372631,-0.990306735038757,-0.0662269592285156,-0.134117126464844,-0.98945552110672,-0.0546860210597515,-0.353354662656784,-0.934750378131866,0.0371807813644409,-0.35971474647522,-0.933029174804688,0.00787806045264006,-0.357208222150803,-0.933638989925385,0.0268417093902826,-0.137034550309181,-0.988326668739319,-0.0665728449821472,-0.142614006996155,-0.989593505859375,-0.0191307291388512,-0.13955719769001,-0.990052342414856,0.0178926847875118,-0.41178235411644,-0.91126674413681,0.00531408190727234,-0.39361846446991,-0.917940020561218,0.0495041608810425,-0.412136793136597,-0.911036789417267,0.0124682178720832,-0.974571168422699,0.219455853104591,-0.045280959457159,-0.935125470161438,0.22312219440937,0.275239676237106,-0.885899901390076,0.105514653027058,0.451716780662537,-0.144418701529503,-0.989358723163605,0.0176849029958248,-0.252116858959198,-0.96765410900116,-0.00908920727670193,-0.141651749610901,-0.987668454647064,-0.0666768103837967,-0.39632460474968,-0.918013989925385,0.0133104985579848,-0.253208667039871,-0.966416597366333,-0.0438674055039883,-0.395905554294586,-0.918270945549011,0.00610460666939616,0.0472285337746143,-0.998883903026581,0.000786043354310095,-0.076370894908905,-0.994953453540802,-0.0650796145200729,-0.251232743263245,-0.967828750610352,0.0137781128287315,-0.251514822244644,-0.967829287052155,0.0068425415083766,-0.00787377171218395,-0.999969065189362,-0.000245844101300463,
- 0.0469043403863907,-0.998880922794342,-0.00607301248237491,-0.0078735863789916,-0.999945521354675,0.00685360236093402,-0.251267701387405,-0.967831194400787,0.0129338763654232,-0.220255702733994,-0.975417971611023,0.00687290215864778,-0.253072917461395,-0.966662704944611,-0.0389525070786476,-0.456360876560211,-0.889116823673248,-0.0347278565168381,-0.220126956701279,-0.974848031997681,-0.0348623543977737,-0.456170082092285,-0.888751626014709,-0.0450492389500141,-0.964122295379639,0.262364476919174,-0.0404115095734596,-0.961221098899841,0.275760114192963,-0.00322089460678399,-0.457531481981277,-0.888965129852295,-0.0201537739485502,-0.252819836139679,-0.967038154602051,-0.0303239040076733,-0.3809914290905,-0.924470901489258,0.0141175352036953,-0.457447588443756,-0.889052927494049,-0.0180722866207361,-0.456521362066269,-0.88942950963974,-0.0224413927644491,-0.25275319814682,-0.967121064662933,-0.0281546544283628,-0.966850638389587,0.21268530189991,0.141297578811646,-0.405206441879272,-0.834514021873474,0.373355180025101,-0.971957385540009,0.230706840753555,-0.045532401651144,-0.966850638389587,0.21268530189991,0.141297578811646,-0.386014342308044,-0.752064049243927,0.534221470355988,-0.405206441879272,-0.834514021873474,0.373355180025101,-0.999993324279785,8.02281183645474e-019,-0.00365003221668303,-0.999993324279785,8.02281183645474e-019,-0.00365003221668303,-0.999993324279785,8.02281183645474e-019,-0.00365003221668303,-0.999981880187988,1.60367014960273e-018,-0.0060198362916708,-0.999981880187988,1.60367014960273e-018,-0.0060198362916708,-0.999981880187988,1.60367014960273e-018,-0.0060198362916708,-1,0,-7.22555751053733e-006,-1,0,-7.22555751053733e-006,-1,0,-7.22555751053733e-006,-0.999999284744263,0,-0.00121167348697782,-0.999999284744263,0,-0.00121167348697782,-0.999999284744263,0,-0.00121167348697782,-1,0,-6.94021800882183e-005,-1,0,-6.94021800882183e-005,-1,0,-6.94021800882183e-005,-0.999999463558197,0,-0.00112575688399374,-0.999999463558197,0,-0.00112575688399374,-0.999999463558197,0,-0.00112575688399374,-0.999998867511749,0,-0.00150998414028436,
- -0.999998867511749,0,-0.00150998414028436,-0.999998867511749,0,-0.00150998414028436,-0.999999463558197,4.01454739509748e-019,-0.00103893165942281,-0.999999463558197,4.01454739509748e-019,-0.00103893165942281,-0.999999463558197,4.01454739509748e-019,-0.00103893165942281,-0.999242663383484,0,0.038911908864975,-0.999242663383484,0,0.038911908864975,-0.999242663383484,0,0.038911908864975,-0.711038172245026,-0.701630651950836,0.0462523847818375,-0.703110694885254,-0.711080074310303,-0.000770329323131591,-0.749162316322327,-0.662373602390289,0.00414646463468671,-0.702428460121155,-0.711609899997711,-0.0143397813662887,-0.718880414962769,-0.694888591766357,0.0184596572071314,-0.789987862110138,-0.610349833965302,0.0582428611814976,-0.703439235687256,-0.710721790790558,0.00691185146570206,-0.814585566520691,-0.57732367515564,-0.0561047457158566,-0.946297347545624,-0.323162406682968,-0.00934992264956236,-0.718585610389709,-0.695163786411285,0.019546952098608,-0.663606882095337,-0.747086763381958,0.0385653711855412,-0.789697527885437,-0.61062103509903,0.0593278259038925,-0.924084842205048,-0.382181733846664,-0.00209093722514808,-0.946256279945374,-0.323383271694183,0.00474392808973789,-0.818457722663879,-0.568731129169464,-0.0816815420985222,-0.924418091773987,-0.381351500749588,-0.00471257092431188,-0.867556393146515,-0.49687322974205,0.0215154755860567,-0.945978939533234,-0.323556959629059,0.0208504796028137,-0.926311075687408,-0.374363034963608,-0.0424280725419521,-0.924052476882935,-0.382261216640472,-0.00183940352872014,-0.818414688110352,-0.568837106227875,-0.0813740417361259,-0.641883254051209,-0.765568315982819,0.0434859730303288,-0.71571147441864,-0.697753071784973,0.0299641638994217,-0.645029306411743,-0.762016355991364,0.0571687072515488,-0.924517929553986,-0.381098717451096,-0.00550891924649477,-0.931242823600769,-0.361638098955154,-0.0447733700275421,-0.935130774974823,-0.354284942150116,0.00355601962655783,-0.754306793212891,-0.071540467441082,-0.652612626552582,-0.905739307403564,-0.42338091135025,0.0196198970079422,
- -0.524661004543304,-0.424665540456772,-0.737827897071838,-0.904272675514221,-0.426470190286636,0.0203491784632206,-0.254687011241913,-0.227997109293938,-0.939761698246002,-0.524296939373016,-0.425727725028992,-0.737474501132965,-0.640782654285431,-0.76720118522644,0.028282355517149,-0.647209167480469,-0.761138319969177,0.0422941595315933,-0.650005400180817,-0.757875978946686,0.0558321811258793,-0.935721814632416,-0.352724373340607,0.00319849140942097,-0.931913793087006,-0.359865009784698,-0.0450984723865986,-0.936157822608948,-0.351482927799225,0.00827605277299881,-0.661351144313812,-0.749057471752167,0.0390837527811527,-0.655557215213776,-0.754572689533234,0.0294119119644165,-0.657502174377441,-0.753320336341858,-0.0141267338767648,-0.526807904243469,-0.845592200756073,0.0862976536154747,-0.511618494987488,-0.85865581035614,0.0309320222586393,-0.511576116085052,-0.859034538269043,0.018697164952755,-0.967816770076752,-0.240399375557899,-0.074423111975193,-0.624151110649109,-0.781134247779846,0.0162687972187996,-0.972320795059204,-0.22872120141983,0.0477373749017715,-0.622989475727081,-0.781974375247955,-0.020004328340292,-0.328671008348465,-0.944426476955414,0.0058308276347816,-0.328160226345062,-0.944343507289886,0.0229394100606442,-0.621919989585876,-0.781986832618713,-0.0413778610527515,-0.622471511363983,-0.781595826148987,-0.0404622182250023,-0.571921229362488,-0.819982826709747,0.0231134202331305,-0.623096227645874,-0.781766474246979,-0.0243408121168613,-0.672061145305634,-0.740376710891724,-0.0132732298225164,-0.669825434684753,-0.741891503334045,0.0305103957653046,-0.606196343898773,-0.79514068365097,-0.016652038320899,-0.623280882835388,-0.78177797794342,-0.018551379442215,-0.622998893260956,-0.781972408294678,-0.0197871793061495,-0.691205680370331,-0.722624063491821,-0.00700830249115825,-0.623575270175934,-0.781727433204651,-0.00750419730320573,-0.606265723705292,-0.795231640338898,-0.00696394173428416,-0.623205006122589,-0.781776249408722,-0.021009998396039,-0.691033780574799,-0.722444355487823,-0.0233776941895485,
- -0.807874739170074,-0.588768422603607,-0.0262707285583019,-0.701155424118042,-0.71291571855545,-0.0115048233419657,-0.623415112495422,-0.781768262386322,-0.0138635961338878,-0.808073461055756,-0.588773190975189,-0.0190648622810841,-0.90508896112442,-0.424998313188553,-0.0137973679229617,-0.808197796344757,-0.588756024837494,-0.0135172680020332,-0.691157102584839,-0.722573280334473,-0.0137770380824804,-0.90499073266983,-0.424952179193497,0.0201844610273838,-0.929074227809906,-0.369422405958176,0.0186601988971233,-0.808387398719788,-0.588169395923615,0.0238044112920761,-0.909882187843323,-0.414834678173065,0.00516120437532663,-0.808348059654236,-0.58807384967804,0.0272495355457067,-0.929049730300903,-0.369298487901688,0.0220280792564154,-0.967775464057922,-0.251778990030289,0.00424663163721561,-0.929074048995972,-0.369838863611221,0.00637330999597907,-0.905166864395142,-0.425034910440445,0.00427443673834205,-0.769928455352783,0.636369407176971,0.0473748184740543,-0.607353925704956,0.791571617126465,-0.0673482269048691,-0.96526050567627,-0.251124680042267,0.0721717998385429,-0.946687877178192,-0.320248782634735,-0.0349709279835224,-0.946837186813354,-0.321566671133041,0.00970612652599812,-0.929068088531494,-0.369386434555054,0.0196504779160023,-0.941277384757996,-0.337634205818176,-0.000247102463617921,-0.941445052623749,-0.337047040462494,0.00896929018199444,-0.94135445356369,-0.335552185773849,-0.0354474373161793,-0.801284849643707,0.572546005249023,-0.173590436577797,-0.84733110666275,0.531064450740814,0.000892374606337398,-0.645356774330139,0.578931212425232,-0.498350560665131,-0.959113240242004,-0.283016979694366,-0.0017905825516209,-0.929029524326324,-0.370004266500473,0.000971596920862794,-0.967782616615295,-0.251780837774277,-0.00179177790414542,-0.952893137931824,-0.301352083683014,-0.0343735441565514,-0.929080128669739,-0.369801729917526,0.00754000386223197,-0.959101498126984,-0.283013522624969,0.0052783414721489,-0.848026633262634,-0.250237435102463,-0.4671531021595,-0.865466296672821,-0.225161954760551,-0.447515606880188,
- -0.644442558288574,0.711069941520691,-0.281199842691422,-0.644911885261536,0.708651483058929,-0.286184757947922,-0.821529388427734,0.570158064365387,0.00304096983745694,-0.909749865531921,-0.268450826406479,-0.316684901714325,-0.867573201656342,-0.496882855892181,-0.0206010732799768,-0.9249507188797,-0.379979878664017,0.00902356114238501,-0.946006119251251,-0.323547631502151,-0.0197327919304371,-0.946253061294556,-0.323387682437897,-0.00507447309792042,-0.924110472202301,-0.382118582725525,0.00229064282029867,-0.82810252904892,-0.555413842201233,0.0759055465459824,-0.824223756790161,-0.564030885696411,0.0502429865300655,-0.711319506168365,-0.702838897705078,-0.00649245409294963,-0.946298182010651,-0.323166608810425,0.00911583192646503,-0.711022436618805,-0.703169167041779,0.000529104610905051,-0.694541394710541,-0.718106806278229,-0.0439888015389442,-0.749164700508118,-0.662359118461609,-0.0057149869389832,-0.703805446624756,-0.710289657115936,-0.0121038882061839,-0.710216820240021,-0.703790128231049,0.0164769049733877,-0.799165904521942,-0.597528040409088,-0.0655298382043839,-0.828000366687775,-0.555665969848633,0.0751727148890495,-0.92403256893158,-0.382310062646866,0.00168490817304701,-0.925169289112091,-0.376322507858276,0.0494285188615322,-0.70373398065567,-0.710356056690216,-0.012361234985292,-0.79909759759903,-0.597591578960419,-0.0657828003168106,-0.662335216999054,-0.748453974723816,-0.0335958302021027,-0.930463433265686,-0.362677872180939,0.0519862920045853,-0.925169944763184,-0.379398465156555,0.010843601077795,-0.933201730251312,-0.358746141195297,0.0208751074969769,-0.699998557567596,-0.713687002658844,-0.0255518406629562,-0.642999887466431,-0.7649165391922,-0.0381319895386696,-0.64470636844635,-0.762803733348846,-0.0498414821922779,-0.936160504817963,-0.351475775241852,-0.00827639736235142,-0.931425392627716,-0.360131651163101,0.0524606928229332,-0.934058547019959,-0.356478363275528,0.0213969480246305,-0.941853642463684,-0.335902154445648,-0.00902401562780142,-0.939859807491302,-0.34064257144928,0.0250233579427004,
- -0.936655282974243,-0.32614341378212,0.127700313925743,-0.64541757106781,-0.762905478477478,-0.0375716127455235,-0.639006674289703,-0.768686056137085,-0.0281470976769924,-0.647075593471527,-0.760832846164703,-0.0492607839405537,-0.654902100563049,-0.755143105983734,-0.0293616577982903,-0.660305082798004,-0.750223934650421,-0.0340780727565289,-0.656845808029175,-0.753891885280609,0.0141647420823574,-0.511608719825745,-0.858661592006683,-0.0309316087514162,-0.524468243122101,-0.847947299480438,-0.0769311189651489,-0.511563360691071,-0.859042108058929,-0.018696241080761,-0.648565530776978,-0.759586930274963,-0.0488945841789246,-0.751959800720215,-0.6579509973526,-0.0407063364982605,-0.489177614450455,-0.630915403366089,-0.602205157279968,-0.499784886837006,-0.865614950656891,-0.0304277520626783,-0.499078899621964,-0.866373956203461,-0.0177943557500839,-0.571633040904999,-0.819287240505219,0.0447675548493862,-0.57276314496994,-0.819198489189148,0.029265608638525,-0.542493283748627,-0.839799046516418,-0.0209476258605719,-0.622912347316742,-0.781733572483063,0.0295437145978212,-0.671627223491669,-0.740769982337952,0.0132989631965756,-0.623083531856537,-0.78176474571228,0.0247145090252161,-0.669387698173523,-0.742287874221802,-0.0304765813052654,-0.59742259979248,-0.801803946495056,0.0140242232009768,-0.573570013046265,-0.818983852863312,0.0168183445930481,-0.623338222503662,-0.781776010990143,0.0166074931621552,-0.623573839664459,-0.781727850437164,0.0075648594647646,-0.695140838623047,-0.718838810920715,0.0070735914632678,-0.597466647624969,-0.801863014698029,0.00702473055571318,-0.807878017425537,-0.588768780231476,0.0261662229895592,-0.694969952106476,-0.718662142753601,0.0232734754681587,-0.623208284378052,-0.781776428222656,0.0209062714129686,-0.623419106006622,-0.781767547130585,0.0137156629934907,-0.701203167438507,-0.712868750095367,0.0115018459036946,-0.808077096939087,-0.58877295255661,0.0189159326255322,-0.695093214511871,-0.718789577484131,0.0136716989800334,-0.80819970369339,-0.58875560760498,0.0134268552064896,
- -0.905090153217316,-0.424998849630356,0.0137053020298481,-0.808351933956146,-0.588082551956177,-0.0269469618797302,-0.909927725791931,-0.414734929800034,-0.00516620697453618,-0.931739032268524,-0.362491339445114,-0.0215050242841244,-0.9317626953125,-0.362615048885345,-0.0181276258081198,-0.904996335506439,-0.424954801797867,-0.0198763813823462,-0.808390438556671,-0.588177680969238,-0.0234930906444788,-0.947010636329651,-0.321054816246033,-0.00973037537187338,-0.941894471645355,-0.31105563044548,0.126803934574127,-0.931777894496918,-0.362775951623917,-0.0135558666661382,-0.931760787963867,-0.363020926713943,-0.00613241782411933,-0.967775523662567,-0.251778990030289,-0.00423398846760392,-0.905166923999786,-0.425034910440445,-0.00426171021535993,-0.816621422767639,0.576426804065704,0.0293567962944508,-0.769931733608246,0.636372089385986,-0.0472828894853592,-0.96527361869812,-0.251128107309341,-0.0719824656844139,-0.959067761898041,-0.283003598451614,-0.00989760644733906,-0.931778490543365,-0.362831920385361,-0.0119119677692652,-0.947741031646729,-0.293230444192886,0.125709503889084,-0.967783033847809,-0.251780956983566,0.0015286224661395,-0.931719183921814,-0.363178104162216,-0.00101730588357896,-0.959113657474518,-0.283017128705978,0.001527612330392,-0.80661940574646,-0.209852203726768,0.552564263343811,-0.791471183300018,-0.233548909425735,0.564825892448425,-0.898936748504639,0.435062915086746,0.0513128787279129,-0.188066601753235,-0.0518975965678692,-0.980784177780151,-0.323906421661377,-0.166452676057816,-0.931331396102905,-0.986333191394806,-0.128663197159767,-0.102920480072498,-0.324326187372208,-0.164929553866386,-0.931456387042999,-0.075710766017437,-0.14568518102169,-0.986429750919342,-0.987083792686462,-0.122023969888687,-0.103807270526886,-0.306729018688202,0.0819840729236603,-0.94825941324234,-0.975092470645905,-0.201434373855591,-0.0928390100598335,-0.60735559463501,-0.329171866178513,-0.723025023937225,-0.481722563505173,0.0498010255396366,-0.874907553195953,-0.981338620185852,-0.165499106049538,-0.097900815308094,
- -0.073949471116066,-0.166478961706162,-0.983268141746521,-0.0498385652899742,-0.479853928089142,-0.875931680202484,0.130703300237656,0.113645419478416,-0.984886586666107,-0.120841130614281,-0.124080933630466,-0.984886467456818,-0.0868289992213249,-0.00199802056886256,-0.996221244335175,0.0199995059520006,0.0127099649980664,-0.999719202518463,-0.141143694519997,0.283410727977753,-0.94855523109436,0.131056115031242,0.113271094858646,-0.984882712364197,-0.051409125328064,-0.479672968387604,-0.875940024852753,0.0879269242286682,0.591126024723053,-0.801772356033325,0.003248744411394,0.00206462247297168,-0.999992609024048,-0.0862430781126022,-0.0102017093449831,-0.996221899986267,0.0790020301938057,0.00160854030400515,-0.996873259544373,0.666223108768463,0.387232273817062,-0.637336552143097,0.98579066991806,0.133229702711105,-0.102307364344597,0.343463242053986,-0.125329032540321,-0.9307661652565,0.136437550187111,-0.286187171936035,-0.948410093784332,-0.0247049797326326,-0.0157003588974476,-0.99957150220871,0.0799354165792465,-0.0116152903065085,-0.996732473373413,0.989648461341858,0.0952759683132172,-0.107324793934822,0.434894949197769,-0.0863100290298462,-0.896335422992706,0.0688763931393623,0.13413742184639,-0.988566339015961,0.326561510562897,0.156760230660439,-0.932085752487183,0.194365009665489,0.0450058653950691,-0.979896306991577,0.988753974437714,0.10550731420517,-0.105989679694176,0.0688691735267639,0.134225681424141,-0.988554775714874,0.327154457569122,0.154576748609543,-0.932242453098297,0.989632666110992,0.0954669564962387,-0.107299968600273
- }
- TangentsW: *651 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *500 {
- a: 0.368408203125,0.5576171875,0.3671875,0.45751953125,0.50732421875,0.45654296875,0.50830078125,0.55615234375,0.1959228515625,0.19482421875,0.0206451416015625,0.1943359375,0.01959228515625,0.0625,0.201416015625,0.01904296875,0.06256103515625,0.01953125,0.2216796875,0.05029296875,0.2265625,0.181640625,0.39892578125,0.05029296875,0.26318359375,0.22265625,0.3984375,0.22265625,0.84716796875,0.78076171875,0.98681640625,0.781982421875,0.68603515625,0.764404296875,0.98291015625,0.634521484375,0.7001953125,0.63623046875,0.98193359375,0.574951171875,0.69677734375,0.578125,0.705078125,0.4453125,0.98974609375,0.4453125,0.0625,0.01953125,0.2626953125,0.22216796875,0.398681640625,0.22216796875,0.98388671875,0.634033203125,0.8486328125,0.7789306640625,0.697265625,0.7744140625,0.98828125,0.7823486328125,0.286865234375,0.05908203125,0.2705078125,0.12890625,0.267578125,0.07470703125,0.361572265625,0.056640625,0.28662109375,0.197265625,0.361328125,0.20166015625,0.267578125,0.1826171875,0.373291015625,0.5537109375,0.5078125,0.47900390625,0.51123046875,0.554443359375,0.375244140625,0.47802734375,0.38720703125,0.462890625,0.495361328125,0.46240234375,0.43798828125,0.56201171875,0.515625,0.4375,0.5166015625,0.563232421875,0.43701171875,0.44140625,0.365478515625,0.501953125,0.364501953125,0.43896484375,0.364990234375,0.56494140625,0.315673828125,-0.162109375,0.296630859375,-0.2255859375,0.315185546875,-0.208984375,0.241455078125,-0.2255859375,0.2421875,-0.126953125,0.315673828125,-0.091796875,0.2427978515625,-0.0302734375,0.296875,-0.03125,0.315185546875,-0.044921875,0.2061767578125,0.4443359375,0.0107345581054688,0.582275390625,0.013458251953125,0.44580078125,0.210205078125,0.580322265625,0.53369140625,0.447265625,0.54541015625,0.58251953125,0.0147857666015625,0.6220703125,0.5322265625,0.63232421875,0.223388671875,0.641357421875,0.5380859375,0.7559814453125,0.2047119140625,0.7640380859375,0.0172882080078125,0.77099609375,0.2408447265625,0.7794189453125,0.53173828125,0.7777099609375,0.5302734375,0.94549560546875,0.2491455078125,
- 0.944793701171875,0.01641845703125,0.9508056640625,0.0089263916015625,0.95050048828125,0.0184478759765625,0.7781982421875,0.52978515625,0.7774658203125,0.365234375,0.775634765625,0.69091796875,0.7503662109375,0.3603515625,0.634033203125,0.68994140625,0.628173828125,0.1942138671875,0.7762451171875,0.0134735107421875,0.63671875,0.0112762451171875,0.7762451171875,0.529296875,0.582275390625,0.69091796875,0.57958984375,0.2093505859375,0.581787109375,0.0115203857421875,0.574462890625,0.54052734375,0.447265625,0.69580078125,0.44580078125,0.2379150390625,0.4453125,0.0113983154296875,0.44580078125,0.6904296875,0.7509765625,0.362060546875,0.63427734375,0.69189453125,0.628662109375,0.0134811401367188,0.636474609375,0.209228515625,0.58154296875,0.23779296875,0.4453125,0.0114059448242188,0.44580078125,0.0101242065429688,0.58154296875,0.206298828125,0.4443359375,0.0125961303710938,0.44580078125,0.2103271484375,0.580322265625,0.0150985717773438,0.624755859375,0.5380859375,0.756103515625,0.0187530517578125,0.772705078125,0.0104293823242188,0.778076171875,0.2406005859375,0.77978515625,0.25,0.9439697265625,0.0089263916015625,0.950408935546875,0.162841796875,0.03271484375,0.10235595703125,0.03173828125,0.1590576171875,0.0302734375,0.08905029296875,0.0908203125,0.08905029296875,0.044921875,0.162841796875,0.1240234375,0.08905029296875,0.1572265625,0.162841796875,0.2158203125,0.10235595703125,0.216796875,0.1590576171875,0.21826171875,0.08905029296875,0.20361328125,0.9873046875,0.583740234375,0.69482421875,0.4443359375,0.990234375,0.4453125,0.6025390625,0.58154296875,0.34326171875,0.4482421875,0.60546875,0.63623046875,0.215576171875,0.580810546875,0.2130126953125,0.44482421875,0.98681640625,0.63037109375,0.219970703125,0.638916015625,0.2083740234375,0.638671875,0.2093505859375,0.774169921875,0.8515625,0.77001953125,0.61474609375,0.7596435546875,0.98291015625,0.77490234375,0.990234375,0.776611328125,0.84716796875,0.781982421875,0.98779296875,0.94866943359375,0.72021484375,0.947113037109375,0.59912109375,0.7794189453125,0.493896484375,0.944610595703125,
- 0.372314453125,0.7781982421875,0.21875,0.945556640625,0.212646484375,0.945831298828125,0.2178955078125,0.77099609375,0.218017578125,0.7760009765625,0.2117919921875,0.44482421875,0.2156982421875,0.580810546875,0.343017578125,0.4482421875,0.60205078125,0.582275390625,0.69287109375,0.4443359375,0.98779296875,0.5830078125,0.2052001953125,0.64013671875,0.98779296875,0.63330078125,0.615234375,0.759521484375,0.210693359375,0.770263671875,0.85107421875,0.77001953125,0.9873046875,0.7789306640625,0.98779296875,0.9486083984375,0.59912109375,0.779296875,0.3720703125,0.7783203125,0.5146484375,0.478515625,0.5146484375,0.55908203125,0.4951171875,0.45361328125,0.441162109375,0.45361328125,0.36962890625,0.55859375,0.3681640625,0.4775390625,0.387451171875,0.45263671875,0.201416015625,0.01904296875,0.01959228515625,0.0625,0.201416015625,0.01904296875,0.01959228515625,0.0625,0.01959228515625,0.0625,0.2265625,0.181640625,0.2265625,0.181640625,0.98193359375,0.574951171875,0.98193359375,0.574951171875,0.69677734375,0.578125,0.69677734375,0.578125,0.98193359375,0.574951171875,0.7001953125,0.63623046875,0.98193359375,0.574951171875,0.7001953125,0.63623046875,0.7001953125,0.63623046875,0.7001953125,0.63623046875,0.365234375,0.775634765625,0.52978515625,0.7774658203125,0.365234375,0.775634765625,0.365234375,0.775634765625,0.1942138671875,0.7762451171875,0.1942138671875,0.7762451171875,0.0112762451171875,0.7762451171875,0.1942138671875,0.7762451171875,0.529296875,0.582275390625,0.529296875,0.582275390625,0.69091796875,0.57958984375,0.529296875,0.582275390625,0.0115203857421875,0.574462890625,0.69091796875,0.57958984375,0.529296875,0.582275390625,0.529296875,0.582275390625,0.69091796875,0.57958984375,0.0115203857421875,0.574462890625,0.0115203857421875,0.574462890625,0.53369140625,0.447265625,0.53369140625,0.447265625,0.54541015625,0.58251953125,0.5322265625,0.63232421875,0.54541015625,0.58251953125,0.223388671875,0.641357421875,0.5322265625,0.63232421875,0.223388671875,0.641357421875,0.223388671875,0.641357421875,0.5322265625,0.63232421875,0.2047119140625,
- 0.7640380859375,0.223388671875,0.641357421875,0.223388671875,0.641357421875,0.2047119140625,0.7640380859375,0.2047119140625,0.7640380859375,0.2047119140625,0.7640380859375,0.2047119140625,0.7640380859375,0.53173828125,0.7777099609375,0.53173828125,0.7777099609375,0.0184478759765625,0.7781982421875,0.0184478759765625,0.7781982421875,0.0184478759765625,0.7781982421875,0.0184478759765625,0.7781982421875,0.990234375,0.4453125,0.60546875,0.63623046875,0.60546875,0.63623046875,0.60546875,0.63623046875,0.60546875,0.63623046875,0.60546875,0.63623046875,0.60546875,0.63623046875,0.60546875,0.63623046875,0.98291015625,0.77490234375,0.98291015625,0.77490234375,0.98291015625,0.77490234375,0.84716796875,0.781982421875,0.84716796875,0.781982421875,0.84716796875,0.781982421875,0.84716796875,0.781982421875,0.84716796875,0.781982421875,0.84716796875,0.781982421875,0.218017578125,0.7760009765625,0.218017578125,0.7760009765625,0.218017578125,0.7760009765625
- }
- UVIndex: *651 {
- a: 0,1,2,0,2,3,4,5,6,4,6,7,7,6,8,9,10,11,11,10,12,12,13,11,14,15,16,17,16,15,17,18,16,18,17,19,19,20,18,19,21,20,21,19,22,171,23,172,173,174,4,175,5,4,9,11,176,177,11,24,24,11,25,21,22,178,21,179,180,181,182,183,184,26,185,27,186,26,187,27,28,26,29,27,30,31,32,30,33,31,33,34,31,34,33,35,31,34,36,37,38,39,40,38,37,38,40,41,41,42,38,43,44,45,44,43,46,46,43,47,46,47,48,49,47,43,50,51,52,51,50,53,53,50,54,55,54,50,54,55,56,55,57,56,57,55,58,59,60,61,60,59,62,63,62,59,62,63,64,62,65,60,62,64,66,66,67,62,65,62,67,66,68,67,69,65,67,69,67,68,65,69,70,69,68,71,70,69,71,68,72,71,73,71,72,74,71,73,75,71,74,70,75,76,71,77,70,71,75,77,75,70,77,78,79,80,81,80,79,80,81,82,83,81,79,84,83,85,83,84,81,86,82,81,82,86,87,84,88,81,81,88,86,88,84,89,90,87,86,88,90,86,91,87,90,90,88,92,89,92,88,92,89,93,188,189,94,190,94,95,191,95,192,95,94,96,193,97,194,97,195,95,96,196,95,197,96,198,98,97,95,98,95,199,97,98,200,201,90,202,90,98,203,90,204,91,98,90,99,98,99,205,206,99,100,101,102,103,104,102,101,104,207,102,208,104,209,104,210,211,105,104,101,212,213,104,104,105,214,215,106,216,105,217,218,106,219,220,221,105,107,107,105,108,222,109,106,107,109,223,224,106,109,109,73,225,73,109,110,109,75,110,75,108,111,226,109,107,227,75,109,108,228,107,108,75,229,112,113,114,115,113,112,113,115,116,117,115,112,115,117,118,119,118,117,120,118,119,120,119,121,118,120,122,123,124,125,124,123,126,124,126,127,123,128,126,129,127,126,129,130,127,128,129,126,128,123,131,129,128,132,129,132,133,132,134,133,135,128,131,132,128,136,128,135,136,131,137,135,131,138,137,138,135,137,138,139,135,139,136,135,140,139,138,141,139,140,139,141,142,136,139,142,143,142,141,143,144,142,136,142,144,145,144,143,146,134,145,147,136,144,132,136,147,132,147,134,148,144,145,147,144,148,148,145,134,134,147,148,149,150,151,151,150,152,152,153,151,153,154,230,154,153,152,152,150,231,154,152,232,233,150,155,154,234,156,157,235,155,157,155,158,236,159,156,159,237,157,238,156,159,156,239,160,240,159,160,160,159,241,157,242,159,161,160,243,244,141,161,162,141,245,246,
- 157,162,141,162,143,162,157,163,163,143,162,157,158,163,163,145,143,158,146,145,247,163,158,145,163,248,145,249,158,39,38,164,38,42,164,39,164,165,166,164,42,165,37,39,42,167,166,37,165,168,167,42,41,168,169,37,170,167,41,169,170,41,40,37,169,41,40,169
- }
- }
- LayerElementUV: 1 {
- Version: 101
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *420 {
- a: 0.0171966552734375,0.08251953125,0.01654052734375,0.03125,0.0887451171875,0.0302734375,0.08935546875,0.08203125,0.2325439453125,0.18359375,0.1492919921875,0.18359375,0.1488037109375,0.13818359375,0.2352294921875,0.12353515625,0.169189453125,0.12353515625,0.77392578125,0.13134765625,0.72900390625,0.13330078125,0.77392578125,0.216796875,0.71484375,0.1513671875,0.71484375,0.216796875,0.07965087890625,0.3828125,0.137939453125,0.38330078125,0.01226806640625,0.3759765625,0.1365966796875,0.32275390625,0.0182342529296875,0.3232421875,0.135986328125,0.29833984375,0.0168304443359375,0.29931640625,0.020172119140625,0.24462890625,0.139404296875,0.24462890625,0.10186767578125,0.12353515625,0.035888671875,0.12353515625,0.0155029296875,0.13818359375,0.0992431640625,0.18359375,0.0159912109375,0.18359375,0.67431640625,0.59765625,0.67431640625,0.683349609375,0.62890625,0.60009765625,0.615234375,0.61767578125,0.615234375,0.683349609375,0.186767578125,0.24462890625,0.305908203125,0.24462890625,0.302490234375,0.29833984375,0.1834716796875,0.29931640625,0.184814453125,0.3232421875,0.303466796875,0.322265625,0.2469482421875,0.38232421875,0.1837158203125,0.38037109375,0.30517578125,0.3837890625,0.59765625,0.10107421875,0.583984375,0.15869140625,0.58154296875,0.1142578125,0.66015625,0.09912109375,0.59765625,0.21533203125,0.66015625,0.21923828125,0.58154296875,0.203125,0.82080078125,0.979110717773438,0.93115234375,0.91650390625,0.93408203125,0.979812622070313,0.822265625,0.91583251953125,0.83203125,0.90338134765625,0.9208984375,0.9029541015625,0.4189453125,0.3818359375,0.49169921875,0.2646484375,0.492919921875,0.3828125,0.417724609375,0.2685546875,0.350830078125,0.32568359375,0.349609375,0.26611328125,0.350341796875,0.384765625,0.486328125,0.2177734375,0.5517578125,0.197265625,0.53515625,0.21728515625,0.5517578125,0.13671875,0.4501953125,0.1376953125,0.4140625,0.2177734375,0.35009765625,0.13818359375,0.3515625,0.197265625,0.364990234375,0.21728515625,0.406982421875,0.43896484375,0.31689453125,0.505615234375,0.318115234375,
- 0.43994140625,0.40869140625,0.504638671875,0.5576171875,0.4404296875,0.56298828125,0.505615234375,0.31884765625,0.524658203125,0.55712890625,0.529541015625,0.414794921875,0.5341796875,0.5595703125,0.58935546875,0.40625,0.59326171875,0.320068359375,0.5966796875,0.4228515625,0.600830078125,0.556640625,0.599853515625,0.55615234375,0.680908203125,0.4267578125,0.6806640625,0.319580078125,0.683349609375,0.316162109375,0.683349609375,0.320556640625,0.60009765625,0.826171875,0.5146484375,0.8271484375,0.44482421875,0.83740234375,0.583251953125,0.88525390625,0.44287109375,0.8876953125,0.5830078125,0.82666015625,0.3720703125,0.88427734375,0.294921875,0.82666015625,0.2939453125,0.90673828125,0.514404296875,0.90771484375,0.583251953125,0.90673828125,0.37841796875,0.90966796875,0.2939453125,0.96240234375,0.519287109375,0.962890625,0.58544921875,0.962890625,0.390625,0.962890625,0.2939453125,0.626953125,0.41162109375,0.6259765625,0.4814453125,0.63720703125,0.5498046875,0.68505859375,0.41015625,0.62646484375,0.33837890625,0.6875,0.55029296875,0.68408203125,0.26171875,0.626953125,0.2607421875,0.70654296875,0.4814453125,0.70751953125,0.550048828125,0.70703125,0.3447265625,0.7099609375,0.2607421875,0.76220703125,0.48583984375,0.7626953125,0.552001953125,0.7626953125,0.35693359375,0.7626953125,0.2607421875,0.016815185546875,0.505126953125,0.1072998046875,0.43896484375,0.0179443359375,0.43994140625,0.109130859375,0.504638671875,0.25830078125,0.4404296875,0.263671875,0.505615234375,0.2578125,0.529541015625,0.01910400390625,0.526123046875,0.115234375,0.5341796875,0.26025390625,0.58935546875,0.1065673828125,0.59326171875,0.020782470703125,0.597412109375,0.0169525146484375,0.60009765625,0.12310791015625,0.600830078125,0.25732421875,0.599853515625,0.256591796875,0.680908203125,0.12744140625,0.68017578125,0.01971435546875,0.683349609375,0.0162506103515625,0.683349609375,0.0206451416015625,0.60009765625,0.89599609375,0.05029296875,0.82958984375,0.04931640625,0.89208984375,0.0478515625,0.81494140625,0.11376953125,0.81494140625,0.0634765625,0.89599609375,
- 0.14990234375,0.81494140625,0.18603515625,0.89599609375,0.2490234375,0.82958984375,0.25048828125,0.89208984375,0.251953125,0.81494140625,0.23583984375,0.78076171875,0.8074951171875,0.64404296875,0.740234375,0.78173828125,0.74072265625,0.6005859375,0.806396484375,0.479736328125,0.7421875,0.60205078125,0.8328857421875,0.419921875,0.8060302734375,0.418701171875,0.740478515625,0.7802734375,0.8299560546875,0.421875,0.8341064453125,0.41650390625,0.833984375,0.4169921875,0.89923095703125,0.71728515625,0.89727783203125,0.6064453125,0.89227294921875,0.77880859375,0.899658203125,0.7822265625,0.90045166015625,0.71533203125,0.903076171875,0.78076171875,0.983383178710938,0.65576171875,0.982635498046875,0.59912109375,0.90179443359375,0.5498046875,0.981430053710938,0.4931640625,0.9012451171875,0.42138671875,0.981887817382813,0.41845703125,0.982009887695313,0.421142578125,0.897705078125,0.421142578125,0.900146484375,0.0182342529296875,0.740234375,0.0200653076171875,0.805908203125,0.07965087890625,0.741943359375,0.20068359375,0.8067626953125,0.2431640625,0.739990234375,0.380859375,0.8070068359375,0.38232421875,0.74072265625,0.202392578125,0.832763671875,0.0151748657226563,0.8345947265625,0.381103515625,0.831298828125,0.2069091796875,0.89215087890625,0.0177154541015625,0.8973388671875,0.317138671875,0.897216796875,0.378662109375,0.89959716796875,0.380859375,0.9014892578125,0.3154296875,0.90301513671875,0.381103515625,0.983352661132813,0.256103515625,0.982635498046875,0.19921875,0.9017333984375,0.150146484375,0.981430053710938,0.09320068359375,0.90118408203125,0.021514892578125,0.981887817382813,0.0186767578125,0.982009887695313,0.021148681640625,0.90008544921875,0.93701171875,0.916259765625,0.93701171875,0.983642578125,0.9208984375,0.8953857421875,0.87646484375,0.89532470703125,0.81787109375,0.983245849609375,0.81640625,0.91552734375,0.83251953125,0.89483642578125
- }
- UVIndex: *651 {
- a: 0,1,2,0,2,3,4,5,6,4,6,7,7,6,8,9,10,11,11,10,12,12,13,11,14,15,16,17,16,15,17,18,16,18,17,19,19,20,18,19,21,20,21,19,22,23,24,25,23,25,26,25,27,26,28,29,30,30,29,31,31,29,32,33,34,35,33,35,36,36,35,37,35,38,37,39,37,38,37,39,40,38,41,39,42,43,44,42,45,43,45,46,43,46,45,47,43,46,48,49,50,51,52,50,49,50,52,53,53,54,50,55,56,57,56,55,58,58,55,59,58,59,60,61,59,55,62,63,64,63,62,65,65,62,66,67,66,62,66,67,68,67,69,68,69,67,70,71,72,73,72,71,74,75,74,71,74,75,76,74,77,72,74,76,78,78,79,74,77,74,79,78,80,79,81,77,79,81,79,80,77,81,82,81,80,83,82,81,83,80,84,83,85,83,84,86,83,85,87,83,86,82,87,88,83,89,82,83,87,89,87,82,89,90,91,92,93,92,91,92,93,94,95,93,91,96,95,97,95,96,93,98,94,93,94,98,99,96,100,93,93,100,98,100,96,101,102,99,98,100,102,98,103,99,102,102,100,104,101,104,100,104,101,105,106,107,108,106,108,109,106,109,110,109,108,111,110,112,113,112,110,109,111,114,109,114,111,115,116,112,109,116,109,114,112,116,117,115,118,114,118,116,114,118,115,119,116,118,120,116,120,117,117,120,121,122,123,124,125,123,122,125,126,123,126,125,127,125,128,127,129,125,122,130,128,125,125,129,130,130,131,128,129,132,130,131,130,132,132,129,133,133,129,134,132,135,131,133,135,132,136,131,135,135,137,136,137,135,138,135,139,138,139,134,140,141,135,133,141,139,135,134,141,133,134,139,141,142,143,144,145,143,142,143,145,146,147,145,142,145,147,148,149,148,147,150,148,149,150,149,151,148,150,152,153,154,155,154,153,156,154,156,157,153,158,156,159,157,156,159,160,157,158,159,156,158,153,161,159,158,162,159,162,163,162,164,163,165,158,161,162,158,166,158,165,166,161,167,165,161,168,167,168,165,167,168,169,165,169,166,165,170,169,168,171,169,170,169,171,172,166,169,172,173,172,171,173,174,172,166,172,174,175,174,173,176,164,175,177,166,174,162,166,177,162,177,164,178,174,175,177,174,178,178,175,164,164,177,178,179,180,181,181,180,182,182,183,181,183,184,185,184,183,182,182,180,186,184,182,186,186,180,187,184,186,188,189,186,187,189,187,190,186,191,188,191,186,189,192,188,191,188,192,193,192,191,193,193,191,194,189,194,
- 191,195,193,194,194,196,195,197,196,194,194,189,197,196,197,198,197,189,199,199,198,197,189,190,199,199,200,198,190,201,200,202,199,190,200,199,202,200,202,190,51,50,203,50,54,203,51,203,204,205,203,54,204,49,51,54,206,205,49,204,207,206,54,53,207,208,49,209,206,53,208,209,53,52,49,208,53,52,208
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *336 {
- 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
- }
- }
- 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: 2463645305136, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 158.212646484375,248.21923828125,-58.7490234375,155.147094726563,154.515991210938,-27.4228515625,158.212646484375,248.21923828125,58.7490234375,155.147094726563,154.515991210938,31.2236328125,125.062744140625,140.456176757813,-27.4228515625,76.92919921875,224.959716796875,-58.7490234375,125.062744140625,140.456176757813,31.2236328125,76.92919921875,224.959716796875,58.7490234375
- }
- PolygonVertexIndex: *24 {
- a: 0,1,4,-6,2,0,5,-8,3,6,4,-2,7,6,3,-3,2,3,1,-1,6,7,5,-5
- }
- Edges: *12 {
- a: 4,1,3,14,11,0,9,2,6,7,8,12
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.429348707199097,0.790657877922058,-0.43648561835289,0.81648313999176,-0.306650817394257,-0.489203870296478,0.43472358584404,0.792736351490021,0.427298992872238,0.813908040523529,-0.293655306100845,0.501318573951721,-0.585843801498413,-0.679254293441772,-0.442041397094727,-0.781270503997803,0.44409567117691,-0.438629001379013,-0.590812623500824,-0.668454051017761,0.451785087585449,-0.787090480327606,0.443247437477112,0.428975939750671
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0.0853888615965843,0.445595771074295,0.891152799129486,0.544004559516907,0.692446947097778,0.473894774913788,0.294650614261627,0.329592734575272,-0.896966934204102,0.547355949878693,0.149655506014824,-0.823410511016846,0.876813769340515,-0.480830281972885,1.49011611938477e-008,0.813384294509888,-0.54856675863266,-0.193598851561546,0.494170933961868,0.869364857673645,0,0.490689277648926,0.871334671974182,0,0.464264512062073,0.847494602203369,-0.257316112518311,0.806607306003571,-0.47685980796814,0.349269837141037,0.757255792617798,-0.653118550777435,-1.49011629702045e-008,0.279047757387161,0.951353311538696,-0.130611196160316,0.554794788360596,0.204728245735168,0.806405127048492,0.806607306003571,-0.47685980796814,0.349269837141037,0.464264512062073,0.847494602203369,-0.257316112518311,-0.616655647754669,0.607825636863709,-0.500283718109131,-0.616655647754669,0.607825636863709,-0.500283718109131,0.464264512062073,0.847494602203369,-0.257316112518311,0.279047757387161,0.951353311538696,-0.130611196160316,0.813384294509888,-0.54856675863266,-0.193598851561546,-0.749281406402588,0.662251830101013,-1.49011611938477e-008,0.556557774543762,0.81016331911087,0.184062793850899,0.0284632593393326,0.727330207824707,0.685697197914124,0.294650614261627,0.329592734575272,-0.896966934204102
- }
- BinormalsW: *24 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.899093091487885,-0.419886350631714,0.123802602291107,0.193427592515945,-0.65305632352829,0.732190787792206,0.754962265491486,-0.655730307102203,0.00705282250419259,-0.300029695034027,-0.883392512798309,-0.359999775886536,-0.205458298325539,-0.37466162443161,0.904110491275787,0.392511963844299,0.271909087896347,0.878635287284851,-0.381328612565994,0.21675768494606,0.898668229579926,0.373781621456146,-0.210493892431259,0.903315901756287,0.349302500486374,-0.442176014184952,-0.826116263866425,0.0180326607078314,-0.570766150951386,-0.820914566516876,0.288705408573151,0.334738373756409,-0.896994650363922,-0.505457699298859,0.0298693738877773,-0.862334251403809,-0.269613653421402,-0.87270724773407,0.407051056623459,0.0180326607078314,-0.570766150951386,-0.820914566516876,0.349302500486374,-0.442176014184952,-0.826116263866425,0.656316339969635,0.0460111759603024,-0.753081560134888,0.656316339969635,0.0460111759603024,-0.753081560134888,0.349302500486374,-0.442176014184952,-0.826116263866425,-0.505457699298859,0.0298693738877773,-0.862334251403809,0.392511963844299,0.271909087896347,0.878635287284851,-0.299195498228073,-0.338514178991318,-0.892126798629761,-0.265955179929733,0.383623898029327,-0.884364426136017,-0.623543262481689,-0.523230195045471,0.58088207244873,0.754962265491486,-0.655730307102203,0.00705282250419259
- }
- TangentsW: *24 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *24 {
- a: 0.345077872276306,0.341122597455978,0.860639572143555,0.197659805417061,0.860639572143555,0.0565238818526268,0.301452219486237,0.165038630366325,0.980506598949432,0.567552208900452,0.830175340175629,0.567552208900452,0.830175340175629,0.391468226909637,0.980506598949432,0.391468226909637,0.741966307163239,0.197659805417061,0.741966307163239,0.0565238818526268,0.410679310560226,0.165038630366325,0.367053657770157,0.341122597455978
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,2,1,10,9,8,11,11,8,1,5,9,7,3,2
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2463645297968, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: -11.88037109375,136.566040039063,-58.7490234375,67.15869140625,90.5806884765625,-27.4228515625,47.302978515625,1.81927490234375,-27.4228515625,-42.475830078125,2.3173828125,-58.7490234375,67.15869140625,90.5806884765625,31.2236328125,47.302978515625,1.81927490234375,31.2236328125,-42.475830078125,2.3173828125,58.7490234375,-11.88037109375,136.566040039063,58.7490234375
- }
- PolygonVertexIndex: *24 {
- a: 0,1,2,-4,7,0,3,-7,4,5,2,-2,6,5,4,-8,2,5,6,-4,7,4,1,-1
- }
- Edges: *12 {
- a: 4,1,3,2,11,7,8,9,12,6,0,14
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: -0.637100517749786,0.553785443305969,-0.536119997501373,0.727710545063019,0.32305034995079,-0.605042159557343,0.489031583070755,-0.626571357250214,-0.606841504573822,-0.808587253093719,-0.209443524479866,-0.54983651638031,0.713140904903412,0.327440500259399,0.619848906993866,0.473948806524277,-0.624044120311737,0.621241867542267,-0.815877318382263,-0.212012782692909,0.537954211235046,-0.641744792461395,0.559361100196838,0.52467006444931
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: 0.575439870357513,-0.121025517582893,-0.808839797973633,0.200734466314316,0.743198931217194,0.63824850320816,0.799360513687134,0.043485701084137,0.599276125431061,0.576261639595032,-0.093246690928936,-0.811928331851959,0.657062649726868,0.753836035728455,-1.49011611938477e-008,0.656033635139465,0.75473165512085,0,-0.250748783349991,0.968052268028259,0,-0.251505702733994,0.96785581111908,0,-0.417269945144653,0.908782660961151,0,0.796361804008484,0.604820549488068,-1.49011611938477e-008,0.788315653800964,0.615271091461182,0,0.200734466314316,0.743198931217194,0.63824850320816,0.564177870750427,-0.0880594253540039,0.820943892002106,0.811961352825165,0.0367293246090412,-0.582554697990417,0.699268400669098,-0.394748210906982,-0.595984578132629,0.564930856227875,-0.117889150977135,0.816673398017883,-0.0119224917143583,0.690840303897858,-0.722909092903137,-0.145441696047783,-0.751302242279053,-0.643732786178589,-0.0309162922203541,-0.913028836250305,-0.406721770763397,0.107948780059814,0.865827202796936,-0.488559603691101,0.604298532009125,0.790052950382233,-0.103149458765984,0.699268400669098,-0.394748210906982,-0.595984578132629,0.109526745975018,-0.925547182559967,-0.362445116043091,-0.32217338681221,-0.823207259178162,-0.467476308345795
- }
- BinormalsW: *24 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.512807965278625,0.823817133903503,0.241564810276031,-0.655853152275085,0.585912883281708,-0.475986152887344,-0.349100351333618,-0.778149902820587,0.522122263908386,-0.118782736361027,0.973364591598511,-0.196092367172241,0.395515203475952,-0.344741106033325,0.851305782794952,-0.404626727104187,0.351712763309479,0.844141781330109,-0.532270491123199,-0.137870848178864,0.835272252559662,0.520662128925323,0.135298565030098,0.842974185943604,0.56330794095993,0.258644312620163,-0.784721314907074,0.375739842653275,-0.494733273983002,-0.783618867397308,-0.373372048139572,0.478382676839828,-0.794822812080383,-0.655853152275085,0.585912883281708,-0.475986152887344,-0.126678660511971,0.973291456699371,0.191458612680435,0.340722024440765,0.780525386333466,0.524107456207275,0.0495347864925861,0.858461737632751,-0.510479867458344,-0.518668174743652,-0.82049822807312,0.240345567464828,-0.872184574604034,-0.360760480165482,-0.330372482538223,-0.868457973003387,-0.214741915464401,0.446840763092041,-0.57739794254303,0.348466545343399,-0.73836475610733,-0.578388750553131,0.454397231340408,0.677487730979919,-0.472214907407761,0.250861704349518,-0.845033407211304,0.0495347864925861,0.858461737632751,-0.510479867458344,-0.67708295583725,0.197486788034439,-0.708912968635559,-0.700219392776489,-0.12510584294796,0.70288074016571
- }
- TangentsW: *24 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *32 {
- a: 0.187411591410637,0.0501414872705936,0.448006182909012,0.813628911972046,0.448006182909012,0.669764637947083,0.0108907837420702,0.00980393309146166,0.808282971382141,0.846285581588745,0.657951712608337,0.846285581588745,0.657951712608337,0.669764637947083,0.808282971382141,0.669764637947083,0.329333305358887,0.813628911972046,0.329333305358887,0.669764637947083,0.70124077796936,0.00980393309146166,0.524719953536987,0.0501414872705936,0.0601767413318157,0.804266750812531,0.0601767413318157,0.685593843460083,0.119387954473495,0.669764637947083,0.119387954473495,0.820095956325531
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,9,2,1,10,9,8,11,12,13,14,15,11,8,1,5
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Geometry: 2463645329712, "Geometry::", "Mesh" {
- Vertices: *24 {
- a: 124.195556640625,140.0224609375,-27.4228515625,76.06201171875,224.526000976563,-58.7490234375,-11.66357421875,137.433349609375,58.7490234375,124.195556640625,140.0224609375,31.2236328125,76.06201171875,224.526000976563,58.7490234375,-11.66357421875,137.433349609375,-58.7490234375,67.37548828125,91.447998046875,-27.4228515625,67.37548828125,91.447998046875,31.2236328125
- }
- PolygonVertexIndex: *24 {
- a: 1,0,6,-6,4,1,5,-3,7,6,0,-4,2,7,3,-5,1,4,3,-1,6,7,2,-6
- }
- Edges: *12 {
- a: 2,0,4,12,10,14,3,8,1,6,7,11
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *24 {
- a: 0.813801527023315,-0.0446721352636814,-0.579423308372498,-0.174180075526237,0.828387081623077,-0.532387256622314,-0.826433897018433,0.205246284604073,0.52429074048996,0.804739713668823,-0.0334619991481304,0.592683970928192,-0.174338400363922,0.835451602935791,0.521178066730499,-0.819544494152069,0.204279273748398,-0.535366058349609,0.0277585759758949,-0.799788475036621,-0.599639773368835,0.0166132152080536,-0.78924423456192,0.613854587078094
- }
- NormalsW: *8 {
- a: 1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *72 {
- a: -0.148029774427414,-0.556535184383392,-0.817530333995819,-0.562586188316345,0.18938447535038,-0.804754853248596,0.822072744369507,-0.323016554117203,0.468889027833939,0.433366060256958,-0.390287548303604,-0.81232351064682,0.978913486003876,0.204275399446487,-7.45058148510225e-009,0.98032283782959,0.0948744863271713,-0.173106923699379,0.241859316825867,0.970311284065247,7.45057970874541e-009,0.241029754281044,0.970517754554749,0,0.991730928421021,-0.0651308596134186,-0.110579922795296,0.822072744369507,-0.323016554117203,0.468889027833939,0.054810643196106,0.998496770858765,1.86264514923096e-009,0.041545245796442,0.999136686325073,0,0.42635190486908,-0.380062907934189,0.820838809013367,0.991730928421021,-0.0651308596134186,-0.110579922795296,-0.541531383991241,-0.450384676456451,0.70985734462738,-0.260636061429977,-0.549558043479919,0.793759942054749,0.98032283782959,0.0948744863271713,-0.173106923699379,-0.260636061429977,-0.549558043479919,0.793759942054749,-0.421781629323959,-0.734793424606323,0.531205117702484,-0.562586188316345,0.18938447535038,-0.804754853248596,-0.520290315151215,-0.523770034313202,0.674509525299072,-0.999778628349304,-0.0210448633879423,-0,0.562846124172211,0.277136921882629,0.778716504573822,-0.347991645336151,-0.919705808162689,0.18177804350853
- }
- BinormalsW: *24 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *72 {
- a: 0.973523736000061,0.0635883882641792,-0.219563320279121,-0.145683825016022,-0.980886280536652,-0.128989487886429,0.568705558776855,0.505963146686554,-0.648517727851868,0.374887585639954,0.897744834423065,-0.231330350041389,0.106463849544525,-0.510188162326813,0.85344797372818,0.0928895622491837,0.552063167095184,0.828611969947815,-0.519471764564514,0.129483282566071,0.844620168209076,0.508833408355713,-0.126369655132294,0.851539373397827,-0.12725542485714,-0.610615611076355,-0.781635761260986,0.568705558776855,0.505963146686554,-0.648517727851868,-0.578552305698395,0.0317585654556751,-0.815026879310608,0.592172265052795,-0.0246232002973557,-0.805435121059418,-0.367737680673599,-0.901901483535767,-0.226589739322662,-0.12725542485714,-0.610615611076355,-0.781635761260986,0.24318253993988,-0.892207324504852,-0.380563169717789,-0.949565708637238,-0.00254483101889491,-0.313557773828506,0.0928895622491837,0.552063167095184,0.828611969947815,-0.949565708637238,-0.00254483101889491,-0.313557773828506,0.417725116014481,-0.677465081214905,-0.605431139469147,-0.145683825016022,-0.980886280536652,-0.128989487886429,-0.853538274765015,0.293263345956802,-0.43066132068634,0.0129184843972325,-0.613718628883362,-0.789419114589691,0.0145277753472328,0.93865293264389,-0.344557106494904,-0.455245792865753,0.335278123617172,0.824827313423157
- }
- TangentsW: *24 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *28 {
- a: 0.301452219486237,0.165038630366325,0.860639572143555,0.0565238818526268,0.448006182909012,0.813628911972046,0.187411591410637,0.0501414872705936,0.808282971382141,0.960326075553894,0.657951712608337,0.960326075553894,0.657951712608337,0.846285581588745,0.808282971382141,0.846285581588745,0.329333305358887,0.813628911972046,0.448006182909012,0.905037045478821,0.329333305358887,0.905037045478821,0.524719953536987,0.0501414872705936,0.741966307163239,0.0565238818526268,0.410679310560226,0.165038630366325
- }
- UVIndex: *24 {
- a: 0,1,2,3,4,5,6,7,8,2,9,10,11,8,12,13,5,13,10,1,2,8,7,3
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *12 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementMaterial: 0 {
- Version: 101
- Name: ""
- MappingInformationType: "AllSame"
- ReferenceInformationType: "IndexToDirect"
- Materials: *1 {
- a: 0
- }
- }
- Layer: 0 {
- Version: 100
- LayerElement: {
- Type: "LayerElementNormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementBinormal"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementTangent"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementMaterial"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementSmoothing"
- TypedIndex: 0
- }
- LayerElement: {
- Type: "LayerElementUV"
- TypedIndex: 0
- }
- }
- }
- Model: 2463722245040, "Model::SM_Arch_8m_14", "Null" {
- Version: 232
- Properties70: {
- 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: 2463722231120, "Model::LOD_Group_SM_Arch_8m_14", "LodGroup" {
- Version: 232
- Properties70: {
- 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: 2463722219520, "Model::SM_Arch_8m_14_LOD0", "Mesh" {
- Version: 232
- Properties70: {
- 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: 2463722238080, "Model::SM_Arch_8m_14_LOD1", "Mesh" {
- Version: 232
- Properties70: {
- 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: 2463722221840, "Model::SM_Arch_8m_14_LOD2", "Mesh" {
- Version: 232
- Properties70: {
- 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: 2463722256640, "Model::UCX_SM_Arch_8m_14_LOD0_03", "Mesh" {
- Version: 232
- Properties70: {
- 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: 2463722242720, "Model::UCX_SM_Arch_8m_14_LOD0_01", "Mesh" {
- Version: 232
- Properties70: {
- 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: 2463722247360, "Model::UCX_SM_Arch_8m_14_LOD0_02", "Mesh" {
- Version: 232
- Properties70: {
- 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: 2463668293440, "Material::MI_Arch_02", "" {
- 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: 2463668285280, "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: 2463478634976, "Video::file76", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_02_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_02_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Arch_02_BC.png"
- }
- Video: 2463478637376, "Video::file77", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_02_N.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_02_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Arch_02_N.png"
- }
- Texture: 2463668294400, "Texture::file76", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file76"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "UVmap_0"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file76"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_02_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Arch_02_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- Texture: 2463668302560, "Texture::file77", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file77"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "UVmap_0"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file77"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Arch_02_N.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Arch_02_N.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- AnimationStack: 2467622110816, "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: 2463616738672, "AnimLayer::BaseLayer", "" {
- }
- }
- ; Object connections
- ;------------------------------------------------------------------
- Connections: {
-
- ;Model::SM_Arch_8m_14, Model::RootNode
- C: "OO",2463722245040,0
-
- ;AnimLayer::BaseLayer, AnimStack::Take 001
- C: "OO",2463616738672,2467622110816
-
- ;NodeAttribute::, Model::SM_Arch_8m_14
- C: "OO",2463548133792,2463722245040
-
- ;Model::LOD_Group_SM_Arch_8m_14, Model::SM_Arch_8m_14
- C: "OO",2463722231120,2463722245040
-
- ;Model::UCX_SM_Arch_8m_14_LOD0_03, Model::SM_Arch_8m_14
- C: "OO",2463722256640,2463722245040
-
- ;Model::UCX_SM_Arch_8m_14_LOD0_01, Model::SM_Arch_8m_14
- C: "OO",2463722242720,2463722245040
-
- ;Model::UCX_SM_Arch_8m_14_LOD0_02, Model::SM_Arch_8m_14
- C: "OO",2463722247360,2463722245040
-
- ;NodeAttribute::, Model::LOD_Group_SM_Arch_8m_14
- C: "OO",2463173895136,2463722231120
-
- ;Model::SM_Arch_8m_14_LOD0, Model::LOD_Group_SM_Arch_8m_14
- C: "OO",2463722219520,2463722231120
-
- ;Model::SM_Arch_8m_14_LOD1, Model::LOD_Group_SM_Arch_8m_14
- C: "OO",2463722238080,2463722231120
-
- ;Model::SM_Arch_8m_14_LOD2, Model::LOD_Group_SM_Arch_8m_14
- C: "OO",2463722221840,2463722231120
-
- ;Texture::file76, Material::MI_Arch_02
- C: "OP",2463668294400,2463668293440, "DiffuseColor"
-
- ;Texture::file77, Material::MI_Arch_02
- C: "OP",2463668302560,2463668293440, "NormalMap"
-
- ;Video::file76, Texture::file76
- C: "OO",2463478634976,2463668294400
-
- ;Video::file77, Texture::file77
- C: "OO",2463478637376,2463668302560
-
- ;Geometry::, Model::SM_Arch_8m_14_LOD0
- C: "OO",2463645305648,2463722219520
-
- ;Material::MI_Arch_02, Model::SM_Arch_8m_14_LOD0
- C: "OO",2463668293440,2463722219520
-
- ;Geometry::, Model::SM_Arch_8m_14_LOD1
- C: "OO",2463645310256,2463722238080
-
- ;Material::MI_Arch_02, Model::SM_Arch_8m_14_LOD1
- C: "OO",2463668293440,2463722238080
-
- ;Geometry::, Model::SM_Arch_8m_14_LOD2
- C: "OO",2463645323056,2463722221840
-
- ;Material::MI_Arch_02, Model::SM_Arch_8m_14_LOD2
- C: "OO",2463668293440,2463722221840
-
- ;Geometry::, Model::UCX_SM_Arch_8m_14_LOD0_03
- C: "OO",2463645305136,2463722256640
-
- ;Material::M_Collision_01, Model::UCX_SM_Arch_8m_14_LOD0_03
- C: "OO",2463668285280,2463722256640
-
- ;Geometry::, Model::UCX_SM_Arch_8m_14_LOD0_01
- C: "OO",2463645297968,2463722242720
-
- ;Material::M_Collision_01, Model::UCX_SM_Arch_8m_14_LOD0_01
- C: "OO",2463668285280,2463722242720
-
- ;Geometry::, Model::UCX_SM_Arch_8m_14_LOD0_02
- C: "OO",2463645329712,2463722247360
-
- ;Material::M_Collision_01, Model::UCX_SM_Arch_8m_14_LOD0_02
- C: "OO",2463668285280,2463722247360
- }
- ;Takes section
- ;----------------------------------------------------
- Takes: {
- Current: "Take 001"
- Take: "Take 001" {
- FileName: "Take_001.tak"
- LocalTime: 1539538600,46186158000
- ReferenceTime: 1539538600,46186158000
- }
- }
|