| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821 |
- ; 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: 7
- Day: 7
- Hour: 8
- Minute: 26
- Second: 45
- Millisecond: 696
- }
- 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_Roots_04.fbx"
- P: "SrcDocumentUrl", "KString", "Url", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Roots_04.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", "", "", "07/07/2020 05:26:45.696"
- P: "Original|FileName", "KString", "", "", "A:\Lordenfel\Unity\Lordenfel\Assets\Lordenfel\Source\SM_Roots_04.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", "", "", "07/07/2020 05:26:45.696"
- P: "Original|ApplicationActiveProject", "KString", "", "", "C:\Users\grech\Documents\maya\projects\default"
- P: "Original|ApplicationNativeFile", "KString", "", "", "C:\Users\grech\AppData\Local\Temp\grech.20200707.0821.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: 2140292028608, "", "Scene" {
- Properties70: {
- P: "SourceObject", "object", "", ""
- P: "ActiveAnimStackName", "KString", "", "", "Take 001"
- }
- RootNode: 0
- }
- }
- ; Document References
- ;------------------------------------------------------------------
- References: {
- }
- ; Object definitions
- ;------------------------------------------------------------------
- Definitions: {
- Version: 100
- Count: 16
- 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: 5
- 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: 3
- 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: 1
- 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: 1
- 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: 1
- 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: 2137430808528, "NodeAttribute::", "Null" {
- Properties70: {
- P: "Look", "enum", "", "",0
- }
- TypeFlags: "Null"
- }
- NodeAttribute: 2137382545872, "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: 2139419756704, "Geometry::", "Mesh" {
- Vertices: *2808 {
- a: -13.9594535827637,4.21240234375,-69.575927734375,-6.50347900390625,7.0806884765625,-77.9088134765625,1.13188695907593,4.9752197265625,-69.5140380859375,-6.3231954574585,2.107421875,-61.183349609375,-47.3793067932129,-122.157287597656,2.3193359375,19.1876697540283,-159.190734863281,32.7263793945313,45.824333190918,-215.503753662109,0.0665283203125,46.0539779663086,-245.553283691406,-6.82281494140625,45.7702713012695,-272.705230712891,-4.41534423828125,38.0733489990234,-304.783264160156,5.478515625,41.2525939941406,-336.143371582031,4.8702392578125,48.6827774047852,-354.229522705078,8.29620361328125,-58.1600723266602,-125.536560058594,1.301513671875,19.1986026763916,-162.334411621094,41.3490600585938,49.3931541442871,-215.457946777344,6.6947021484375,49.4231033325195,-244.145965576172,-2.401123046875,48.6231498718262,-272.326934814453,-0.81121826171875,39.8952369689941,-304.743804931641,8.45367431640625,42.3113174438477,-335.449035644531,6.874755859375,-53.3258361816406,-133.613098144531,-5.02984619140625,14.5360870361328,-171.640747070313,35.5206909179688,42.3304100036621,-215.815277099609,9.2764892578125,44.6203880310059,-245.227935791016,0.540771484375,44.6562461853027,-272.643463134766,1.52142333984375,36.7867965698242,-303.851104736328,9.76495361328125,40.0639762878418,-335.153198242188,7.55908203125,-42.5452690124512,-130.233642578125,-4.01220703125,14.525182723999,-168.496917724609,26.89697265625,38.7620124816895,-215.858856201172,2.647705078125,41.2518730163574,-246.637390136719,-3.880126953125,41.8036880493164,-273.021301269531,-2.08343505859375,34.9619979858398,-303.891998291016,6.787353515625,39.0047874450684,-335.850067138672,5.55853271484375,43.4412574768066,-218.559875488281,5.77099609375,40.5171813964844,-213.780944824219,7.22552490234375,44.9134750366211,-209.94384765625,7.12213134765625,47.5249443054199,-214.641845703125,4.59991455078125,12.8073921203613,-246.356994628906,-31.9727783203125,-11.4651279449463,-258.384826660156,-30.314208984375,9.9500560760498,-244.660125732422,-29.9842529296875,
- 9.19296073913574,-243.127502441406,-33.45947265625,12.0506706237793,-244.823699951172,-35.4481201171875,-21.5269107818604,-80.3460083007813,-65.3743896484375,-32.3957633972168,-75.6343994140625,-66.2093505859375,-30.637149810791,-73.7101440429688,-54.622802734375,-19.7701435089111,-78.4237060546875,-53.789794921875,-50.0628967285156,-106.564971923828,-37.693603515625,-42.553337097168,-103.666534423828,-29.289794921875,-35.4685134887695,-112.857788085938,-30.18505859375,-42.9776573181152,-115.755554199219,-38.59033203125,-7.7643780708313,-41.7744750976563,-74.442138671875,-19.7672805786133,-42.9806518554688,-75.9569091796875,-19.548412322998,-43.185302734375,-63.8040771484375,-7.54560661315918,-41.9794311523438,-62.2879638671875,32.0470733642578,-226.310607910156,-16.0181274414063,34.0686378479004,-222.689514160156,-19.6956176757813,29.5032558441162,-219.865905761719,-18.1838989257813,27.4794902801514,-223.487243652344,-14.5045776367188,-11.9149360656738,8.40179443359375,-68.183837890625,-6.39974689483643,10.5234985351563,-74.347900390625,-6.26631832122803,6.8447265625,-61.9765625,-0.751817226409912,8.96600341796875,-68.138916015625,-0.134014129638672,-10.2647094726563,-75.3353271484375,-12.1100292205811,-8.82098388671875,-82.386474609375,-17.6764297485352,-10.8379516601563,-69.7947998046875,-5.70065975189209,-12.2815551757813,-62.744873046875,-42.8104057312012,-127.822052001953,22.6256713867188,-51.8905792236328,-130.489410400391,24.7271118164063,-48.1784210205078,-139.868591308594,18.7547607421875,-39.0996475219727,-137.201049804688,16.6551513671875,-0.648757457733154,-153.393249511719,36.74755859375,-4.54030513763428,-156.672485351563,44.781982421875,-6.66520023345947,-165.9013671875,37.6744384765625,-2.77415704727173,-162.622314453125,29.6417236328125,39.5004997253418,-188.127258300781,14.0906982421875,42.2408676147461,-189.365112304688,21.7845458984375,33.914852142334,-193.629333496094,22.3445434570313,31.1738033294678,-192.390319824219,14.6503295898438,39.4271278381348,-220.511474609375,-9.20782470703125,35.148853302002,-217.220916748047,-7.0401611328125,
- 31.877161026001,-220.855895996094,-4.70751953125,36.1551399230957,-224.146820068359,-6.8763427734375,22.9320278167725,-230.886840820313,-31.3128662109375,18.8640460968018,-228.342712402344,-28.989013671875,18.3878231048584,-231.336486816406,-24.7823486328125,22.4565410614014,-233.880859375,-27.1072998046875,37.9122657775879,-320.765380859375,6.28143310546875,35.147388458252,-320.480499267578,7.3709716796875,36.6613693237305,-319.903167724609,9.872314453125,39.4245681762695,-320.190307617188,8.78326416015625,41.9381637573242,-287.656677246094,1.6392822265625,38.3615188598633,-286.720336914063,3.2235107421875,40.6341972351074,-285.689849853516,6.38592529296875,44.2094993591309,-286.627014160156,4.80023193359375,45.5001640319824,-259.893005371094,-5.66827392578125,41.1228485107422,-260.586669921875,-3.0361328125,44.2290496826172,-259.701690673828,0.9698486328125,48.606819152832,-259.008880615234,-1.6622314453125,35.5173988342285,-174.861907958984,30.4130859375,34.5431632995605,-173.940185546875,21.536865234375,26.526647567749,-180.127807617188,19.4313354492188,27.5011577606201,-181.050048828125,28.3084106445313,-38.740062713623,-146.316802978516,29.639404296875,-39.0685119628906,-137.358581542969,37.4952392578125,-31.7837543487549,-134.730194091797,32.1257934570313,-31.456579208374,-143.688354492188,24.2733154296875,-55.8735771179199,-117.931121826172,-20.1690063476563,-46.774486541748,-115.388458251953,-13.7072143554688,-39.5734100341797,-123.197479248047,-17.5932006835938,-48.6725082397461,-125.739715576172,-24.0552978515625,-31.1981143951416,-102.872436523438,-52.85302734375,-40.0385475158691,-95.5923156738281,-52.859130859375,-35.966739654541,-93.0055236816406,-42.1917724609375,-27.1277332305908,-100.287078857422,-42.185791015625,46.9960823059082,-231.953491210938,-5.4422607421875,40.4865188598633,-232.306701660156,-3.4439697265625,43.2607345581055,-231.752502441406,2.765380859375,49.7710456848145,-231.399353027344,0.76727294921875,-24.8368530273438,-156.678894042969,35.9750366210938,-25.4077949523926,-147.05859375,43.1031494140625,
- -18.6111087799072,-143.7744140625,36.6039428710938,-18.0421581268311,-153.394500732422,29.479248046875,1.11362886428833,-252.709350585938,-33.342529296875,0.159857749938965,-251.709136962891,-31.6837158203125,-0.961906433105469,-250.791351318359,-33.2843017578125,-0.00794601440429688,-251.791198730469,-34.9432373046875,-7.43067169189453,-1.15008544921875,-71.0792236328125,-6.62951183319092,-1.483154296875,-59.456298828125,-17.9004688262939,1.37310791015625,-60.26708984375,-18.7018013000488,1.7059326171875,-71.8900146484375,-39.2983627319336,-135.197967529297,0.50103759765625,-13.7542867660522,-183.886596679688,37.2809448242188,34.6163139343262,-253.395874023438,-14.1950073242188,9.4410343170166,-299.560516357422,-35.15869140625,-10.5371894836426,-350.093383789063,-35.103515625,-14.3875026702881,-391.838562011719,-32.287841796875,-28.8191108703613,-425.559417724609,-23.4971313476563,-31.8123798370361,-443.241394042969,-25.2081298828125,-30.5701599121094,-131.213897705078,3.08648681640625,-9.53069114685059,-181.077575683594,31.0667724609375,28.1244354248047,-251.763275146484,-12.9249267578125,6.21241092681885,-297.712158203125,-30.44189453125,-11.1863260269165,-349.338897705078,-29.5216064453125,-13.6506824493408,-390.463806152344,-28.9591064453125,-28.4223804473877,-425.235931396484,-21.3524780273438,-36.1335067749023,-127.837280273438,10.9354858398438,-6.38442516326904,-175.677978515625,37.458251953125,28.6024131774902,-249.067199707031,-19.1641845703125,2.65864849090576,-295.594329833984,-34.7960205078125,-16.5861759185791,-348.569580078125,-31.0748291015625,-17.3071594238281,-390.091186523438,-28.8834228515625,-30.5145416259766,-424.543212890625,-21.3948974609375,-44.8752593994141,-131.885192871094,8.23956298828125,-10.6643075942993,-178.536010742188,43.6634521484375,35.0952262878418,-250.699401855469,-20.4353637695313,5.88670778274536,-297.443511962891,-39.5135498046875,-15.9378213882446,-349.324920654297,-36.658447265625,-18.0445537567139,-391.465515136719,-32.2135009765625,-30.911039352417,-424.865814208984,-23.5388793945313,
- -9.82343769073486,-349.838287353516,-32.25439453125,-10.8230638504028,-348.214965820313,-28.5841064453125,-14.1219568252563,-346.922698974609,-30.7191162109375,-13.1225357055664,-348.546356201172,-34.389892578125,-28.4942378997803,-379.519165039063,-16.918701171875,-33.6419143676758,-407.772338867188,6.5518798828125,-36.7246017456055,-426.275787353516,8.07330322265625,-28.2796306610107,-378.247039794922,-13.871826171875,-33.6058540344238,-406.890472412109,7.9508056640625,-31.1294078826904,-376.828399658203,-14.77587890625,-35.248722076416,-406.972564697266,7.765625,-31.3443183898926,-378.10205078125,-17.822021484375,-35.284294128418,-407.854583740234,6.3673095703125,-37.1943321228027,-148.510375976563,24.43115234375,-39.3427276611328,-150.7998046875,14.6090087890625,-29.3845558166504,-151.790771484375,13.6343994140625,-27.2377109527588,-149.502136230469,23.458251953125,-13.4438524246216,-189.146026611328,32.930908203125,10.7269630432129,-223.159362792969,37.22021484375,28.6030902862549,-276.868835449219,22.5407104492188,34.7936935424805,-303.015228271484,11.290283203125,32.7539863586426,-340.023864746094,-18.03466796875,29.2007846832275,-376.679138183594,-24.3228759765625,35.216480255127,-399.959381103516,-41.0797119140625,-19.9466953277588,-193.532043457031,34.6008911132813,2.6659836769104,-227.281860351563,40.401611328125,28.0430469512939,-277.292999267578,29.375244140625,32.2311096191406,-306.382843017578,14.7145385742188,30.8814601898193,-341.921875,-14.9156494140625,28.2625141143799,-377.359680175781,-22.1385498046875,-21.7354717254639,-195.541534423828,27.007080078125,-1.66759824752808,-228.617797851563,32.009521484375,20.3676586151123,-278.9541015625,28.6345825195313,28.1570148468018,-305.615295410156,11.18603515625,27.5355319976807,-340.660308837891,-16.9277954101563,26.1351909637451,-376.875671386719,-23.2997436523438,-15.2336721420288,-191.15625,25.3367919921875,6.40559339523315,-224.488891601563,28.8399658203125,22.1059989929199,-278.226654052734,20.9765014648438,30.7196559906006,-302.247497558594,7.76043701171875,
- 29.4079761505127,-338.763885498047,-20.0465087890625,27.0722713470459,-376.194793701172,-25.4854736328125,7.77318143844604,-226.281341552734,37.2715454101563,4.1804633140564,-230.066070556641,36.4619140625,3.03125047683716,-227.031372070313,32.2968139648438,6.62485456466675,-223.246368408203,33.1063232421875,31.7763729095459,-244.852203369141,19.2937622070313,32.4857063293457,-270.030456542969,-15.66455078125,33.5037574768066,-310.993408203125,-38.2264404296875,28.567102432251,-247.926300048828,18.734130859375,29.31516456604,-271.026885986328,-14.5120239257813,27.7201328277588,-245.443481445313,15.1014404296875,28.4096050262451,-267.826232910156,-15.7823486328125,30.9330081939697,-242.368896484375,15.6655883789063,31.5917911529541,-266.833801269531,-16.9315185546875,29.9139728546143,-288.236328125,-33.744873046875,31.3902454376221,-288.927825927734,-31.77587890625,33.2656860351563,-288.367218017578,-33.448974609375,31.7885684967041,-287.675354003906,-35.419677734375,-20.0780639648438,2.048583984375,-65.700439453125,-41.1634521484375,-128.874694824219,11.0430297851563,-7.48033809661865,-175.946899414063,41.7033081054688,31.6163024902344,-249.213806152344,-21.067626953125,3.33083152770996,-295.954284667969,-37.8289794921875,-17.5174751281738,-348.718902587891,-33.8935546875,-13.3578748703003,0.29132080078125,-58.06640625,-32.3204689025879,-128.62353515625,8.54803466796875,-6.83605575561523,-176.901031494141,33.584716796875,27.0038566589355,-249.969787597656,-16.6029663085938,3.23852205276489,-296.217712402344,-32.1636962890625,-14.7023239135742,-348.874389648438,-29.2518310546875,-5.21596717834473,-1.86846923828125,-65.008056640625,-33.7950820922852,-134.0078125,0.49298095703125,-12.4108829498291,-183.499084472656,32.6934204101563,31.2865314483643,-253.192291259766,-12.270263671875,8.58981037139893,-299.130493164063,-31.94091796875,-9.68394374847412,-349.963317871094,-32.0634765625,-12.975790977478,0.15960693359375,-73.350341796875,-43.6023139953613,-134.157592773438,3.5775146484375,-13.0467948913574,-182.252868652344,41.71240234375,
- 36.2624397277832,-252.295654296875,-17.3017578125,8.56725692749023,-298.787689208984,-38.169189453125,-12.8646602630615,-349.782196044922,-37.0777587890625,-47.5367622375488,-107.366821289063,-6.0247802734375,-42.6386985778809,-105.660278320313,-4.8446044921875,-38.0540466308594,-106.110534667969,-6.31793212890625,-34.2460403442383,-109.059692382813,-11.0570068359375,-36.4296340942383,-112.352203369141,-14.288330078125,-41.7488632202148,-114.293365478516,-15.707763671875,-47.063419342041,-113.600982666016,-13.7042846679688,-50.1120758056641,-110.980712890625,-9.59967041015625,-50.3715171813965,-72.9252319335938,-50.1529541015625,-47.1032943725586,-70.0814208984375,-46.3863525390625,-42.2605781555176,-69.736328125,-45.05810546875,-36.0185585021973,-72.3860473632813,-46.3734130859375,-35.7322311401367,-76.3843994140625,-50.2745361328125,-39.1671714782715,-79.6056518554688,-54.5037841796875,-44.9934883117676,-79.765869140625,-55.8128662109375,-50.2522926330566,-77.3018188476563,-54.5162353515625,-22.558084487915,-157.492584228516,25.1949462890625,-21.2675704956055,-158.703674316406,21.438720703125,-22.2967853546143,-163.182678222656,18.2008666992188,-25.0178546905518,-166.751922607422,19.2190551757813,-28.0149936676025,-168.006591796875,23.1989135742188,-29.3014392852783,-166.310791015625,27.5877685546875,-28.2758674621582,-162.316467285156,30.1934814453125,-25.2125644683838,-158.498779296875,28.9163818359375,22.7531604766846,-202.208740234375,27.629150390625,20.233226776123,-203.915313720703,25.6932373046875,17.9796352386475,-208.296142578125,26.18212890625,18.443338394165,-210.807250976563,28.9428100585938,21.0467014312744,-210.895263671875,32.3877563476563,23.9942436218262,-208.706970214844,34.4520874023438,25.7867660522461,-204.89453125,33.8848266601563,25.2331809997559,-202.172241210938,30.7302856445313,18.5907001495361,-274.199493408203,-33.5975341796875,16.6382160186768,-273.985931396484,-29.9521484375,16.3787536621094,-275.141845703125,-26.47509765625,19.4234619140625,-277.593322753906,-23.3997802734375,22.8818168640137,-279.518798828125,-24.5799560546875,
- 25.1303863525391,-279.821319580078,-28.417236328125,25.1572875976563,-278.395294189453,-32.468505859375,22.3447532653809,-276.214019775391,-34.970458984375,33.6037979125977,-230.354034423828,-7.17840576171875,31.0698299407959,-231.705322265625,-5.44158935546875,30.8997554779053,-234.858093261719,-2.240966796875,33.7421836853027,-236.881713867188,-0.94342041015625,37.7440414428711,-236.976928710938,-1.7908935546875,40.5151748657227,-235.26513671875,-3.97265625,40.4493560791016,-232.473327636719,-6.7288818359375,37.2633743286133,-230.360717773438,-8.08917236328125,-8.66111183166504,-319.668914794922,-38.148681640625,-8.95166397094727,-319.836395263672,-35.2314453125,-8.05554389953613,-320.692962646484,-32.9295654296875,-4.93042278289795,-321.984130859375,-31.8603515625,-2.73799562454224,-322.842315673828,-33.67236328125,-2.29307794570923,-322.685821533203,-36.776123046875,-3.52018737792969,-321.683990478516,-39.3818359375,-6.31404209136963,-320.537506103516,-40.1474609375,-12.1525783538818,-372.163543701172,-37.0123291015625,-11.4576215744019,-371.407623291016,-32.7152099609375,-15.8864812850952,-371.626373291016,-32.599609375,-16.5812282562256,-372.380432128906,-36.8974609375,-25.0387630462646,-406.292572021484,-24.269287109375,-22.1487236022949,-406.822509765625,-24.2869873046875,-22.7192554473877,-407.682281494141,-27.03564453125,-25.6077365875244,-407.151092529297,-27.01708984375,-22.6360149383545,-360.281219482422,-25.3570556640625,-19.3840484619141,-361.818878173828,-24.3681640625,-19.6865844726563,-363.349822998047,-27.7552490234375,-22.9392051696777,-361.812591552734,-28.7454833984375,-34.8934593200684,-386.979461669922,-1.321044921875,-32.366138458252,-386.689788818359,-1.1424560546875,-32.4024925231934,-388.249053955078,-3.15753173828125,-34.9308853149414,-388.541198730469,-3.337890625,-24.5472831726074,-177.237243652344,20.771240234375,-32.2358283996582,-181.225891113281,22.070556640625,-30.369026184082,-179.356658935547,30.42626953125,-22.6794185638428,-175.368469238281,29.1266479492188,-3.47757244110107,-206.882873535156,28.8096313476563,
- -8.92315673828125,-210.599578857422,30.6099853515625,-6.41773509979248,-209.308746337891,36.8965454101563,-0.985259056091309,-205.599090576172,35.0791015625,13.477352142334,-254.997222900391,32.5411376953125,19.7413578033447,-253.781982421875,33.1318359375,20.9369812011719,-252.251739501953,27.1703491210938,14.7198333740234,-253.454559326172,26.5718994140625,35.5171241760254,-319.175903320313,-3.8094482421875,31.7628536224365,-318.465850830078,-5.96502685546875,29.6251964569092,-321.258941650391,-3.62994384765625,33.1801223754883,-321.678558349609,-0.49346923828125,31.5584774017334,-258.9130859375,0.37005615234375,32.7341842651367,-262.056915283203,2.48809814453125,36.2858123779297,-261.126525878906,0.9088134765625,35.1083869934082,-257.982177734375,-1.21136474609375,29.5291347503662,-275.5771484375,-27.1376953125,30.8865032196045,-277.462524414063,-25.23095703125,33.3601455688477,-275.903350830078,-26.1094970703125,32.0053291320801,-274.016815185547,-28.0166015625,18.0058212280273,-233.567016601563,22.8656616210938,19.0083179473877,-236.355407714844,26.8160400390625,22.4638805389404,-232.890319824219,27.5084228515625,21.4619693756104,-230.098693847656,23.5557250976563,26.5501842498779,-278.392242431641,27.63427734375,22.8879623413086,-276.639099121094,26.8492431640625,23.4131908416748,-278.556915283203,23.2222290039063,27.0765895843506,-280.311645507813,24.0069580078125,5.56748914718628,-309.656860351563,35.1942749023438,-6.3082971572876,-345.842468261719,36.8624877929688,-7.11045598983765,-361.640014648438,41.35205078125,2.55244970321655,-308.414672851563,34.6356811523438,-7.89469003677368,-345.416534423828,36.6646118164063,3.02489137649536,-309.846984863281,31.6903686523438,-7.60540819168091,-345.972106933594,35.1320190429688,6.04083395004272,-311.090972900391,32.2498779296875,-6.02029943466187,-346.397827148438,35.3298950195313,16.412670135498,-293.746795654297,28.0731201171875,15.9129886627197,-292.066619873047,31.3663330078125,19.2588958740234,-293.570434570313,32.040771484375,19.7597637176514,-295.251312255859,28.7468872070313,
- -0.645700931549072,-327.676055908203,32.6590576171875,-1.03358793258667,-326.644317626953,34.9588012695313,1.32951211929321,-327.51416015625,35.35400390625,1.71982431411743,-328.547943115234,33.0536499023438,-24.7613525390625,-148.772827148438,18.108642578125,-25.9456844329834,-153.658203125,12.6099853515625,-30.6810207366943,-157.473205566406,12.367919921875,-36.3947257995605,-158.50439453125,15.8992309570313,-39.2793464660645,-156.230163574219,21.1943359375,-37.9740524291992,-151.894958496094,25.793212890625,-32.6443481445313,-147.844665527344,25.8831176757813,-27.5251064300537,-147.049682617188,22.50439453125,12.2691326141357,-282.482513427734,-31.63916015625,12.3019466400146,-283.284912109375,-29.11767578125,14.6474533081055,-285.101165771484,-27.1011962890625,17.0038795471191,-286.581298828125,-28.1817626953125,18.332820892334,-286.880401611328,-31.0872802734375,18.100471496582,-285.882781982422,-34.0047607421875,15.9532070159912,-284.263305664063,-35.6241455078125,13.4029397964478,-282.708740234375,-34.3902587890625,-13.1410760879517,-339.237945556641,-31.728515625,-11.4894189834595,-339.748138427734,-30.0048828125,-8.32106018066406,-340.752838134766,-30.1630859375,-6.99200105667114,-341.675170898438,-32.4615478515625,-7.73356676101685,-341.800445556641,-35.2890625,-9.78855991363525,-341.211242675781,-37.160400390625,-12.5537528991699,-340.285308837891,-36.85400390625,-13.9582395553589,-339.353179931641,-34.3475341796875,-12.7266407012939,-360.222991943359,-36.6787109375,-11.9739151000977,-359.795623779297,-31.95166015625,-16.7901363372803,-359.809417724609,-31.8741455078125,-17.5432224273682,-360.235687255859,-36.6021728515625,20.928295135498,-267.548522949219,-26.7830200195313,20.2825660705566,-268.629425048828,-24.0316162109375,22.4630947113037,-270.508972167969,-21.1239624023438,25.5791301727295,-271.783020019531,-21.576904296875,28.0035438537598,-271.731018066406,-24.3380126953125,28.5266437530518,-270.427307128906,-27.584716796875,26.468864440918,-268.771484375,-29.998046875,23.0765438079834,-267.453857421875,-29.431640625,
- 1.51849555969238,-181.816436767578,39.0347900390625,0.59635591506958,-182.975372314453,34.422607421875,-2.84040498733521,-187.802825927734,31.461181640625,-5.92089748382568,-191.034790039063,33.5662841796875,-6.91236448287964,-191.977233886719,39.1049194335938,-5.63191604614258,-190.370666503906,44.375244140625,-2.66168260574341,-186.089172363281,46.668212890625,0.733323574066162,-182.609497070313,44.1555786132813,7.79109716415405,-189.858520507813,38.8619995117188,6.123948097229,-191.371612548828,35.7859497070313,2.51734828948975,-195.108154296875,35.0416870117188,0.436007499694824,-196.960052490234,37.7314453125,0.71172046661377,-196.7626953125,42.2010498046875,2.81635999679565,-194.847106933594,45.6240234375,5.85110187530518,-191.610015869141,46.0624389648438,8.15056800842285,-189.631103515625,42.9639282226563,19.5047245025635,-272.284210205078,29.0546264648438,25.4379901885986,-271.030364990234,29.6259765625,26.0397510528564,-270.442596435547,24.2507934570313,20.8089771270752,-271.515106201172,23.1882934570313,-3.9290668964386,-221.701538085938,31.7235107421875,-0.366200923919678,-220.730529785156,38.4693603515625,5.89195871353149,-217.069854736328,35.957763671875,2.35224962234497,-218.031433105469,29.23681640625,4.19442415237427,-236.764770507813,31.9326782226563,10.5177097320557,-236.122650146484,36.5231323242188,13.1103916168213,-234.631591796875,31.081787109375,7.05696725845337,-236.019226074219,28.3822021484375,34.984806060791,-216.170104980469,10.275146484375,31.7268772125244,-217.327606201172,10.0115966796875,29.4562397003174,-220.943542480469,12.0523071289063,30.8450927734375,-223.450073242188,14.4761352539063,34.6550140380859,-224.0244140625,16.1589965820313,38.3948707580566,-222.510131835938,16.2789916992188,40.1625480651855,-219.347229003906,14.4696044921875,38.5421257019043,-216.6318359375,11.7379150390625,23.4756011962891,-276.808532714844,-31.75048828125,22.7673492431641,-274.697845458984,-26.3260498046875,17.7711887359619,-277.744323730469,-26.6986083984375,18.4796085357666,-279.854827880859,-32.122802734375,
- 28.9994983673096,-362.876190185547,20.8408813476563,11.2004489898682,-377.863708496094,33.80810546875,29.4168224334717,-360.348175048828,24.0543212890625,25.3910503387451,-359.640991210938,23.6101684570313,24.9734134674072,-362.167846679688,20.3964233398438,34.3031959533691,-321.233215332031,-7.82354736328125,39.2819747924805,-319.987670898438,-7.085693359375,39.9953804016113,-321.983734130859,-11.7974853515625,35.0171356201172,-323.230407714844,-12.5355834960938,27.9972629547119,-293.804748535156,-17.14111328125,33.5490760803223,-292.392150878906,-16.3035278320313,34.2602920532227,-294.235107421875,-21.7291259765625,28.7082042694092,-295.647857666016,-22.5668334960938,33.6102027893066,-338.873779296875,13.294921875,38.1645355224609,-339.797241210938,13.917236328125,37.7628555297852,-342.410339355469,10.0680541992188,33.2086563110352,-341.486999511719,9.446533203125,35.9173393249512,-340.058044433594,13.224609375,28.0452098846436,-340.330932617188,21.30419921875,17.8645858764648,-337.897003173828,29.2431640625,1.1121621131897,-345.944213867188,36.9026489257813,33.7222938537598,-339.76025390625,10.3676147460938,25.9003887176514,-340.196441650391,19.0191650390625,17.4171199798584,-337.773376464844,27.0648193359375,32.7167778015137,-343.202667236328,10.8486938476563,25.7983570098877,-343.297821044922,18.9310302734375,17.3598384857178,-340.008270263672,26.9197998046875,34.9103736877441,-343.499786376953,13.7069702148438,27.9428310394287,-343.432342529297,21.2164916992188,17.807466506958,-340.132537841797,29.0986938476563,7.44859647750854,-339.765991210938,32.5123901367188,6.8246169090271,-339.743804931641,30.8026123046875,7.44145536422729,-341.449310302734,30.496826171875,8.06469535827637,-341.472076416016,32.20751953125,30.5691013336182,-349.115142822266,20.1672973632813,34.8493156433105,-349.926910400391,20.697265625,34.4396514892578,-352.495391845703,17.1773071289063,30.159460067749,-351.683135986328,16.6481323242188,32.8508453369141,-331.155120849609,1.92803955078125,37.726936340332,-331.747924804688,2.52838134765625,
- 37.3789749145508,-334.892883300781,-1.248291015625,32.503963470459,-334.300323486328,-1.847900390625,31.7139873504639,-308.590301513672,-11.5596313476563,36.9830169677734,-307.260833740234,-10.7705078125,37.6951637268066,-309.179016113281,-15.8433837890625,32.4266777038574,-310.509307861328,-16.631591796875,-35.8545608520508,-49.2250366210938,-58.2298583984375,-31.3278198242188,-50.3239135742188,-56.40673828125,-25.329231262207,-53.423095703125,-58.0181884765625,-24.8263721466064,-55.6140747070313,-63.16357421875,-27.7775783538818,-56.309326171875,-68.673095703125,-33.2416076660156,-54.8629760742188,-70.502685546875,-38.3023681640625,-52.1114501953125,-68.8836669921875,-38.6810302734375,-49.7833862304688,-63.1456298828125,-21.1501541137695,-25.875732421875,-60.00830078125,-14.5583744049072,-27.890625,-61.1781005859375,-13.1686201095581,-29.2969360351563,-66.4754638671875,-15.3687448501587,-29.6820678710938,-72.404296875,-20.805269241333,-28.783203125,-74.740966796875,-26.4150314331055,-26.9826049804688,-73.48193359375,-27.7676067352295,-25.5015869140625,-67.5643310546875,-25.6049652099609,-25.19091796875,-62.2567138671875,-7.86686563491821,3.693115234375,-69.619140625,-6.36406898498535,3.2056884765625,-65.5,-7.32341480255127,3.467041015625,-61.73193359375,-11.8892164230347,4.67144775390625,-60.7890625,-14.971565246582,5.4052734375,-62.282470703125,-16.4494094848633,5.86370849609375,-65.969970703125,-15.5156097412109,5.6309814453125,-70.169677734375,-11.6298027038574,4.5816650390625,-71.1607666015625,-15.9351100921631,-11.825927734375,-56.772705078125,-7.92962455749512,-13.6677856445313,-58.6669921875,-6.3495044708252,-14.0946655273438,-65.2869873046875,-9.14035797119141,-13.345703125,-72.3922119140625,-15.8046455383301,-12.0131225585938,-74.898681640625,-22.6129665374756,-10.4024658203125,-72.95458984375,-24.1337490081787,-10.022216796875,-65.5814208984375,-21.40185546875,-10.7239379882813,-59.230224609375,27.422212600708,-357.183654785156,-18.4672241210938,28.9137783050537,-355.782104492188,-21.205078125,26.06422996521,-354.838409423828,-22.8706665039063,
- 24.5731945037842,-356.239135742188,-20.1323852539063,33.6609420776367,-330.181213378906,-13.1258544921875,30.1355953216553,-329.162841796875,-15.2008666992188,28.1466579437256,-331.453125,-12.4263305664063,31.5843868255615,-332.344848632813,-9.92034912109375,31.1616230010986,-389.503173828125,-30.1134033203125,30.6924915313721,-389.843414306641,-29.021240234375,29.6288280487061,-389.601409912109,-29.601806640625,30.0973682403564,-389.260986328125,-30.6947021484375,30.8316097259521,-299.347961425781,-34.5794677734375,31.8426342010498,-299.821533203125,-33.23095703125,33.127025604248,-299.437622070313,-34.3768310546875,32.1154251098633,-298.963745117188,-35.7264404296875,12.1081809997559,-300.139587402344,33.8217163085938,12.5969867706299,-301.712310791016,30.6810302734375,9.39504814147949,-300.321990966797,30.0573120117188,8.90730857849121,-298.750457763672,33.1980590820313,23.695125579834,-286.982299804688,29.3895874023438,24.2078819274902,-288.774200439453,25.9404907226563,20.7135601043701,-287.153259277344,25.215087890625,20.2019882202148,-285.362457275391,28.6636352539063,-6.40769577026367,-37.337158203125,-66.997802734375,-12.3743629455566,-42.869384765625,-75.0726318359375,-15.3000679016113,-49.3949584960938,-66.1138916015625,-9.33429336547852,-43.8626708984375,-58.040283203125,-17.6059608459473,-237.103271484375,-30.92138671875,-34.1001167297363,-284.652740478516,14.5376586914063,-20.9141273498535,-314.212860107422,34.1666870117188,30.5622138977051,-424.824310302734,17.9703369140625,23.8143291473389,-455.008605957031,-25.057373046875,-12.4787712097168,-478.926666259766,-33.754638671875,-36.499195098877,-498.598510742188,-23.34619140625,-54.8557243347168,-511.220886230469,-4.87103271484375,-26.2301139831543,-232.2578125,-34.738525390625,-38.9826011657715,-279.340270996094,21.085205078125,-19.1383171081543,-309.879699707031,43.1104736328125,38.1716194152832,-423.129516601563,16.0713500976563,27.6059894561768,-451.121704101563,-28.3094482421875,-14.3037528991699,-476.701202392578,-37.347412109375,-38.4046669006348,-497.35791015625,-25.1083984375,
- -26.9170417785645,-228.892639160156,-24.7069091796875,-30.8176689147949,-274.033660888672,20.7993774414063,-10.2134399414063,-307.981628417969,38.7901000976563,34.5912628173828,-419.250122070313,10.0283203125,23.1251201629639,-446.928070068359,-26.7640380859375,-15.8771934509277,-473.956298828125,-34.0059814453125,-38.2354011535645,-495.261016845703,-23.14599609375,-18.292423248291,-233.738037109375,-20.8892822265625,-25.9342155456543,-279.345275878906,14.2501220703125,-11.9893264770508,-312.315093994141,29.8474731445313,26.982234954834,-420.944458007813,11.927978515625,19.3336162567139,-450.814270019531,-23.5108642578125,-14.0521697998047,-476.181732177734,-30.4129638671875,-36.3293418884277,-496.501220703125,-21.3833618164063,-36.236141204834,-245.575317382813,-7.8355712890625,-41.4176216125488,-251.822387695313,-14.013671875,-31.993824005127,-255.027496337891,-16.300537109375,-26.8112373352051,-248.780700683594,-10.1217041015625,-4.56983947753906,-191.373748779297,-36.9639892578125,-0.0390892028808594,-192.487060546875,-46.1741943359375,8.06500244140625,-199.462463378906,-36.93359375,3.52720260620117,-196.664428710938,-31.6812744140625,8.63965225219727,-339.097076416016,43.3057250976563,3.17983627319336,-342.249145507813,48.8143920898438,-1.41708755493164,-343.462341308594,41.8432006835938,4.04232406616211,-340.310607910156,36.3366088867188,26.9864826202393,-396.392333984375,27.3728637695313,26.7284908294678,-397.130218505859,35.2528076171875,19.2785797119141,-399.621978759766,34.1607055664063,19.5380630493164,-398.884857177734,26.2824096679688,20.7807350158691,-365.312347412109,36.692138671875,18.1422824859619,-366.683837890625,44.3251342773438,11.3488883972168,-369.381591796875,40.51318359375,13.9871635437012,-368.009429931641,32.880859375,15.0010585784912,-148.599517822266,-33.642333984375,23.5727920532227,-149.877288818359,-40.9840087890625,28.8756694793701,-153.587280273438,-31.6435546875,20.304271697998,-152.309112548828,-24.30322265625,20.4615936279297,-97.6060180664063,-46.4246826171875,29.7015151977539,-94.7866516113281,-52.4930419921875,
- 33.8960418701172,-92.7159423828125,-42.08544921875,24.6562614440918,-95.5356750488281,-36.01708984375,21.1836986541748,-123.722778320313,-37.272705078125,25.5054359436035,-125.424987792969,-26.8914794921875,35.2541389465332,-124.613525390625,-32.631591796875,30.9324951171875,-122.910797119141,-43.013427734375,6.04946136474609,-170.486053466797,-35.6556396484375,12.6430854797363,-173.126953125,-27.00732421875,20.3434009552002,-173.733947753906,-35.0931396484375,13.75,-171.092895507813,-43.7423095703125,11.8669929504395,-78.9144897460938,-54.6263427734375,15.8575286865234,-72.7709350585938,-45.84912109375,21.9900360107422,-67.8964233398438,-54.17431640625,17.999137878418,-74.0399780273438,-62.9515380859375,-15.4811515808105,-41.5510864257813,-71.867431640625,-17.327278137207,-45.6690063476563,-66.213134765625,-13.562858581543,-42.1777954101563,-61.118896484375,-11.7161483764648,-38.059814453125,-66.771240234375,4.43185806274414,-60.36669921875,-67.7889404296875,-0.846927642822266,-67.4073486328125,-59.084228515625,3.2590217590332,-61.2938842773438,-49.135498046875,8.53818893432617,-54.2531127929688,-57.8397216796875,-17.0700721740723,-212.441650390625,-34.263671875,-8.7994270324707,-216.290161132813,-28.7642822265625,-4.62028884887695,-219.004241943359,-36.3663330078125,-12.8565635681152,-214.277404785156,-43.59423828125,32.8774185180664,-445.177612304688,-6.90594482421875,36.6439590454102,-442.371520996094,-11.289306640625,32.2276306152344,-437.890350341797,-11.4449462890625,28.4612445831299,-440.696105957031,-7.06097412109375,8.14823532104492,-465.177337646484,-33.861328125,7.41869735717773,-463.124664306641,-38.84765625,4.10906600952148,-459.693572998047,-36.1937255859375,4.83882522583008,-461.745666503906,-31.20703125,24.6142883300781,-400.832763671875,31.2002563476563,22.44677734375,-400.461791992188,25.4610595703125,20.1970520019531,-395.155395507813,27.5947265625,22.3635864257813,-395.527282714844,33.3328857421875,-3.46096801757813,-422.797729492188,35.6151123046875,-18.900390625,-445.701446533203,29.8759765625,
- -27.9772644042969,-472.560943603516,19.6122436523438,-35.7413635253906,-484.381469726563,5.27093505859375,-27.7147216796875,-493.700531005859,-16.0821533203125,-15.4396362304688,-491.110565185547,-31.119140625,-3.67257690429688,-421.562164306641,30.449951171875,-17.4067993164063,-443.694213867188,25.5478515625,-25.3793029785156,-471.089141845703,15.6412963867188,-32.6228942871094,-482.3798828125,2.77655029296875,-26.9247741699219,-491.324890136719,-14.5039672851563,-6.9573974609375,-417.797943115234,32.26708984375,-21.3756408691406,-440.765014648438,26.3621826171875,-29.4632263183594,-468.367431640625,14.8665771484375,-35.7151794433594,-480.030944824219,1.89306640625,-28.6465454101563,-489.978454589844,-16.2604370117188,-6.74530029296875,-419.033935546875,37.4313354492188,-22.8689880371094,-442.772369384766,30.6898803710938,-32.0599670410156,-469.838928222656,18.8369140625,-38.8410034179688,-481.896301269531,4.3087158203125,-29.4468688964844,-492.339019775391,-17.8289184570313,-17.1153259277344,-444.917541503906,26.9071044921875,-31.8694458007813,-455.683349609375,1.38616943359375,-16.7693786621094,-468.290435791016,-29.2451171875,-18.8743591308594,-440.807250976563,26.3779907226563,-34.0247802734375,-452.675964355469,0.510986328125,-22.1132507324219,-442.563568115234,28.9649047851563,-36.8125610351563,-455.208801269531,1.0264892578125,-20.3545837402344,-446.673706054688,29.4951782226563,-34.6590576171875,-458.21728515625,1.903076171875,10.3735046386719,-409.530090332031,35.72412109375,7.91830444335938,-409.319610595703,31.0819091796875,5.11251831054688,-405.708404541016,33.595703125,7.56744384765625,-405.919494628906,38.2369995117188,-32.4754333496094,-448.78662109375,15.6904907226563,-30.7010192871094,-452.46044921875,15.9847412109375,-27.8685607910156,-450.627227783203,13.6696166992188,-29.6437072753906,-446.953704833984,13.3771362304688,-27.6832275390625,-459.571960449219,-17.0571899414063,-28.7406005859375,-457.812744140625,-18.5449829101563,-30.6379089355469,-459.401397705078,-18.490478515625,-29.5823364257813,-461.161193847656,-17.002197265625,
- -34.7703857421875,-489.025756835938,-5.201416015625,-32.3175354003906,-490.9794921875,-3.8681640625,-30.3003540039063,-488.801025390625,-4.4364013671875,-32.7444763183594,-486.926208496094,-5.7327880859375,-30.181941986084,-253.059875488281,-9.03662109375,-28.8811988830566,-255.926300048828,-1.41461181640625,-37.276782989502,-258.172119140625,-1.5821533203125,-38.5766487121582,-255.306518554688,-9.20379638671875,-28.7012977600098,-306.588287353516,-15.4837646484375,-30.9141654968262,-324.28564453125,-5.429443359375,-30.5987815856934,-347.934448242188,5.58203125,-21.1733016967773,-374.699737548828,25.9788818359375,-10.8498382568359,-393.294769287109,34.7124633789063,-6.99862289428711,-405.743347167969,37.301025390625,-6.39779281616211,-418.880767822266,36.564453125,-2.14557266235352,-437.704925537109,36.6681518554688,6.46320724487305,-454.647796630859,38.4075317382813,-29.4970359802246,-303.035858154297,-7.32574462890625,-31.540599822998,-321.572723388672,0.486083984375,-31.429141998291,-345.398101806641,10.9314575195313,-21.8963890075684,-372.242248535156,30.1045532226563,-11.1049957275391,-391.856262207031,38.7535400390625,-6.9866828918457,-405.153350830078,40.9822387695313,-6.3010368347168,-418.890228271484,39.7525634765625,-2.09338760375977,-437.902191162109,39.2848510742188,-38.2939186096191,-304.221832275391,-8.5079345703125,-37.9688835144043,-321.711700439453,-0.70068359375,-37.2740898132324,-346.061706542969,9.8416748046875,-26.1180648803711,-374.637664794922,30.4540405273438,-14.9847679138184,-393.703796386719,38.9561157226563,-10.556640625,-406.229888916016,41.04150390625,-9.45636367797852,-419.342102050781,39.76953125,-4.60224914550781,-438.551116943359,39.296875,-37.4980583190918,-307.774230957031,-16.6658325195313,-37.3428535461426,-324.42333984375,-6.615234375,-36.4439506530762,-348.59912109375,4.49114990234375,-25.3947944641113,-377.094970703125,26.3286743164063,-14.7300262451172,-395.141418457031,34.9143676757813,-10.5688400268555,-406.819030761719,37.3614501953125,-9.55361557006836,-419.332916259766,36.580810546875,
- -4.65475082397461,-438.354431152344,36.678955078125,-22.1833305358887,-372.447723388672,27.2764892578125,-24.6075248718262,-371.398651123047,29.4421997070313,-26.3466682434082,-374.174194335938,28.5751342773438,-23.9223289489746,-375.222778320313,26.4091186523438,-11.9434852600098,-379.328552246094,42.7554931640625,-0.204952239990234,-396.332275390625,60.8648681640625,-14.0422515869141,-378.488708496094,44.8507690429688,-15.4647789001465,-381.16259765625,44.3250732421875,-13.3659629821777,-382.002410888672,42.229736328125,-35.5697059631348,-282.262847900391,-16.7664184570313,-35.0990257263184,-282.158233642578,-9.5008544921875,-27.8956489562988,-280.66650390625,-9.33233642578125,-28.3659629821777,-280.77197265625,-16.6004028320313,-36.2742881774902,-297.556396484375,-16.4520263671875,-36.5549201965332,-295.601470947266,-9.73321533203125,-29.5104103088379,-294.486663818359,-9.04034423828125,-29.2293510437012,-296.441802978516,-15.7589721679688,-37.226993560791,-316.617401123047,-10.7072143554688,-37.8908805847168,-313.703216552734,-4.203125,-30.8469734191895,-313.190338134766,-3.06341552734375,-30.1829948425293,-316.10498046875,-9.568115234375,-29.0008277893066,-286.210296630859,-13.675048828125,-29.1187553405762,-291.571838378906,-10.66162109375,-34.8088188171387,-292.178070068359,-12.9231567382813,-34.6907005310059,-286.815795898438,-15.9356689453125,-22.4534797668457,-301.792327880859,-22.86328125,4.37997436523438,-341.38818359375,-38.6771240234375,16.364688873291,-352.901702880859,-33.0242919921875,35.9597969055176,-371.909423828125,-9.95733642578125,31.9620094299316,-386.202362060547,4.2755126953125,-24.273120880127,-304.952026367188,-18.4283447265625,1.7359733581543,-343.921447753906,-35.6822509765625,12.9848136901855,-354.350250244141,-30.78564453125,33.2744216918945,-372.506317138672,-8.9913330078125,-29.3078498840332,-305.170776367188,-21.1753540039063,-0.523723602294922,-345.570648193359,-39.482177734375,12.0648002624512,-356.852569580078,-34.1651611328125,32.9648818969727,-374.495544433594,-11.0975952148438,
- -27.4878883361816,-302.012359619141,-25.60986328125,2.12030029296875,-343.036499023438,-42.4771728515625,15.444450378418,-355.40380859375,-36.404541015625,35.6492652893066,-373.898193359375,-12.0648803710938,17.0552062988281,-354.456115722656,-33.61962890625,15.1700859069824,-355.001983642578,-30.9837646484375,12.6375389099121,-355.576812744141,-33.029296875,14.522159576416,-355.030059814453,-35.666259765625,20.0098190307617,-364.655853271484,-31.259033203125,22.260082244873,-375.181274414063,-30.3245849609375,27.8036079406738,-383.176239013672,-26.4271240234375,30.8784370422363,-390.776550292969,-19.914306640625,18.3320999145508,-365.026062011719,-28.9713134765625,20.5723724365234,-375.025787353516,-28.404541015625,26.3397521972656,-383.193389892578,-24.75048828125,16.2028388977051,-365.789123535156,-30.732666015625,18.8407287597656,-376.306762695313,-29.8013916015625,25.041576385498,-384.674377441406,-25.8035888671875,17.8802528381348,-365.419311523438,-33.020751953125,20.5283164978027,-376.462219238281,-31.7216796875,26.5058517456055,-384.657928466797,-27.47900390625,-15.610538482666,-324.224517822266,-40.133544921875,-11.6613807678223,-323.483489990234,-36.9979248046875,-9.5786247253418,-320.805877685547,-40.77099609375,-13.5277290344238,-321.547271728516,-43.9071044921875,-7.91428756713867,-334.409729003906,-41.8157958984375,-4.57593154907227,-333.371337890625,-38.488525390625,-2.32890701293945,-330.7470703125,-41.95166015625,-5.66720199584961,-331.78515625,-45.279296875,-22.8506736755371,-314.246276855469,-31.9993896484375,-18.3957405090332,-313.886108398438,-29.1219482421875,-16.5515327453613,-310.810272216797,-33.0133056640625,-21.0064125061035,-311.171142578125,-35.89111328125,32.387279510498,-364.179260253906,-24.15771484375,29.2490158081055,-364.946380615234,-22.684814453125,29.5585784912109,-362.28564453125,-20.3662109375,32.6969223022461,-361.518737792969,-21.838134765625,24.4318962097168,-358.888336181641,-30.9610595703125,21.1625823974609,-360.025512695313,-29.072021484375,21.8035507202148,-357.450805664063,-26.1773681640625,
- 25.0730361938477,-356.313873291016,-28.065673828125,34.1245422363281,-423.752563476563,10.178466796875,29.4819183349609,-425.329833984375,11.0908203125,31.0624694824219,-425.001190185547,15.8089599609375,35.7062377929688,-423.424743652344,14.8973999023438,34.1680145263672,-448.843200683594,1.35662841796875,37.8482971191406,-474.934753417969,-15.9144287109375,40.5353546142578,-494.508514404297,-21.5336303710938,33.80712890625,-507.660766601563,-30.1422119140625,16.8960266113281,-540.110717773438,-50.60009765625,30.6779327392578,-450.895874023438,3.40435791015625,35.2160949707031,-474.95361328125,-14.2733154296875,37.4595947265625,-494.528472900391,-20.0866088867188,31.6936645507813,-507.203735351563,-28.78076171875,33.9203796386719,-452.028137207031,6.369384765625,37.0704803466797,-476.221313476563,-12.1365966796875,38.8438720703125,-496.310760498047,-17.5440673828125,32.4942016601563,-508.868560791016,-27.04150390625,37.4134979248047,-449.971801757813,4.32373046875,39.7061309814453,-476.202514648438,-13.7755737304688,41.9190979003906,-496.290832519531,-18.9915161132813,34.6118316650391,-509.336242675781,-28.4013671875,22.1732788085938,-520.25048828125,-38.6337890625,21.6856536865234,-518.669799804688,-39.92822265625,23.3954925537109,-519.088500976563,-41.1170654296875,23.8855133056641,-520.671569824219,-39.820556640625,33.5389251708984,-435.78466796875,8.26177978515625,29.5536956787109,-437.835266113281,9.69744873046875,31.7623291015625,-438.190338134766,13.6236572265625,35.7497253417969,-436.138061523438,12.189697265625,34.5693969726563,-461.105041503906,-8.42352294921875,31.7377624511719,-462.762573242188,-6.6090087890625,34.5060577392578,-463.570556640625,-4.12213134765625,37.3407440185547,-461.910888671875,-5.9346923828125,40.1819610595703,-485.229919433594,-18.6386108398438,37.3542633056641,-485.739837646484,-17.1181030273438,39.2079162597656,-486.522552490234,-14.568603515625,42.0367584228516,-486.011962890625,-16.08837890625,38.6271667480469,-477.543273925781,-15.1347045898438,37.9891052246094,-478.322845458984,-13.0781860351563,
- 37.0171813964844,-476.273864746094,-12.6748657226563,37.6558990478516,-475.493591308594,-14.731201171875,32.9809875488281,-480.201049804688,-17.3688354492188,27.9903106689453,-485.489227294922,-20.7756958007813,24.0275268554688,-490.6298828125,-24.1224365234375,18.8496246337891,-491.910339355469,-30.0830078125,32.4880523681641,-480.845306396484,-15.5476684570313,27.6254425048828,-486.0009765625,-19.1055908203125,23.6114501953125,-491.096862792969,-22.7032470703125,31.4828643798828,-479.142578125,-15.26416015625,26.4053802490234,-484.700500488281,-18.9615478515625,22.3577117919922,-490.175231933594,-22.7125244140625,31.9756774902344,-478.498199462891,-17.0852661132813,26.7702484130859,-484.188781738281,-20.6318359375,22.7729644775391,-489.709136962891,-24.1317138671875,30.4838256835938,-124.8291015625,-37.7352294921875,22.6350021362305,-122.848449707031,-35.2015380859375,25.0526428222656,-114.4833984375,-36.0205078125,32.9344596862793,-116.547058105469,-38.5892333984375,37.3341674804688,-140.469573974609,6.77423095703125,20.7956848144531,-164.121215820313,42.4369506835938,-4.3035888671875,-185.220458984375,46.8392944335938,-25.2225646972656,-207.983032226563,35.0540161132813,29.3359069824219,-138.976318359375,7.39739990234375,16.8257446289063,-161.646118164063,39.0146484375,-7.59051513671875,-181.150329589844,43.2971801757813,-27.3486633300781,-205.147064208984,32.8798828125,31.8765563964844,-132.139495849609,11.1109619140625,15.9795532226563,-156.843658447266,43.1782836914063,-10.7341918945313,-179.487915039063,48.5150146484375,-30.143798828125,-204.914276123047,35.9754638671875,39.8805236816406,-133.627685546875,10.4837646484375,20.6957702636719,-160.066375732422,46.6182861328125,-7.447509765625,-183.558319091797,52.0560913085938,-28.0271911621094,-207.758666992188,38.1587524414063,-33.8345947265625,-226.205322265625,33.6318359375,37.1131286621094,-129.412231445313,-18.02294921875,29.0018310546875,-127.734252929688,-16.3209228515625,31.6548156738281,-120.200286865234,-14.8218994140625,39.7698669433594,-121.875122070313,-16.525634765625,
- 28.1352844238281,-153.562194824219,30.3285522460938,22.0944213867188,-151.642395019531,27.6209716796875,23.4219055175781,-145.673706054688,30.9536743164063,29.4681701660156,-147.589324951172,33.6617431640625,8.44088745117188,-174.117401123047,48.0316772460938,5.26544189453125,-170.332855224609,44.50048828125,2.62393188476563,-168.479064941406,49.6005859375,5.80001831054688,-172.262817382813,53.1341552734375,16.1746215820313,-160.943420410156,46.1807861328125,13.8379516601563,-161.545440673828,42.380615234375,17.7479248046875,-161.919311523438,40.1321411132813,20.0853271484375,-161.315856933594,43.9321899414063,17.5626220703125,-171.651397705078,48.1819458007813,14.8207397460938,-183.627197265625,47.7862548828125,10.4657592773438,-194.818298339844,49.4489135742188,8.46957397460938,-206.635314941406,46.2418212890625,15.2265319824219,-171.548095703125,44.9315795898438,12.7020874023438,-183.244445800781,44.80419921875,8.611083984375,-194.631958007813,46.7384033203125,18.5234069824219,-171.627777099609,42.629150390625,15.5594787597656,-184.106506347656,42.6506958007813,11.0411682128906,-195.877136230469,44.909423828125,20.8596496582031,-171.73095703125,45.87939453125,17.67822265625,-184.489318847656,45.6329345703125,12.8948059082031,-196.065155029297,47.6194458007813,-17.78369140625,-193.227020263672,45.051025390625,-14.7637329101563,-194.231323242188,40.7720947265625,-17.4397583007813,-190.585266113281,37.8958740234375,-20.4551391601563,-189.577209472656,42.1713256835938,-37.1480865478516,-259.360717773438,6.035400390625,-29.9230937957764,-263.586395263672,1.6842041015625,-36.5508193969727,-269.378173828125,-1.3623046875,-43.774772644043,-265.152221679688,2.9884033203125,-1.95222330093384,-321.635559082031,42.833740234375,-4.94714212417603,-324.621002197266,34.7437744140625,-12.3746871948242,-327.060577392578,39.575927734375,-9.37998580932617,-324.075408935547,47.66748046875,-21.9594593048096,-289.993408203125,30.068359375,-20.2067165374756,-294.845153808594,22.3939208984375,-28.7293930053711,-298.549621582031,24.576904296875,
- -30.4816570281982,-293.697570800781,32.2509765625,-37.9471893310547,-86.7068481445313,-38.2762451171875,-42.1629219055176,-89.4796142578125,-42.3603515625,-48.2864761352539,-89.0963745117188,-43.197265625,-53.3553695678711,-86.1997985839844,-41.2652587890625,-52.7602767944336,-81.885986328125,-36.6590576171875,-48.8130073547363,-79.4354553222656,-33.0194091796875,-43.6790962219238,-79.5538940429688,-32.069091796875,-37.5808944702148,-82.7628173828125,-34.156494140625,-36.0646362304688,-91.5825500488281,-20.7402954101563,-36.0010871887207,-95.5090942382813,-24.6513061523438,-39.8921051025391,-98.4509582519531,-28.4485473632813,-45.9469223022461,-98.424072265625,-29.135986328125,-51.245189666748,-95.8875427246094,-27.104736328125,-51.1411743164063,-91.5633544921875,-22.7188720703125,-47.4947967529297,-88.9352416992188,-19.3310546875,-42.4356842041016,-88.7683715820313,-18.514404296875
- }
- PolygonVertexIndex: *3594 {
- a: 0,1,63,-65,66,67,103,-105,70,71,13,-6,14,6,74,-76,6,14,117,-115,7,15,97,-95,8,16,93,-91,9,17,89,-87,10,18,-12,1,2,62,-64,67,68,102,-104,13,71,72,-21,21,14,75,-77,14,21,116,-118,15,22,96,-98,16,23,92,-94,17,24,88,-90,18,25,-12,2,3,65,-63,68,69,105,-103,72,73,27,-21,28,21,76,-78,21,28,115,-117,22,29,95,-97,23,30,91,-93,24,31,87,-89,25,32,-12,3,0,64,-66,69,66,104,-106,73,70,5,-28,77,74,6,-29,28,6,114,-116,29,7,94,-96,30,8,90,-92,31,9,86,-88,32,10,-12,33,34,80,-82,122,123,-39,34,35,79,-81,123,124,-39,35,36,78,-80,124,125,-39,36,33,81,-79,125,122,-39,43,42,110,-112,44,43,111,-113,45,44,112,-114,42,45,113,-111,47,46,106,-108,48,47,107,-109,49,48,108,-110,46,49,109,-107,51,50,42,-44,52,51,43,-45,53,52,44,-46,50,53,45,-43,55,54,85,-83,56,55,82,-84,57,56,83,-85,54,57,84,-86,59,58,60,-62,1,0,58,-60,0,3,60,-59,3,2,61,-61,2,1,59,-62,63,62,50,-52,64,63,51,-53,65,64,52,-54,62,65,53,-51,4,12,67,-67,12,19,68,-68,19,26,69,-69,26,4,66,-70,119,120,104,-104,118,119,103,-103,121,118,102,-106,120,121,105,-105,98,99,5,-14,101,98,13,-21,100,101,20,-28,5,99,100,-28,79,78,55,-57,80,79,56,-58,81,80,57,-55,78,81,54,-56,83,82,41,-41,84,83,40,-40,85,84,39,-38,82,85,37,-42,87,86,10,-33,88,87,32,-26,89,88,25,-19,86,89,18,-11,91,90,9,-32,92,91,31,-25,93,92,24,-18,90,93,17,-10,95,94,8,-31,96,95,30,-24,97,96,23,-17,94,97,16,-9,75,74,99,-99,100,99,74,-78,77,76,101,-101,76,75,98,-102,107,106,12,-5,108,107,4,-27,109,108,26,-20,106,109,19,-13,111,110,49,-47,112,111,46,-48,113,112,47,-49,110,113,48,-50,115,114,7,-30,116,115,29,-23,117,116,22,-16,114,117,15,-8,119,118,72,-72,120,119,71,-71,121,120,70,-74,118,121,73,-73,37,39,123,-123,39,40,124,-124,40,41,125,-125,41,37,122,-126,126,230,511,-513,365,366,130,-232,131,232,402,-404,132,233,394,-396,133,234,294,-296,143,135,298,-300,303,304,135,-144,137,136,-145,127,224,509,-511,363,364,138,-226,139,226,400,-402,140,227,392,-394,141,228,292,-294,150,143,299,-301,302,303,143,-151,137,144,-152,128,218,515,-517,369,370,145,-220,406,399,146,-221,398,391,147,-222,148,222,290,-292,157,150,300,-302,
- 305,302,150,-158,137,151,-159,129,236,513,-515,367,368,152,-238,153,238,404,-406,154,239,396,-398,155,240,296,-298,135,157,301,-299,304,305,157,-136,137,158,-137,159,160,307,-309,311,312,163,-167,164,167,-166,160,161,306,-308,310,311,166,-169,167,169,-166,161,162,309,-307,313,310,168,-171,169,171,-166,162,159,308,-310,163,312,313,-171,171,164,-166,175,172,316,-318,176,183,320,-322,424,425,-178,178,185,-180,185,186,-180,179,186,329,-327,517,518,180,-188,525,526,-183,172,173,315,-317,183,189,319,-321,423,424,184,-191,185,191,192,-187,186,192,328,-330,520,517,187,-194,526,527,-183,173,174,314,-316,189,195,318,-320,426,423,190,-197,191,197,-193,197,198,-193,192,198,327,-329,519,520,193,-200,527,528,-183,174,175,317,-315,195,176,321,-319,177,425,426,-197,197,178,179,-199,198,179,326,-328,518,519,199,-181,528,525,-183,201,202,339,-341,331,332,205,-209,335,336,206,-210,530,531,216,-216,202,203,338,-340,330,331,208,-211,334,335,209,-212,529,530,215,-215,203,204,341,-339,333,330,210,-213,337,334,211,-214,532,529,214,-218,204,201,340,-342,205,332,333,-213,206,336,337,-214,531,532,217,-217,218,129,514,-516,368,369,219,-153,220,153,405,-407,221,154,397,-399,297,290,222,-156,224,128,516,-510,370,363,225,-146,226,146,399,-401,227,147,391,-393,292,228,148,-292,230,127,510,-512,364,365,231,-139,232,139,401,-403,233,140,393,-395,294,234,141,-294,236,126,512,-514,366,367,237,-131,238,131,403,-405,239,132,395,-397,296,240,133,-296,243,242,219,-146,225,244,243,-146,245,244,225,-139,231,246,245,-139,247,246,231,-131,237,248,247,-131,249,248,237,-153,219,242,249,-153,251,250,924,-926,252,251,925,-927,253,252,926,-928,254,253,927,-921,255,254,920,-922,256,255,921,-923,257,256,922,-924,250,257,923,-925,146,226,259,-259,226,139,260,-260,139,232,261,-261,232,131,262,-262,131,238,263,-263,238,153,264,-264,153,220,265,-265,220,146,258,-266,427,428,267,-267,428,429,268,-268,429,430,269,-269,430,431,270,-270,431,432,271,-271,432,433,272,-272,433,434,273,-273,434,427,266,-274,275,274,378,-372,372,276,275,-372,277,276,372,-374,374,278,277,-374,279,
- 278,374,-376,376,280,279,-376,281,280,376,-378,378,274,281,-378,147,227,283,-283,227,140,284,-284,140,233,285,-285,233,132,286,-286,132,239,287,-287,239,154,288,-288,154,221,289,-289,221,147,282,-290,291,290,386,-380,380,292,291,-380,293,292,380,-382,382,294,293,-382,295,294,382,-384,384,296,295,-384,297,296,384,-386,386,290,297,-386,299,298,387,-389,300,299,388,-390,301,300,389,-391,298,301,390,-388,151,144,303,-303,144,136,304,-304,136,158,305,-305,158,151,302,-306,307,306,168,-167,308,307,166,-164,309,308,163,-171,306,309,170,-169,169,167,311,-311,167,164,312,-312,313,312,164,-172,171,169,310,-314,315,314,195,-190,316,315,189,-184,317,316,183,-177,314,317,176,-196,319,318,422,-420,320,319,419,-421,321,320,420,-422,318,321,421,-423,415,416,323,-323,416,417,324,-324,325,324,417,-419,418,415,322,-326,327,326,521,-523,328,327,522,-524,329,328,523,-525,326,329,524,-522,211,209,331,-331,209,206,332,-332,333,332,206,-214,213,211,330,-334,214,215,335,-335,215,216,336,-336,337,336,216,-218,217,214,334,-338,339,338,210,-209,340,339,208,-206,341,340,205,-213,338,341,212,-211,342,343,540,-538,360,361,346,-350,347,350,-349,343,344,539,-541,359,360,349,-352,350,352,-349,344,345,538,-540,362,359,351,-354,352,354,-349,345,342,537,-539,346,361,362,-354,354,347,-349,356,355,535,-537,357,356,536,-534,358,357,533,-535,355,358,534,-536,352,350,360,-360,350,347,361,-361,362,361,347,-355,354,352,359,-363,259,260,364,-364,260,261,365,-365,261,262,366,-366,262,263,367,-367,263,264,368,-368,264,265,369,-369,265,258,370,-370,258,259,363,-371,228,372,371,-149,373,372,228,-142,234,374,373,-142,375,374,234,-134,240,376,375,-134,377,376,240,-156,222,378,377,-156,371,378,222,-149,229,380,379,-150,381,380,229,-143,235,382,381,-143,383,382,235,-135,241,384,383,-135,385,384,241,-157,223,386,385,-157,379,386,223,-150,388,387,134,235,-143,389,388,142,229,-150,390,389,149,223,-157,387,390,156,241,-135,392,391,275,-277,393,392,276,-278,394,393,277,-279,395,394,278,-280,396,395,279,-281,397,396,280,-282,398,397,281,-275,275,391,398,-275,400,399,407,-409,
- 401,400,408,-410,402,401,409,-411,403,402,410,-412,404,403,411,-413,405,404,412,-414,406,405,413,-415,414,407,399,-407,408,407,266,-268,409,408,267,-269,410,409,268,-270,411,410,269,-271,412,411,270,-272,413,412,271,-273,414,413,272,-274,266,407,414,-274,191,185,416,-416,185,178,417,-417,418,417,178,-198,197,191,415,-419,420,419,190,-185,421,420,184,-178,422,421,177,-197,419,422,196,-191,322,323,424,-424,323,324,425,-425,426,425,324,-326,325,322,423,-427,282,283,428,-428,283,284,429,-429,284,285,430,-430,285,286,431,-431,286,287,432,-432,287,288,433,-433,288,289,434,-434,289,282,427,-435,449,450,435,-437,478,479,446,-446,440,439,-442,448,449,436,-438,477,478,445,-445,440,441,-443,451,448,437,-439,480,477,444,-448,440,442,-444,435,450,451,-439,479,480,447,-447,439,440,-444,449,448,481,-483,450,449,482,-484,451,450,483,-485,484,481,448,-452,473,474,453,-453,474,475,454,-454,475,476,455,-455,476,473,452,-456,456,460,461,-458,457,461,462,-459,469,470,-460,460,463,464,-462,461,464,465,-463,470,471,-460,463,466,467,-465,464,467,468,-466,471,472,-460,466,456,457,-468,467,457,458,-469,472,469,-460,458,462,470,-470,462,465,471,-471,465,468,472,-472,468,458,469,-473,442,441,474,-474,441,439,475,-475,439,443,476,-476,443,442,473,-477,452,453,478,-478,453,454,479,-479,454,455,480,-480,455,452,477,-481,482,481,444,-446,483,482,445,-447,484,483,446,-448,444,481,484,-448,486,485,251,-253,487,486,252,-254,488,487,253,-255,489,488,254,-256,490,489,255,-257,491,490,256,-258,492,491,257,-251,485,492,250,-252,494,493,486,-488,495,494,487,-489,496,495,488,-490,497,496,489,-491,498,497,490,-492,499,498,491,-493,500,499,492,-486,493,500,485,-487,230,126,501,-503,224,127,503,-505,218,128,505,-507,236,129,507,-509,129,218,506,-508,128,224,504,-506,127,230,502,-504,126,236,508,-502,502,501,508,507,506,505,504,-504,510,509,493,-495,511,510,494,-496,512,511,495,-497,513,512,496,-498,514,513,497,-499,515,514,498,-500,516,515,499,-501,509,516,500,-494,188,181,518,-518,181,200,519,-519,200,194,520,-520,194,188,517,-521,522,521,180,-200,523,522,
- 199,-194,524,523,193,-188,521,524,187,-181,181,188,526,-526,188,194,527,-527,194,200,528,-528,200,181,525,-529,424,177,-185,207,530,-530,207,531,-531,207,532,-532,207,529,-533,534,533,346,-354,535,534,353,-352,536,535,351,-350,533,536,349,-347,538,537,357,-359,539,538,358,-356,540,539,355,-357,537,540,356,-358,541,621,618,-543,545,576,575,-554,546,918,919,-555,547,914,915,-556,627,556,548,-627,631,557,549,-631,559,558,550,-552,552,559,-552,542,618,619,-544,553,575,574,-561,554,919,916,-562,555,915,912,-563,628,563,556,-628,632,564,557,-632,566,565,558,-560,552,566,-560,543,619,620,-545,560,574,577,-568,561,916,917,-569,562,912,913,-570,629,570,563,-629,633,571,564,-633,573,572,565,-567,552,573,-567,544,620,621,-542,567,577,576,-546,568,917,918,-547,569,913,914,-548,548,570,629,-627,549,571,633,-631,550,572,573,-552,551,573,-553,911,908,574,-576,910,911,575,-577,909,910,576,-578,908,909,577,-575,579,625,622,-579,580,624,625,-580,581,623,624,-581,578,622,623,-582,583,591,590,-583,584,592,591,-584,585,593,592,-585,582,590,593,-586,587,556,563,-587,588,548,556,-588,589,570,548,-589,586,563,570,-590,591,587,586,-591,592,588,587,-592,593,589,588,-593,590,586,589,-594,595,609,606,-595,596,608,609,-596,597,607,608,-597,594,606,607,-598,599,605,602,-599,600,604,605,-600,601,603,604,-601,598,602,603,-602,602,594,597,-604,604,603,597,-597,605,604,596,-596,602,605,595,-595,606,578,581,-608,608,607,581,-581,609,608,580,-580,606,609,579,-579,610,598,601,-612,612,611,601,-601,613,612,600,-600,610,613,599,-599,614,615,616,-618,542,543,615,-615,543,544,616,-616,544,541,617,-617,541,542,614,-618,618,613,610,-620,620,619,610,-612,621,620,611,-613,618,621,612,-614,622,560,567,-624,624,623,567,-546,625,624,545,-554,622,625,553,-561,557,627,626,-550,564,628,627,-558,571,629,628,-565,626,629,571,-550,558,631,630,-551,565,632,631,-559,572,633,632,-566,630,633,572,-551,634,668,669,-636,638,639,645,-645,639,640,646,-646,640,641,647,-647,682,647,641,-682,643,648,-643,635,669,670,-637,644,645,650,-650,645,646,651,-651,646,647,652,-652,683,652,
- 647,-683,643,653,-649,636,670,671,-638,649,650,655,-655,650,651,656,-656,651,652,657,-657,683,680,657,-653,643,658,-654,637,671,668,-635,654,655,639,-639,655,656,640,-640,656,657,641,-641,641,657,680,-682,642,658,-644,659,674,675,-663,660,676,677,-664,662,675,672,-665,663,677,678,-666,664,672,673,-667,665,678,679,-668,666,673,674,-660,667,679,676,-661,668,638,644,-670,670,669,644,-650,671,670,649,-655,668,671,654,-639,672,665,667,-674,674,673,667,-661,675,674,660,-664,672,675,663,-666,677,676,-662,678,677,-662,679,678,-662,676,679,-662,681,680,658,-643,648,682,681,-643,653,683,682,-649,658,680,683,-654,684,685,732,-734,688,697,740,-742,689,698,699,-691,700,691,690,-700,691,700,701,-693,692,701,702,-694,693,702,703,-695,694,703,704,-696,695,704,-697,685,686,731,-733,697,705,739,-741,698,706,707,-700,708,700,699,-708,700,708,709,-702,701,709,710,-703,702,710,711,-704,703,711,712,-705,704,712,-697,686,687,730,-732,705,713,738,-740,706,714,715,-708,716,708,707,-716,708,716,717,-710,709,717,718,-711,710,718,719,-712,711,719,720,-713,712,720,-697,687,684,733,-731,741,738,713,-689,714,689,690,-716,690,691,716,-716,716,691,692,-718,717,692,693,-719,718,693,694,-720,719,694,695,-721,720,695,-697,721,722,727,-726,725,727,-727,722,723,728,-728,727,728,-727,723,724,729,-729,728,729,-727,724,721,725,-730,729,725,-727,731,730,734,-736,732,731,735,-737,733,732,736,-738,730,733,737,-735,735,734,713,-706,736,735,705,-698,737,736,697,-689,734,737,688,-714,739,738,714,-707,740,739,706,-699,741,740,698,-690,714,738,741,-690,742,743,751,-747,789,790,746,-752,781,782,790,-790,747,752,753,-749,798,799,748,-754,749,754,-751,743,744,755,-752,788,789,751,-756,780,781,789,-789,752,756,757,-754,797,798,753,-758,754,758,-751,744,745,759,-756,791,788,755,-760,783,780,788,-792,756,760,761,-758,796,797,757,-762,758,762,-751,745,742,746,-760,746,790,791,-760,782,783,791,-791,760,747,748,-762,748,799,796,-762,762,749,-751,763,764,771,-768,767,771,772,-769,768,772,773,-770,769,773,-771,764,765,774,-772,771,774,775,-773,772,775,776,-774,773,776,-771,
- 765,766,777,-775,774,777,778,-776,775,778,779,-777,776,779,-771,766,763,767,-778,777,767,768,-779,778,768,769,-780,779,769,-771,785,781,780,-785,786,782,781,-786,787,783,782,-787,787,784,780,-784,752,785,784,-757,747,786,785,-753,760,787,786,-748,756,784,787,-761,762,758,793,-793,758,754,794,-794,754,749,795,-795,792,795,749,-763,792,793,797,-797,793,794,798,-798,794,795,799,-799,796,799,795,-793,800,825,826,-802,830,809,804,-830,805,833,834,-811,806,807,812,-812,807,823,822,-813,801,826,827,-803,831,813,809,-831,810,834,835,-815,811,812,816,-816,812,822,821,-817,802,827,828,-804,832,817,813,-832,814,835,836,-819,815,816,820,-820,816,821,824,-821,803,828,825,-801,804,817,832,-830,818,836,833,-806,819,820,807,-807,820,824,823,-808,822,808,-822,823,808,-823,824,808,-824,821,808,-825,825,804,809,-827,827,826,809,-814,828,827,813,-818,825,828,817,-805,810,830,829,-806,814,831,830,-811,818,832,831,-815,829,832,818,-806,833,806,811,-835,835,834,811,-816,836,835,815,-820,833,836,819,-807,837,838,845,-842,841,845,846,-843,842,846,847,-844,843,847,-845,838,839,848,-846,845,848,849,-847,846,849,850,-848,847,850,-845,839,840,851,-849,848,851,852,-850,849,852,853,-851,850,853,-845,840,837,841,-852,851,841,842,-853,852,842,843,-854,853,843,-845,854,875,876,-856,880,862,858,-880,859,883,884,-864,860,905,906,-865,861,874,-866,855,876,877,-857,881,866,862,-881,863,884,885,-868,864,906,907,-869,865,874,-870,856,877,878,-858,882,870,866,-882,867,885,886,-872,868,907,904,-873,869,874,-874,857,878,875,-855,858,870,882,-880,871,886,883,-860,872,904,905,-861,873,874,-862,875,858,862,-877,877,876,862,-867,878,877,866,-871,875,878,870,-859,863,880,879,-860,867,881,880,-864,871,882,881,-868,879,882,871,-860,883,860,864,-885,885,884,864,-869,886,885,868,-873,883,886,872,-861,887,888,895,-892,891,895,896,-893,892,896,897,-894,893,897,-895,888,889,898,-896,895,898,899,-897,896,899,900,-898,897,900,-895,889,890,901,-899,898,901,902,-900,899,902,903,-901,900,903,-895,890,887,891,-902,901,891,892,-903,902,892,893,-904,903,893,-895,904,873,861,-906,
- 906,905,861,-866,907,906,865,-870,904,907,869,-874,561,568,909,-909,568,546,910,-910,546,554,911,-911,554,561,908,-912,912,582,585,-914,914,913,585,-585,915,914,584,-584,912,915,583,-583,916,562,569,-918,918,917,569,-548,919,918,547,-556,916,919,555,-563,930,921,920,-930,931,922,921,-931,932,923,922,-932,933,924,923,-933,934,925,924,-934,935,926,925,-935,928,927,926,-936,929,920,927,-929,245,246,929,-929,246,247,930,-930,247,248,931,-931,248,249,932,-932,249,242,933,-933,242,243,934,-934,243,244,935,-935,244,245,928,-936
- }
- Edges: *1831 {
- a: 0,35,70,105,3,271,301,19,23,27,31,34,1,269,303,17,21,25,29,33,268,10,12,20,24,28,32,36,273,307,52,56,60,64,68,272,46,47,55,59,63,67,71,277,311,87,91,95,99,103,276,80,82,90,94,98,102,280,115,119,125,129,133,137,140,147,154,161,143,479,141,477,342,148,481,338,155,485,334,346,169,171,168,175,172,179,176,180,185,187,184,191,188,195,192,196,201,203,200,207,204,211,208,212,217,219,216,223,220,227,224,228,237,239,232,241,233,245,234,235,253,255,37,259,2,263,107,72,7,5,40,75,4,39,74,109,9,8,44,78,113,13,15,50,85,14,49,84,117,317,319,156,323,149,327,142,163,333,335,222,339,226,343,230,218,349,351,135,355,100,359,65,30,365,367,131,371,96,375,61,26,381,383,127,387,92,391,57,22,399,397,300,403,313,405,308,304,11,79,45,291,287,41,285,6,295,111,76,413,415,186,419,190,423,194,198,429,431,170,435,174,439,178,182,445,447,123,451,88,455,53,18,461,463,288,467,284,471,296,292,146,145,152,159,144,151,158,165,492,523,554,585,495,497,511,1488,517,520,526,528,542,1491,519,522,498,500,504,508,1469,512,521,557,559,563,567,573,1496,550,553,529,531,535,539,1461,543,552,588,590,604,1501,581,584,560,564,568,570,1485,574,583,591,593,597,601,1477,605,614,616,627,638,649,619,621,626,617,623,625,622,624,628,634,636,633,635,639,645,647,644,646,656,657,688,715,744,660,663,667,669,673,680,2038,661,665,697,672,664,1625,671,674,678,2036,675,683,2003,689,693,699,701,705,2040,692,698,700,702,710,2015,716,720,726,728,719,725,727,730,734,2044,731,739,2011,748,755,756,758,766,2007,711,684,682,740,771,787,803,819,774,776,780,772,778,782,777,781,788,794,793,797,798,804,810,814,809,813,826,830,802,786,801,784,785,818,833,817,835,555,841,843,561,847,853,1482,571,855,524,861,863,530,867,872,1458,540,875,493,881,883,499,887,892,1466,509,895,586,901,903,592,907,912,1474,602,916,918,915,919,920,926,923,927,928,934,931,935,936,942,939,944,948,950,947,954,951,958,955,962,959,966,963,970,967,974,971,975,982,980,981,984,985,988,989,992,993,996,997,1000,1001,1004,1005,1009,1014,1012,1013,1016,1017,1020,1021,1024,1025,1028,1029,1032,1033,1036,1037,1041,
- 1044,1046,1043,1047,1048,1054,1051,1055,1056,1062,1059,1063,1064,1070,1067,1072,532,534,501,503,594,596,565,1078,1076,1077,1080,1081,1084,1085,1088,1089,1092,1093,1096,1097,1100,1101,1105,536,538,505,507,598,600,569,1108,1110,572,1111,874,1118,541,1119,894,1126,510,1127,914,1134,603,851,513,515,546,577,514,545,576,607,1158,1156,547,1160,516,1164,609,578,1172,1174,629,1178,618,1182,651,640,1190,1188,631,1192,620,1198,654,642,1204,1206,717,1210,690,1214,662,746,1220,1222,721,1226,694,1230,666,750,1238,1236,1237,1240,1241,1246,1243,1249,1252,1254,762,1258,735,1262,706,679,1270,1268,791,1272,775,1278,824,807,1286,1284,795,1288,779,1294,828,811,1300,1302,789,1306,773,1310,821,805,1315,1326,1337,1348,1318,1320,1325,1316,1322,1324,1321,1323,1327,1333,1335,1332,1334,1338,1344,1346,1343,1345,1355,1356,1360,1362,1359,1366,1363,1370,1367,1371,1378,1376,1330,1380,1319,1386,1353,1341,1394,1392,527,1396,879,1400,496,1404,899,1408,589,1412,839,1416,558,859,1425,1423,1050,1430,1053,1431,1058,1438,1061,1439,1066,1446,1069,1447,1074,1045,1457,1455,1114,1462,1117,1463,1122,1470,1125,1471,1130,1478,1133,1479,1138,1109,1140,1142,1146,1150,1141,1145,1149,1153,1508,1510,869,1514,537,1518,889,1522,506,1526,909,1530,599,1534,849,566,1540,1542,865,1546,533,1550,885,1554,502,1558,905,1562,595,1566,845,562,1572,1574,1541,1578,1545,1582,1549,1586,1553,1590,1557,1594,1561,1598,1565,1567,1606,1604,1235,1608,1239,1614,1245,1247,1620,1622,1225,1626,1229,1630,1233,1221,1638,1636,696,1640,668,1646,753,723,1654,1652,1011,1656,1015,1660,1019,1664,1023,1668,1027,1672,1031,1676,1035,1039,1685,1696,1707,1719,1691,1684,1686,1693,1692,1704,1703,1697,1708,1715,1714,1726,1701,1690,1700,1689,1688,1712,1722,1711,1728,1694,1683,1717,1705,1746,1744,1745,1748,1749,1752,1753,1757,1762,1766,1806,1760,1764,1804,1759,1761,1765,1771,1775,1808,1770,1772,1776,1782,1786,1812,1781,1783,1787,1792,1794,1798,1769,1768,1779,1790,1767,1778,1789,1800,1822,1820,1743,1824,1747,1828,1751,1755,1838,1836,1698,1840,1687,1844,1720,1709,1730,1734,1738,1852,1854,1729,1858,1733,1862,1737,
- 1739,1868,1870,1867,1874,1871,1878,1875,1882,1879,1886,1883,1890,1887,1894,1891,1895,1900,1902,1899,1906,1903,1910,1907,1914,1911,1918,1915,1922,1919,1926,1923,1927,1932,1934,1933,1936,1938,1937,1940,1942,1941,1944,1946,1945,1949,1953,1957,1961,1972,1974,525,1978,877,1982,494,1986,897,1990,587,1994,837,1998,556,857,2006,2004,681,2008,764,2012,737,708,2020,2022,1253,2026,1257,2030,1261,1265,687,686,713,742,685,712,741,768,670,2056,2054,2057,2060,799,783,831,815,2067,2069,1369,2073,1373,2077,1361,1365,2083,2085,1350,2089,1339,2093,1328,1317,2101,2132,2163,2194,2098,2102,2106,2110,2116,2120,2124,2128,2100,2104,2108,2112,2114,2118,2122,2126,2105,2109,2113,2115,2119,2123,2125,2131,2135,2139,2143,2145,2149,2153,2157,2136,2140,2144,2146,2150,2154,2156,2162,2166,2170,2174,2176,2180,2184,2188,2167,2171,2175,2177,2181,2185,2187,2198,2202,2206,2207,2211,2215,2217,2223,2225,2134,2229,2103,2233,2196,2165,2240,2238,2241,2242,2245,2246,2249,2253,2256,2254,2257,2258,2261,2262,2265,2269,2272,2270,2274,2278,2273,2277,2281,2285,2288,2286,2255,2290,2259,2294,2263,2267,2304,2302,2305,2306,2309,2310,2313,2317,2320,2318,2321,2322,2325,2326,2329,2333,2334,2336,2331,2341,2327,2345,2323,2319,2350,2352,2315,2357,2311,2361,2307,2303,2366,2368,2369,2373,2370,2377,2374,2378,2389,2387,2382,2391,2383,2395,2384,2385,2402,2404,2130,2409,2161,2413,2192,2099,2418,2420,2251,2425,2247,2429,2243,2239,2436,2434,2117,2438,2148,2442,2179,2209,2452,2450,2121,2454,2152,2458,2183,2213,2469,2492,2515,2538,2466,2470,2474,2478,2484,2488,2468,2472,2476,2480,2482,2486,2473,2471,2475,2479,2487,2491,2495,2499,2503,2505,2509,2496,2494,2498,2502,2510,2514,2518,2522,2526,2529,2532,2519,2517,2521,2525,2533,2542,2540,2544,2548,2555,2558,2562,2560,2564,2561,2565,2568,2572,2569,2573,2576,2580,2577,2581,2585,2589,2590,2592,2467,2597,2490,2601,2513,2536,2606,2608,2575,2613,2583,2617,2559,2567,2623,2624,2627,2630,2563,2571,2579,2587,2635,2637,2553,2638,2485,2642,2508,2528,2650,2685,2720,2755,2653,2661,2663,2669,2673,2677,2681,2684,2651,2659,2665,2667,2671,2675,2679,2683,2654,
- 2658,2660,2662,2668,2672,2676,2680,2686,2694,2700,2702,2706,2710,2714,2718,2689,2693,2695,2697,2703,2707,2711,2715,2721,2725,2729,2735,2737,2741,2745,2749,2753,2724,2728,2730,2732,2738,2742,2746,2750,2761,2763,2765,2768,2773,2777,2781,2785,2790,2797,2804,2811,2793,2796,2791,2795,2792,2798,2802,2799,2805,2809,2806,2813,2819,2821,2722,2825,2687,2829,2652,2757,2690,2655,2657,2835,2837,2820,2841,2824,2845,2828,2832,2851,2853,2726,2857,2691,2861,2656,2759,2866,2889,2912,2935,2869,2871,2881,2883,2888,2867,2873,2879,2885,2887,2868,2878,2880,2886,2890,2896,2902,2908,2910,2891,2901,2903,2909,2913,2919,2925,2931,2933,2914,2924,2926,2932,2937,2947,2949,2955,2958,2973,2988,3003,2961,2965,2969,2972,2959,2963,2967,2971,2960,2964,2968,2974,2978,2982,2986,2975,2979,2983,2989,2993,2997,3001,2990,2994,2998,3005,3009,3013,3020,3018,2897,3022,2874,3026,2943,2920,3036,3034,3021,3038,3025,3042,3029,3030,2900,2877,2893,2875,2870,2923,2940,2916,3053,3051,3052,3055,3056,3059,3060,3062,3069,3067,2928,3071,2905,3075,2882,2952,3085,3105,3125,3145,3082,3088,3090,3094,3098,3084,3086,3092,3096,3100,3087,3093,3097,3095,3104,3106,3112,3116,3120,3107,3113,3117,3115,3124,3126,3132,3136,3140,3127,3133,3137,3135,3146,3153,3157,3155,3163,3162,3119,3165,3099,3168,3159,3139,3174,3176,3083,3181,3103,3185,3123,3143,3192,3190,3089,3194,3109,3198,3129,3148,3206,3208,3091,3213,3111,3217,3131,3151,3222,3237,3252,3267,3225,3229,3233,3236,3223,3227,3231,3235,3224,3228,3232,3238,3242,3246,3250,3239,3243,3247,3253,3257,3261,3265,3254,3258,3262,3269,3273,3277,3285,3304,3323,3342,3282,3288,3290,3294,3298,3284,3286,3292,3296,3299,3287,3293,3297,3300,3303,3305,3311,3315,3318,3306,3312,3316,3319,3322,3324,3330,3334,3337,3325,3331,3335,3338,3343,3350,3354,3357,3358,3360,3283,3365,3302,3369,3321,3340,3376,3374,3289,3378,3308,3382,3327,3345,3390,3392,3291,3397,3310,3401,3329,3348,3406,3421,3436,3451,3409,3413,3417,3420,3407,3411,3415,3419,3408,3412,3416,3422,3426,3430,3434,3423,3427,3431,3437,3441,3445,3449,3438,3442,3446,3453,3457,3461,3466,3468,3352,3473,3295,3477,3314,
- 3333,3485,3483,2234,3487,2230,3491,2226,2222,3498,3500,2173,3505,2204,3509,2111,2142,3514,3516,2169,3521,2200,3525,2107,2138,3532,3530,965,3534,969,3538,973,3542,977,3546,949,3550,953,3554,957,961,3565,3563,3561,3567,3533,3571,3537,3575,3541,3579,3545,3583,3549,3587,3553,3557
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByVertice"
- ReferenceInformationType: "Direct"
- Normals: *2808 {
- a: -0.956750273704529,0.271681874990463,0.104008831083775,0.0145091461017728,0.37154683470726,-0.928300797939301,0.989528357982636,0.0551010854542255,-0.133407190442085,0.162393048405647,-0.0573454834520817,0.98505836725235,0.314717561006546,0.912261664867401,0.262166798114777,0.344355791807175,0.873476088047028,-0.344178050756454,0.359927207231522,0.425603717565537,-0.830249309539795,0.221081078052521,-0.00440026400610805,-0.975245535373688,0.266605496406555,-0.257752478122711,-0.928700864315033,0.262801170349121,-0.173127725720406,-0.949190318584442,0.314687132835388,0.0629093870520592,-0.947108507156372,0.206115737557411,-0.944446921348572,0.256000548601151,-0.967108905315399,0.200946822762489,0.155950918793678,0.383925706148148,0.14291974902153,0.912236273288727,0.951886594295502,0.0334082171320915,0.304624080657959,0.977250337600708,-0.0667212605476379,0.201321095228195,0.984637141227722,-0.126583531498909,0.12027657777071,0.925007939338684,-0.0945496037602425,0.367995738983154,0.948525726795197,0.235759943723679,0.211462214589119,-0.46700444817543,-0.840614438056946,-0.274361222982407,-0.187029272317886,-0.815493702888489,0.5477135181427,-0.270441442728043,-0.506890118122101,0.818488717079163,-0.233766615390778,-0.0870576500892639,0.968387424945831,-0.153487488627434,0.22203466296196,0.962882220745087,-0.309485733509064,0.139992833137512,0.940542697906494,-0.351970016956329,-0.199072703719139,0.914596676826477,0.88262540102005,-0.438141465187073,-0.170307368040085,-0.338120430707932,0.00733154499903321,-0.941074311733246,-0.840132534503937,0.0631293430924416,-0.538694679737091,-0.96289736032486,-0.0183087959885597,-0.269246131181717,-0.951559841632843,0.00491847144439816,-0.307424485683441,-0.965309202671051,0.0692608505487442,-0.25175604224205,-0.885756373405457,-0.265256106853485,-0.380887001752853,0.196446806192398,-0.920407950878143,0.338020652532578,-0.858419477939606,0.307999789714813,0.410185486078262,-0.0255336370319128,0.908513724803925,-0.417074203491211,0.726625919342041,0.319831848144531,-0.608047962188721,
- 0.636774659156799,-0.739377796649933,0.218719989061356,-0.752264201641083,-0.641113579273224,0.151894569396973,-0.363156408071518,-0.0477760471403599,0.930502474308014,-0.662345290184021,0.646528005599976,-0.3785500228405,0.314263343811035,-0.111842572689056,-0.942724585533142,0.576271116733551,-0.472083270549774,-0.667119979858398,-0.701535582542419,-0.0122310798615217,-0.712529361248016,-0.588854551315308,0.468915522098541,0.658307254314423,0.822992861270905,-0.0768907889723778,0.56282377243042,-0.923288702964783,0.185358345508575,-0.336422622203827,-0.0643127262592316,0.799228012561798,0.597577154636383,0.936079800128937,-0.257646262645721,0.239527136087418,-0.0739291459321976,-0.772589981555939,-0.630586445331573,0.75555408000946,-0.299779444932938,-0.582469344139099,-0.551264047622681,-0.0415064245462418,-0.833297848701477,-0.731835067272186,0.306088954210281,0.608873546123505,0.686431169509888,-0.0984079912304878,0.720505475997925,0.358669251203537,-0.917715728282928,0.17074628174305,0.740972578525543,0.210281670093536,-0.637762725353241,-0.24321810901165,0.926356077194214,-0.287592440843582,-0.805023550987244,-0.0506524220108986,0.591076672077179,-0.587599456310272,0.771868586540222,0.242787078022957,-0.0333646796643734,0.954724192619324,-0.295615524053574,-0.0201573055237532,0.62460470199585,0.780681014060974,0.530796706676483,0.81179267168045,0.243408262729645,0.871754884719849,-0.139792457222939,-0.469575881958008,-0.32199090719223,0.0555812418460846,-0.945109784603119,-0.932848453521729,0.164042711257935,0.320754945278168,0.430868566036224,-0.0498889833688736,0.901034593582153,0.358210116624832,0.914649605751038,0.18735446035862,-0.841324031352997,0.234210163354874,0.487154334783554,-0.562581062316895,-0.826657652854919,-0.0118175456300378,0.830355525016785,-0.269349783658981,-0.487811952829361,0.331419497728348,0.915306866168976,-0.228854939341545,0.0281175896525383,-0.0132746323943138,0.999516487121582,-0.316257297992706,-0.863781154155731,0.392254322767258,-0.116490706801414,-0.117751844227314,-0.986186802387238,
- 0.435587018728256,0.50783908367157,-0.743211567401886,0.859707057476044,-0.00317590986378491,0.510777354240417,-0.288310706615448,-0.553294658660889,0.781499743461609,-0.830071687698364,-0.0315481424331665,-0.556763529777527,0.861291170120239,0.0767066702246666,-0.502288222312927,-0.164418742060661,0.948139131069183,-0.27202695608139,-0.845673739910126,-0.0804850608110428,0.527596592903137,0.16067698597908,-0.950519502162933,0.265886604785919,0.487722843885422,0.129494667053223,-0.86334091424942,-0.500135004520416,0.76298975944519,-0.409526020288467,-0.658098459243774,-0.0139110265299678,0.752803385257721,0.577949225902557,-0.779466688632965,0.241673961281776,0.281549096107483,0.0518018379807472,-0.958147525787354,-0.955539882183075,-0.115060046315193,-0.271486133337021,-0.35806268453598,-0.0766500756144524,0.930546045303345,0.937724888324738,0.0272201970219612,0.346310764551163,0.259029150009155,-0.345757693052292,-0.901862263679504,-0.957086861133575,0.141602084040642,-0.252850890159607,-0.237572804093361,0.310937404632568,0.920259296894073,0.93561464548111,-0.168677464127541,0.310118168592453,0.187824487686157,-0.083707183599472,-0.978629231452942,-0.98224550485611,-0.0363268852233887,-0.18404982984066,-0.197664618492126,0.039547011256218,0.979471743106842,0.981062591075897,-0.0244171619415283,0.192145779728889,0.71807599067688,0.146896913647652,0.680285334587097,0.455303698778152,0.677476942539215,-0.577687978744507,-0.588941276073456,0.0573449730873108,-0.806138813495636,-0.282447755336761,-0.697235584259033,0.658851742744446,-0.621699094772339,-0.773804664611816,0.121312387287617,-0.516410648822784,0.122589915990829,0.84752094745636,0.517955124378204,0.851610243320465,0.0805147662758827,0.444018870592117,-0.112073637545109,-0.888980746269226,-0.972664058208466,0.208803460001946,-0.101615101099014,0.123491883277893,0.859509766101837,0.495976388454437,0.935724139213562,-0.349146097898483,0.0501728728413582,-0.265989691019058,-0.809481143951416,-0.523440420627594,0.328568667173386,-0.677655398845673,-0.657894909381866,
- -0.819049775600433,-0.0319831743836403,-0.572830259799957,-0.271536499261856,0.685712456703186,0.675326943397522,0.903204262256622,-0.187825486063957,0.385932356119156,0.302907943725586,0.2133409678936,-0.928833842277527,-0.896285533905029,0.0477823466062546,-0.440895855426788,-0.359999358654022,-0.30758997797966,0.880788743495941,0.949387907981873,-0.0786286219954491,0.304105460643768,-0.516668558120728,-0.821125984191895,0.242498829960823,-0.250548452138901,-0.00721647124737501,0.968077182769775,0.528836786746979,0.847969174385071,-0.0357746556401253,0.113013602793217,-0.065388910472393,-0.991439521312714,0.453980773687363,-0.890667259693146,0.0247612707316875,-0.142283037304878,0.0699872523546219,0.987348616123199,-0.59353893995285,0.790646612644196,-0.150297909975052,-0.0442344844341278,-0.151899710297585,-0.987405598163605,0.726685523986816,0.0351322963833809,-0.686071276664734,0.648641407489777,0.0713764727115631,0.757739961147308,-0.660587668418884,0.349312722682953,0.664533376693726,-0.652014076709747,0.363506257534027,-0.665387749671936,-0.313843488693237,-0.576870977878571,-0.754136621952057,-0.738376617431641,-0.674363911151886,-0.0057644103653729,0.671594560146332,-0.535972774028778,0.511560320854187,0.866983592510223,-0.491888552904129,-0.0799067467451096,0.796881496906281,-0.208615124225616,-0.56697404384613,0.635003924369812,-0.374424487352371,-0.67570424079895,0.62990528345108,-0.252887308597565,-0.734348177909851,-0.256472289562225,-0.964804649353027,0.0580844841897488,0.963902115821838,0.0799109786748886,-0.253982156515121,0.412504285573959,-0.13365375995636,-0.901097595691681,-0.761930227279663,-0.153029948472977,0.629320502281189,-0.0876853689551353,-0.075958676636219,0.993247985839844,0.431329518556595,-0.197496086359024,0.880312561988831,0.797344028949738,-0.0675444230437279,0.599733412265778,0.68469774723053,-0.181705176830292,0.70581328868866,0.234690010547638,0.611331582069397,0.755773961544037,0.647028803825378,0.750916957855225,0.132202699780464,-0.615185737609863,0.537796914577484,-0.576472818851471,
- -0.864342212677002,0.502253472805023,0.0255717970430851,-0.795453906059265,0.0567097030580044,0.603354752063751,-0.591688692569733,0.305560678243637,0.74601423740387,-0.622331857681274,0.197801917791367,0.757349014282227,-0.935813546180725,0.0315927676856518,0.351076781749725,-0.372966527938843,0.216355115175247,0.902267396450043,0.678159832954407,0.190781444311142,-0.709719479084015,-0.0432810634374619,0.138299524784088,-0.989444255828857,-0.651057600975037,0.0763603076338768,-0.75517749786377,-0.705369591712952,-0.0151230059564114,-0.708678364753723,-0.777414858341217,0.0877632796764374,-0.622835278511047,0.681991875171661,-0.625516772270203,-0.378966838121414,0.485243260860443,-0.034634280949831,0.87369292974472,-0.718983888626099,0.600230932235718,0.350406914949417,-0.433464765548706,-0.0570241361856461,-0.899364411830902,0.540844559669495,-0.715110003948212,-0.442837238311768,0.749241054058075,-0.306704521179199,-0.587001144886017,-0.0769737586379051,-0.950550019741058,0.300881505012512,0.73503977060318,0.2216427475214,0.640773713588715,0.645134687423706,0.201849967241287,0.736924469470978,-0.652210414409637,0.628438055515289,0.423895448446274,-0.723027884960175,0.233810275793076,0.650048732757568,-0.709482431411743,-0.242044299840927,-0.661852955818176,-0.661919713020325,-0.246781453490257,-0.707786202430725,-0.691486120223999,-0.00727176200598478,0.722353160381317,-0.867795526981354,-0.307503938674927,-0.390348672866821,0.505474388599396,-0.130437687039375,-0.852925360202789,0.734526455402374,0.25764063000679,0.62776780128479,0.642905712127686,0.566676259040833,0.515315711498261,0.863358795642853,0.451356291770935,0.225586131215096,0.725301623344421,0.443484961986542,-0.526553571224213,0.91595458984375,0.268381237983704,-0.298326522111893,0.930247902870178,-0.0490342453122139,-0.36364072561264,0.967830121517181,0.113665752112865,-0.224465936422348,0.0690939873456955,-0.831081986427307,-0.551841080188751,-0.467724680900574,-0.181964635848999,0.864940762519836,-0.343898266553879,-0.246974885463715,0.905945658683777,
- 0.234919428825378,-0.332964837551117,0.913207113742828,0.158613190054893,-0.557110369205475,0.815150260925293,0.302206188440323,-0.359405130147934,0.882892608642578,0.269351840019226,-0.250948131084442,0.929771363735199,-0.638665676116943,-0.633339107036591,-0.437021315097809,-0.860859632492065,-0.473277539014816,-0.186893612146378,-0.621878683567047,-0.44476780295372,0.644552946090698,-0.801872968673706,-0.421343445777893,0.423638314008713,-0.96708220243454,0.0551163889467716,0.248423680663109,-0.933429181575775,-0.188204988837242,0.305432289838791,0.50020432472229,0.11806134134531,-0.85782116651535,0.326170295476913,0.210442379117012,-0.921589374542236,-0.426748901605606,0.293370962142944,-0.855464100837708,-0.0723636969923973,0.526392102241516,-0.847156882286072,-0.161017641425133,0.312387645244598,-0.936208963394165,-0.31438609957695,0.141383856534958,-0.938707649707794,0.58596408367157,0.116381086409092,0.801936089992523,-0.228852823376656,-0.937829196453094,0.260965168476105,-0.59073930978775,-0.245979100465775,-0.76845383644104,0.172180727124214,0.90763783454895,-0.382815003395081,0.835266709327698,-0.0451826862990856,0.54798549413681,0.904159307479858,-0.407306253910065,0.128831058740616,0.0490892678499222,-0.946603417396545,-0.318641036748886,-0.283463656902313,-0.757524490356445,0.588051795959473,-0.44039112329483,-0.773411750793457,0.455949395895004,-0.833745181560516,0.0619643963873386,-0.548661351203918,-0.92017674446106,0.36897948384285,-0.130877166986465,0.572017908096313,0.666427195072174,-0.478194892406464,0.340656071901321,0.778889417648315,-0.526578187942505,-0.964887082576752,0.0513175837695599,-0.257603108882904,-0.155521169304848,-0.365967392921448,0.917540729045868,0.99899560213089,-0.0294203832745552,0.0337985716760159,0.140387088060379,0.317717015743256,-0.937735259532928,-0.90958833694458,0.407829970121384,0.0795224383473396,-0.422264039516449,0.469972938299179,0.775124847888947,0.231292113661766,0.693242490291595,0.682582318782806,-0.020667577162385,0.517573714256287,-0.855388879776001,-0.661450028419495,0.456499576568604,-0.595056295394897,
- -0.987465798854828,0.145312920212746,-0.0616071037948132,-0.0168951209634542,0.207036226987839,0.978187322616577,0.821138381958008,0.455950349569321,0.343279808759689,0.756797194480896,0.415175497531891,-0.504863560199738,-0.960482060909271,0.276793897151947,0.0293127987533808,-0.659943878650665,0.296858698129654,0.690180480480194,-0.214751288294792,-0.0588266514241695,0.974895477294922,0.99710339307785,-0.0244850534945726,-0.0720094740390778,0.364372432231903,-0.441213011741638,-0.820099890232086,-0.374427288770676,-0.690263867378235,-0.619144558906555,0.0665408223867416,-0.532983422279358,0.843505263328552,0.661119520664215,-0.455357611179352,0.596297264099121,0.967206001281738,-0.24481400847435,0.0676661655306816,0.0926547944545746,0.172457456588745,-0.980649530887604,-0.838240683078766,-0.431234270334244,-0.333751082420349,-0.736316978931427,-0.347687184810638,0.58047479391098,0.957904994487762,-0.274733811616898,-0.0833026915788651,0.63174968957901,-0.280116111040115,-0.722791314125061,0.167218565940857,-0.0459620393812656,-0.984847962856293,-0.704251229763031,0.36238020658493,0.610500276088715,-0.100184164941311,0.597819328308105,0.795345962047577,0.59846830368042,0.537275671958923,0.594281554222107,0.976231634616852,0.199189975857735,0.0854121819138527,0.681009769439697,-0.389918148517609,-0.619830369949341,0.039081871509552,-0.62949925661087,-0.776017606258392,-0.612159073352814,-0.569966316223145,-0.548087239265442,-0.988532900810242,-0.139044195413589,0.0589005090296268,-0.915708243846893,0.401821374893188,-0.00424350937828422,-0.57724529504776,0.660399317741394,0.480271518230438,0.13061486184597,0.603036403656006,0.786947846412659,0.770955801010132,0.168747425079346,0.614126622676849,0.887870311737061,-0.449890524148941,-0.0963581502437592,0.454604744911194,-0.660836040973663,-0.59718531370163,-0.187126159667969,-0.563725888729095,-0.804485559463501,-0.799864053726196,-0.134263083338737,-0.584970831871033,0.7109135389328,0.639731645584106,0.292139112949371,0.883611500263214,0.326521545648575,-0.335580587387085,
- 0.613287389278412,-0.145738780498505,-0.77629816532135,-0.139785379171371,-0.674939811229706,-0.72451114654541,-0.640592515468597,-0.738219380378723,-0.211360603570938,-0.787456929683685,-0.452517598867416,0.418496608734131,-0.462495297193527,0.121610283851624,0.878241956233978,0.217881739139557,0.594034194946289,0.774371266365051,0.274573266506195,0.832033932209015,-0.48200511932373,-0.29205247759819,0.502354800701141,-0.813845753669739,-0.712903797626495,-0.112858712673187,-0.692120850086212,-0.634146332740784,-0.77305805683136,0.015484532341361,-0.203986391425133,-0.815793395042419,0.541175365447998,0.330301284790039,-0.475590348243713,0.815300524234772,0.7260662317276,0.157930016517639,0.669242799282074,0.687510251998901,0.722278118133545,0.0751263797283173,-0.404714673757553,0.516361474990845,-0.754703164100647,-0.808224618434906,0.550837516784668,-0.208209127187729,-0.829712867736816,0.276422023773193,0.484940767288208,-0.362779587507248,-0.174674987792969,0.915357649326324,0.432477205991745,-0.563271582126617,0.704051494598389,0.80696427822113,-0.575034320354462,0.13469997048378,0.798681020736694,-0.311879336833954,-0.514626085758209,0.286034405231476,0.14800001680851,-0.946720838546753,-0.320598870515823,0.688837289810181,-0.650168895721436,-0.875549733638763,0.386556208133698,-0.289804995059967,-0.95703250169754,-0.140770599246025,0.253520399332047,-0.286080926656723,-0.659902393817902,0.694756329059601,0.419815868139267,-0.676784873008728,0.604745209217072,0.919278025627136,-0.343066841363907,0.192958354949951,0.898451805114746,0.230431079864502,-0.373745530843735,0.33561235666275,0.639719367027283,-0.691464781761169,-0.825399041175842,0.306200444698334,-0.474297076463699,-0.914721727371216,0.363949716091156,0.175569638609886,-0.561246514320374,0.237781673669815,0.792756080627441,0.117109544575214,-0.0153410835191607,0.993000447750092,0.828385889530182,-0.312127828598022,0.465137749910355,0.895677506923676,-0.380343735218048,-0.230435326695442,0.505634963512421,-0.2579565346241,-0.823280930519104,-0.256679236888886,0.0502791441977024,-0.965187966823578,
- 0.630431354045868,-0.127517849206924,-0.76569938659668,0.815988004207611,0.0100707756355405,0.577981173992157,-0.641611754894257,0.0767243281006813,0.763182640075684,-0.711628258228302,-0.0845857635140419,-0.697445690631866,-0.604350745677948,0.395631968975067,0.691545724868774,0.690111875534058,-0.141537711024284,0.70972728729248,0.580246567726135,-0.438221246004105,-0.68649560213089,-0.760451555252075,0.12916924059391,-0.636418581008911,-0.680273234844208,0.611237108707428,0.404496639966965,0.603369832038879,0.0275239367038012,0.796986401081085,0.598265528678894,-0.639201045036316,-0.48321869969368,-0.60055935382843,-0.0681347474455833,-0.796671867370605,-0.668560802936554,0.516502439975739,0.535025000572205,0.610278725624084,0.439152926206589,0.659321248531342,0.703298985958099,-0.564223110675812,-0.432461500167847,-0.774841547012329,-0.322603106498718,-0.543643057346344,0.517402231693268,-0.0710804238915443,-0.852785170078278,-0.806795239448547,-0.415181428194046,-0.420363962650299,-0.649229645729065,-0.0734065622091293,0.757041811943054,0.699344277381897,0.375314384698868,0.60832279920578,0.464958310127258,0.187792241573334,-0.865186631679535,-0.709277212619781,-0.569881975650787,-0.414921879768372,-0.363303959369659,-0.128139466047287,0.922816693782806,0.710091292858124,0.5374516248703,0.454880326986313,-0.745236039161682,-0.391538709402084,0.539741277694702,0.500625133514404,0.0493366420269012,0.864257097244263,0.779486656188965,0.384677559137344,-0.494392186403275,-0.449871033430099,-0.0469627603888512,-0.891857922077179,0.973241686820984,0.132996842265129,-0.187383100390434,-0.233476176857948,0.63089382648468,-0.73990672826767,-0.981852173805237,-0.122808434069157,0.144514724612236,0.267086982727051,-0.672536432743073,0.690187752246857,-0.92182719707489,0.281938463449478,-0.265979707241058,-0.27697816491127,-0.775293350219727,0.567629396915436,0.917243599891663,-0.32018581032753,0.236949935555458,0.553998589515686,0.686860918998718,-0.470433503389359,-0.921946227550507,0.224452897906303,-0.315651804208755,
- -0.295752286911011,-0.677944779396057,0.672994434833527,0.98953640460968,-0.107810646295547,0.0958879217505455,0.230458796024323,0.674884736537933,-0.701013088226318,-0.604210138320923,-0.0796335637569427,-0.792835772037506,-0.282702088356018,-0.846631169319153,0.450882613658905,0.680286705493927,0.201538592576981,0.704692959785461,0.357162475585938,0.843560218811035,-0.401050090789795,0.462793558835983,0.0277896504849195,0.886030435562134,-0.758701860904694,0.347590982913971,0.550955653190613,-0.649728417396545,0.0284252297133207,-0.759634792804718,0.769316077232361,-0.378865927457809,-0.514405846595764,0.402308195829391,-0.126656010746956,0.906700849533081,0.533091723918915,-0.0638927444815636,0.843641519546509,-0.146417140960693,-0.946088016033173,0.288928419351578,-0.774885952472687,0.351726680994034,0.525204718112946,-0.828580915927887,0.28935495018959,0.479298800230026,-0.583495199680328,0.124070145189762,-0.802583277225494,-0.58284729719162,-0.00250750873237848,-0.812577784061432,0.75850385427475,-0.353333860635757,-0.547564625740051,0.702537417411804,-0.359770059585571,-0.614008724689484,-0.479364544153214,0.0920220389962196,-0.872778117656708,-0.59775722026825,0.652455449104309,0.465819776058197,0.504077672958374,-0.146059796214104,0.851218044757843,0.628325164318085,-0.695407032966614,-0.348735392093658,-0.493139654397964,0.0722005367279053,-0.866948843002319,-0.792929768562317,0.228294029831886,0.564928531646729,0.545473337173462,-0.128156378865242,0.828272223472595,0.774787604808807,-0.30848816037178,-0.551850736141205,0.931732714176178,0.356292337179184,0.0702133402228355,0.801185071468353,-0.0727110281586647,-0.593982815742493,0.0270757935941219,-0.522188246250153,-0.852400362491608,-0.567655920982361,-0.609791457653046,-0.553101420402527,-0.907696723937988,-0.419593870639801,0.0052510779350996,-0.770179986953735,0.0533110983669758,0.63559478521347,-0.13761579990387,0.487859755754471,0.86200624704361,0.505383133888245,0.576383650302887,0.64216023683548,-0.828749060630798,0.550386190414429,-0.101242288947105,
- -0.751308083534241,0.296227693557739,0.589733362197876,-0.273547470569611,-0.161999076604843,0.948118150234222,0.461748749017715,-0.594670474529266,0.658145129680634,0.77089923620224,-0.635457336902618,0.0436844900250435,0.681917011737823,-0.39851912856102,-0.613328278064728,0.12371151894331,0.108056977391243,-0.986417293548584,-0.527452170848846,0.497266829013824,-0.688853979110718,-0.873064994812012,0.284510135650635,0.395994305610657,-0.338735193014145,0.186410039663315,0.922230780124664,0.388581544160843,-0.0106417993083596,0.921352863311768,0.937157511711121,-0.22941417992115,0.262878000736237,0.868898153305054,-0.282151401042938,-0.406702220439911,0.361632078886032,-0.193681642413139,-0.911981165409088,-0.449037998914719,0.0431953817605972,-0.89246791601181,-0.932592451572418,0.240647286176682,-0.268998742103577,0.638010382652283,-0.0346753597259521,-0.769246578216553,0.678428471088409,-0.173718303442001,0.713832497596741,-0.717951238155365,-0.103473253548145,0.688359916210175,-0.752155900001526,-0.0246687550097704,-0.658523261547089,-0.74903804063797,0.536866962909698,-0.3882215321064,-0.918239653110504,0.269762456417084,0.289938062429428,-0.558494448661804,-0.137721136212349,0.817995667457581,0.2971051633358,-0.486537516117096,0.821589887142181,0.7985799908638,-0.48179692029953,0.360751569271088,0.931127190589905,-0.232470288872719,-0.280998051166534,0.508692264556885,0.22642856836319,-0.830639719963074,-0.22805255651474,0.537485778331757,-0.811850368976593,0.698273777961731,0.710683107376099,-0.0856921747326851,0.571213722229004,0.412376403808594,-0.709690511226654,0.167420819401741,-0.0959965437650681,-0.981200814247131,-0.488791227340698,-0.659607648849487,-0.570964932441711,-0.69137579202652,-0.713923335075378,0.110964193940163,-0.534817457199097,-0.443027287721634,0.719511747360229,-0.0659739598631859,0.126867666840553,0.989723205566406,0.494245082139969,0.641359806060791,0.586838483810425,0.53777676820755,0.780874967575073,-0.317853033542633,0.157619714736938,0.465620517730713,-0.87083500623703,-0.342942237854004,-0.173935517668724,-0.923112690448761,
- -0.574827134609222,-0.801020562648773,-0.167151808738709,-0.391701132059097,-0.805179238319397,0.44526007771492,-0.0172226130962372,-0.49586546421051,0.868228495121002,0.412149429321289,0.0636006593704224,0.908893704414368,0.676430642604828,0.632621049880981,0.377136945724487,-0.772687494754791,-0.306957066059113,0.555635929107666,0.604320824146271,0.0771992206573486,0.792992234230042,0.732752442359924,0.36805248260498,-0.572373390197754,-0.560650527477264,0.0143073406070471,-0.827928900718689,-0.855830788612366,-0.367845803499222,-0.363652586936951,-0.390733659267426,-0.00461430847644806,0.920492172241211,0.734309077262878,0.556467056274414,0.388760358095169,0.345915645360947,0.193895444273949,-0.918012380599976,-0.826341032981873,-0.532949805259705,0.18200296163559,0.164821743965149,-0.17366024851799,0.970915019512177,0.817585349082947,0.360375314950943,-0.449092090129852,-0.193086132407188,-0.0106120379641652,-0.981124341487885,0.0608124174177647,0.817937254905701,-0.572084307670593,-0.604260206222534,0.498508453369141,-0.621577799320221,-0.946332395076752,-0.133731320500374,-0.294229328632355,-0.556596517562866,-0.762843310832977,0.329044580459595,0.0765549764037132,-0.795436918735504,0.601181745529175,0.692085802555084,-0.431333541870117,0.578764796257019,0.952234327793121,0.208957672119141,0.222680300474167,0.651482224464417,0.712252914905548,-0.261278748512268,0.756473302841187,0.0865119323134422,-0.648277580738068,0.49068620800972,0.642005801200867,0.589114308357239,-0.762743294239044,-0.116492457687855,0.636122643947601,-0.433044284582138,-0.648389458656311,-0.626149892807007,0.603522717952728,-0.686861038208008,-0.404947310686111,-0.420667886734009,-0.722195327281952,0.549065172672272,0.607883274555206,-0.117912337183952,0.78522264957428,-0.642918348312378,0.605043590068817,0.469657629728317,-0.583745777606964,-0.0944925919175148,-0.806419253349304,-0.825765311717987,0.27166086435318,0.494279325008392,0.705844581127167,0.325352191925049,0.629229068756104,0.780683994293213,-0.293361783027649,-0.551789283752441,
- -0.467712491750717,-0.468936920166016,-0.749228417873383,-0.736069917678833,0.00169128738343716,0.676903426647186,0.556412160396576,0.540375292301178,0.631189465522766,0.816066563129425,0.0853800848126411,-0.571616590023041,-0.459941923618317,-0.562430500984192,-0.6871138215065,-0.561303615570068,0.636748194694519,0.528668165206909,0.730179786682129,0.409997165203094,0.54657107591629,0.726078450679779,-0.538307666778564,-0.427825957536697,-0.763800799846649,-0.440486222505569,-0.471784025430679,0.425643712282181,0.790847897529602,0.439758032560349,0.559258282184601,0.614957511425018,0.55592930316925,0.379371523857117,0.66321986913681,0.645148456096649,-0.7856205701828,-0.446287363767624,0.428518056869507,-0.46162673830986,0.805262565612793,-0.372092604637146,-0.436454266309738,0.755528390407562,-0.488553464412689,-0.247807592153549,0.830099940299988,-0.499525189399719,-0.648287355899811,-0.504746675491333,-0.570047557353973,-0.584657847881317,-0.681404292583466,-0.440299212932587,-0.497705936431885,-0.668371915817261,-0.552781760692596,0.494100838899612,-0.731203317642212,0.470325499773026,0.377676546573639,-0.747098326683044,0.546995997428894,0.358290433883667,-0.619767248630524,0.698223769664764,0.00177880318369716,0.73209023475647,0.681205272674561,-0.486979633569717,0.704316914081573,-0.516515731811523,-0.229609593749046,-0.5946906208992,-0.770468950271606,0.422343999147415,-0.671434581279755,0.60893452167511,-0.622337698936462,0.519544005393982,0.585465371608734,0.660274088382721,0.114584915339947,0.742232024669647,0.686412632465363,-0.558744370937347,-0.465448647737503,-0.670774281024933,-0.110000632703304,-0.733458697795868,-0.736355900764465,0.522867739200592,0.429405778646469,0.733819007873535,0.484166264533997,0.476542562246323,0.661233067512512,-0.599270522594452,-0.451271176338196,-0.661678612232208,-0.531756460666656,-0.528598725795746,-0.788073539733887,0.0273159835487604,0.614974737167358,0.568775594234467,0.366486668586731,0.736329972743988,0.808504164218903,-0.0437455549836159,-0.586862325668335,-0.556302070617676,-0.394074648618698,-0.731596291065216,
- -0.61728447675705,0.507699728012085,0.600999891757965,0.0604019202291965,0.293234944343567,0.954130411148071,0.695219159126282,-0.0971308350563049,0.712204992771149,0.88922643661499,-0.451201349496841,-0.0754565075039864,0.550557971000671,-0.499054998159409,-0.669201135635376,-0.0664312466979027,-0.319827347993851,-0.945144057273865,-0.706522583961487,0.0692764297127724,-0.704291522502899,-0.904422581195831,0.426617950201035,-0.00409550918266177,-0.0426842384040356,0.0130190523341298,0.999003827571869,0.603948354721069,-0.265798807144165,0.751396954059601,0.911450684070587,-0.405825614929199,-0.0675508454442024,0.649871051311493,-0.334619224071503,-0.682420432567596,0.0473346151411533,-0.118764370679855,-0.991793572902679,-0.65035206079483,0.174942299723625,-0.739214062690735,-0.939455687999725,0.341698229312897,0.0257962960749865,-0.698365330696106,0.271409600973129,0.662285923957825,0.460223495960236,0.859995603561401,-0.220458298921585,0.530662536621094,0.847234487533569,-0.0243103019893169,0.447623014450073,0.854507148265839,0.263535797595978,0.218328848481178,0.929532527923584,0.297156184911728,0.0341658592224121,0.980448186397552,0.193789049983025,-0.0460285544395447,0.998611986637115,0.025602076202631,0.00534334499388933,0.97247725725174,-0.232936561107636,0.262085199356079,0.917277574539185,-0.299855291843414,-0.0553874969482422,-0.0534107983112335,0.997035384178162,0.609997153282166,-0.225124001502991,0.759751737117767,0.959452867507935,-0.274988889694214,-0.0618976056575775,0.705845832824707,-0.164953246712685,-0.68889194726944,0.075294055044651,0.0264262780547142,-0.996811151504517,-0.683689653873444,0.223355397582054,-0.694752395153046,-0.961699247360229,0.261877626180649,0.0809603929519653,-0.703671216964722,0.150223821401596,0.694463610649109,0.216929569840431,-0.200969889760017,0.955276250839233,0.931433439254761,-0.0546545200049877,-0.359784126281738,-0.306973159313202,0.175217643380165,-0.935449779033661,-0.963462829589844,-0.00785772688686848,0.267726898193359,0.956721186637878,0.076781839132309,-0.280693769454956,
- -0.230973422527313,0.566813886165619,-0.790805459022522,-0.981785655021667,-0.0201661325991154,0.18891903758049,0.248359948396683,-0.586709916591644,0.770771563053131,0.930372655391693,0.308236986398697,-0.198486000299454,0.341194838285446,-0.47632622718811,0.810369968414307,-0.891121745109558,-0.409010767936707,0.1965002566576,-0.281179845333099,0.369564712047577,-0.885640859603882,-0.991729021072388,-0.106134228408337,-0.0721737593412399,-0.0916735827922821,-0.23006209731102,0.968848466873169,0.984479963779449,-0.0209664516150951,0.174240276217461,0.0927668809890747,0.0779177695512772,-0.992634475231171,0.409357994794846,-0.170347675681114,0.896330118179321,0.630572617053986,-0.649090886116028,-0.425510615110397,-0.47904959321022,0.210578560829163,-0.852154910564423,-0.650700032711029,0.621277391910553,0.436581999063492,0.596186935901642,-0.0460176356136799,0.8015256524086,0.713354349136353,-0.506183505058289,-0.484668582677841,-0.516220927238464,-0.0283493641763926,-0.85598611831665,-0.728509485721588,0.463813900947571,0.504133582115173,0.705685019493103,0.668760359287262,-0.234026521444321,0.241834491491318,-0.0312165766954422,-0.969815194606781,-0.749439060688019,-0.643494009971619,-0.1557447463274,-0.246733516454697,0.307154417037964,0.919118463993073,0.483948260545731,-0.703408300876617,-0.520586848258972,-0.401328235864639,-0.67788702249527,-0.615958511829376,-0.742803156375885,-0.598792910575867,-0.299484074115753,-0.219661742448807,-0.697992742061615,0.681582570075989,0.314610421657562,-0.89721143245697,0.309890419244766,0.575172901153564,-0.818031311035156,0.000926849490497261,0.557874798774719,-0.81867903470993,-0.136162281036377,-0.675839841365814,-0.447784453630447,0.585431039333344,-0.564760565757751,-0.14637254178524,-0.812170207500458,-0.885838806629181,0.025366697460413,0.463299244642258,-0.452319443225861,0.13370768725872,0.88177627325058,0.90349817276001,-0.174427404999733,0.391492247581482,0.731104075908661,-0.0710151493549347,-0.678560078144073,-0.136258542537689,-0.174740523099899,-0.975140631198883,
- -0.354460060596466,-0.268750011920929,-0.8956179022789,-0.645299077033997,0.674313485622406,0.359013438224792,0.225377097725868,0.692385733127594,0.685424864292145,0.699489951133728,0.598961472511292,0.389819115400314,0.427746653556824,0.669090509414673,-0.607742249965668,-0.153933063149452,0.83556604385376,-0.527384102344513,-0.64328408241272,0.752189993858337,-0.142814099788666,-0.681816875934601,0.731521129608154,0.00162782892584801,0.659804165363312,0.0553579181432724,0.749395728111267,0.916446506977081,0.0211266428232193,-0.39959904551506,0.505014181137085,-0.0944253876805305,-0.857930421829224,-0.924102425575256,0.0766268447041512,-0.374383598566055,-0.74992573261261,0.110932663083076,0.652154326438904,0.0675906538963318,0.179008603096008,0.981522977352142,0.362130463123322,0.128321275115013,0.923252463340759,-0.456771403551102,0.731125593185425,0.50676953792572,-0.893223702907562,-0.066772572696209,-0.444626688957214,0.197964489459991,-0.737208306789398,-0.646013915538788,0.86270010471344,0.0303961876779795,0.504801690578461,-0.859327614307404,0.470121026039124,0.201351135969162,0.00690067606046796,0.00891498290002346,-0.999936461448669,0.836360991001129,-0.482603013515472,-0.259989708662033,0.086338184773922,-0.060009703040123,0.994456946849823,0.876860558986664,0.47385185956955,0.0811176672577858,0.0193875972181559,-0.067305713891983,0.99754399061203,-0.866226673126221,-0.499611675739288,0.00628893403336406,0.0529560223221779,0.0761997029185295,-0.995685338973999,0.691279649734497,0.471761226654053,-0.547333240509033,0.619547247886658,-0.14058193564415,0.772268056869507,-0.631080090999603,-0.477123469114304,0.611629903316498,-0.745550215244293,0.0427088104188442,-0.665079534053802,0.884902894496918,0.36784440279007,-0.285722494125366,0.401902556419373,-0.0635607838630676,0.913473725318909,-0.845062613487244,-0.396272927522659,0.358938634395599,-0.355087161064148,0.0880513265728951,-0.930677235126495,-0.94729071855545,0.30036649107933,-0.111445926129818,0.226424098014832,-0.0607579573988914,-0.972131907939911,
- 0.939265251159668,-0.286041498184204,0.189634054899216,-0.0975123569369316,0.01060726121068,0.995177805423737,-0.91072952747345,-0.309622049331665,-0.273323774337769,0.49365046620369,-0.198251888155937,-0.846761763095856,0.919071078300476,0.303268730640411,0.25166729092598,-0.209038719534874,0.301956593990326,0.930121004581451,-0.967877149581909,0.045668251812458,-0.247241124510765,-0.148350089788437,0.191200420260429,0.970275580883026,0.94794899225235,-0.0125709688290954,0.318173795938492,0.409855127334595,-0.2203269302845,-0.885141134262085,-0.911489486694336,0.40893229842186,0.044287595897913,-0.0738923847675323,-0.102225624024868,0.992013037204742,0.904420971870422,-0.421224594116211,-0.0677688866853714,0.13341411948204,0.0355882048606873,-0.990421116352081,-0.76925528049469,-0.615577042102814,-0.171205177903175,-0.143202811479568,0.269673228263855,0.952244341373444,0.814964652061462,0.577510893344879,0.0481005571782589,0.396775007247925,-0.119616374373436,-0.910088717937469,-0.774666368961334,0.479499518871307,-0.412276834249496,-0.98986142873764,0.00347078498452902,0.141993626952171,-0.616852819919586,0.456097275018692,0.641457617282867,-0.401260584592819,0.910215258598328,0.102460660040379,0.242496311664581,-0.149363547563553,-0.958585381507874,-0.737308502197266,-0.674992740154266,-0.0275851283222437,-0.281535029411316,0.12517386674881,0.951351404190063,0.714949429035187,0.697857737541199,0.042918361723423,-0.780628859996796,0.565797090530396,0.265503704547882,0.280492722988129,0.0844742804765701,0.956131756305695,0.722644686698914,-0.564928352832794,-0.398296982049942,-0.207190990447998,-0.0983888059854507,-0.973340332508087,0.115091018378735,-0.830434620380402,0.545098423957825,0.972296535968781,-0.2061707675457,-0.110149852931499,0.160703733563423,0.799160480499268,-0.579238176345825,-0.993405103683472,0.0246375594288111,0.1119789108634,0.483868688344955,-0.854350626468658,0.18962137401104,0.269771188497543,-0.083231583237648,-0.959320545196533,-0.421923398971558,0.797784268856049,-0.430721342563629,-0.338030606508255,0.175768777728081,0.924575865268707,
- 0.569411993026733,-0.698383867740631,0.433624356985092,-0.0457319244742393,-0.485846728086472,-0.872846841812134,-0.625920057296753,0.683347165584564,-0.375846743583679,-0.0928221717476845,0.526634037494659,0.845009326934814,0.56434428691864,-0.570246398448944,0.596937656402588,0.463074237108231,-0.482088088989258,0.743742763996124,0.317325443029404,-0.59942489862442,0.734843134880066,-0.05538335070014,-0.805331587791443,0.590231955051422,-0.000337858567945659,-0.992527842521667,0.122018240392208,0.709857881069183,0.0869234651327133,-0.698960661888123,0.469822585582733,-0.209361776709557,-0.857574760913849,0.729836285114288,-0.126703023910522,-0.671777784824371,0.920866072177887,-0.18766613304615,-0.341741323471069,0.98174923658371,-0.091952309012413,-0.166472911834717,0.904788494110107,0.172314748167992,0.389442503452301,-0.660286664962769,0.607000350952148,-0.442235320806503,-0.600795030593872,0.511462330818176,-0.614370882511139,-0.349706739187241,0.581224799156189,-0.734767258167267,-0.216131255030632,0.742525637149811,-0.633989691734314,-0.199248656630516,0.939507842063904,-0.278612524271011,-0.493783622980118,0.232782244682312,0.837848544120789,-0.760532796382904,0.136495679616928,0.634790301322937,-0.857699513435364,0.0331842228770256,0.513079226016998,-0.982326447963715,0.0204722862690687,0.186052799224854,-0.808910250663757,-0.307338088750839,-0.501205921173096,0.790416538715363,-0.384567201137543,-0.476812183856964,0.979503214359283,-0.199300393462181,0.029201315715909,0.481714010238647,-0.473376542329788,-0.737472832202911,0.194416880607605,0.8152956366539,-0.545431077480316,-0.0205629169940948,0.945276439189911,-0.325621962547302,-0.798472583293915,0.428638368844986,0.422741949558258,-0.995681524276733,0.0800093486905098,-0.0470809303224087,-0.127859830856323,-0.872705161571503,0.471208661794662,-0.283163815736771,-0.921534538269043,0.265692204236984,0.571387827396393,-0.656005501747131,0.493125677108765,0.135834082961082,-0.378421276807785,-0.915612578392029,-0.643256545066834,0.699450671672821,-0.311431884765625,
- -0.169941619038582,0.398580700159073,0.901251018047333,-0.887002348899841,0.301663368940353,0.349608331918716,-0.251098394393921,-0.840658247470856,0.479836702346802,0.867071032524109,-0.354524075984955,-0.350000649690628,0.0548100844025612,0.887291789054871,-0.457940131425858,0.940594494342804,0.0461580418050289,0.336379796266556,0.0602290593087673,0.932807743549347,-0.355305731296539,-0.889193773269653,0.0962229892611504,-0.44729819893837,-0.232207611203194,-0.964996516704559,0.12190730124712,-0.921130001544952,-0.313456922769547,-0.230790764093399,-0.0376605279743671,-0.914643347263336,0.402503579854965,0.95475310087204,0.0808082297444344,0.286210834980011,-0.0891252681612968,0.841594278812408,-0.532705903053284,0.639447033405304,0.236804664134979,-0.731458127498627,0.831467151641846,-0.132971033453941,0.539426445960999,-0.612309753894806,-0.300113767385483,0.73144268989563,-0.66125500202179,0.135702669620514,-0.737784922122955,0.742796301841736,-0.221352770924568,-0.631867647171021,0.79548591375351,-0.270779311656952,-0.54210752248764,0.761992156505585,-0.238972440361977,-0.601880550384521,0.774436116218567,-0.0817857310175896,-0.627343416213989,0.738555431365967,0.0881996676325798,-0.668398678302765,0.758789837360382,0.0776604413986206,-0.646689116954803,0.66795015335083,0.114306874573231,-0.735375106334686,0.664242684841156,0.171350046992302,-0.727613151073456,0.380743205547333,-0.923984348773956,-0.0358814708888531,0.674142301082611,0.182595133781433,0.715675354003906,0.57882034778595,0.315231829881668,0.752061188220978,0.538957059383392,0.495704054832459,0.681030750274658,0.485450863838196,0.600126087665558,0.635756313800812,0.589337706565857,0.494523793458939,0.63884836435318,0.698446691036224,0.174339801073074,0.694102168083191,0.702386617660522,0.059068325906992,0.709340512752533,0.66010320186615,0.17968675494194,0.729367136955261,-0.831174731254578,0.224096491932869,0.508850991725922,-0.811056971549988,0.219889387488365,0.542065739631653,-0.853113532066345,0.104034073650837,0.51124781370163,-0.773263096809387,0.0340350195765495,0.633171141147614,
- -0.638355433940887,-0.0596610233187675,0.767426192760468,-0.603970110416412,-0.111614115536213,0.789153039455414,-0.699117004871368,-0.162898644804955,0.696203589439392,-0.675570487976074,-0.277520507574081,0.683071553707123,-0.544586956501007,-0.244081348180771,-0.802402257919312,-0.612803280353546,-0.35121938586235,-0.707896292209625,-0.59527462720871,-0.499689757823944,-0.629252195358276,-0.591402232646942,-0.614849150180817,-0.521731674671173,-0.589377284049988,-0.525864720344543,-0.613270461559296,-0.697981178760529,-0.202981978654861,-0.68674635887146,-0.72409051656723,-0.114079408347607,-0.68020486831665,-0.693305253982544,-0.269475698471069,-0.66836416721344,0.841019749641418,0.377377301454544,-0.387649595737457,-0.244924992322922,0.806616365909576,0.537942171096802,-0.802485764026642,-0.492185354232788,0.337298512458801,0.147178024053574,-0.869293689727783,-0.471876442432404,0.849072217941284,0.447569966316223,-0.2806376516819,0.523541569709778,-0.51411235332489,0.67940616607666,-0.117128647863865,0.784080505371094,0.609506845474243,-0.826876819133759,-0.392115712165833,0.403137415647507,0.173507288098335,-0.808406949043274,-0.562470734119415,-0.641697883605957,0.0885533168911934,-0.761828243732452,-0.7185959815979,-0.171922236680985,0.673841655254364,0.800182700157166,-0.124211207032204,0.586753189563751,0.603745996952057,0.150805994868279,-0.782782435417175,-0.600924134254456,0.0577734671533108,-0.797215402126312,-0.790360987186432,0.1359483897686,0.597367107868195,0.699536025524139,0.0190043542534113,0.714344561100006,0.700087428092957,-0.0370365977287292,-0.713096022605896,-0.600015223026276,-0.420114099979401,-0.68079799413681,-0.78388124704361,0.239074423909187,0.573038995265961,0.606585562229156,0.250987678766251,0.75435996055603,0.797420203685761,-0.377786189317703,-0.470530331134796,0.698106348514557,0.563847303390503,-0.441275060176849,0.562254309654236,-0.250315755605698,0.788170039653778,-0.887365996837616,-0.447637587785721,0.110463201999664,-0.253973037004471,0.422929584980011,-0.869843900203705,
- 0.821731448173523,0.542616903781891,-0.174138620495796,0.750945508480072,0.658815264701843,0.0452032014727592,0.566117227077484,0.824281811714172,0.00842354632914066,0.790691018104553,0.48174649477005,0.37779375910759,0.133217260241508,-0.71282297372818,0.688575685024261,0.404439896345139,-0.459951996803284,0.79048889875412,-0.303232282400131,0.0775070860981941,0.949759364128113,-0.342801481485367,0.0838370770215988,0.935659348964691,-0.610650718212128,0.518659055233002,0.598413228988647,-0.79464590549469,-0.577440738677979,0.187350198626518,-0.704443633556366,-0.688469171524048,-0.17253752052784,-0.531166672706604,-0.833497107028961,-0.152133718132973,-0.756967067718506,-0.575710296630859,-0.309125453233719,-0.425174921751022,0.415013134479523,-0.80435699224472,0.190997019410133,-0.179567992687225,-0.965026140213013,0.350442916154861,-0.210515290498734,-0.912618815898895,0.695304751396179,-0.52644282579422,-0.489294677972794,0.943827033042908,0.217239543795586,-0.248992770910263,0.0566194541752338,0.212672308087349,0.975481808185577,-0.945287346839905,-0.325971961021423,0.013194914907217,-0.0768423974514008,-0.270652711391449,-0.959605276584625,0.967292964458466,0.229194670915604,-0.108693450689316,0.912999510765076,0.316195428371429,-0.257783561944962,0.887530088424683,0.400980144739151,-0.226947277784348,0.471058160066605,-0.71577125787735,0.515534460544586,0.103366300463676,0.158568993210793,0.981922209262848,-0.00356499454937875,0.202808380126953,0.979211986064911,-0.0182523932307959,0.443377137184143,0.896149277687073,-0.953822910785675,-0.264618366956711,0.142123252153397,-0.921821415424347,-0.381642073392868,0.0677838027477264,-0.816977977752686,-0.545780718326569,0.18620003759861,-0.0692127794027328,-0.206047460436821,-0.976091206073761,-0.117619909346104,-0.325125336647034,-0.938327789306641,0.0910131707787514,-0.516667485237122,-0.851335048675537,-0.812762200832367,-0.578729808330536,-0.0670028701424599,0.247126653790474,-0.273286014795303,0.929646849632263,0.771769404411316,0.618511438369751,-0.147700846195221,
- -0.241670116782188,0.258241921663284,-0.935364484786987,-0.794858694076538,-0.597631454467773,-0.105054169893265,-0.0493537113070488,0.0533199347555637,0.997357070446014,0.83496105670929,0.544578075408936,-0.0792132914066315,0.0122748762369156,-0.0288978926837444,-0.999506950378418,-0.802675008773804,-0.59604799747467,0.0209707785397768,0.394501179456711,-0.508365035057068,0.76546311378479,0.768601834774017,0.630392909049988,-0.108884386718273,-0.386186629533768,0.467937111854553,-0.79491800069809,0.650051295757294,-0.334707111120224,-0.682205617427826,-0.600431203842163,-0.775182545185089,-0.196403592824936,-0.50157356262207,0.453714907169342,0.736591219902039,0.73538726568222,0.667695045471191,0.115710206329823,0.4751877784729,-0.21440152823925,-0.853363037109375,-0.402881890535355,-0.915251195430756,-0.00116755394265056,-0.432169020175934,0.274899244308472,0.858871579170227,0.500580310821533,0.864966988563538,-0.0353771336376667,0.569169402122498,0.113917015492916,-0.814290523529053,-0.91830039024353,0.036046463996172,-0.394239783287048,-0.281933009624481,-0.175480633974075,0.943249821662903,0.909088015556335,-0.085249587893486,0.407788425683975,0.0877351388335228,0.549843966960907,-0.830646812915802,0.188523069024086,0.413132667541504,-0.89094352722168,0.442232429981232,0.296648055315018,-0.846422135829926,0.43389156460762,0.351021766662598,-0.829772114753723,-0.414608687162399,-0.748853266239166,-0.517028510570526,-0.996060252189636,-0.0586189143359661,-0.0665403306484222,-0.955057084560394,-0.10156524181366,-0.27847883105278,-0.924214124679565,0.334808349609375,-0.183661475777626,-0.805616915225983,0.584680616855621,-0.095550648868084,-0.03760626912117,-0.572125673294067,0.819303452968597,-0.127917617559433,-0.452826887369156,0.88237464427948,-0.232977285981178,-0.406007558107376,0.883673846721649,-0.355243116617203,-0.462903380393982,0.812110126018524,0.986058712005615,-0.0412340983748436,0.161208242177963,0.977997064590454,0.15937177836895,0.134619683027267,0.892029047012329,-0.391526013612747,0.225812986493111,
- 0.775838971138,-0.625340759754181,0.0838020965456963,-0.471772402524948,-0.390739232301712,0.790413558483124,-0.793884098529816,0.59190970659256,-0.139251202344894,0.318746507167816,0.401753216981888,-0.858484148979187,0.793206036090851,-0.602352857589722,0.0894154459238052,0.303047865629196,0.314557015895844,-0.899564325809479,-0.984376549720764,-0.0102091627195477,-0.175780206918716,-0.237042859196663,-0.343859493732452,0.908609509468079,0.919197201728821,-0.0724697783589363,0.387071907520294,0.0313158221542835,0.566078186035156,-0.823756456375122,-0.98673677444458,-0.0620892830193043,-0.149984836578369,-0.0674735382199287,-0.622145295143127,0.779988765716553,0.997721672058105,0.0620508082211018,0.0264815706759691,0.283136963844299,0.295654743909836,-0.912371456623077,-0.965938925743103,-0.0282480660825968,-0.257223397493362,-0.183128401637077,-0.267032772302628,0.946127533912659,0.959239304065704,0.0290592145174742,0.281096756458282,0.483431130647659,-0.354617029428482,-0.80033814907074,0.14070437848568,-0.831409633159637,0.537550270557404,-0.553527474403381,0.415253609418869,0.721922278404236,-0.208316400647163,0.816115200519562,-0.539036452770233,0.594872951507568,-0.278433740139008,-0.754056334495544,0.726483523845673,-0.202483490109444,-0.656675100326538,0.741982638835907,-0.268386989831924,-0.614353477954865,-0.52313494682312,-0.608929455280304,-0.596267461776733,0.197531551122665,-0.762778759002686,0.615751504898071,0.319369226694107,-0.713513374328613,0.62362003326416,0.219288855791092,-0.813308835029602,0.53892582654953,-0.658620119094849,0.354407072067261,0.663788437843323,-0.756223499774933,0.214723959565163,0.618077337741852,-0.818171143531799,0.0112051116302609,0.574865579605103,-0.326042503118515,0.780199944972992,-0.533839225769043,-0.382698595523834,0.696499645709991,-0.606984376907349,-0.266443073749542,0.802717566490173,-0.533528387546539,0.48854124546051,-0.799422562122345,-0.349644213914871,-0.8913813829422,-0.409455060958862,0.194385647773743,-0.33596071600914,0.879402339458466,0.337315797805786,
- 0.793975114822388,0.600170850753784,-0.0969467684626579,0.585105061531067,-0.766429305076599,-0.265025019645691,0.685696661472321,-0.724414646625519,-0.0710174366831779,0.666086196899414,-0.734135508537292,-0.131810903549194,0.838504552841187,-0.521332561969757,-0.158500641584396,-0.833370327949524,-0.425439774990082,-0.352838188409805,-0.495505124330521,-0.285512238740921,-0.820339918136597,-0.00812599062919617,0.324006915092468,-0.946019887924194,-0.0725756511092186,0.252757132053375,-0.964803993701935,-0.423806190490723,0.824743866920471,0.37441411614418,-0.547132134437561,0.762385964393616,0.345563381910324,-0.700688660144806,0.657152593135834,0.27782353758812,-0.914447605609894,0.397299230098724,0.0770636200904846,0.854360342025757,0.382748305797577,0.351528197526932,0.501590013504028,0.205855801701546,0.84025651216507,-0.053437165915966,-0.28130105137825,0.958130478858948,-0.0838686749339104,-0.321866095066071,0.943063139915466,-0.417951911687851,-0.866477191448212,-0.273008197546005,0.543091893196106,-0.764336407184601,-0.347622185945511,-0.884489834308624,-0.465403348207474,-0.0328245460987091,-0.357148945331573,0.859562397003174,0.365509539842606,0.861310482025146,0.505328178405762,0.0527993738651276,0.640126407146454,-0.745150208473206,-0.187054291367531,-0.729849338531494,-0.383297204971313,-0.566041648387909,-0.545338809490204,0.77259373664856,0.325122177600861,0.736919760704041,0.301352173089981,0.605091869831085,0.646678447723389,-0.758936822414398,-0.0763015747070313,-0.252883076667786,0.0611233226954937,-0.965564131736755,-0.55457466840744,0.76855206489563,0.319021373987198,0.181185588240623,-0.0188995487987995,0.983267307281494,-0.253082662820816,0.146769806742668,0.956246674060822,-0.962726056575775,-0.184484079480171,-0.197798579931259,0.164953455328941,-0.232646062970161,-0.958470702171326,0.968190252780914,0.113272108137608,0.223108246922493,-0.0810186192393303,0.0685546919703484,0.994352221488953,-0.108161866664886,0.0822142213582993,0.990727841854095,-0.180023521184921,0.0873857960104942,0.979773044586182,
- -0.275919765233994,-0.959669530391693,0.0538781173527241,-0.990000188350677,0.0294457413256168,-0.13795804977417,-0.942705631256104,0.250307649374008,-0.220572471618652,-0.964252173900604,0.224381491541862,-0.140963926911354,0.268822759389877,-0.141660004854202,-0.952715516090393,0.174849539995193,-0.140047341585159,-0.97458416223526,0.111549235880375,-0.206672146916389,-0.972030520439148,0.972495794296265,-0.0643216595053673,0.223863452672958,0.947586059570313,-0.297878950834274,0.11553680896759,0.905743956565857,-0.366398870944977,0.21302530169487,-0.161534398794174,-0.395724177360535,0.90405148267746,0.766197979450226,-0.610397160053253,-0.200887992978096,0.0262969825416803,0.385760456323624,-0.922224223613739,-0.811814725399017,0.56500768661499,0.14738817512989,-0.121043711900711,0.719530165195465,0.683831095695496,0.999432504177094,0.0303211137652397,0.0146743366494775,-0.103472702205181,-0.733309805393219,-0.671974658966064,-0.998077094554901,-0.055162038654089,0.0282733831554651,0.785844445228577,0.528875887393951,0.320529103279114,0.322808831930161,-0.0344606153666973,-0.94583660364151,-0.79779464006424,-0.583673298358917,-0.151158928871155,-0.269044727087021,-0.00646575214341283,0.963105976581573,0.545776188373566,0.633977711200714,0.547905683517456,0.694267094135284,-0.0380352772772312,-0.718711674213409,-0.626797795295715,-0.613966345787048,-0.479760348796844,-0.657963275909424,0.106545999646187,0.745474517345428,0.921087443828583,-0.320450961589813,-0.221154361963272,0.416773855686188,-0.748584926128387,-0.515674412250519,-0.276158839464188,-0.783998489379883,-0.555951952934265,-0.898235261440277,-0.341564655303955,-0.276598781347275,-0.934130728244781,0.304313778877258,0.186528533697128,-0.498974710702896,0.711866319179535,0.494237333536148,0.232884451746941,0.789834916591644,0.567384898662567,0.829728901386261,0.452762097120285,0.326429784297943,0.850449979305267,0.421149343252182,0.315226972103119,0.899685800075531,-0.250334858894348,-0.357628464698792,0.378534018993378,-0.659947097301483,-0.648985087871552,
- -0.354725629091263,-0.727913737297058,-0.586780428886414,-0.929811716079712,-0.333540350198746,-0.155566573143005,-0.883469998836517,0.279088228940964,0.376285016536713,-0.383968770503998,0.64180725812912,0.663815915584564,0.339004039764404,0.695644617080688,0.633367836475372
- }
- NormalsW: *936 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *10782 {
- a: -0.289062470197678,-0.84760057926178,-0.44498997926712,-0.0358984246850014,-0.927606523036957,-0.371830016374588,-0.0650400370359421,-0.997215390205383,-0.0364869460463524,-0.261392533779144,-0.920875310897827,-0.289244949817657,0.75773686170578,-0.402043759822845,0.513999879360199,0.490377843379974,-0.048408504575491,0.870164573192596,0.84178626537323,-0.109025679528713,0.528686463832855,0.771709978580475,-0.505807518959045,0.385516047477722,0.943117439746857,-0.328153729438782,0.0533357486128807,0.964519202709198,-0.262231439352036,-0.0306157842278481,0.908265352249146,-0.236383065581322,-0.345220446586609,0.906319677829742,-0.404935032129288,-0.12088119238615,0.106820359826088,-0.967867314815521,-0.227644994854927,-0.0808952376246452,-0.872301697731018,-0.482230126857758,0.216758653521538,-0.860536992549896,-0.460968405008316,0.353410720825195,-0.718286514282227,-0.599304020404816,-0.0808952376246452,-0.872301697731018,-0.482230126857758,0.106820359826088,-0.967867314815521,-0.227644994854927,-0.0344678200781345,-0.988393902778625,-0.147951051592827,0.101450636982918,-0.976302266120911,-0.191159129142761,0.10473071038723,-0.994100034236908,0.0282270256429911,-0.0668317377567291,-0.997744679450989,-0.00625589676201344,-0.0238223448395729,-0.999701678752899,-0.00540562346577644,-0.0305190775543451,-0.996378064155579,0.0793679282069206,-0.135437220335007,-0.964034676551819,0.228678613901138,-0.123512767255306,-0.991804659366608,-0.0326819829642773,-0.233183726668358,-0.954835712909698,0.184158354997635,-0.250361233949661,-0.925852835178375,0.283047527074814,-0.144670128822327,-0.979718923568726,0.138641342520714,-0.120040759444237,-0.99165815114975,0.0469509921967983,0.00635708402842283,-0.998103022575378,0.0612379685044289,0.188807919621468,-0.982011139392853,0.00238868594169617,0.251317530870438,-0.967713832855225,0.0192249435931444,0.177351862192154,-0.948608338832855,0.262084931135178,0.9228515625,0.100629113614559,-0.371777951717377,-0.0358984246850014,-0.927606523036957,-0.371830016374588,
- -0.0110317943617702,-0.89269095659256,-0.450534254312515,-0.297187149524689,-0.912852644920349,-0.279964208602905,-0.0650400370359421,-0.997215390205383,-0.0364869460463524,0.490377843379974,-0.048408504575491,0.870164573192596,0.639965236186981,-0.444488167762756,0.626797258853912,0.767918169498444,-0.571668684482574,0.288957715034485,0.84178626537323,-0.109025679528713,0.528686463832855,0.908265352249146,-0.236383065581322,-0.345220446586609,0.964519202709198,-0.262231439352036,-0.0306157842278481,0.94866681098938,-0.28951296210289,0.127333119511604,0.952383875846863,-0.287194728851318,-0.102392621338367,0.0324335992336273,-0.854483425617218,-0.518465101718903,0.106820359826088,-0.967867314815521,-0.227644994854927,0.353410720825195,-0.718286514282227,-0.599304020404816,0.356779932975769,-0.819459557533264,-0.448546648025513,0.106820359826088,-0.967867314815521,-0.227644994854927,0.0324335992336273,-0.854483425617218,-0.518465101718903,0.00501485168933868,-0.944711804389954,-0.327863544225693,-0.0344678200781345,-0.988393902778625,-0.147951051592827,-0.0668317377567291,-0.997744679450989,-0.00625589676201344,0.10201209038496,-0.99268239736557,-0.0646162629127502,0.00859923008829355,-0.999077498912811,0.0420739986002445,-0.0238223448395729,-0.999701678752899,-0.00540562346577644,-0.123512767255306,-0.991804659366608,-0.0326819829642773,-0.210179671645164,-0.959466934204102,0.187743589282036,-0.202919572591782,-0.942367255687714,0.266021817922592,-0.233183726668358,-0.954835712909698,0.184158354997635,-0.120040759444237,-0.99165815114975,0.0469509921967983,-0.113437294960022,-0.987475752830505,0.109651915729046,0.0734956115484238,-0.995846152305603,-0.0537487044930458,0.00635708402842283,-0.998103022575378,0.0612379685044289,0.177351862192154,-0.948608338832855,0.262084931135178,0.253595918416977,-0.960856974124908,-0.111548885703087,0.9228515625,0.100629113614559,-0.371777951717377,-0.0110317943617702,-0.89269095659256,-0.450534254312515,0.450013875961304,-0.88413667678833,-0.12565790116787,0.343451172113419,-0.914263486862183,-0.214857444167137,
- -0.297187149524689,-0.912852644920349,-0.279964208602905,0.639965236186981,-0.444488167762756,0.626797258853912,0.557008385658264,0.426116973161697,0.712857604026794,0.885191679000854,-0.098894476890564,0.454593986272812,0.767918169498444,-0.571668684482574,0.288957715034485,0.94866681098938,-0.28951296210289,0.127333119511604,0.959256649017334,-0.270679235458374,-0.0809902399778366,0.899345219135284,-0.292046874761581,-0.325402736663818,0.952383875846863,-0.287194728851318,-0.102392621338367,0.224724039435387,-0.863426148891449,-0.45165753364563,0.0324335992336273,-0.854483425617218,-0.518465101718903,0.356779932975769,-0.819459557533264,-0.448546648025513,0.456817746162415,-0.611094772815704,-0.646437048912048,0.0324335992336273,-0.854483425617218,-0.518465101718903,0.224724039435387,-0.863426148891449,-0.45165753364563,-0.076586902141571,-0.99591851234436,0.0477582365274429,0.00501485168933868,-0.944711804389954,-0.327863544225693,0.10201209038496,-0.99268239736557,-0.0646162629127502,-0.0182828493416309,-0.990978062152863,0.132771164178848,0.0519075281918049,-0.995397686958313,-0.0805555582046509,0.00859923008829355,-0.999077498912811,0.0420739986002445,-0.210179671645164,-0.959466934204102,0.187743589282036,0.00695292558521032,-0.999272108078003,-0.037508450448513,-0.193853005766869,-0.961378991603851,0.195375561714172,-0.202919572591782,-0.942367255687714,0.266021817922592,-0.113437294960022,-0.987475752830505,0.109651915729046,-0.0888241305947304,-0.993779301643372,0.0671791210770607,0.0396879762411118,-0.962532103061676,0.268247753381729,0.0734956115484238,-0.995846152305603,-0.0537487044930458,0.253595918416977,-0.960856974124908,-0.111548885703087,0.163486987352371,-0.946318864822388,0.27884179353714,0.9228515625,0.100629113614559,-0.371777951717377,-0.55826199054718,-0.828507661819458,0.0438011549413204,-0.289062470197678,-0.84760057926178,-0.44498997926712,-0.261392533779144,-0.920875310897827,-0.289244949817657,-0.419411420822144,-0.895150303840637,0.150996506214142,0.29619088768959,-0.528165817260742,0.795808851718903,
- 0.75773686170578,-0.402043759822845,0.513999879360199,0.771709978580475,-0.505807518959045,0.385516047477722,0.783377110958099,-0.433040082454681,0.445866346359253,0.989567160606384,-0.0985145345330238,-0.10512725263834,0.943117439746857,-0.328153729438782,0.0533357486128807,0.906319677829742,-0.404935032129288,-0.12088119238615,0.92925888299942,-0.155546247959137,-0.335087031126022,0.412475645542145,-0.706638276576996,-0.574914157390594,0.216758653521538,-0.860536992549896,-0.460968405008316,-0.0808952376246452,-0.872301697731018,-0.482230126857758,0.0584094636142254,-0.976896643638611,-0.205575704574585,0.0584094636142254,-0.976896643638611,-0.205575704574585,-0.0808952376246452,-0.872301697731018,-0.482230126857758,0.101450636982918,-0.976302266120911,-0.191159129142761,-0.0350858382880688,-0.998702526092529,-0.036909893155098,0.030978124588728,-0.998599886894226,-0.0428811833262444,0.10473071038723,-0.994100034236908,0.0282270256429911,-0.0305190775543451,-0.996378064155579,0.0793679282069206,0.00874459464102983,-0.988872170448303,0.148510366678238,-0.104226671159267,-0.945830345153809,0.307476758956909,-0.135437220335007,-0.964034676551819,0.228678613901138,-0.250361233949661,-0.925852835178375,0.283047527074814,-0.208896070718765,-0.941836714744568,0.263260543346405,-0.100097931921482,-0.988675355911255,0.111810460686684,-0.144670128822327,-0.979718923568726,0.138641342520714,0.188807919621468,-0.982011139392853,0.00238868594169617,0.0387003682553768,-0.961696863174438,0.271369785070419,0.125507548451424,-0.926918387413025,0.353652536869049,0.251317530870438,-0.967713832855225,0.0192249435931444,0.9228515625,0.100629113614559,-0.371777951717377,-0.33810031414032,-0.387181133031845,-0.857775628566742,-0.495243728160858,-0.705927491188049,-0.50635951757431,-0.456510663032532,-0.403007566928864,-0.793210506439209,-0.563993334770203,-0.309494256973267,-0.76558792591095,-0.887073516845703,-0.454409688711166,-0.0813171491026878,-0.808904409408569,-0.583106637001038,-0.0752351731061935,-0.658859670162201,0.732551157474518,-0.171092867851257,
- -0.458974480628967,-0.104142546653748,-0.882324635982513,-0.0518106818199158,-0.417852252721787,-0.907036602497101,-0.475472778081894,-0.31780743598938,-0.820319592952728,-0.43488022685051,-0.469138085842133,-0.768627762794495,-0.708925902843475,-0.703340768814087,-0.0523049756884575,-0.803724586963654,-0.591988921165466,0.0597997829318047,-0.658859670162201,0.732551157474518,-0.171092867851257,-0.0518106818199158,-0.417852252721787,-0.907036602497101,-0.573446810245514,-0.205092936754227,-0.793155491352081,-0.441162616014481,-0.377567052841187,-0.814136922359467,-0.475472778081894,-0.31780743598938,-0.820319592952728,-0.803724586963654,-0.591988921165466,0.0597997829318047,-0.635006546974182,-0.75874388217926,0.145170494914055,-0.658859670162201,0.732551157474518,-0.171092867851257,-0.573446810245514,-0.205092936754227,-0.793155491352081,-0.33810031414032,-0.387181133031845,-0.857775628566742,-0.563993334770203,-0.309494256973267,-0.76558792591095,-0.441162616014481,-0.377567052841187,-0.814136922359467,-0.635006546974182,-0.75874388217926,0.145170494914055,-0.887073516845703,-0.454409688711166,-0.0813171491026878,-0.658859670162201,0.732551157474518,-0.171092867851257,-0.198762401938438,-0.956816971302032,0.212120115756989,-0.527374982833862,-0.838395237922668,0.137728482484818,-0.682706654071808,-0.651746034622192,0.330361545085907,-0.30283921957016,-0.823915719985962,0.479010730981827,-0.424225747585297,-0.872597694396973,0.242086589336395,-0.198762401938438,-0.956816971302032,0.212120115756989,-0.30283921957016,-0.823915719985962,0.479010730981827,-0.559341847896576,-0.68345695734024,0.469066441059113,-0.408700048923492,-0.768273890018463,0.492665857076645,-0.424225747585297,-0.872597694396973,0.242086589336395,-0.559341847896576,-0.68345695734024,0.469066441059113,-0.42770129442215,-0.469210058450699,0.772601783275604,-0.527374982833862,-0.838395237922668,0.137728482484818,-0.253838747739792,-0.936151027679443,0.243284121155739,-0.349799126386642,-0.843174993991852,0.408284723758698,-0.682706654071808,-0.651746034622192,0.330361545085907,
- -0.519165337085724,-0.538196980953217,0.663936257362366,-0.374906420707703,-0.625427901744843,0.684313595294952,-0.208540886640549,-0.59292995929718,0.777781963348389,-0.0704822093248367,-0.490942895412445,0.868336081504822,-0.335395038127899,-0.44820162653923,0.828628659248352,-0.519165337085724,-0.538196980953217,0.663936257362366,-0.0704822093248367,-0.490942895412445,0.868336081504822,-0.274396032094955,-0.631133019924164,0.725519180297852,-0.611157894134521,-0.464564383029938,0.640832304954529,-0.351584672927856,-0.662033081054688,0.661891460418701,-0.152720406651497,-0.272797971963882,0.949872493743896,-0.304886281490326,-0.444482773542404,0.842306017875671,-0.374906420707703,-0.625427901744843,0.684313595294952,-0.611157894134521,-0.464564383029938,0.640832304954529,-0.304886281490326,-0.444482773542404,0.842306017875671,-0.208540886640549,-0.59292995929718,0.777781963348389,-0.0298171080648899,-0.997143745422363,0.0693929195404053,-0.466047018766403,-0.870837092399597,-0.156342417001724,-0.527374982833862,-0.838395237922668,0.137728482484818,-0.198762401938438,-0.956816971302032,0.212120115756989,-0.406720340251923,-0.913065135478973,-0.0298469997942448,-0.0298171080648899,-0.997143745422363,0.0693929195404053,-0.198762401938438,-0.956816971302032,0.212120115756989,-0.424225747585297,-0.872597694396973,0.242086589336395,-0.410961329936981,-0.869907379150391,0.272712469100952,-0.406720340251923,-0.913065135478973,-0.0298469997942448,-0.424225747585297,-0.872597694396973,0.242086589336395,-0.408700048923492,-0.768273890018463,0.492665857076645,-0.466047018766403,-0.870837092399597,-0.156342417001724,-0.0236101560294628,-0.993294835090637,-0.113172501325607,-0.253838747739792,-0.936151027679443,0.243284121155739,-0.527374982833862,-0.838395237922668,0.137728482484818,-0.374680608510971,-0.658683836460114,-0.652495324611664,-0.714645683765411,-0.38763552904129,-0.582254528999329,-0.699598670005798,-0.62570858001709,-0.34503710269928,-0.639196157455444,-0.620601177215576,-0.454183429479599,-0.745813965797424,-0.368171155452728,-0.555168032646179,
- -0.374680608510971,-0.658683836460114,-0.652495324611664,-0.639196157455444,-0.620601177215576,-0.454183429479599,-0.678510844707489,-0.639128506183624,-0.36212956905365,-0.412361860275269,-0.66851270198822,-0.618909180164337,-0.745813965797424,-0.368171155452728,-0.555168032646179,-0.678510844707489,-0.639128506183624,-0.36212956905365,-0.485940158367157,-0.755869507789612,-0.438775092363358,-0.714645683765411,-0.38763552904129,-0.582254528999329,-0.557837724685669,-0.274418741464615,-0.783269703388214,-0.689484655857086,-0.390584230422974,-0.609962999820709,-0.699598670005798,-0.62570858001709,-0.34503710269928,-0.182522788643837,-0.296626567840576,-0.937389075756073,-0.788230299949646,-0.478241264820099,-0.387270450592041,-0.682236611843109,0.562202334403992,-0.467420428991318,-0.676276683807373,0.578813433647156,-0.45565864443779,-0.0358984246850014,-0.927606523036957,-0.371830016374588,-0.289062470197678,-0.84760057926178,-0.44498997926712,-0.788230299949646,-0.478241264820099,-0.387270450592041,-0.182522788643837,-0.296626567840576,-0.937389075756073,-0.289062470197678,-0.84760057926178,-0.44498997926712,-0.55826199054718,-0.828507661819458,0.0438011549413204,-0.791654109954834,-0.48687756061554,0.369098782539368,-0.788230299949646,-0.478241264820099,-0.387270450592041,0.450013875961304,-0.88413667678833,-0.12565790116787,-0.0110317943617702,-0.89269095659256,-0.450534254312515,0.838399112224579,-0.46099865436554,-0.290804356336594,0.795798897743225,-0.462656557559967,0.390708416700363,-0.0110317943617702,-0.89269095659256,-0.450534254312515,-0.0358984246850014,-0.927606523036957,-0.371830016374588,-0.182522788643837,-0.296626567840576,-0.937389075756073,0.838399112224579,-0.46099865436554,-0.290804356336594,-0.0650400370359421,-0.997215390205383,-0.0364869460463524,-0.297187149524689,-0.912852644920349,-0.279964208602905,-0.466047018766403,-0.870837092399597,-0.156342417001724,-0.0298171080648899,-0.997143745422363,0.0693929195404053,-0.261392533779144,-0.920875310897827,-0.289244949817657,-0.0650400370359421,-0.997215390205383,-0.0364869460463524,
- -0.0298171080648899,-0.997143745422363,0.0693929195404053,-0.406720340251923,-0.913065135478973,-0.0298469997942448,-0.419411420822144,-0.895150303840637,0.150996506214142,-0.261392533779144,-0.920875310897827,-0.289244949817657,-0.406720340251923,-0.913065135478973,-0.0298469997942448,-0.410961329936981,-0.869907379150391,0.272712469100952,-0.297187149524689,-0.912852644920349,-0.279964208602905,0.343451172113419,-0.914263486862183,-0.214857444167137,-0.0236101560294628,-0.993294835090637,-0.113172501325607,-0.466047018766403,-0.870837092399597,-0.156342417001724,0.493008345365524,-0.393128871917725,0.776139497756958,0.0626145079731941,-0.406166315078735,0.911651432514191,0.490377843379974,-0.048408504575491,0.870164573192596,0.75773686170578,-0.402043759822845,0.513999879360199,0.0626145079731941,-0.406166315078735,0.911651432514191,0.236459285020828,-0.417693316936493,0.87727952003479,0.639965236186981,-0.444488167762756,0.626797258853912,0.490377843379974,-0.048408504575491,0.870164573192596,0.236459285020828,-0.417693316936493,0.87727952003479,0.308310061693192,0.266072601079941,0.913318276405334,0.557008385658264,0.426116973161697,0.712857604026794,0.639965236186981,-0.444488167762756,0.626797258853912,-0.181714296340942,-0.65214341878891,0.735995233058929,0.493008345365524,-0.393128871917725,0.776139497756958,0.75773686170578,-0.402043759822845,0.513999879360199,0.29619088768959,-0.528165817260742,0.795808851718903,0.903188169002533,-0.361750811338425,0.231057837605476,0.826501607894897,-0.504950404167175,0.248837679624558,0.771709978580475,-0.505807518959045,0.385516047477722,0.84178626537323,-0.109025679528713,0.528686463832855,0.843704998493195,-0.440105020999908,0.307358890771866,0.903188169002533,-0.361750811338425,0.231057837605476,0.84178626537323,-0.109025679528713,0.528686463832855,0.767918169498444,-0.571668684482574,0.288957715034485,0.924867212772369,-0.357735574245453,0.129018977284431,0.843704998493195,-0.440105020999908,0.307358890771866,0.767918169498444,-0.571668684482574,0.288957715034485,
- 0.885191679000854,-0.098894476890564,0.454593986272812,0.826501607894897,-0.504950404167175,0.248837679624558,0.967145204544067,-0.221455797553062,0.12485009431839,0.783377110958099,-0.433040082454681,0.445866346359253,0.771709978580475,-0.505807518959045,0.385516047477722,0.680196642875671,-0.355020314455032,-0.641321361064911,0.678036630153656,-0.684358060359955,-0.268179804086685,0.906319677829742,-0.404935032129288,-0.12088119238615,0.908265352249146,-0.236383065581322,-0.345220446586609,0.66209477186203,-0.638686954975128,-0.392058044672012,0.680196642875671,-0.355020314455032,-0.641321361064911,0.908265352249146,-0.236383065581322,-0.345220446586609,0.952383875846863,-0.287194728851318,-0.102392621338367,0.600788116455078,-0.636109292507172,-0.48416793346405,0.66209477186203,-0.638686954975128,-0.392058044672012,0.952383875846863,-0.287194728851318,-0.102392621338367,0.899345219135284,-0.292046874761581,-0.325402736663818,0.906319677829742,-0.404935032129288,-0.12088119238615,0.678036630153656,-0.684358060359955,-0.268179804086685,0.661399304866791,-0.539021968841553,-0.521542310714722,0.92925888299942,-0.155546247959137,-0.335087031126022,-0.475472778081894,-0.31780743598938,-0.820319592952728,-0.441162616014481,-0.377567052841187,-0.814136922359467,-0.374680608510971,-0.658683836460114,-0.652495324611664,-0.745813965797424,-0.368171155452728,-0.555168032646179,-0.43488022685051,-0.469138085842133,-0.768627762794495,-0.475472778081894,-0.31780743598938,-0.820319592952728,-0.745813965797424,-0.368171155452728,-0.555168032646179,-0.412361860275269,-0.66851270198822,-0.618909180164337,-0.563993334770203,-0.309494256973267,-0.76558792591095,-0.456510663032532,-0.403007566928864,-0.793210506439209,-0.557837724685669,-0.274418741464615,-0.783269703388214,-0.714645683765411,-0.38763552904129,-0.582254528999329,-0.441162616014481,-0.377567052841187,-0.814136922359467,-0.563993334770203,-0.309494256973267,-0.76558792591095,-0.714645683765411,-0.38763552904129,-0.582254528999329,-0.374680608510971,-0.658683836460114,-0.652495324611664,
- -0.678510844707489,-0.639128506183624,-0.36212956905365,-0.639196157455444,-0.620601177215576,-0.454183429479599,-0.70320463180542,-0.694545567035675,-0.152018591761589,-0.628613948822021,-0.754478275775909,-0.188698619604111,-0.485940158367157,-0.755869507789612,-0.438775092363358,-0.678510844707489,-0.639128506183624,-0.36212956905365,-0.628613948822021,-0.754478275775909,-0.188698619604111,-0.588685214519501,-0.762329459190369,-0.268893301486969,-0.699598670005798,-0.62570858001709,-0.34503710269928,-0.689484655857086,-0.390584230422974,-0.609962999820709,-0.766132354736328,-0.553036868572235,-0.327401340007782,-0.692740738391876,-0.673160076141357,-0.258777648210526,-0.639196157455444,-0.620601177215576,-0.454183429479599,-0.699598670005798,-0.62570858001709,-0.34503710269928,-0.692740738391876,-0.673160076141357,-0.258777648210526,-0.70320463180542,-0.694545567035675,-0.152018591761589,0.0387003682553768,-0.961696863174438,0.271369785070419,0.188807919621468,-0.982011139392853,0.00238868594169617,0.251317530870438,-0.967713832855225,0.0192249435931444,0.125507548451424,-0.926918387413025,0.353652536869049,0.0734956115484238,-0.995846152305603,-0.0537487044930458,0.0396879762411118,-0.962532103061676,0.268247753381729,0.163486987352371,-0.946318864822388,0.27884179353714,0.253595918416977,-0.960856974124908,-0.111548885703087,0.00635708402842283,-0.998103022575378,0.0612379685044289,0.0734956115484238,-0.995846152305603,-0.0537487044930458,0.253595918416977,-0.960856974124908,-0.111548885703087,0.177351862192154,-0.948608338832855,0.262084931135178,0.188807919621468,-0.982011139392853,0.00238868594169617,0.00635708402842283,-0.998103022575378,0.0612379685044289,0.177351862192154,-0.948608338832855,0.262084931135178,0.251317530870438,-0.967713832855225,0.0192249435931444,-0.208896070718765,-0.941836714744568,0.263260543346405,-0.250361233949661,-0.925852835178375,0.283047527074814,-0.144670128822327,-0.979718923568726,0.138641342520714,-0.100097931921482,-0.988675355911255,0.111810460686684,-0.202919572591782,-0.942367255687714,0.266021817922592,
- -0.193853005766869,-0.961378991603851,0.195375561714172,-0.0888241305947304,-0.993779301643372,0.0671791210770607,-0.113437294960022,-0.987475752830505,0.109651915729046,-0.233183726668358,-0.954835712909698,0.184158354997635,-0.202919572591782,-0.942367255687714,0.266021817922592,-0.113437294960022,-0.987475752830505,0.109651915729046,-0.120040759444237,-0.99165815114975,0.0469509921967983,-0.250361233949661,-0.925852835178375,0.283047527074814,-0.233183726668358,-0.954835712909698,0.184158354997635,-0.120040759444237,-0.99165815114975,0.0469509921967983,-0.144670128822327,-0.979718923568726,0.138641342520714,0.00874459464102983,-0.988872170448303,0.148510366678238,-0.0305190775543451,-0.996378064155579,0.0793679282069206,-0.135437220335007,-0.964034676551819,0.228678613901138,-0.104226671159267,-0.945830345153809,0.307476758956909,0.00859923008829355,-0.999077498912811,0.0420739986002445,0.0519075281918049,-0.995397686958313,-0.0805555582046509,0.00695292558521032,-0.999272108078003,-0.037508450448513,-0.210179671645164,-0.959466934204102,0.187743589282036,-0.0238223448395729,-0.999701678752899,-0.00540562346577644,0.00859923008829355,-0.999077498912811,0.0420739986002445,-0.210179671645164,-0.959466934204102,0.187743589282036,-0.123512767255306,-0.991804659366608,-0.0326819829642773,-0.0305190775543451,-0.996378064155579,0.0793679282069206,-0.0238223448395729,-0.999701678752899,-0.00540562346577644,-0.123512767255306,-0.991804659366608,-0.0326819829642773,-0.135437220335007,-0.964034676551819,0.228678613901138,0.353410720825195,-0.718286514282227,-0.599304020404816,0.216758653521538,-0.860536992549896,-0.460968405008316,0.678036630153656,-0.684358060359955,-0.268179804086685,0.680196642875671,-0.355020314455032,-0.641321361064911,0.661399304866791,-0.539021968841553,-0.521542310714722,0.678036630153656,-0.684358060359955,-0.268179804086685,0.216758653521538,-0.860536992549896,-0.460968405008316,0.412475645542145,-0.706638276576996,-0.574914157390594,0.456817746162415,-0.611094772815704,-0.646437048912048,0.356779932975769,-0.819459557533264,-0.448546648025513,
- 0.66209477186203,-0.638686954975128,-0.392058044672012,0.600788116455078,-0.636109292507172,-0.48416793346405,0.356779932975769,-0.819459557533264,-0.448546648025513,0.353410720825195,-0.718286514282227,-0.599304020404816,0.680196642875671,-0.355020314455032,-0.641321361064911,0.66209477186203,-0.638686954975128,-0.392058044672012,-0.0704822093248367,-0.490942895412445,0.868336081504822,-0.208540886640549,-0.59292995929718,0.777781963348389,0.0626145079731941,-0.406166315078735,0.911651432514191,0.493008345365524,-0.393128871917725,0.776139497756958,-0.274396032094955,-0.631133019924164,0.725519180297852,-0.0704822093248367,-0.490942895412445,0.868336081504822,0.493008345365524,-0.393128871917725,0.776139497756958,-0.181714296340942,-0.65214341878891,0.735995233058929,-0.304886281490326,-0.444482773542404,0.842306017875671,-0.152720406651497,-0.272797971963882,0.949872493743896,0.308310061693192,0.266072601079941,0.913318276405334,0.236459285020828,-0.417693316936493,0.87727952003479,-0.208540886640549,-0.59292995929718,0.777781963348389,-0.304886281490326,-0.444482773542404,0.842306017875671,0.236459285020828,-0.417693316936493,0.87727952003479,0.0626145079731941,-0.406166315078735,0.911651432514191,-0.30283921957016,-0.823915719985962,0.479010730981827,-0.682706654071808,-0.651746034622192,0.330361545085907,-0.611157894134521,-0.464564383029938,0.640832304954529,-0.374906420707703,-0.625427901744843,0.684313595294952,-0.559341847896576,-0.68345695734024,0.469066441059113,-0.30283921957016,-0.823915719985962,0.479010730981827,-0.374906420707703,-0.625427901744843,0.684313595294952,-0.519165337085724,-0.538196980953217,0.663936257362366,-0.42770129442215,-0.469210058450699,0.772601783275604,-0.559341847896576,-0.68345695734024,0.469066441059113,-0.519165337085724,-0.538196980953217,0.663936257362366,-0.335395038127899,-0.44820162653923,0.828628659248352,-0.682706654071808,-0.651746034622192,0.330361545085907,-0.349799126386642,-0.843174993991852,0.408284723758698,-0.351584672927856,-0.662033081054688,0.661891460418701,
- -0.611157894134521,-0.464564383029938,0.640832304954529,-0.0350858382880688,-0.998702526092529,-0.036909893155098,0.101450636982918,-0.976302266120911,-0.191159129142761,0.10473071038723,-0.994100034236908,0.0282270256429911,0.030978124588728,-0.998599886894226,-0.0428811833262444,0.00501485168933868,-0.944711804389954,-0.327863544225693,-0.076586902141571,-0.99591851234436,0.0477582365274429,-0.0182828493416309,-0.990978062152863,0.132771164178848,0.10201209038496,-0.99268239736557,-0.0646162629127502,-0.0344678200781345,-0.988393902778625,-0.147951051592827,0.00501485168933868,-0.944711804389954,-0.327863544225693,0.10201209038496,-0.99268239736557,-0.0646162629127502,-0.0668317377567291,-0.997744679450989,-0.00625589676201344,0.101450636982918,-0.976302266120911,-0.191159129142761,-0.0344678200781345,-0.988393902778625,-0.147951051592827,-0.0668317377567291,-0.997744679450989,-0.00625589676201344,0.10473071038723,-0.994100034236908,0.0282270256429911,0.903188169002533,-0.361750811338425,0.231057837605476,0.843704998493195,-0.440105020999908,0.307358890771866,0.94866681098938,-0.28951296210289,0.127333119511604,0.964519202709198,-0.262231439352036,-0.0306157842278481,0.826501607894897,-0.504950404167175,0.248837679624558,0.903188169002533,-0.361750811338425,0.231057837605476,0.964519202709198,-0.262231439352036,-0.0306157842278481,0.943117439746857,-0.328153729438782,0.0533357486128807,0.967145204544067,-0.221455797553062,0.12485009431839,0.826501607894897,-0.504950404167175,0.248837679624558,0.943117439746857,-0.328153729438782,0.0533357486128807,0.989567160606384,-0.0985145345330238,-0.10512725263834,0.843704998493195,-0.440105020999908,0.307358890771866,0.924867212772369,-0.357735574245453,0.129018977284431,0.959256649017334,-0.270679235458374,-0.0809902399778366,0.94866681098938,-0.28951296210289,0.127333119511604,-0.692740738391876,-0.673160076141357,-0.258777648210526,-0.766132354736328,-0.553036868572235,-0.327401340007782,-0.808904409408569,-0.583106637001038,-0.0752351731061935,-0.887073516845703,-0.454409688711166,-0.0813171491026878,
- -0.588685214519501,-0.762329459190369,-0.268893301486969,-0.628613948822021,-0.754478275775909,-0.188698619604111,-0.803724586963654,-0.591988921165466,0.0597997829318047,-0.708925902843475,-0.703340768814087,-0.0523049756884575,-0.628613948822021,-0.754478275775909,-0.188698619604111,-0.70320463180542,-0.694545567035675,-0.152018591761589,-0.635006546974182,-0.75874388217926,0.145170494914055,-0.803724586963654,-0.591988921165466,0.0597997829318047,-0.70320463180542,-0.694545567035675,-0.152018591761589,-0.692740738391876,-0.673160076141357,-0.258777648210526,-0.887073516845703,-0.454409688711166,-0.0813171491026878,-0.635006546974182,-0.75874388217926,0.145170494914055,-0.130579814314842,-0.973419785499573,-0.188156738877296,-0.031065559014678,-0.99529904127121,-0.0917326956987381,-0.275227516889572,-0.961367130279541,0.00480601191520691,-0.26793161034584,-0.962429285049438,-0.0440745055675507,0.542076408863068,-0.708780348300934,0.451423913240433,0.381685853004456,-0.79020619392395,0.479468584060669,0.225127711892128,-0.816829442977905,0.531137645244598,0.309998422861099,-0.772949635982513,0.553579270839691,0.672355592250824,-0.735460698604584,-0.0838783457875252,0.813872933387756,-0.564597249031067,0.137261748313904,0.812408864498138,-0.582659006118774,-0.0223691761493683,0.692198157310486,-0.698534071445465,-0.181416213512421,-0.107329428195953,-0.753534197807312,-0.648588120937347,-0.0375843457877636,-0.846117734909058,-0.531669318675995,-0.133277997374535,-0.873151123523712,-0.468875288963318,-0.221764385700226,-0.79272735118866,-0.567806243896484,-0.498221009969711,-0.859021306037903,-0.117721140384674,-0.440747171640396,-0.878884613513947,-0.182493269443512,-0.366334199905396,-0.930052399635315,0.0283160358667374,-0.374473333358765,-0.924555122852325,0.0704814195632935,-0.215316191315651,-0.960161745548248,0.178124994039536,-0.198639571666718,-0.924417614936829,0.325568050146103,-0.117493465542793,-0.99072527885437,0.0682560279965401,0.146310389041901,-0.970890879631042,-0.189642682671547,-0.464496076107025,-0.838663101196289,0.284407556056976,
- -0.273688673973084,-0.898802280426025,0.342416375875473,-0.198639571666718,-0.924417614936829,0.325568050146103,-0.215316191315651,-0.960161745548248,0.178124994039536,0.912789463996887,-0.2220059633255,0.342824786901474,-0.139429420232773,-0.966965436935425,0.213394612073898,-0.548883438110352,-0.76568341255188,0.33534449338913,-0.293672919273376,-0.895021200180054,0.33569809794426,-0.381368309259415,-0.905700623989105,0.185107260942459,-0.339191317558289,-0.938176155090332,-0.0691005513072014,-0.327656745910645,-0.944646835327148,-0.0168383717536926,0.258851736783981,-0.787219166755676,0.559715807437897,0.385641604661942,-0.696257293224335,0.605397760868073,0.222745299339294,-0.764605283737183,0.604783833026886,0.196278348565102,-0.790391564369202,0.580306828022003,0.386865526437759,-0.869843363761902,0.306117236614227,0.54099577665329,-0.831333637237549,0.127311065793037,0.516836166381836,-0.852402567863464,-0.0793117433786392,0.481064021587372,-0.860768735408783,0.166297197341919,-0.245043694972992,-0.831336200237274,-0.498832494020462,-0.241546839475632,-0.776548087596893,-0.581917703151703,-0.379027634859085,-0.810822725296021,-0.44598725438118,-0.393546044826508,-0.824082255363464,-0.407443255186081,-0.477385759353638,-0.871928930282593,-0.108825102448463,-0.482567310333252,-0.871572315692902,-0.0865476727485657,-0.340591192245483,-0.93933367729187,0.0406186990439892,-0.39001128077507,-0.92026162147522,0.0317786671221256,-0.233701884746552,-0.950661361217499,0.20402555167675,-0.140292450785637,-0.987240195274353,0.0753314420580864,-0.0579306781291962,-0.993390262126923,0.0990948304533958,-0.193718880414963,-0.978938102722168,-0.064445823431015,-0.251622140407562,-0.918347775936127,0.305489182472229,-0.228057831525803,-0.9732546210289,0.0276629999279976,-0.140292450785637,-0.987240195274353,0.0753314420580864,-0.233701884746552,-0.950661361217499,0.20402555167675,0.912789463996887,-0.2220059633255,0.342824786901474,-0.179177269339561,-0.980668187141418,-0.0786471739411354,-0.0661806389689446,-0.977376580238342,0.200885757803917,
- -0.40964537858963,-0.909488618373871,0.0708605945110321,-0.409212410449982,-0.91243839263916,-0.00119574379641563,-0.263201057910919,-0.964722752571106,-0.00594060588628054,-0.269803553819656,-0.960680305957794,-0.0655699446797371,0.413359344005585,-0.762589752674103,0.497585296630859,0.345278084278107,-0.817096948623657,0.461666077375412,0.236823201179504,-0.790020763874054,0.565492630004883,0.231204748153687,-0.770977914333344,0.5934117436409,0.794119000434875,-0.607744812965393,-0.00461161136627197,0.686809003353119,-0.698886871337891,-0.199625939130783,0.762378573417664,-0.63453596830368,-0.127055287361145,0.901366114616394,-0.416726052761078,0.117807492613792,-0.145367980003357,-0.843272864818573,-0.517454504966736,-0.256743192672729,-0.775397121906281,-0.576924920082092,-0.0780865326523781,-0.769179403781891,-0.634244203567505,-0.0765483677387238,-0.853879511356354,-0.514810919761658,-0.498987972736359,-0.850169003009796,-0.167999267578125,-0.458768248558044,-0.873941659927368,-0.160491958260536,-0.356093376874924,-0.934304416179657,0.0165185946971178,-0.366186887025833,-0.930311977863312,0.0206623487174511,-0.228098422288895,-0.941752552986145,0.247130200266838,-0.233701884746552,-0.950661361217499,0.20402555167675,-0.193718880414963,-0.978938102722168,-0.064445823431015,-0.027061440050602,-0.988688945770264,0.147519290447235,-0.310262531042099,-0.933197855949402,0.181325882673264,-0.251622140407562,-0.918347775936127,0.305489182472229,-0.233701884746552,-0.950661361217499,0.20402555167675,-0.228098422288895,-0.941752552986145,0.247130200266838,0.912789463996887,-0.2220059633255,0.342824786901474,-0.0661806389689446,-0.977376580238342,0.200885757803917,-0.269891530275345,-0.940971314907074,0.204283490777016,-0.415752232074738,-0.905290842056274,-0.0871710851788521,-0.296647489070892,-0.935379505157471,-0.192524433135986,-0.330189347267151,-0.942593276500702,-0.0499297492206097,-0.319038391113281,-0.947696328163147,0.00928410887718201,0.322038680315018,-0.688526213169098,0.649786710739136,0.493025660514832,-0.582454204559326,0.6462761759758,
- 0.23223377764225,-0.694008111953735,0.681483864784241,0.16598579287529,-0.784787058830261,0.597124695777893,0.664143562316895,-0.616812586784363,0.422440052032471,0.441317915916443,-0.897069156169891,0.0224823504686356,0.580979466438293,-0.811107754707336,-0.0675804316997528,0.630167067050934,-0.763750910758972,0.139907717704773,-0.196883082389832,-0.883253931999207,-0.425557792186737,-0.269285708665848,-0.759272992610931,-0.592443883419037,-0.345745027065277,-0.807832837104797,-0.477353751659393,-0.232979357242584,-0.892595827579498,-0.385996460914612,-0.391531825065613,-0.913498759269714,-0.110557548701763,-0.506790339946747,-0.854805111885071,-0.11167810857296,-0.407962083816528,-0.91231644153595,0.0352954603731632,-0.353473305702209,-0.934345722198486,0.0453291572630405,-0.198639571666718,-0.924417614936829,0.325568050146103,-0.228098422288895,-0.941752552986145,0.247130200266838,-0.027061440050602,-0.988688945770264,0.147519290447235,-0.117493465542793,-0.99072527885437,0.0682560279965401,-0.273688673973084,-0.898802280426025,0.342416375875473,-0.310262531042099,-0.933197855949402,0.181325882673264,-0.228098422288895,-0.941752552986145,0.247130200266838,-0.198639571666718,-0.924417614936829,0.325568050146103,0.912789463996887,-0.2220059633255,0.342824786901474,-0.269891530275345,-0.940971314907074,0.204283490777016,-0.139429420232773,-0.966965436935425,0.213394612073898,-0.588112950325012,-0.777069509029388,0.224245920777321,-0.552445769309998,-0.786654889583588,0.2756407558918,-0.491107940673828,-0.774577915668488,0.398550271987915,-0.551408171653748,-0.765964329242706,0.330526649951935,-0.00389851629734039,-0.830605149269104,0.556848168373108,-0.354801744222641,-0.805742263793945,0.474231123924255,-0.578353583812714,-0.698445379734039,0.421522557735443,-0.226670920848846,-0.81035590171814,0.540318131446838,-0.160682663321495,-0.944009065628052,0.28814560174942,-0.164398193359375,-0.905214548110962,0.391867160797119,0.467237234115601,-0.300978720188141,-0.831324994564056,-0.552445769309998,-0.786654889583588,0.2756407558918,
- -0.560261607170105,-0.798877358436584,0.218865066766739,-0.50454306602478,-0.790815949440002,0.34647735953331,-0.491107940673828,-0.774577915668488,0.398550271987915,-0.275013387203217,-0.840166687965393,0.467426747083664,-0.00389851629734039,-0.830605149269104,0.556848168373108,-0.226670920848846,-0.81035590171814,0.540318131446838,-0.534060001373291,-0.777792155742645,0.331390023231506,-0.164398193359375,-0.905214548110962,0.391867160797119,-0.0419461689889431,-0.954105615615845,0.296518445014954,0.467237234115601,-0.300978720188141,-0.831324994564056,-0.560261607170105,-0.798877358436584,0.218865066766739,-0.252648204565048,-0.950282752513886,0.182020917534828,-0.327774435281754,-0.887819468975067,0.323018014431,-0.50454306602478,-0.790815949440002,0.34647735953331,0.114738687872887,-0.917469143867493,0.380900859832764,-0.275013387203217,-0.840166687965393,0.467426747083664,-0.534060001373291,-0.777792155742645,0.331390023231506,0.00583332730457187,-0.941152095794678,0.337932854890823,-0.0419461689889431,-0.954105615615845,0.296518445014954,-0.0120329856872559,-0.940630316734314,0.339219629764557,0.467237234115601,-0.300978720188141,-0.831324994564056,-0.596150517463684,-0.730271697044373,0.333628207445145,-0.588112950325012,-0.777069509029388,0.224245920777321,-0.551408171653748,-0.765964329242706,0.330526649951935,-0.531436562538147,-0.710428714752197,0.461374461650848,-0.578353583812714,-0.698445379734039,0.421522557735443,-0.354801744222641,-0.805742263793945,0.474231123924255,-0.312413811683655,-0.552205204963684,0.772960007190704,-0.534776389598846,-0.42673659324646,0.729321658611298,-0.26860898733139,-0.803448379039764,0.531338036060333,-0.160682663321495,-0.944009065628052,0.28814560174942,0.467237234115601,-0.300978720188141,-0.831324994564056,0.193908169865608,-0.966236472129822,0.169666334986687,0.196576237678528,-0.964108943939209,0.178470835089684,0.324244171380997,-0.927068591117859,0.188174560666084,0.348239839076996,-0.922123789787292,0.168572992086411,0.536024153232574,-0.813449621200562,0.225783109664917,
- 0.55545961856842,-0.821710705757141,0.127499923110008,0.534398555755615,-0.840017795562744,0.0937452390789986,0.522325992584229,-0.83530992269516,0.171560570597649,0.31534618139267,-0.923432230949402,-0.218700289726257,0.366598844528198,-0.927216827869415,-0.0766439586877823,0.415885210037231,-0.889683067798615,0.18842439353466,0.234671279788017,-0.878321528434753,-0.416510224342346,0.0389683097600937,-0.935517728328705,-0.351123988628387,0.0597062855958939,-0.826306521892548,-0.560047090053558,0.0389683097600937,-0.935517728328705,-0.351123988628387,0.127982616424561,-0.807035326957703,-0.576467335224152,0.0597062855958939,-0.826306521892548,-0.560047090053558,0.0597062855958939,-0.826306521892548,-0.560047090053558,0.127982616424561,-0.807035326957703,-0.576467335224152,0.0772412940859795,-0.698961198329926,-0.710976123809814,-0.000738397357054055,-0.813661456108093,-0.58133864402771,0.119881510734558,-0.965687215328217,-0.230383515357971,-0.186240583658218,-0.920966982841492,-0.342248886823654,-0.188668668270111,-0.913908779621124,-0.359409153461456,-0.0317720174789429,-0.929482460021973,-0.367495477199554,0.181103765964508,-0.857141196727753,-0.482193410396576,0.0610572770237923,-0.849051535129547,-0.524770081043243,0.854492962360382,0.334779620170593,-0.397195905447006,0.196576237678528,-0.964108943939209,0.178470835089684,0.250832229852676,-0.949181139469147,0.190101474523544,0.370196938514709,-0.909730195999146,0.188003674149513,0.324244171380997,-0.927068591117859,0.188174560666084,0.55545961856842,-0.821710705757141,0.127499923110008,0.587625801563263,-0.768103122711182,0.254388689994812,0.5483757853508,-0.81591260433197,0.183223411440849,0.534398555755615,-0.840017795562744,0.0937452390789986,0.537907302379608,-0.842627704143524,-0.0251833610236645,0.31534618139267,-0.923432230949402,-0.218700289726257,0.454178869724274,-0.888177990913391,-0.0697242021560669,0.432204991579056,-0.873942017555237,0.222315311431885,0.0389683097600937,-0.935517728328705,-0.351123988628387,0.221845060586929,-0.889403164386749,-0.399683475494385,
- 0.0687664523720741,-0.769393563270569,-0.635062873363495,0.127982616424561,-0.807035326957703,-0.576467335224152,0.127982616424561,-0.807035326957703,-0.576467335224152,0.0687664523720741,-0.769393563270569,-0.635062873363495,0.00411802483722568,-0.775641262531281,-0.631160616874695,0.0772412940859795,-0.698961198329926,-0.710976123809814,-0.106791362166405,-0.905412673950195,-0.410881370306015,0.119881510734558,-0.965687215328217,-0.230383515357971,-0.0317720174789429,-0.929482460021973,-0.367495477199554,-0.155522778630257,-0.900726616382599,-0.405591368675232,0.0610572770237923,-0.849051535129547,-0.524770081043243,0.269442707300186,-0.825389981269836,-0.496116995811462,0.854492962360382,0.334779620170593,-0.397195905447006,0.250832229852676,-0.949181139469147,0.190101474523544,0.335163801908493,-0.881200909614563,0.333392053842545,0.475686460733414,-0.80450302362442,0.355664759874344,0.370196938514709,-0.909730195999146,0.188003674149513,0.587625801563263,-0.768103122711182,0.254388689994812,0.596953332424164,-0.76463657617569,0.242853224277496,0.580012202262878,-0.802932500839233,0.137423545122147,0.5483757853508,-0.81591260433197,0.183223411440849,0.331437110900879,-0.941870629787445,-0.0550396554172039,0.537907302379608,-0.842627704143524,-0.0251833610236645,0.432204991579056,-0.873942017555237,0.222315311431885,0.25353080034256,-0.95866322517395,-0.129178076982498,0.221845060586929,-0.889403164386749,-0.399683475494385,0.268242001533508,-0.862295389175415,-0.429526388645172,0.0687664523720741,-0.769393563270569,-0.635062873363495,0.268242001533508,-0.862295389175415,-0.429526388645172,0.343612939119339,-0.784227192401886,-0.516641139984131,0.0687664523720741,-0.769393563270569,-0.635062873363495,0.0687664523720741,-0.769393563270569,-0.635062873363495,0.343612939119339,-0.784227192401886,-0.516641139984131,0.124134749174118,-0.735371708869934,-0.66619747877121,0.00411802483722568,-0.775641262531281,-0.631160616874695,0.31433629989624,-0.909081280231476,-0.273429840803146,-0.106791362166405,-0.905412673950195,-0.410881370306015,
- -0.155522778630257,-0.900726616382599,-0.405591368675232,0.220817536115646,-0.913136839866638,-0.342667281627655,0.269442707300186,-0.825389981269836,-0.496116995811462,0.234373018145561,-0.86848247051239,-0.43681526184082,0.854492962360382,0.334779620170593,-0.397195905447006,0.120404601097107,-0.968172669410706,0.219418555498123,0.193908169865608,-0.966236472129822,0.169666334986687,0.348239839076996,-0.922123789787292,0.168572992086411,0.218237400054932,-0.952632308006287,0.211811870336533,0.543167650699615,-0.81430047750473,0.204655006527901,0.536024153232574,-0.813449621200562,0.225783109664917,0.522325992584229,-0.83530992269516,0.171560570597649,0.621050715446472,-0.76564759016037,0.167570814490318,0.415885210037231,-0.889683067798615,0.18842439353466,0.366598844528198,-0.927216827869415,-0.0766439586877823,0.296382516622543,-0.953861892223358,-0.0480111837387085,0.576077878475189,-0.817212224006653,0.0172782093286514,0.237720340490341,-0.876270413398743,-0.41909322142601,0.234671279788017,-0.878321528434753,-0.416510224342346,0.0597062855958939,-0.826306521892548,-0.560047090053558,0.104555554687977,-0.840700149536133,-0.53131115436554,0.104555554687977,-0.840700149536133,-0.53131115436554,0.0597062855958939,-0.826306521892548,-0.560047090053558,-0.000738397357054055,-0.813661456108093,-0.58133864402771,0.13958378136158,-0.731310069561005,-0.66760915517807,-0.186240583658218,-0.920966982841492,-0.342248886823654,-0.205049723386765,-0.971998572349548,-0.114775314927101,-0.102973684668541,-0.948726952075958,-0.298854202032089,-0.188668668270111,-0.913908779621124,-0.359409153461456,0.0338211134076118,-0.918484687805176,-0.394007712602615,0.181103765964508,-0.857141196727753,-0.482193410396576,0.854492962360382,0.334779620170593,-0.397195905447006,0.742571651935577,-0.473292231559753,-0.473900705575943,0.733201444149017,-0.342404007911682,-0.587516188621521,0.68060028553009,-0.508278608322144,-0.527670383453369,0.688221275806427,-0.506358742713928,-0.519569456577301,-0.0937344059348106,-0.566123008728027,-0.818974196910858,
- -0.0270248502492905,-0.643515706062317,-0.764955759048462,0.448583453893662,-0.520330965518951,-0.726655721664429,0.436638861894608,-0.647905766963959,-0.624151229858398,0.129422530531883,-0.726452171802521,-0.674920082092285,0.00178845250047743,-0.655365347862244,-0.75531005859375,-0.103281132876873,-0.501045346260071,-0.859236121177673,-0.110061123967171,-0.457511067390442,-0.882366299629211,-0.00666651409119368,-0.972781896591187,-0.231626927852631,0.0415087975561619,-0.936849176883698,-0.347261726856232,-0.0104697635397315,-0.886644780635834,-0.462332606315613,0.00946125015616417,-0.929351687431335,-0.369074612855911,0.733201444149017,-0.342404007911682,-0.587516188621521,0.78787750005722,-0.381239771842957,-0.483637601137161,0.723689377307892,-0.471247971057892,-0.504181683063507,0.68060028553009,-0.508278608322144,-0.527670383453369,0.109455019235611,-0.468938946723938,-0.87642228603363,-0.0937344059348106,-0.566123008728027,-0.818974196910858,0.436638861894608,-0.647905766963959,-0.624151229858398,0.377353727817535,-0.661461770534515,-0.648129999637604,0.142789304256439,-0.560598790645599,-0.815683901309967,0.129422530531883,-0.726452171802521,-0.674920082092285,-0.110061123967171,-0.457511067390442,-0.882366299629211,-0.0415176153182983,-0.424376785755157,-0.904533445835114,0.126394107937813,-0.905362010002136,-0.405393958091736,-0.00666651409119368,-0.972781896591187,-0.231626927852631,0.00946125015616417,-0.929351687431335,-0.369074612855911,0.0896701738238335,-0.857454359531403,-0.506686747074127,0.589544653892517,-0.781824946403503,-0.202945962548256,0.607651174068451,-0.403733849525452,-0.683929085731506,0.532657980918884,-0.536657869815826,-0.654426395893097,0.514712512493134,-0.798559665679932,-0.31204742193222,-0.324990838766098,-0.341811567544937,-0.88178563117981,-0.238290026783943,-0.953450620174408,-0.184796705842018,0.191433101892471,-0.899609088897705,-0.392501026391983,0.281905174255371,-0.707208335399628,-0.648371756076813,-0.0955148786306381,-0.701237082481384,-0.706500947475433,-0.0408400744199753,-0.866760551929474,-0.497049510478973,
- -0.268184542655945,-0.837612569332123,-0.47590160369873,-0.310611754655838,-0.43539434671402,-0.844956874847412,-0.179672747850418,-0.979257702827454,-0.0936591103672981,0.101376637816429,-0.992611646652222,0.0666713193058968,-0.0313727259635925,-0.996224462985992,-0.0809489190578461,-0.133227854967117,-0.932439267635345,-0.335868030786514,0.607651174068451,-0.403733849525452,-0.683929085731506,0.742571651935577,-0.473292231559753,-0.473900705575943,0.688221275806427,-0.506358742713928,-0.519569456577301,0.532657980918884,-0.536657869815826,-0.654426395893097,0.448583453893662,-0.520330965518951,-0.726655721664429,-0.0270248502492905,-0.643515706062317,-0.764955759048462,-0.324990838766098,-0.341811567544937,-0.88178563117981,0.281905174255371,-0.707208335399628,-0.648371756076813,-0.103281132876873,-0.501045346260071,-0.859236121177673,0.00178845250047743,-0.655365347862244,-0.75531005859375,-0.0955148786306381,-0.701237082481384,-0.706500947475433,-0.310611754655838,-0.43539434671402,-0.844956874847412,0.0415087975561619,-0.936849176883698,-0.347261726856232,-0.179672747850418,-0.979257702827454,-0.0936591103672981,-0.133227854967117,-0.932439267635345,-0.335868030786514,-0.0104697635397315,-0.886644780635834,-0.462332606315613,-0.409212410449982,-0.91243839263916,-0.00119574379641563,-0.415752232074738,-0.905290842056274,-0.0871710851788521,-0.319038391113281,-0.947696328163147,0.00928410887718201,-0.263201057910919,-0.964722752571106,-0.00594060588628054,0.493025660514832,-0.582454204559326,0.6462761759758,0.413359344005585,-0.762589752674103,0.497585296630859,0.231204748153687,-0.770977914333344,0.5934117436409,0.23223377764225,-0.694008111953735,0.681483864784241,0.901366114616394,-0.416726052761078,0.117807492613792,0.664143562316895,-0.616812586784363,0.422440052032471,0.630167067050934,-0.763750910758972,0.139907717704773,0.794119000434875,-0.607744812965393,-0.00461161136627197,-0.0765483677387238,-0.853879511356354,-0.514810919761658,-0.196883082389832,-0.883253931999207,-0.425557792186737,-0.232979357242584,-0.892595827579498,-0.385996460914612,
- -0.145367980003357,-0.843272864818573,-0.517454504966736,-0.353473305702209,-0.934345722198486,0.0453291572630405,-0.356093376874924,-0.934304416179657,0.0165185946971178,-0.458768248558044,-0.873941659927368,-0.160491958260536,-0.391531825065613,-0.913498759269714,-0.110557548701763,-0.381368309259415,-0.905700623989105,0.185107260942459,-0.40964537858963,-0.909488618373871,0.0708605945110321,-0.269803553819656,-0.960680305957794,-0.0655699446797371,-0.339191317558289,-0.938176155090332,-0.0691005513072014,0.345278084278107,-0.817096948623657,0.461666077375412,0.258851736783981,-0.787219166755676,0.559715807437897,0.196278348565102,-0.790391564369202,0.580306828022003,0.236823201179504,-0.790020763874054,0.565492630004883,0.54099577665329,-0.831333637237549,0.127311065793037,0.762378573417664,-0.63453596830368,-0.127055287361145,0.686809003353119,-0.698886871337891,-0.199625939130783,0.516836166381836,-0.852402567863464,-0.0793117433786392,-0.241546839475632,-0.776548087596893,-0.581917703151703,-0.0780865326523781,-0.769179403781891,-0.634244203567505,-0.256743192672729,-0.775397121906281,-0.576924920082092,-0.379027634859085,-0.810822725296021,-0.44598725438118,-0.340591192245483,-0.93933367729187,0.0406186990439892,-0.482567310333252,-0.871572315692902,-0.0865476727485657,-0.498987972736359,-0.850169003009796,-0.167999267578125,-0.366186887025833,-0.930311977863312,0.0206623487174511,-0.031065559014678,-0.99529904127121,-0.0917326956987381,0.112212210893631,-0.993681192398071,-0.00245470530353487,-0.290359616279602,-0.955608785152435,-0.0500320345163345,-0.275227516889572,-0.961367130279541,0.00480601191520691,0.432414710521698,-0.615802764892578,0.65863835811615,0.542076408863068,-0.708780348300934,0.451423913240433,0.309998422861099,-0.772949635982513,0.553579270839691,0.229339048266411,-0.733781456947327,0.639506340026855,0.813872933387756,-0.564597249031067,0.137261748313904,0.766759157180786,-0.483147531747818,0.422668904066086,0.795868873596191,-0.574227571487427,0.191977918148041,0.812408864498138,-0.582659006118774,-0.0223691761493683,
- -0.0375843457877636,-0.846117734909058,-0.531669318675995,-0.163302138447762,-0.894896507263184,-0.415322244167328,-0.14735934138298,-0.953963994979858,-0.261224329471588,-0.133277997374535,-0.873151123523712,-0.468875288963318,-0.366334199905396,-0.930052399635315,0.0283160358667374,-0.440747171640396,-0.878884613513947,-0.182493269443512,-0.426199376583099,-0.898358821868896,-0.106327518820763,-0.371885120868683,-0.927809178829193,0.0295243598520756,-0.296647489070892,-0.935379505157471,-0.192524433135986,-0.130579814314842,-0.973419785499573,-0.188156738877296,-0.26793161034584,-0.962429285049438,-0.0440745055675507,-0.330189347267151,-0.942593276500702,-0.0499297492206097,0.381685853004456,-0.79020619392395,0.479468584060669,0.322038680315018,-0.688526213169098,0.649786710739136,0.16598579287529,-0.784787058830261,0.597124695777893,0.225127711892128,-0.816829442977905,0.531137645244598,0.441317915916443,-0.897069156169891,0.0224823504686356,0.672355592250824,-0.735460698604584,-0.0838783457875252,0.692198157310486,-0.698534071445465,-0.181416213512421,0.580979466438293,-0.811107754707336,-0.0675804316997528,-0.269285708665848,-0.759272992610931,-0.592443883419037,-0.107329428195953,-0.753534197807312,-0.648588120937347,-0.221764385700226,-0.79272735118866,-0.567806243896484,-0.345745027065277,-0.807832837104797,-0.477353751659393,-0.407962083816528,-0.91231644153595,0.0352954603731632,-0.506790339946747,-0.854805111885071,-0.11167810857296,-0.498221009969711,-0.859021306037903,-0.117721140384674,-0.374473333358765,-0.924555122852325,0.0704814195632935,0.137846812605858,-0.783319234848022,0.606143057346344,0.204687461256981,-0.719764173030853,0.663357079029083,0.231204748153687,-0.770977914333344,0.5934117436409,0.236823201179504,-0.790020763874054,0.565492630004883,0.196278348565102,-0.790391564369202,0.580306828022003,0.0626677274703979,-0.770910799503326,0.63385272026062,0.137846812605858,-0.783319234848022,0.606143057346344,0.236823201179504,-0.790020763874054,0.565492630004883,0.101724646985531,-0.769110918045044,0.630967974662781,
- 0.0626677274703979,-0.770910799503326,0.63385272026062,0.196278348565102,-0.790391564369202,0.580306828022003,0.222745299339294,-0.764605283737183,0.604783833026886,0.309998422861099,-0.772949635982513,0.553579270839691,0.191902965307236,-0.721832573413849,0.664929389953613,0.0612922310829163,-0.631746351718903,0.772748291492462,0.229339048266411,-0.733781456947327,0.639506340026855,0.113985456526279,-0.768733084201813,0.629330575466156,0.191902965307236,-0.721832573413849,0.664929389953613,0.309998422861099,-0.772949635982513,0.553579270839691,0.225127711892128,-0.816829442977905,0.531137645244598,0.16598579287529,-0.784787058830261,0.597124695777893,0.0585157871246338,-0.723889410495758,0.687430024147034,0.113985456526279,-0.768733084201813,0.629330575466156,0.225127711892128,-0.816829442977905,0.531137645244598,0.138002827763557,-0.673512637615204,0.726179003715515,0.0585157871246338,-0.723889410495758,0.687430024147034,0.16598579287529,-0.784787058830261,0.597124695777893,0.23223377764225,-0.694008111953735,0.681483864784241,0.231204748153687,-0.770977914333344,0.5934117436409,0.204687461256981,-0.719764173030853,0.663357079029083,0.138002827763557,-0.673512637615204,0.726179003715515,0.23223377764225,-0.694008111953735,0.681483864784241,-0.346261143684387,-0.730621814727783,0.588468313217163,-0.335364013910294,-0.758356094360352,0.558951735496521,-0.119176991283894,-0.758520126342773,0.640659213066101,-0.271139532327652,-0.66991263628006,0.691158831119537,-0.316113233566284,-0.726988613605499,0.609557211399078,-0.346261143684387,-0.730621814727783,0.588468313217163,-0.271139532327652,-0.66991263628006,0.691158831119537,-0.207280471920967,-0.529706656932831,0.822463274002075,-0.296640932559967,-0.758140325546265,0.580712914466858,-0.316113233566284,-0.726988613605499,0.609557211399078,-0.207280471920967,-0.529706656932831,0.822463274002075,-0.0801622569561005,-0.48210197687149,0.872440099716187,-0.326790630817413,-0.764066994190216,0.556245923042297,-0.258955746889114,-0.79790186882019,0.544329583644867,0.118062317371368,-0.713953495025635,0.690167903900146,
- -0.110688135027885,-0.760075747966766,0.640338122844696,-0.315968632698059,-0.746517837047577,0.5855553150177,-0.326790630817413,-0.764066994190216,0.556245923042297,-0.110688135027885,-0.760075747966766,0.640338122844696,-0.293450027704239,-0.647718548774719,0.703098773956299,-0.261572390794754,-0.760790884494781,0.59395045042038,-0.315968632698059,-0.746517837047577,0.5855553150177,-0.293450027704239,-0.647718548774719,0.703098773956299,-0.167404592037201,-0.530367791652679,0.831075072288513,-0.301019608974457,-0.753461599349976,0.584536552429199,-0.261572390794754,-0.760790884494781,0.59395045042038,-0.167404592037201,-0.530367791652679,0.831075072288513,0.0201793033629656,-0.66071343421936,0.750367045402527,-0.335364013910294,-0.758356094360352,0.558951735496521,-0.301019608974457,-0.753461599349976,0.584536552429199,0.0201793033629656,-0.66071343421936,0.750367045402527,-0.119176991283894,-0.758520126342773,0.640659213066101,0.762378573417664,-0.63453596830368,-0.127055287361145,0.54099577665329,-0.831333637237549,0.127311065793037,0.460697710514069,-0.734262645244598,0.49861404299736,0.562202453613281,-0.766522347927094,0.310438573360443,0.54099577665329,-0.831333637237549,0.127311065793037,0.386865526437759,-0.869843363761902,0.306117236614227,0.436246573925018,-0.756827592849731,0.48672491312027,0.460697710514069,-0.734262645244598,0.49861404299736,0.766759157180786,-0.483147531747818,0.422668904066086,0.813872933387756,-0.564597249031067,0.137261748313904,0.704500794410706,-0.581954121589661,0.406211942434311,0.651495218276978,-0.46234592795372,0.601489961147308,0.813872933387756,-0.564597249031067,0.137261748313904,0.672355592250824,-0.735460698604584,-0.0838783457875252,0.663922786712646,-0.670767664909363,0.330571085214615,0.704500794410706,-0.581954121589661,0.406211942434311,0.672355592250824,-0.735460698604584,-0.0838783457875252,0.441317915916443,-0.897069156169891,0.0224823504686356,0.606273829936981,-0.691040277481079,0.393567502498627,0.663922786712646,-0.670767664909363,0.330571085214615,0.441317915916443,-0.897069156169891,0.0224823504686356,
- 0.664143562316895,-0.616812586784363,0.422440052032471,0.717874765396118,-0.529969990253448,0.451428592205048,0.606273829936981,-0.691040277481079,0.393567502498627,0.664143562316895,-0.616812586784363,0.422440052032471,0.901366114616394,-0.416726052761078,0.117807492613792,0.679318964481354,-0.661992311477661,0.316689014434814,0.717874765396118,-0.529969990253448,0.451428592205048,0.901366114616394,-0.416726052761078,0.117807492613792,0.762378573417664,-0.63453596830368,-0.127055287361145,0.562202453613281,-0.766522347927094,0.310438573360443,0.679318964481354,-0.661992311477661,0.316689014434814,0.37598118185997,-0.549700617790222,-0.745967507362366,0.247735217213631,-0.623897016048431,-0.741201639175415,0.546689212322235,-0.610535979270935,-0.573041796684265,0.68195253610611,-0.521892726421356,-0.512414693832397,0.247735217213631,-0.623897016048431,-0.741201639175415,0.306192308664322,-0.662362158298492,-0.683756232261658,0.592887163162231,-0.624082684516907,-0.508926093578339,0.546689212322235,-0.610535979270935,-0.573041796684265,0.307139605283737,-0.655489504337311,-0.68992668390274,0.368304461240768,-0.581591129302979,-0.725329995155334,0.685978770256042,-0.571729362010956,-0.4500652551651,0.61942058801651,-0.564050495624542,-0.546045184135437,0.368304461240768,-0.581591129302979,-0.725329995155334,0.320542991161346,-0.551308631896973,-0.770266890525818,0.682603299617767,-0.514778316020966,-0.518706142902374,0.685978770256042,-0.571729362010956,-0.4500652551651,0.320542991161346,-0.551308631896973,-0.770266890525818,0.228175953030586,-0.629967451095581,-0.742345452308655,0.574414193630219,-0.584125936031342,-0.5734503865242,0.682603299617767,-0.514778316020966,-0.518706142902374,0.228175953030586,-0.629967451095581,-0.742345452308655,0.305294245481491,-0.635375320911407,-0.70929092168808,0.580245912075043,-0.662967145442963,-0.473063796758652,0.574414193630219,-0.584125936031342,-0.5734503865242,0.305294245481491,-0.635375320911407,-0.70929092168808,0.324560642242432,-0.57294499874115,-0.752591848373413,0.637724757194519,-0.551047682762146,-0.53819477558136,
- 0.580245912075043,-0.662967145442963,-0.473063796758652,0.324560642242432,-0.57294499874115,-0.752591848373413,0.37598118185997,-0.549700617790222,-0.745967507362366,0.68195253610611,-0.521892726421356,-0.512414693832397,0.637724757194519,-0.551047682762146,-0.53819477558136,-0.3912113904953,-0.766522943973541,-0.509309709072113,-0.262260854244232,-0.856186389923096,-0.445156246423721,-0.379103362560272,-0.863372385501862,-0.332969814538956,-0.481771349906921,-0.793735563755035,-0.371322423219681,-0.520500659942627,-0.815346956253052,-0.25355190038681,-0.470887422561646,-0.813131213188171,-0.34217369556427,-0.3912113904953,-0.766522943973541,-0.509309709072113,-0.481771349906921,-0.793735563755035,-0.371322423219681,-0.412318289279938,-0.850804626941681,-0.325768768787384,-0.470887422561646,-0.813131213188171,-0.34217369556427,-0.520500659942627,-0.815346956253052,-0.25355190038681,-0.437610685825348,-0.856828093528748,-0.272658675909042,-0.439530789852142,-0.797878503799438,-0.412556439638138,-0.321201056241989,-0.825871407985687,-0.463428854942322,-0.285467773675919,-0.914219260215759,-0.287595897912979,-0.415984839200974,-0.86883819103241,-0.268471360206604,-0.444622337818146,-0.741617321968079,-0.502309381961823,-0.321201056241989,-0.825871407985687,-0.463428854942322,-0.439530789852142,-0.797878503799438,-0.412556439638138,-0.568511366844177,-0.71736878156662,-0.402711868286133,-0.639867424964905,-0.731261432170868,-0.23627607524395,-0.526595413684845,-0.776113510131836,-0.346908181905746,-0.444622337818146,-0.741617321968079,-0.502309381961823,-0.568511366844177,-0.71736878156662,-0.402711868286133,-0.403144329786301,-0.877716243267059,-0.259015291929245,-0.526595413684845,-0.776113510131836,-0.346908181905746,-0.639867424964905,-0.731261432170868,-0.23627607524395,-0.414111435413361,-0.897735118865967,-0.150278076529503,-0.379103362560272,-0.863372385501862,-0.332969814538956,-0.262260854244232,-0.856186389923096,-0.445156246423721,-0.403144329786301,-0.877716243267059,-0.259015291929245,-0.414111435413361,-0.897735118865967,-0.150278076529503,
- -0.0780865326523781,-0.769179403781891,-0.634244203567505,-0.241546839475632,-0.776548087596893,-0.581917703151703,-0.0536797121167183,-0.673973023891449,-0.736803114414215,0.0290051251649857,-0.678939282894135,-0.73362123966217,-0.241546839475632,-0.776548087596893,-0.581917703151703,-0.245043694972992,-0.831336200237274,-0.498832494020462,-0.07225751131773,-0.73092246055603,-0.678624629974365,-0.0536797121167183,-0.673973023891449,-0.736803114414215,-0.163302138447762,-0.894896507263184,-0.415322244167328,-0.0375843457877636,-0.846117734909058,-0.531669318675995,-0.00542357610538602,-0.723933100700378,-0.689848780632019,-0.082731582224369,-0.705382406711578,-0.703982412815094,-0.0375843457877636,-0.846117734909058,-0.531669318675995,-0.107329428195953,-0.753534197807312,-0.648588120937347,0.00100359320640564,-0.665959119796753,-0.74598753452301,-0.00542357610538602,-0.723933100700378,-0.689848780632019,-0.107329428195953,-0.753534197807312,-0.648588120937347,-0.269285708665848,-0.759272992610931,-0.592443883419037,-0.0875595659017563,-0.656183242797852,-0.749504387378693,0.00100359320640564,-0.665959119796753,-0.74598753452301,-0.269285708665848,-0.759272992610931,-0.592443883419037,-0.196883082389832,-0.883253931999207,-0.425557792186737,-0.0838032141327858,-0.745572149753571,-0.661134779453278,-0.0875595659017563,-0.656183242797852,-0.749504387378693,-0.196883082389832,-0.883253931999207,-0.425557792186737,-0.0765483677387238,-0.853879511356354,-0.514810919761658,-0.0172060411423445,-0.729753434658051,-0.683493912220001,-0.0838032141327858,-0.745572149753571,-0.661134779453278,-0.0765483677387238,-0.853879511356354,-0.514810919761658,-0.0780865326523781,-0.769179403781891,-0.634244203567505,0.0290051251649857,-0.678939282894135,-0.73362123966217,-0.0172060411423445,-0.729753434658051,-0.683493912220001,-0.366186887025833,-0.930311977863312,0.0206623487174511,-0.356093376874924,-0.934304416179657,0.0165185946971178,-0.25551563501358,-0.966573715209961,0.0211473368108273,-0.301677376031876,-0.95320600271225,0.0197295639663935,
- -0.299220114946365,-0.950632810592651,0.0822474509477615,-0.340591192245483,-0.93933367729187,0.0406186990439892,-0.366186887025833,-0.930311977863312,0.0206623487174511,-0.301677376031876,-0.95320600271225,0.0197295639663935,-0.39001128077507,-0.92026162147522,0.0317786671221256,-0.340591192245483,-0.93933367729187,0.0406186990439892,-0.299220114946365,-0.950632810592651,0.0822474509477615,-0.330174475908279,-0.935139179229736,0.128450408577919,-0.248285800218582,-0.967839896678925,0.040500570088625,-0.366334199905396,-0.930052399635315,0.0283160358667374,-0.371885120868683,-0.927809178829193,0.0295243598520756,-0.273938775062561,-0.956053972244263,0.104491360485554,-0.374473333358765,-0.924555122852325,0.0704814195632935,-0.366334199905396,-0.930052399635315,0.0283160358667374,-0.248285800218582,-0.967839896678925,0.040500570088625,-0.301527619361877,-0.953303098678589,0.0171600207686424,-0.342108815908432,-0.9375159740448,0.0634466037154198,-0.407962083816528,-0.91231644153595,0.0352954603731632,-0.374473333358765,-0.924555122852325,0.0704814195632935,-0.301527619361877,-0.953303098678589,0.0171600207686424,-0.353473305702209,-0.934345722198486,0.0453291572630405,-0.407962083816528,-0.91231644153595,0.0352954603731632,-0.342108815908432,-0.9375159740448,0.0634466037154198,-0.25557342171669,-0.963308930397034,0.0819656029343605,-0.25551563501358,-0.966573715209961,0.0211473368108273,-0.356093376874924,-0.934304416179657,0.0165185946971178,-0.353473305702209,-0.934345722198486,0.0453291572630405,-0.25557342171669,-0.963308930397034,0.0819656029343605,0.146310389041901,-0.970890879631042,-0.189642682671547,-0.117493465542793,-0.99072527885437,0.0682560279965401,-0.297386527061462,-0.932574152946472,-0.204613670706749,0.0533546358346939,-0.957425355911255,-0.283707469701767,-0.193718880414963,-0.978938102722168,-0.064445823431015,-0.0579306781291962,-0.993390262126923,0.0990948304533958,-0.145892575383186,-0.984147191047668,-0.100845396518707,-0.21353617310524,-0.908473014831543,-0.35927602648735,-0.027061440050602,-0.988688945770264,0.147519290447235,
- -0.193718880414963,-0.978938102722168,-0.064445823431015,-0.21353617310524,-0.908473014831543,-0.35927602648735,0.0819242000579834,-0.995047211647034,-0.0562974736094475,-0.117493465542793,-0.99072527885437,0.0682560279965401,-0.027061440050602,-0.988688945770264,0.147519290447235,0.0819242000579834,-0.995047211647034,-0.0562974736094475,-0.297386527061462,-0.932574152946472,-0.204613670706749,-0.0661806389689446,-0.977376580238342,0.200885757803917,-0.179177269339561,-0.980668187141418,-0.0786471739411354,-0.228057831525803,-0.9732546210289,0.0276629999279976,-0.251622140407562,-0.918347775936127,0.305489182472229,-0.548883438110352,-0.76568341255188,0.33534449338913,-0.139429420232773,-0.966965436935425,0.213394612073898,-0.273688673973084,-0.898802280426025,0.342416375875473,-0.464496076107025,-0.838663101196289,0.284407556056976,-0.139429420232773,-0.966965436935425,0.213394612073898,-0.269891530275345,-0.940971314907074,0.204283490777016,-0.310262531042099,-0.933197855949402,0.181325882673264,-0.273688673973084,-0.898802280426025,0.342416375875473,-0.269891530275345,-0.940971314907074,0.204283490777016,-0.0661806389689446,-0.977376580238342,0.200885757803917,-0.251622140407562,-0.918347775936127,0.305489182472229,-0.310262531042099,-0.933197855949402,0.181325882673264,-0.491107940673828,-0.774577915668488,0.398550271987915,-0.50454306602478,-0.790815949440002,0.34647735953331,-0.534060001373291,-0.777792155742645,0.331390023231506,-0.226670920848846,-0.81035590171814,0.540318131446838,-0.551408171653748,-0.765964329242706,0.330526649951935,-0.491107940673828,-0.774577915668488,0.398550271987915,-0.226670920848846,-0.81035590171814,0.540318131446838,-0.578353583812714,-0.698445379734039,0.421522557735443,-0.531436562538147,-0.710428714752197,0.461374461650848,-0.551408171653748,-0.765964329242706,0.330526649951935,-0.578353583812714,-0.698445379734039,0.421522557735443,-0.534776389598846,-0.42673659324646,0.729321658611298,-0.50454306602478,-0.790815949440002,0.34647735953331,-0.327774435281754,-0.887819468975067,0.323018014431,
- 0.00583332730457187,-0.941152095794678,0.337932854890823,-0.534060001373291,-0.777792155742645,0.331390023231506,-0.0419461689889431,-0.954105615615845,0.296518445014954,-0.164398193359375,-0.905214548110962,0.391867160797119,-0.00389851629734039,-0.830605149269104,0.556848168373108,-0.275013387203217,-0.840166687965393,0.467426747083664,-0.164398193359375,-0.905214548110962,0.391867160797119,-0.160682663321495,-0.944009065628052,0.28814560174942,-0.354801744222641,-0.805742263793945,0.474231123924255,-0.00389851629734039,-0.830605149269104,0.556848168373108,-0.312413811683655,-0.552205204963684,0.772960007190704,-0.354801744222641,-0.805742263793945,0.474231123924255,-0.160682663321495,-0.944009065628052,0.28814560174942,-0.26860898733139,-0.803448379039764,0.531338036060333,-0.0120329856872559,-0.940630316734314,0.339219629764557,-0.0419461689889431,-0.954105615615845,0.296518445014954,-0.275013387203217,-0.840166687965393,0.467426747083664,0.114738687872887,-0.917469143867493,0.380900859832764,0.370196938514709,-0.909730195999146,0.188003674149513,0.475686460733414,-0.80450302362442,0.355664759874344,0.596953332424164,-0.76463657617569,0.242853224277496,0.587625801563263,-0.768103122711182,0.254388689994812,0.324244171380997,-0.927068591117859,0.188174560666084,0.370196938514709,-0.909730195999146,0.188003674149513,0.587625801563263,-0.768103122711182,0.254388689994812,0.55545961856842,-0.821710705757141,0.127499923110008,0.348239839076996,-0.922123789787292,0.168572992086411,0.324244171380997,-0.927068591117859,0.188174560666084,0.55545961856842,-0.821710705757141,0.127499923110008,0.536024153232574,-0.813449621200562,0.225783109664917,0.218237400054932,-0.952632308006287,0.211811870336533,0.348239839076996,-0.922123789787292,0.168572992086411,0.536024153232574,-0.813449621200562,0.225783109664917,0.543167650699615,-0.81430047750473,0.204655006527901,0.5483757853508,-0.81591260433197,0.183223411440849,0.580012202262878,-0.802932500839233,0.137423545122147,0.403640121221542,-0.914000868797302,-0.0409527905285358,
- 0.323723196983337,-0.929239273071289,0.178094461560249,0.534398555755615,-0.840017795562744,0.0937452390789986,0.5483757853508,-0.81591260433197,0.183223411440849,0.323723196983337,-0.929239273071289,0.178094461560249,0.418712377548218,-0.891436159610748,0.173267796635628,0.522325992584229,-0.83530992269516,0.171560570597649,0.534398555755615,-0.840017795562744,0.0937452390789986,0.418712377548218,-0.891436159610748,0.173267796635628,0.521637380123138,-0.829054057598114,0.201404735445976,0.621050715446472,-0.76564759016037,0.167570814490318,0.522325992584229,-0.83530992269516,0.171560570597649,0.521637380123138,-0.829054057598114,0.201404735445976,0.658353209495544,-0.747280538082123,0.0902388468384743,0.231577217578888,-0.951294660568237,-0.203496187925339,0.257477074861526,-0.960813403129578,-0.102680332958698,0.274043709039688,-0.956059575080872,-0.1041639149189,0.354366064071655,-0.918236553668976,-0.176823198795319,0.257477074861526,-0.960813403129578,-0.102680332958698,0.27902740240097,-0.929657220840454,-0.240585297346115,0.367555379867554,-0.919960141181946,-0.136295631527901,0.274043709039688,-0.956059575080872,-0.1041639149189,0.329103022813797,-0.937059760093689,-0.116663202643394,0.367555379867554,-0.919960141181946,-0.136295631527901,0.27902740240097,-0.929657220840454,-0.240585297346115,0.29668390750885,-0.929999828338623,-0.216977328062058,0.367549061775208,-0.891656756401062,-0.264302670955658,0.231577217578888,-0.951294660568237,-0.203496187925339,0.354366064071655,-0.918236553668976,-0.176823198795319,0.392954885959625,-0.907167434692383,-0.150445431470871,0.13958378136158,-0.731310069561005,-0.66760915517807,-0.000738397357054055,-0.813661456108093,-0.58133864402771,-0.0684228092432022,-0.878169536590576,-0.473430603742599,0.11996915191412,-0.789989411830902,-0.601268768310547,0.00411802483722568,-0.775641262531281,-0.631160616874695,0.124134749174118,-0.735371708869934,-0.66619747877121,0.0590426400303841,-0.803119719028473,-0.59288501739502,-0.0740300863981247,-0.875156760215759,-0.478142410516739,
- 0.0772412940859795,-0.698961198329926,-0.710976123809814,0.00411802483722568,-0.775641262531281,-0.631160616874695,-0.0740300863981247,-0.875156760215759,-0.478142410516739,-0.0191105380654335,-0.798515558242798,-0.601670742034912,-0.000738397357054055,-0.813661456108093,-0.58133864402771,0.0772412940859795,-0.698961198329926,-0.710976123809814,-0.0191105380654335,-0.798515558242798,-0.601670742034912,-0.0684228092432022,-0.878169536590576,-0.473430603742599,-0.0415176153182983,-0.424376785755157,-0.904533445835114,-0.110061123967171,-0.457511067390442,-0.882366299629211,-0.0937344059348106,-0.566123008728027,-0.818974196910858,0.109455019235611,-0.468938946723938,-0.87642228603363,-0.110061123967171,-0.457511067390442,-0.882366299629211,-0.103281132876873,-0.501045346260071,-0.859236121177673,-0.0270248502492905,-0.643515706062317,-0.764955759048462,-0.0937344059348106,-0.566123008728027,-0.818974196910858,-0.324990838766098,-0.341811567544937,-0.88178563117981,-0.0270248502492905,-0.643515706062317,-0.764955759048462,-0.103281132876873,-0.501045346260071,-0.859236121177673,-0.310611754655838,-0.43539434671402,-0.844956874847412,-0.310611754655838,-0.43539434671402,-0.844956874847412,-0.268184542655945,-0.837612569332123,-0.47590160369873,-0.238290026783943,-0.953450620174408,-0.184796705842018,-0.324990838766098,-0.341811567544937,-0.88178563117981,0.0896701738238335,-0.857454359531403,-0.506686747074127,0.00946125015616417,-0.929351687431335,-0.369074612855911,0.129422530531883,-0.726452171802521,-0.674920082092285,0.142789304256439,-0.560598790645599,-0.815683901309967,0.00946125015616417,-0.929351687431335,-0.369074612855911,-0.0104697635397315,-0.886644780635834,-0.462332606315613,0.00178845250047743,-0.655365347862244,-0.75531005859375,0.129422530531883,-0.726452171802521,-0.674920082092285,-0.0955148786306381,-0.701237082481384,-0.706500947475433,0.00178845250047743,-0.655365347862244,-0.75531005859375,-0.0104697635397315,-0.886644780635834,-0.462332606315613,-0.133227854967117,-0.932439267635345,-0.335868030786514,
- -0.133227854967117,-0.932439267635345,-0.335868030786514,-0.0313727259635925,-0.996224462985992,-0.0809489190578461,-0.0408400744199753,-0.866760551929474,-0.497049510478973,-0.0955148786306381,-0.701237082481384,-0.706500947475433,0.68060028553009,-0.508278608322144,-0.527670383453369,0.723689377307892,-0.471247971057892,-0.504181683063507,0.377353727817535,-0.661461770534515,-0.648129999637604,0.436638861894608,-0.647905766963959,-0.624151229858398,0.688221275806427,-0.506358742713928,-0.519569456577301,0.68060028553009,-0.508278608322144,-0.527670383453369,0.436638861894608,-0.647905766963959,-0.624151229858398,0.448583453893662,-0.520330965518951,-0.726655721664429,0.532657980918884,-0.536657869815826,-0.654426395893097,0.688221275806427,-0.506358742713928,-0.519569456577301,0.448583453893662,-0.520330965518951,-0.726655721664429,0.281905174255371,-0.707208335399628,-0.648371756076813,0.514712512493134,-0.798559665679932,-0.31204742193222,0.532657980918884,-0.536657869815826,-0.654426395893097,0.281905174255371,-0.707208335399628,-0.648371756076813,0.191433101892471,-0.899609088897705,-0.392501026391983,-0.529085040092468,-0.793301343917847,0.301234245300293,-0.416414082050323,-0.909175157546997,0.000157788395881653,-0.501188516616821,-0.862557411193848,0.0693180114030838,-0.533457934856415,-0.768802404403687,0.352655202150345,-0.283554434776306,-0.958898782730103,-0.010493166744709,-0.472092926502228,-0.863536775112152,0.177292391657829,-0.589227855205536,-0.793815612792969,0.150556474924088,-0.350821405649185,-0.930476784706116,0.105533972382545,-0.371889591217041,-0.9133460521698,0.165822893381119,-0.31081622838974,-0.94978541135788,0.0360708720982075,0.166312664747238,-0.311461567878723,-0.935591697692871,-0.416414082050323,-0.909175157546997,0.000157788395881653,-0.243554547429085,-0.954405307769775,0.172602832317352,-0.299093246459961,-0.930559277534485,0.211193799972534,-0.501188516616821,-0.862557411193848,0.0693180114030838,-0.188049852848053,-0.981836199760437,0.0251984223723412,-0.283554434776306,-0.958898782730103,-0.010493166744709,
- -0.350821405649185,-0.930476784706116,0.105533972382545,-0.349942922592163,-0.930217385292053,0.110615074634552,-0.31081622838974,-0.94978541135788,0.0360708720982075,-0.053793590515852,-0.997682571411133,0.0416638813912869,0.166312664747238,-0.311461567878723,-0.935591697692871,-0.575080275535584,-0.671894550323486,0.46673384308815,-0.361670434474945,-0.922009527683258,0.138177111744881,-0.459534347057343,-0.860011994838715,0.221827983856201,-0.600144624710083,-0.701061367988586,0.385148644447327,-0.238428026437759,-0.950997471809387,0.196865558624268,-0.393379867076874,-0.907353281974792,0.148197680711746,-0.539195895195007,-0.798194050788879,0.268615335226059,-0.337711781263351,-0.931744337081909,0.133429229259491,-0.265107661485672,-0.944691061973572,0.193072110414505,-0.280211865901947,-0.932946920394897,0.226034313440323,0.166312664747238,-0.311461567878723,-0.935591697692871,-0.361670434474945,-0.922009527683258,0.138177111744881,-0.529085040092468,-0.793301343917847,0.301234245300293,-0.533457934856415,-0.768802404403687,0.352655202150345,-0.459534347057343,-0.860011994838715,0.221827983856201,-0.589227855205536,-0.793815612792969,0.150556474924088,-0.472092926502228,-0.863536775112152,0.177292391657829,-0.238428026437759,-0.950997471809387,0.196865558624268,-0.337711781263351,-0.931744337081909,0.133429229259491,-0.280211865901947,-0.932946920394897,0.226034313440323,-0.371889591217041,-0.9133460521698,0.165822893381119,0.166312664747238,-0.311461567878723,-0.935591697692871,-0.647515535354614,-0.735527038574219,0.199307858943939,-0.478139668703079,-0.861317276954651,0.171799719333649,-0.567523658275604,-0.814905822277069,0.117666751146317,-0.596415460109711,-0.774022817611694,0.212549611926079,-0.625120460987091,-0.741768598556519,0.242906868457794,-0.647515535354614,-0.735527038574219,0.199307858943939,-0.596415460109711,-0.774022817611694,0.212549611926079,-0.677688717842102,-0.714537978172302,0.17370542883873,-0.605946838855743,-0.718609392642975,0.341216892004013,-0.625120460987091,-0.741768598556519,0.242906868457794,
- -0.677688717842102,-0.714537978172302,0.17370542883873,-0.57383930683136,-0.75904780626297,0.307497978210449,-0.621907889842987,-0.73730593919754,0.263838171958923,-0.605946838855743,-0.718609392642975,0.341216892004013,-0.57383930683136,-0.75904780626297,0.307497978210449,-0.566325306892395,-0.81587016582489,0.116754755377769,-0.053793590515852,-0.997682571411133,0.0416638813912869,-0.31081622838974,-0.94978541135788,0.0360708720982075,-0.283554434776306,-0.958898782730103,-0.010493166744709,-0.188049852848053,-0.981836199760437,0.0251984223723412,-0.31081622838974,-0.94978541135788,0.0360708720982075,-0.371889591217041,-0.9133460521698,0.165822893381119,-0.472092926502228,-0.863536775112152,0.177292391657829,-0.283554434776306,-0.958898782730103,-0.010493166744709,-0.238428026437759,-0.950997471809387,0.196865558624268,-0.472092926502228,-0.863536775112152,0.177292391657829,-0.371889591217041,-0.9133460521698,0.165822893381119,-0.280211865901947,-0.932946920394897,0.226034313440323,-0.280211865901947,-0.932946920394897,0.226034313440323,-0.265107661485672,-0.944691061973572,0.193072110414505,-0.393379867076874,-0.907353281974792,0.148197680711746,-0.238428026437759,-0.950997471809387,0.196865558624268,0.460697710514069,-0.734262645244598,0.49861404299736,0.436246573925018,-0.756827592849731,0.48672491312027,0.385641604661942,-0.696257293224335,0.605397760868073,0.258851736783981,-0.787219166755676,0.559715807437897,0.651495218276978,-0.46234592795372,0.601489961147308,0.704500794410706,-0.581954121589661,0.406211942434311,0.542076408863068,-0.708780348300934,0.451423913240433,0.432414710521698,-0.615802764892578,0.65863835811615,0.704500794410706,-0.581954121589661,0.406211942434311,0.663922786712646,-0.670767664909363,0.330571085214615,0.381685853004456,-0.79020619392395,0.479468584060669,0.542076408863068,-0.708780348300934,0.451423913240433,0.663922786712646,-0.670767664909363,0.330571085214615,0.606273829936981,-0.691040277481079,0.393567502498627,0.322038680315018,-0.688526213169098,0.649786710739136,0.381685853004456,-0.79020619392395,0.479468584060669,
- 0.606273829936981,-0.691040277481079,0.393567502498627,0.717874765396118,-0.529969990253448,0.451428592205048,0.493025660514832,-0.582454204559326,0.6462761759758,0.322038680315018,-0.688526213169098,0.649786710739136,0.717874765396118,-0.529969990253448,0.451428592205048,0.679318964481354,-0.661992311477661,0.316689014434814,0.413359344005585,-0.762589752674103,0.497585296630859,0.493025660514832,-0.582454204559326,0.6462761759758,0.679318964481354,-0.661992311477661,0.316689014434814,0.562202453613281,-0.766522347927094,0.310438573360443,0.345278084278107,-0.817096948623657,0.461666077375412,0.413359344005585,-0.762589752674103,0.497585296630859,0.562202453613281,-0.766522347927094,0.310438573360443,0.460697710514069,-0.734262645244598,0.49861404299736,0.258851736783981,-0.787219166755676,0.559715807437897,0.345278084278107,-0.817096948623657,0.461666077375412,-0.482567310333252,-0.871572315692902,-0.0865476727485657,-0.520500659942627,-0.815346956253052,-0.25355190038681,-0.481771349906921,-0.793735563755035,-0.371322423219681,-0.498987972736359,-0.850169003009796,-0.167999267578125,-0.437610685825348,-0.856828093528748,-0.272658675909042,-0.520500659942627,-0.815346956253052,-0.25355190038681,-0.482567310333252,-0.871572315692902,-0.0865476727485657,-0.477385759353638,-0.871928930282593,-0.108825102448463,-0.440747171640396,-0.878884613513947,-0.182493269443512,-0.439530789852142,-0.797878503799438,-0.412556439638138,-0.415984839200974,-0.86883819103241,-0.268471360206604,-0.426199376583099,-0.898358821868896,-0.106327518820763,-0.568511366844177,-0.71736878156662,-0.402711868286133,-0.439530789852142,-0.797878503799438,-0.412556439638138,-0.440747171640396,-0.878884613513947,-0.182493269443512,-0.498221009969711,-0.859021306037903,-0.117721140384674,-0.506790339946747,-0.854805111885071,-0.11167810857296,-0.639867424964905,-0.731261432170868,-0.23627607524395,-0.568511366844177,-0.71736878156662,-0.402711868286133,-0.498221009969711,-0.859021306037903,-0.117721140384674,-0.414111435413361,-0.897735118865967,-0.150278076529503,
- -0.639867424964905,-0.731261432170868,-0.23627607524395,-0.506790339946747,-0.854805111885071,-0.11167810857296,-0.391531825065613,-0.913498759269714,-0.110557548701763,-0.458768248558044,-0.873941659927368,-0.160491958260536,-0.379103362560272,-0.863372385501862,-0.332969814538956,-0.414111435413361,-0.897735118865967,-0.150278076529503,-0.391531825065613,-0.913498759269714,-0.110557548701763,-0.481771349906921,-0.793735563755035,-0.371322423219681,-0.379103362560272,-0.863372385501862,-0.332969814538956,-0.458768248558044,-0.873941659927368,-0.160491958260536,-0.498987972736359,-0.850169003009796,-0.167999267578125,-0.237571597099304,-0.965057075023651,-0.110565580427647,-0.299220114946365,-0.950632810592651,0.0822474509477615,-0.301677376031876,-0.95320600271225,0.0197295639663935,-0.232237115502357,-0.948129594326019,-0.217062637209892,-0.330174475908279,-0.935139179229736,0.128450408577919,-0.299220114946365,-0.950632810592651,0.0822474509477615,-0.237571597099304,-0.965057075023651,-0.110565580427647,-0.22264102101326,-0.968869209289551,-0.108275443315506,-0.226334258913994,-0.951628744602203,-0.207787707448006,-0.248285800218582,-0.967839896678925,0.040500570088625,-0.273938775062561,-0.956053972244263,0.104491360485554,-0.254032552242279,-0.962853610515594,-0.0915448591113091,-0.301527619361877,-0.953303098678589,0.0171600207686424,-0.248285800218582,-0.967839896678925,0.040500570088625,-0.226334258913994,-0.951628744602203,-0.207787707448006,-0.35295107960701,-0.922431945800781,-0.156668469309807,-0.326696217060089,-0.945061147212982,-0.0113649368286133,-0.342108815908432,-0.9375159740448,0.0634466037154198,-0.301527619361877,-0.953303098678589,0.0171600207686424,-0.35295107960701,-0.922431945800781,-0.156668469309807,-0.25557342171669,-0.963308930397034,0.0819656029343605,-0.342108815908432,-0.9375159740448,0.0634466037154198,-0.326696217060089,-0.945061147212982,-0.0113649368286133,-0.0797440111637115,-0.996301889419556,-0.0319924429059029,-0.125522568821907,-0.959654450416565,-0.251609712839127,-0.25551563501358,-0.966573715209961,0.0211473368108273,
- -0.25557342171669,-0.963308930397034,0.0819656029343605,-0.0797440111637115,-0.996301889419556,-0.0319924429059029,-0.301677376031876,-0.95320600271225,0.0197295639663935,-0.25551563501358,-0.966573715209961,0.0211473368108273,-0.125522568821907,-0.959654450416565,-0.251609712839127,-0.232237115502357,-0.948129594326019,-0.217062637209892,0.0533546358346939,-0.957425355911255,-0.283707469701767,-0.297386527061462,-0.932574152946472,-0.204613670706749,-0.35295107960701,-0.922431945800781,-0.156668469309807,-0.226334258913994,-0.951628744602203,-0.207787707448006,-0.254032552242279,-0.962853610515594,-0.0915448591113091,-0.21353617310524,-0.908473014831543,-0.35927602648735,-0.145892575383186,-0.984147191047668,-0.100845396518707,-0.22264102101326,-0.968869209289551,-0.108275443315506,-0.237571597099304,-0.965057075023651,-0.110565580427647,-0.232237115502357,-0.948129594326019,-0.217062637209892,0.0819242000579834,-0.995047211647034,-0.0562974736094475,-0.21353617310524,-0.908473014831543,-0.35927602648735,-0.232237115502357,-0.948129594326019,-0.217062637209892,-0.125522568821907,-0.959654450416565,-0.251609712839127,-0.0797440111637115,-0.996301889419556,-0.0319924429059029,-0.297386527061462,-0.932574152946472,-0.204613670706749,0.0819242000579834,-0.995047211647034,-0.0562974736094475,-0.0797440111637115,-0.996301889419556,-0.0319924429059029,-0.326696217060089,-0.945061147212982,-0.0113649368286133,-0.35295107960701,-0.922431945800781,-0.156668469309807,-0.379027634859085,-0.810822725296021,-0.44598725438118,-0.256743192672729,-0.775397121906281,-0.576924920082092,-0.3912113904953,-0.766522943973541,-0.509309709072113,-0.470887422561646,-0.813131213188171,-0.34217369556427,-0.393546044826508,-0.824082255363464,-0.407443255186081,-0.379027634859085,-0.810822725296021,-0.44598725438118,-0.470887422561646,-0.813131213188171,-0.34217369556427,-0.412318289279938,-0.850804626941681,-0.325768768787384,-0.133277997374535,-0.873151123523712,-0.468875288963318,-0.14735934138298,-0.953963994979858,-0.261224329471588,-0.285467773675919,-0.914219260215759,-0.287595897912979,
- -0.321201056241989,-0.825871407985687,-0.463428854942322,-0.221764385700226,-0.79272735118866,-0.567806243896484,-0.133277997374535,-0.873151123523712,-0.468875288963318,-0.321201056241989,-0.825871407985687,-0.463428854942322,-0.444622337818146,-0.741617321968079,-0.502309381961823,-0.345745027065277,-0.807832837104797,-0.477353751659393,-0.221764385700226,-0.79272735118866,-0.567806243896484,-0.444622337818146,-0.741617321968079,-0.502309381961823,-0.526595413684845,-0.776113510131836,-0.346908181905746,-0.232979357242584,-0.892595827579498,-0.385996460914612,-0.345745027065277,-0.807832837104797,-0.477353751659393,-0.526595413684845,-0.776113510131836,-0.346908181905746,-0.403144329786301,-0.877716243267059,-0.259015291929245,-0.145367980003357,-0.843272864818573,-0.517454504966736,-0.232979357242584,-0.892595827579498,-0.385996460914612,-0.403144329786301,-0.877716243267059,-0.259015291929245,-0.262260854244232,-0.856186389923096,-0.445156246423721,-0.3912113904953,-0.766522943973541,-0.509309709072113,-0.256743192672729,-0.775397121906281,-0.576924920082092,-0.145367980003357,-0.843272864818573,-0.517454504966736,-0.262260854244232,-0.856186389923096,-0.445156246423721,0.516836166381836,-0.852402567863464,-0.0793117433786392,0.686809003353119,-0.698886871337891,-0.199625939130783,0.748843133449554,-0.615623414516449,-0.245442092418671,0.631567239761353,-0.725451707839966,-0.273573875427246,0.481064021587372,-0.860768735408783,0.166297197341919,0.516836166381836,-0.852402567863464,-0.0793117433786392,0.631567239761353,-0.725451707839966,-0.273573875427246,0.621191382408142,-0.779147565364838,-0.083967350423336,0.812408864498138,-0.582659006118774,-0.0223691761493683,0.795868873596191,-0.574227571487427,0.191977918148041,0.727766096591949,-0.670531868934631,-0.144026219844818,0.816576957702637,-0.574691355228424,-0.0541484244167805,0.692198157310486,-0.698534071445465,-0.181416213512421,0.812408864498138,-0.582659006118774,-0.0223691761493683,0.816576957702637,-0.574691355228424,-0.0541484244167805,0.804734826087952,-0.534414052963257,-0.258463680744171,
- 0.580979466438293,-0.811107754707336,-0.0675804316997528,0.692198157310486,-0.698534071445465,-0.181416213512421,0.804734826087952,-0.534414052963257,-0.258463680744171,0.659979343414307,-0.657946050167084,-0.362676590681076,0.630167067050934,-0.763750910758972,0.139907717704773,0.580979466438293,-0.811107754707336,-0.0675804316997528,0.659979343414307,-0.657946050167084,-0.362676590681076,0.573294222354889,-0.793432772159576,-0.204446405172348,0.794119000434875,-0.607744812965393,-0.00461161136627197,0.630167067050934,-0.763750910758972,0.139907717704773,0.573294222354889,-0.793432772159576,-0.204446405172348,0.711506605148315,-0.693579137325287,-0.112723261117935,0.711506605148315,-0.693579137325287,-0.112723261117935,0.748843133449554,-0.615623414516449,-0.245442092418671,0.686809003353119,-0.698886871337891,-0.199625939130783,0.794119000434875,-0.607744812965393,-0.00461161136627197,0.631567239761353,-0.725451707839966,-0.273573875427246,0.748843133449554,-0.615623414516449,-0.245442092418671,0.68195253610611,-0.521892726421356,-0.512414693832397,0.546689212322235,-0.610535979270935,-0.573041796684265,0.621191382408142,-0.779147565364838,-0.083967350423336,0.631567239761353,-0.725451707839966,-0.273573875427246,0.546689212322235,-0.610535979270935,-0.573041796684265,0.592887163162231,-0.624082684516907,-0.508926093578339,0.816576957702637,-0.574691355228424,-0.0541484244167805,0.727766096591949,-0.670531868934631,-0.144026219844818,0.61942058801651,-0.564050495624542,-0.546045184135437,0.685978770256042,-0.571729362010956,-0.4500652551651,0.804734826087952,-0.534414052963257,-0.258463680744171,0.816576957702637,-0.574691355228424,-0.0541484244167805,0.685978770256042,-0.571729362010956,-0.4500652551651,0.682603299617767,-0.514778316020966,-0.518706142902374,0.659979343414307,-0.657946050167084,-0.362676590681076,0.804734826087952,-0.534414052963257,-0.258463680744171,0.682603299617767,-0.514778316020966,-0.518706142902374,0.574414193630219,-0.584125936031342,-0.5734503865242,0.573294222354889,-0.793432772159576,-0.204446405172348,
- 0.659979343414307,-0.657946050167084,-0.362676590681076,0.574414193630219,-0.584125936031342,-0.5734503865242,0.580245912075043,-0.662967145442963,-0.473063796758652,0.711506605148315,-0.693579137325287,-0.112723261117935,0.573294222354889,-0.793432772159576,-0.204446405172348,0.580245912075043,-0.662967145442963,-0.473063796758652,0.637724757194519,-0.551047682762146,-0.53819477558136,0.68195253610611,-0.521892726421356,-0.512414693832397,0.748843133449554,-0.615623414516449,-0.245442092418671,0.711506605148315,-0.693579137325287,-0.112723261117935,0.637724757194519,-0.551047682762146,-0.53819477558136,0.221845060586929,-0.889403164386749,-0.399683475494385,0.0389683097600937,-0.935517728328705,-0.351123988628387,0.257477074861526,-0.960813403129578,-0.102680332958698,0.231577217578888,-0.951294660568237,-0.203496187925339,0.0389683097600937,-0.935517728328705,-0.351123988628387,0.234671279788017,-0.878321528434753,-0.416510224342346,0.27902740240097,-0.929657220840454,-0.240585297346115,0.257477074861526,-0.960813403129578,-0.102680332958698,0.29668390750885,-0.929999828338623,-0.216977328062058,0.27902740240097,-0.929657220840454,-0.240585297346115,0.234671279788017,-0.878321528434753,-0.416510224342346,0.237720340490341,-0.876270413398743,-0.41909322142601,0.268242001533508,-0.862295389175415,-0.429526388645172,0.221845060586929,-0.889403164386749,-0.399683475494385,0.231577217578888,-0.951294660568237,-0.203496187925339,0.367549061775208,-0.891656756401062,-0.264302670955658,0.418712377548218,-0.891436159610748,0.173267796635628,0.323723196983337,-0.929239273071289,0.178094461560249,0.432204991579056,-0.873942017555237,0.222315311431885,0.454178869724274,-0.888177990913391,-0.0697242021560669,0.521637380123138,-0.829054057598114,0.201404735445976,0.418712377548218,-0.891436159610748,0.173267796635628,0.454178869724274,-0.888177990913391,-0.0697242021560669,0.415885210037231,-0.889683067798615,0.18842439353466,0.658353209495544,-0.747280538082123,0.0902388468384743,0.521637380123138,-0.829054057598114,0.201404735445976,
- 0.415885210037231,-0.889683067798615,0.18842439353466,0.576077878475189,-0.817212224006653,0.0172782093286514,0.323723196983337,-0.929239273071289,0.178094461560249,0.403640121221542,-0.914000868797302,-0.0409527905285358,0.25353080034256,-0.95866322517395,-0.129178076982498,0.432204991579056,-0.873942017555237,0.222315311431885,0.354366064071655,-0.918236553668976,-0.176823198795319,0.274043709039688,-0.956059575080872,-0.1041639149189,0.31534618139267,-0.923432230949402,-0.218700289726257,0.537907302379608,-0.842627704143524,-0.0251833610236645,0.274043709039688,-0.956059575080872,-0.1041639149189,0.367555379867554,-0.919960141181946,-0.136295631527901,0.366598844528198,-0.927216827869415,-0.0766439586877823,0.31534618139267,-0.923432230949402,-0.218700289726257,0.296382516622543,-0.953861892223358,-0.0480111837387085,0.366598844528198,-0.927216827869415,-0.0766439586877823,0.367555379867554,-0.919960141181946,-0.136295631527901,0.329103022813797,-0.937059760093689,-0.116663202643394,0.392954885959625,-0.907167434692383,-0.150445431470871,0.354366064071655,-0.918236553668976,-0.176823198795319,0.537907302379608,-0.842627704143524,-0.0251833610236645,0.331437110900879,-0.941870629787445,-0.0550396554172039,0.0290051251649857,-0.678939282894135,-0.73362123966217,-0.0536797121167183,-0.673973023891449,-0.736803114414215,0.247735217213631,-0.623897016048431,-0.741201639175415,0.37598118185997,-0.549700617790222,-0.745967507362366,-0.0536797121167183,-0.673973023891449,-0.736803114414215,-0.07225751131773,-0.73092246055603,-0.678624629974365,0.306192308664322,-0.662362158298492,-0.683756232261658,0.247735217213631,-0.623897016048431,-0.741201639175415,-0.082731582224369,-0.705382406711578,-0.703982412815094,-0.00542357610538602,-0.723933100700378,-0.689848780632019,0.368304461240768,-0.581591129302979,-0.725329995155334,0.307139605283737,-0.655489504337311,-0.68992668390274,-0.00542357610538602,-0.723933100700378,-0.689848780632019,0.00100359320640564,-0.665959119796753,-0.74598753452301,0.320542991161346,-0.551308631896973,-0.770266890525818,
- 0.368304461240768,-0.581591129302979,-0.725329995155334,0.00100359320640564,-0.665959119796753,-0.74598753452301,-0.0875595659017563,-0.656183242797852,-0.749504387378693,0.228175953030586,-0.629967451095581,-0.742345452308655,0.320542991161346,-0.551308631896973,-0.770266890525818,-0.0875595659017563,-0.656183242797852,-0.749504387378693,-0.0838032141327858,-0.745572149753571,-0.661134779453278,0.305294245481491,-0.635375320911407,-0.70929092168808,0.228175953030586,-0.629967451095581,-0.742345452308655,-0.0838032141327858,-0.745572149753571,-0.661134779453278,-0.0172060411423445,-0.729753434658051,-0.683493912220001,0.324560642242432,-0.57294499874115,-0.752591848373413,0.305294245481491,-0.635375320911407,-0.70929092168808,-0.0172060411423445,-0.729753434658051,-0.683493912220001,0.0290051251649857,-0.678939282894135,-0.73362123966217,0.37598118185997,-0.549700617790222,-0.745967507362366,0.324560642242432,-0.57294499874115,-0.752591848373413,0.258245885372162,-0.834484696388245,0.486769497394562,0.341099977493286,-0.869562923908234,0.357087135314941,0.411478966474533,-0.833409428596497,0.368936061859131,0.414780646562576,-0.766689956188202,0.49004453420639,-0.011688306927681,-0.692371487617493,0.721446633338928,-0.168108239769936,-0.704619884490967,0.689384162425995,0.073166623711586,-0.83398711681366,0.546911597251892,0.0915880426764488,-0.922742247581482,0.374377638101578,-0.784819364547729,-0.0138956904411316,-0.619568884372711,-0.629844486713409,-0.722105085849762,0.286112278699875,-0.497154802083969,-0.827602386474609,0.2605981528759,0.392705142498016,-0.81344199180603,0.429062962532043,0.258245885372162,-0.834484696388245,0.486769497394562,0.414780646562576,-0.766689956188202,0.49004453420639,0.486056596040726,-0.752102017402649,0.445074856281281,-0.0904316008090973,-0.705020904541016,0.703397274017334,-0.011688306927681,-0.692371487617493,0.721446633338928,0.0915880426764488,-0.922742247581482,0.374377638101578,0.0343768149614334,-0.850488781929016,0.524868607521057,-0.784819364547729,-0.0138956904411316,-0.619568884372711,
- -0.497154802083969,-0.827602386474609,0.2605981528759,-0.568441450595856,-0.787888944149017,0.236865550279617,0.355045229196548,-0.825757563114166,0.438254982233047,0.392705142498016,-0.81344199180603,0.429062962532043,0.486056596040726,-0.752102017402649,0.445074856281281,0.501213371753693,-0.750579237937927,0.430599808692932,0.0995998382568359,-0.761086583137512,0.640958070755005,-0.0904316008090973,-0.705020904541016,0.703397274017334,0.0343768149614334,-0.850488781929016,0.524868607521057,0.139895036816597,-0.876247704029083,0.461106687784195,-0.784819364547729,-0.0138956904411316,-0.619568884372711,-0.568441450595856,-0.787888944149017,0.236865550279617,-0.183267384767532,-0.952239096164703,0.244241565465927,0.411478966474533,-0.833409428596497,0.368936061859131,0.341099977493286,-0.869562923908234,0.357087135314941,0.330484688282013,-0.826657056808472,0.455431669950485,0.439610540866852,-0.758368015289307,0.481269776821136,-0.168108239769936,-0.704619884490967,0.689384162425995,-0.14662791788578,-0.599615871906281,0.786740779876709,0.0833594650030136,-0.867282152175903,0.490788072347641,0.073166623711586,-0.83398711681366,0.546911597251892,-0.629844486713409,-0.722105085849762,0.286112278699875,-0.784819364547729,-0.0138956904411316,-0.619568884372711,-0.642484545707703,-0.553517043590546,0.529936373233795,0.258245885372162,-0.834484696388245,0.486769497394562,0.392705142498016,-0.81344199180603,0.429062962532043,0.259357213973999,-0.891284584999084,0.371948421001434,0.159511893987656,-0.927395343780518,0.338369429111481,0.341099977493286,-0.869562923908234,0.357087135314941,0.258245885372162,-0.834484696388245,0.486769497394562,0.159511893987656,-0.927395343780518,0.338369429111481,0.21501886844635,-0.906326532363892,0.363784462213516,0.330484688282013,-0.826657056808472,0.455431669950485,0.341099977493286,-0.869562923908234,0.357087135314941,0.21501886844635,-0.906326532363892,0.363784462213516,0.233975753188133,-0.919063448905945,0.317139953374863,0.137530311942101,-0.911922574043274,0.386630117893219,0.259357213973999,-0.891284584999084,0.371948421001434,
- 0.392705142498016,-0.81344199180603,0.429062962532043,0.355045229196548,-0.825757563114166,0.438254982233047,-0.322173655033112,-0.851684987545013,0.41332420706749,-0.344105511903763,-0.832295775413513,0.434597909450531,-0.113580480217934,-0.71598494052887,0.688814282417297,-0.171082198619843,-0.714264273643494,0.678643941879272,-0.344105511903763,-0.832295775413513,0.434597909450531,-0.395458221435547,-0.823933601379395,0.405889600515366,-0.181506916880608,-0.750167608261108,0.635848999023438,-0.113580480217934,-0.71598494052887,0.688814282417297,-0.395458221435547,-0.823933601379395,0.405889600515366,-0.475670963525772,-0.694948852062225,0.539243280887604,-0.210305243730545,-0.521210610866547,0.827110230922699,-0.181506916880608,-0.750167608261108,0.635848999023438,-0.243033528327942,-0.90173602104187,0.357500940561295,-0.322173655033112,-0.851684987545013,0.41332420706749,-0.171082198619843,-0.714264273643494,0.678643941879272,0.0640836805105209,-0.779076933860779,0.623644471168518,-0.731631219387054,0.0147961210459471,0.681540131568909,-0.73796546459198,-0.115850299596787,0.66482013463974,-0.758769392967224,-0.0172809213399887,0.651130199432373,-0.777008235454559,0.155110433697701,0.610081076622009,-0.777008235454559,0.155110433697701,0.610081076622009,-0.758769392967224,-0.0172809213399887,0.651130199432373,-0.930521428585052,-0.060416653752327,0.361219823360443,-0.894445538520813,0.0844758674502373,0.439125418663025,-0.816190958023071,-0.392524927854538,0.423977196216583,-0.870992660522461,-0.435608863830566,0.227193474769592,-0.590522646903992,0.334203571081162,-0.734568655490875,-0.510677039623261,0.101737290620804,0.853732109069824,-0.721828162670136,0.16921903192997,0.671065628528595,-0.72953462600708,0.204163938760757,0.652760565280914,-0.603794693946838,0.156614050269127,0.781603574752808,-0.603794693946838,0.156614050269127,0.781603574752808,-0.72953462600708,0.204163938760757,0.652760565280914,-0.841654658317566,0.218200534582138,0.493969619274139,-0.929933369159698,-0.059212252497673,0.362929582595825,
- -0.873407661914825,-0.394828200340271,0.285078555345535,-0.902959406375885,-0.165283545851707,0.396668434143066,-0.590522646903992,0.334203571081162,-0.734568655490875,-0.721828162670136,0.16921903192997,0.671065628528595,-0.697388112545013,-0.0103057026863098,0.716619610786438,-0.793102204799652,0.0438603311777115,0.607507348060608,-0.72953462600708,0.204163938760757,0.652760565280914,-0.72953462600708,0.204163938760757,0.652760565280914,-0.793102204799652,0.0438603311777115,0.607507348060608,-0.912283301353455,-0.0734749361872673,0.402915298938751,-0.841654658317566,0.218200534582138,0.493969619274139,-0.902959406375885,-0.165283545851707,0.396668434143066,-0.905853688716888,-0.28857696056366,0.310084789991379,-0.590522646903992,0.334203571081162,-0.734568655490875,-0.697388112545013,-0.0103057026863098,0.716619610786438,-0.731631219387054,0.0147961210459471,0.681540131568909,-0.777008235454559,0.155110433697701,0.610081076622009,-0.793102204799652,0.0438603311777115,0.607507348060608,-0.793102204799652,0.0438603311777115,0.607507348060608,-0.777008235454559,0.155110433697701,0.610081076622009,-0.894445538520813,0.0844758674502373,0.439125418663025,-0.912283301353455,-0.0734749361872673,0.402915298938751,-0.905853688716888,-0.28857696056366,0.310084789991379,-0.816190958023071,-0.392524927854538,0.423977196216583,-0.590522646903992,0.334203571081162,-0.734568655490875,-0.894445538520813,0.0844758674502373,0.439125418663025,-0.930521428585052,-0.060416653752327,0.361219823360443,-0.870992660522461,-0.435608863830566,0.227193474769592,-0.816190958023071,-0.392524927854538,0.423977196216583,-0.929933369159698,-0.059212252497673,0.362929582595825,-0.841654658317566,0.218200534582138,0.493969619274139,-0.902959406375885,-0.165283545851707,0.396668434143066,-0.873407661914825,-0.394828200340271,0.285078555345535,-0.841654658317566,0.218200534582138,0.493969619274139,-0.912283301353455,-0.0734749361872673,0.402915298938751,-0.905853688716888,-0.28857696056366,0.310084789991379,-0.902959406375885,-0.165283545851707,0.396668434143066,
- -0.912283301353455,-0.0734749361872673,0.402915298938751,-0.894445538520813,0.0844758674502373,0.439125418663025,-0.816190958023071,-0.392524927854538,0.423977196216583,-0.905853688716888,-0.28857696056366,0.310084789991379,-0.568441450595856,-0.787888944149017,0.236865550279617,-0.497154802083969,-0.827602386474609,0.2605981528759,-0.344105511903763,-0.832295775413513,0.434597909450531,-0.322173655033112,-0.851684987545013,0.41332420706749,-0.497154802083969,-0.827602386474609,0.2605981528759,-0.629844486713409,-0.722105085849762,0.286112278699875,-0.395458221435547,-0.823933601379395,0.405889600515366,-0.344105511903763,-0.832295775413513,0.434597909450531,-0.629844486713409,-0.722105085849762,0.286112278699875,-0.642484545707703,-0.553517043590546,0.529936373233795,-0.475670963525772,-0.694948852062225,0.539243280887604,-0.395458221435547,-0.823933601379395,0.405889600515366,-0.183267384767532,-0.952239096164703,0.244241565465927,-0.568441450595856,-0.787888944149017,0.236865550279617,-0.322173655033112,-0.851684987545013,0.41332420706749,-0.243033528327942,-0.90173602104187,0.357500940561295,-0.171082198619843,-0.714264273643494,0.678643941879272,-0.113580480217934,-0.71598494052887,0.688814282417297,-0.011688306927681,-0.692371487617493,0.721446633338928,-0.0904316008090973,-0.705020904541016,0.703397274017334,-0.113580480217934,-0.71598494052887,0.688814282417297,-0.181506916880608,-0.750167608261108,0.635848999023438,-0.168108239769936,-0.704619884490967,0.689384162425995,-0.011688306927681,-0.692371487617493,0.721446633338928,-0.181506916880608,-0.750167608261108,0.635848999023438,-0.210305243730545,-0.521210610866547,0.827110230922699,-0.14662791788578,-0.599615871906281,0.786740779876709,-0.168108239769936,-0.704619884490967,0.689384162425995,0.0640836805105209,-0.779076933860779,0.623644471168518,-0.171082198619843,-0.714264273643494,0.678643941879272,-0.0904316008090973,-0.705020904541016,0.703397274017334,0.0995998382568359,-0.761086583137512,0.640958070755005,0.159511893987656,-0.927395343780518,0.338369429111481,
- 0.259357213973999,-0.891284584999084,0.371948421001434,0.0343768149614334,-0.850488781929016,0.524868607521057,0.0915880426764488,-0.922742247581482,0.374377638101578,0.21501886844635,-0.906326532363892,0.363784462213516,0.159511893987656,-0.927395343780518,0.338369429111481,0.0915880426764488,-0.922742247581482,0.374377638101578,0.073166623711586,-0.83398711681366,0.546911597251892,0.233975753188133,-0.919063448905945,0.317139953374863,0.21501886844635,-0.906326532363892,0.363784462213516,0.073166623711586,-0.83398711681366,0.546911597251892,0.0833594650030136,-0.867282152175903,0.490788072347641,0.0343768149614334,-0.850488781929016,0.524868607521057,0.259357213973999,-0.891284584999084,0.371948421001434,0.137530311942101,-0.911922574043274,0.386630117893219,0.139895036816597,-0.876247704029083,0.461106687784195,-0.43150606751442,-0.854273080825806,0.289862364530563,-0.43831992149353,-0.856301963329315,0.273171722888947,-0.346261143684387,-0.730621814727783,0.588468313217163,-0.316113233566284,-0.726988613605499,0.609557211399078,-0.386418223381042,-0.885976493358612,0.256372421979904,-0.43150606751442,-0.854273080825806,0.289862364530563,-0.316113233566284,-0.726988613605499,0.609557211399078,-0.296640932559967,-0.758140325546265,0.580712914466858,-0.418797045946121,-0.869280517101288,0.262603223323822,-0.340492397546768,-0.917111456394196,0.207295686006546,-0.258955746889114,-0.79790186882019,0.544329583644867,-0.326790630817413,-0.764066994190216,0.556245923042297,-0.40875917673111,-0.860118985176086,0.305141508579254,-0.418797045946121,-0.869280517101288,0.262603223323822,-0.326790630817413,-0.764066994190216,0.556245923042297,-0.315968632698059,-0.746517837047577,0.5855553150177,-0.367517471313477,-0.872797727584839,0.321177750825882,-0.40875917673111,-0.860118985176086,0.305141508579254,-0.315968632698059,-0.746517837047577,0.5855553150177,-0.261572390794754,-0.760790884494781,0.59395045042038,-0.400361746549606,-0.859757363796234,0.317061424255371,-0.367517471313477,-0.872797727584839,0.321177750825882,-0.261572390794754,-0.760790884494781,0.59395045042038,
- -0.301019608974457,-0.753461599349976,0.584536552429199,-0.412961691617966,-0.872979819774628,0.259555071592331,-0.400361746549606,-0.859757363796234,0.317061424255371,-0.301019608974457,-0.753461599349976,0.584536552429199,-0.335364013910294,-0.758356094360352,0.558951735496521,-0.43831992149353,-0.856301963329315,0.273171722888947,-0.412961691617966,-0.872979819774628,0.259555071592331,-0.335364013910294,-0.758356094360352,0.558951735496521,-0.346261143684387,-0.730621814727783,0.588468313217163,-0.360939115285873,-0.931753158569336,-0.0394868291914463,-0.362633019685745,-0.931926012039185,-0.00334925577044487,-0.43150606751442,-0.854273080825806,0.289862364530563,-0.386418223381042,-0.885976493358612,0.256372421979904,-0.397204607725143,-0.910811126232147,0.112479045987129,-0.444823324680328,-0.894677042961121,0.0410518348217011,-0.340492397546768,-0.917111456394196,0.207295686006546,-0.418797045946121,-0.869280517101288,0.262603223323822,-0.367711842060089,-0.924217104911804,0.103009104728699,-0.397204607725143,-0.910811126232147,0.112479045987129,-0.418797045946121,-0.869280517101288,0.262603223323822,-0.40875917673111,-0.860118985176086,0.305141508579254,-0.385408669710159,-0.918192565441132,0.0915567427873611,-0.367711842060089,-0.924217104911804,0.103009104728699,-0.40875917673111,-0.860118985176086,0.305141508579254,-0.367517471313477,-0.872797727584839,0.321177750825882,-0.38325896859169,-0.915751516819,0.120465226471424,-0.385408669710159,-0.918192565441132,0.0915567427873611,-0.367517471313477,-0.872797727584839,0.321177750825882,-0.400361746549606,-0.859757363796234,0.317061424255371,-0.338205993175507,-0.936696946620941,0.0906390324234962,-0.38325896859169,-0.915751516819,0.120465226471424,-0.400361746549606,-0.859757363796234,0.317061424255371,-0.412961691617966,-0.872979819774628,0.259555071592331,-0.330713659524918,-0.942977547645569,0.0377090722322464,-0.338205993175507,-0.936696946620941,0.0906390324234962,-0.412961691617966,-0.872979819774628,0.259555071592331,-0.43831992149353,-0.856301963329315,0.273171722888947,
- -0.362633019685745,-0.931926012039185,-0.00334925577044487,-0.330713659524918,-0.942977547645569,0.0377090722322464,-0.43831992149353,-0.856301963329315,0.273171722888947,-0.43150606751442,-0.854273080825806,0.289862364530563,-0.031065559014678,-0.99529904127121,-0.0917326956987381,-0.130579814314842,-0.973419785499573,-0.188156738877296,0.743275880813599,-0.509036302566528,-0.434077322483063,0.833890438079834,-0.527009546756744,-0.163974732160568,-0.381368309259415,-0.905700623989105,0.185107260942459,-0.293672919273376,-0.895021200180054,0.33569809794426,-0.0286258347332478,-0.280865550041199,0.959320187568665,-0.284746259450912,-0.230571508407593,0.930460274219513,-0.409212410449982,-0.91243839263916,-0.00119574379641563,-0.40964537858963,-0.909488618373871,0.0708605945110321,-0.776972591876984,-0.0959021002054214,0.622186720371246,-0.99673730134964,-0.0476130694150925,0.065174475312233,-0.296647489070892,-0.935379505157471,-0.192524433135986,-0.415752232074738,-0.905290842056274,-0.0871710851788521,-0.755465388298035,-0.148690938949585,-0.638093292713165,0.0251637175679207,-0.317106485366821,-0.948056042194366,-0.415752232074738,-0.905290842056274,-0.0871710851788521,-0.409212410449982,-0.91243839263916,-0.00119574379641563,-0.99673730134964,-0.0476130694150925,0.065174475312233,-0.755465388298035,-0.148690938949585,-0.638093292713165,-0.40964537858963,-0.909488618373871,0.0708605945110321,-0.381368309259415,-0.905700623989105,0.185107260942459,-0.284746259450912,-0.230571508407593,0.930460274219513,-0.776972591876984,-0.0959021002054214,0.622186720371246,0.112212210893631,-0.993681192398071,-0.00245470530353487,-0.031065559014678,-0.99529904127121,-0.0917326956987381,0.833890438079834,-0.527009546756744,-0.163974732160568,0.87707906961441,-0.476972818374634,0.0568268001079559,-0.130579814314842,-0.973419785499573,-0.188156738877296,-0.296647489070892,-0.935379505157471,-0.192524433135986,0.0251637175679207,-0.317106485366821,-0.948056042194366,0.743275880813599,-0.509036302566528,-0.434077322483063,0.833890438079834,-0.527009546756744,-0.163974732160568,
- 0.743275880813599,-0.509036302566528,-0.434077322483063,0.938263356685638,-0.314891666173935,-0.143196135759354,0.98895788192749,-0.0396381020545959,-0.142797708511353,0.989229917526245,0.0491309873759747,-0.137878343462944,0.988417625427246,-0.00446098437532783,-0.151692643761635,0.975862324237823,-0.206388115882874,-0.0713915377855301,0.87707906961441,-0.476972818374634,0.0568268001079559,-0.327656745910645,-0.944646835327148,-0.0168383717536926,-0.339191317558289,-0.938176155090332,-0.0691005513072014,-0.362633019685745,-0.931926012039185,-0.00334925577044487,-0.360939115285873,-0.931753158569336,-0.0394868291914463,-0.275227516889572,-0.961367130279541,0.00480601191520691,-0.290359616279602,-0.955608785152435,-0.0500320345163345,-0.444823324680328,-0.894677042961121,0.0410518348217011,-0.397204607725143,-0.910811126232147,0.112479045987129,-0.26793161034584,-0.962429285049438,-0.0440745055675507,-0.275227516889572,-0.961367130279541,0.00480601191520691,-0.397204607725143,-0.910811126232147,0.112479045987129,-0.367711842060089,-0.924217104911804,0.103009104728699,-0.330189347267151,-0.942593276500702,-0.0499297492206097,-0.26793161034584,-0.962429285049438,-0.0440745055675507,-0.367711842060089,-0.924217104911804,0.103009104728699,-0.385408669710159,-0.918192565441132,0.0915567427873611,-0.319038391113281,-0.947696328163147,0.00928410887718201,-0.330189347267151,-0.942593276500702,-0.0499297492206097,-0.385408669710159,-0.918192565441132,0.0915567427873611,-0.38325896859169,-0.915751516819,0.120465226471424,-0.263201057910919,-0.964722752571106,-0.00594060588628054,-0.319038391113281,-0.947696328163147,0.00928410887718201,-0.38325896859169,-0.915751516819,0.120465226471424,-0.338205993175507,-0.936696946620941,0.0906390324234962,-0.269803553819656,-0.960680305957794,-0.0655699446797371,-0.263201057910919,-0.964722752571106,-0.00594060588628054,-0.338205993175507,-0.936696946620941,0.0906390324234962,-0.330713659524918,-0.942977547645569,0.0377090722322464,-0.339191317558289,-0.938176155090332,-0.0691005513072014,
- -0.269803553819656,-0.960680305957794,-0.0655699446797371,-0.330713659524918,-0.942977547645569,0.0377090722322464,-0.362633019685745,-0.931926012039185,-0.00334925577044487,0.137977868318558,-0.945436358451843,-0.295147925615311,0.00752919912338257,-0.90482223033905,-0.425722986459732,-0.186240583658218,-0.920966982841492,-0.342248886823654,0.119881510734558,-0.965687215328217,-0.230383515357971,0.00752919912338257,-0.90482223033905,-0.425722986459732,-0.170812711119652,-0.981132447719574,-0.0905661582946777,-0.205049723386765,-0.971998572349548,-0.114775314927101,-0.186240583658218,-0.920966982841492,-0.342248886823654,0.463365852832794,-0.840189695358276,-0.281733125448227,0.0366784483194351,-0.896952688694,-0.440602540969849,-0.106791362166405,-0.905412673950195,-0.410881370306015,0.31433629989624,-0.909081280231476,-0.273429840803146,0.0366784483194351,-0.896952688694,-0.440602540969849,0.137977868318558,-0.945436358451843,-0.295147925615311,0.119881510734558,-0.965687215328217,-0.230383515357971,-0.106791362166405,-0.905412673950195,-0.410881370306015,0.11996915191412,-0.789989411830902,-0.601268768310547,-0.0684228092432022,-0.878169536590576,-0.473430603742599,-0.188668668270111,-0.913908779621124,-0.359409153461456,-0.102973684668541,-0.948726952075958,-0.298854202032089,-0.0740300863981247,-0.875156760215759,-0.478142410516739,0.0590426400303841,-0.803119719028473,-0.59288501739502,0.220817536115646,-0.913136839866638,-0.342667281627655,-0.155522778630257,-0.900726616382599,-0.405591368675232,-0.0191105380654335,-0.798515558242798,-0.601670742034912,-0.0740300863981247,-0.875156760215759,-0.478142410516739,-0.155522778630257,-0.900726616382599,-0.405591368675232,-0.0317720174789429,-0.929482460021973,-0.367495477199554,-0.0684228092432022,-0.878169536590576,-0.473430603742599,-0.0191105380654335,-0.798515558242798,-0.601670742034912,-0.0317720174789429,-0.929482460021973,-0.367495477199554,-0.188668668270111,-0.913908779621124,-0.359409153461456,0.00752919912338257,-0.90482223033905,-0.425722986459732,0.137977868318558,-0.945436358451843,-0.295147925615311,
- 0.0610572770237923,-0.849051535129547,-0.524770081043243,0.181103765964508,-0.857141196727753,-0.482193410396576,0.137977868318558,-0.945436358451843,-0.295147925615311,0.0366784483194351,-0.896952688694,-0.440602540969849,0.269442707300186,-0.825389981269836,-0.496116995811462,0.0610572770237923,-0.849051535129547,-0.524770081043243,0.0366784483194351,-0.896952688694,-0.440602540969849,0.463365852832794,-0.840189695358276,-0.281733125448227,0.234373018145561,-0.86848247051239,-0.43681526184082,0.269442707300186,-0.825389981269836,-0.496116995811462,-0.170812711119652,-0.981132447719574,-0.0905661582946777,0.00752919912338257,-0.90482223033905,-0.425722986459732,0.181103765964508,-0.857141196727753,-0.482193410396576,0.0338211134076118,-0.918484687805176,-0.394007712602615,0.31534618139267,-0.923432230949402,-0.218700289726257,0.415885210037231,-0.889683067798615,0.18842439353466,0.454178869724274,-0.888177990913391,-0.0697242021560669,-0.740423202514648,-0.24860492348671,0.624475181102753,-0.00666651409119368,-0.972781896591187,-0.231626927852631,0.126394107937813,-0.905362010002136,-0.405393958091736,-0.740423202514648,-0.24860492348671,0.624475181102753,0.0415087975561619,-0.936849176883698,-0.347261726856232,-0.00666651409119368,-0.972781896591187,-0.231626927852631,-0.740423202514648,-0.24860492348671,0.624475181102753,-0.179672747850418,-0.979257702827454,-0.0936591103672981,0.0415087975561619,-0.936849176883698,-0.347261726856232,-0.740423202514648,-0.24860492348671,0.624475181102753,0.101376637816429,-0.992611646652222,0.0666713193058968,-0.179672747850418,-0.979257702827454,-0.0936591103672981,-0.57383930683136,-0.75904780626297,0.307497978210449,-0.677688717842102,-0.714537978172302,0.17370542883873,-0.589227855205536,-0.793815612792969,0.150556474924088,-0.337711781263351,-0.931744337081909,0.133429229259491,-0.566325306892395,-0.81587016582489,0.116754755377769,-0.57383930683136,-0.75904780626297,0.307497978210449,-0.337711781263351,-0.931744337081909,0.133429229259491,-0.539195895195007,-0.798194050788879,0.268615335226059,
- -0.596415460109711,-0.774022817611694,0.212549611926079,-0.567523658275604,-0.814905822277069,0.117666751146317,-0.349942922592163,-0.930217385292053,0.110615074634552,-0.350821405649185,-0.930476784706116,0.105533972382545,-0.677688717842102,-0.714537978172302,0.17370542883873,-0.596415460109711,-0.774022817611694,0.212549611926079,-0.350821405649185,-0.930476784706116,0.105533972382545,-0.589227855205536,-0.793815612792969,0.150556474924088,-0.459534347057343,-0.860011994838715,0.221827983856201,-0.533457934856415,-0.768802404403687,0.352655202150345,-0.625120460987091,-0.741768598556519,0.242906868457794,-0.605946838855743,-0.718609392642975,0.341216892004013,-0.600144624710083,-0.701061367988586,0.385148644447327,-0.459534347057343,-0.860011994838715,0.221827983856201,-0.605946838855743,-0.718609392642975,0.341216892004013,-0.621907889842987,-0.73730593919754,0.263838171958923,-0.501188516616821,-0.862557411193848,0.0693180114030838,-0.299093246459961,-0.930559277534485,0.211193799972534,-0.478139668703079,-0.861317276954651,0.171799719333649,-0.647515535354614,-0.735527038574219,0.199307858943939,-0.533457934856415,-0.768802404403687,0.352655202150345,-0.501188516616821,-0.862557411193848,0.0693180114030838,-0.647515535354614,-0.735527038574219,0.199307858943939,-0.625120460987091,-0.741768598556519,0.242906868457794,0.675779938697815,-0.73454886674881,-0.061315231025219,0.699146211147308,-0.714138984680176,-0.0346426293253899,0.906270265579224,-0.317743301391602,0.278771668672562,0.878118395805359,-0.418191999197006,0.232429683208466,-0.641520619392395,-0.689777791500092,0.335645496845245,-0.0171092450618744,-0.661555588245392,0.749700903892517,-0.302046716213226,-0.643408417701721,0.70341557264328,-0.278712272644043,-0.892489790916443,0.35465681552887,0.158265739679337,-0.71370005607605,0.68233734369278,0.242690309882164,-0.738926887512207,0.628560662269592,0.549132704734802,-0.609520494937897,0.571784973144531,0.345804929733276,-0.629660785198212,0.695662438869476,0.306772619485855,-0.702003121376038,0.642714738845825,
- 0.421773672103882,-0.719420075416565,0.551853120326996,0.383232116699219,-0.918125212192535,0.100892543792725,0.395734667778015,-0.855947315692902,0.33278876543045,-0.203644633293152,-0.515789330005646,-0.832159996032715,0.0195995438843966,-0.895667433738709,-0.444292575120926,0.306444436311722,-0.712650716304779,-0.631047427654266,-0.547658741474152,-0.510859072208405,-0.662640810012817,-0.856999337673187,-0.475014090538025,-0.199784696102142,-0.667275607585907,-0.281765460968018,-0.689457416534424,-0.77964860200882,-0.430471181869507,-0.454799771308899,-0.861720383167267,-0.502930104732513,-0.0670763924717903,-0.818188786506653,-0.37455216050148,0.436208486557007,-0.900151371955872,-0.389225572347641,0.195527479052544,-0.799252092838287,-0.561726748943329,0.213680565357208,-0.567707717418671,-0.496117353439331,0.656944096088409,0.700231194496155,-0.142185553908348,0.699613869190216,-0.818188786506653,-0.37455216050148,0.436208486557007,-0.567707717418671,-0.496117353439331,0.656944096088409,0.878118395805359,-0.418191999197006,0.232429683208466,0.906270265579224,-0.317743301391602,0.278771668672562,0.67418247461319,-0.737798273563385,0.0336408987641335,0.648400187492371,-0.760925948619843,0.0238520465791225,-0.278712272644043,-0.892489790916443,0.35465681552887,-0.302046716213226,-0.643408417701721,0.70341557264328,-0.00741669535636902,-0.572780251502991,0.819675445556641,-0.447414577007294,-0.714520633220673,0.537847995758057,0.345804929733276,-0.629660785198212,0.695662438869476,0.549132704734802,-0.609520494937897,0.571784973144531,0.191095441579819,-0.730820298194885,0.655274152755737,0.123315922915936,-0.718140184879303,0.684885323047638,0.395734667778015,-0.855947315692902,0.33278876543045,0.383232116699219,-0.918125212192535,0.100892543792725,0.424589216709137,-0.838247895240784,0.342146843671799,0.310904294252396,-0.74620133638382,0.588661253452301,-0.613194406032562,-0.379027396440506,-0.693059146404266,-0.085385300219059,-0.639440178871155,-0.764084935188293,0.0195995438843966,-0.895667433738709,-0.444292575120926,
- -0.203644633293152,-0.515789330005646,-0.832159996032715,-0.851353704929352,-0.511981725692749,-0.114331290125847,-0.706027626991272,-0.466417580842972,-0.532897531986237,-0.667275607585907,-0.281765460968018,-0.689457416534424,-0.856999337673187,-0.475014090538025,-0.199784696102142,-0.642427444458008,-0.599838137626648,0.47694993019104,-0.761284828186035,-0.648248374462128,0.0148193668574095,-0.900151371955872,-0.389225572347641,0.195527479052544,-0.818188786506653,-0.37455216050148,0.436208486557007,0.700231194496155,-0.142185553908348,0.699613869190216,-0.642427444458008,-0.599838137626648,0.47694993019104,-0.818188786506653,-0.37455216050148,0.436208486557007,0.648400187492371,-0.760925948619843,0.0238520465791225,0.67418247461319,-0.737798273563385,0.0336408987641335,0.747285604476929,-0.593326449394226,0.299212276935577,0.672064304351807,-0.629071772098541,0.390638381242752,-0.447414577007294,-0.714520633220673,0.537847995758057,-0.00741669535636902,-0.572780251502991,0.819675445556641,-0.312362313270569,-0.752992987632751,0.579164326190948,-0.463267028331757,-0.755242705345154,0.463672459125519,0.123315922915936,-0.718140184879303,0.684885323047638,0.191095441579819,-0.730820298194885,0.655274152755737,0.579344570636749,-0.562964081764221,0.589433014392853,0.351954430341721,-0.517716646194458,0.779806137084961,0.310904294252396,-0.74620133638382,0.588661253452301,0.424589216709137,-0.838247895240784,0.342146843671799,0.709598958492279,-0.652485549449921,0.265954911708832,0.605308532714844,-0.669830679893494,0.430033028125763,-0.0908820852637291,-0.764645755290985,-0.638010561466217,0.220465794205666,-0.69331169128418,-0.686085820198059,-0.085385300219059,-0.639440178871155,-0.764084935188293,-0.613194406032562,-0.379027396440506,-0.693059146404266,-0.669333159923553,-0.735521912574768,-0.104884088039398,-0.549793243408203,-0.65276026725769,-0.521182835102081,-0.706027626991272,-0.466417580842972,-0.532897531986237,-0.851353704929352,-0.511981725692749,-0.114331290125847,-0.492651283740997,-0.81448769569397,0.306438535451889,
- -0.809729874134064,-0.564910709857941,0.158787980675697,-0.761284828186035,-0.648248374462128,0.0148193668574095,-0.642427444458008,-0.599838137626648,0.47694993019104,0.700231194496155,-0.142185553908348,0.699613869190216,-0.492651283740997,-0.81448769569397,0.306438535451889,-0.642427444458008,-0.599838137626648,0.47694993019104,0.968337178230286,0.0409288443624973,0.246268332004547,0.95748233795166,-0.0284195505082607,0.287088662385941,0.699146211147308,-0.714138984680176,-0.0346426293253899,0.675779938697815,-0.73454886674881,-0.061315231025219,-0.183472484350204,-0.955231428146362,0.232101038098335,-0.418196976184845,-0.518393814563751,0.745908319950104,-0.0171092450618744,-0.661555588245392,0.749700903892517,-0.641520619392395,-0.689777791500092,0.335645496845245,0.310087084770203,-0.668680012226105,0.675805568695068,0.338362663984299,-0.864113211631775,0.372584521770477,0.242690309882164,-0.738926887512207,0.628560662269592,0.158265739679337,-0.71370005607605,0.68233734369278,0.200799137353897,-0.953870534896851,0.22318360209465,0.331113785505295,-0.932075440883636,0.146966561675072,0.421773672103882,-0.719420075416565,0.551853120326996,0.306772619485855,-0.702003121376038,0.642714738845825,0.306444436311722,-0.712650716304779,-0.631047427654266,0.141612231731415,-0.841273188591003,-0.521733105182648,-0.112924657762051,-0.379379868507385,-0.918324112892151,-0.547658741474152,-0.510859072208405,-0.662640810012817,-0.77964860200882,-0.430471181869507,-0.454799771308899,-0.661052405834198,-0.162808388471603,-0.732463777065277,-0.909006714820862,-0.315474987030029,-0.272364288568497,-0.861720383167267,-0.502930104732513,-0.0670763924717903,-0.799252092838287,-0.561726748943329,0.213680565357208,-0.794286727905273,-0.585681140422821,0.161512583494186,-0.857470095157623,-0.342544436454773,0.383938103914261,-0.567707717418671,-0.496117353439331,0.656944096088409,-0.567707717418671,-0.496117353439331,0.656944096088409,-0.857470095157623,-0.342544436454773,0.383938103914261,0.700231194496155,-0.142185553908348,0.699613869190216,
- 0.0530404262244701,-0.523981630802155,0.850076496601105,0.093914158642292,-0.677505314350128,0.729497671127319,-0.00741669535636902,-0.572780251502991,0.819675445556641,-0.302046716213226,-0.643408417701721,0.70341557264328,0.121025696396828,-0.679863572120667,0.723282933235168,0.0530404262244701,-0.523981630802155,0.850076496601105,-0.302046716213226,-0.643408417701721,0.70341557264328,-0.0171092450618744,-0.661555588245392,0.749700903892517,0.00159386824816465,-0.47770756483078,0.878517508506775,0.121025696396828,-0.679863572120667,0.723282933235168,-0.0171092450618744,-0.661555588245392,0.749700903892517,-0.418196976184845,-0.518393814563751,0.745908319950104,0.093914158642292,-0.677505314350128,0.729497671127319,0.00637082383036613,-0.597908735275269,0.801538944244385,-0.312362313270569,-0.752992987632751,0.579164326190948,-0.00741669535636902,-0.572780251502991,0.819675445556641,-0.459453076124191,-0.888132870197296,-0.0110889300704002,-0.361639082431793,-0.916753113269806,0.169649392366409,-0.530142962932587,-0.824426770210266,0.198164284229279,-0.456066936254501,-0.882579028606415,0.114268288016319,-0.451006472110748,-0.875380873680115,0.174073129892349,-0.522076845169067,-0.823734223842621,0.221128314733505,-0.361639082431793,-0.916753113269806,0.169649392366409,-0.459453076124191,-0.888132870197296,-0.0110889300704002,-0.720479667186737,-0.693166494369507,0.0207230579108,-0.37126687169075,-0.909039795398712,0.189229309558868,-0.522076845169067,-0.823734223842621,0.221128314733505,-0.451006472110748,-0.875380873680115,0.174073129892349,-0.456066936254501,-0.882579028606415,0.114268288016319,-0.530142962932587,-0.824426770210266,0.198164284229279,-0.354316473007202,-0.916657447814941,0.184929698705673,-0.173593640327454,-0.983820676803589,-0.0442965626716614,0.447937190532684,-0.891410171985626,-0.0688505172729492,0.391964226961136,-0.889630198478699,-0.234354868531227,0.420856028795242,-0.894284725189209,0.152102455496788,0.464842736721039,-0.878738105297089,0.108354024589062,0.486531525850296,-0.840549290180206,0.238251924514771,
- 0.471558690071106,-0.868803858757019,0.151037454605103,0.391964226961136,-0.889630198478699,-0.234354868531227,0.447937190532684,-0.891410171985626,-0.0688505172729492,0.306581258773804,-0.95017147064209,-0.0564108490943909,0.0641991123557091,-0.990907073020935,-0.118243962526321,0.471558690071106,-0.868803858757019,0.151037454605103,0.486531525850296,-0.840549290180206,0.238251924514771,0.464842736721039,-0.878738105297089,0.108354024589062,0.420856028795242,-0.894284725189209,0.152102455496788,0.692831754684448,-0.643590927124023,-0.325230568647385,0.681693971157074,-0.731371819972992,-0.019715579226613,0.26484876871109,-0.888702213764191,-0.374250620603561,0.0195995438843966,-0.895667433738709,-0.444292575120926,-0.085385300219059,-0.639440178871155,-0.764084935188293,0.444285690784454,-0.87486320734024,-0.192937046289444,0.564907670021057,-0.823030591011047,-0.059161938726902,0.306444436311722,-0.712650716304779,-0.631047427654266,0.0195995438843966,-0.895667433738709,-0.444292575120926,0.26484876871109,-0.888702213764191,-0.374250620603561,0.214231818914413,-0.929620981216431,-0.29984924197197,0.141612231731415,-0.841273188591003,-0.521733105182648,0.306444436311722,-0.712650716304779,-0.631047427654266,0.564907670021057,-0.823030591011047,-0.059161938726902,0.444285690784454,-0.87486320734024,-0.192937046289444,-0.085385300219059,-0.639440178871155,-0.764084935188293,0.220465794205666,-0.69331169128418,-0.686085820198059,0.490185290575027,-0.640971541404724,-0.590655446052551,0.391964226961136,-0.889630198478699,-0.234354868531227,0.26484876871109,-0.888702213764191,-0.374250620603561,0.444285690784454,-0.87486320734024,-0.192937046289444,0.420856028795242,-0.894284725189209,0.152102455496788,0.471558690071106,-0.868803858757019,0.151037454605103,0.564907670021057,-0.823030591011047,-0.059161938726902,0.26484876871109,-0.888702213764191,-0.374250620603561,0.391964226961136,-0.889630198478699,-0.234354868531227,0.0641991123557091,-0.990907073020935,-0.118243962526321,0.214231818914413,-0.929620981216431,-0.29984924197197,
- 0.564907670021057,-0.823030591011047,-0.059161938726902,0.471558690071106,-0.868803858757019,0.151037454605103,0.420856028795242,-0.894284725189209,0.152102455496788,0.444285690784454,-0.87486320734024,-0.192937046289444,0.490185290575027,-0.640971541404724,-0.590655446052551,0.692831754684448,-0.643590927124023,-0.325230568647385,-0.181263357400894,-0.983246564865112,0.0192336607724428,-0.148112773895264,-0.987415790557861,-0.0554316639900208,-0.404020696878433,-0.91030079126358,0.0901105627417564,-0.293737471103668,-0.953158497810364,-0.0721611753106117,-0.218170344829559,-0.924203157424927,-0.313449114561081,-0.42527037858963,-0.902792513370514,-0.064115010201931,-0.148112773895264,-0.987415790557861,-0.0554316639900208,-0.181263357400894,-0.983246564865112,0.0192336607724428,-0.0967542827129364,-0.995307683944702,0.00112819112837315,-0.482434034347534,-0.866928279399872,-0.125271022319794,-0.42527037858963,-0.902792513370514,-0.064115010201931,-0.218170344829559,-0.924203157424927,-0.313449114561081,-0.293737471103668,-0.953158497810364,-0.0721611753106117,-0.404020696878433,-0.91030079126358,0.0901105627417564,-0.00262646726332605,-0.994709074497223,-0.102699086070061,-0.469635426998138,-0.882100939750671,-0.0366151444613934,0.524033427238464,-0.709240317344666,0.471558332443237,0.139598533511162,-0.943806409835815,0.299569338560104,-0.0180140100419521,-0.993434131145477,-0.112978987395763,0.29104146361351,-0.950688242912292,0.107176870107651,0.351293444633484,-0.919876992702484,-0.174411579966545,0.108668513596058,-0.926460146903992,-0.360365033149719,0.139598533511162,-0.943806409835815,0.299569338560104,0.524033427238464,-0.709240317344666,0.471558332443237,0.644198715686798,-0.673074901103973,0.363288074731827,0.342238694429398,-0.910581231117249,0.231763675808907,0.108668513596058,-0.926460146903992,-0.360365033149719,0.351293444633484,-0.919876992702484,-0.174411579966545,0.29104146361351,-0.950688242912292,0.107176870107651,-0.0180140100419521,-0.993434131145477,-0.112978987395763,-0.554105699062347,-0.828728556632996,0.0785875916481018,
- -0.259732991456985,-0.934115886688232,0.244880169630051,-0.0180140100419521,-0.993434131145477,-0.112978987395763,-0.293737471103668,-0.953158497810364,-0.0721611753106117,-0.469635426998138,-0.882100939750671,-0.0366151444613934,-0.554105699062347,-0.828728556632996,0.0785875916481018,0.108668513596058,-0.926460146903992,-0.360365033149719,0.342238694429398,-0.910581231117249,0.231763675808907,-0.0967542827129364,-0.995307683944702,0.00112819112837315,-0.218170344829559,-0.924203157424927,-0.313449114561081,0.139598533511162,-0.943806409835815,0.299569338560104,0.108668513596058,-0.926460146903992,-0.360365033149719,-0.218170344829559,-0.924203157424927,-0.313449114561081,-0.181263357400894,-0.983246564865112,0.0192336607724428,-0.0180140100419521,-0.993434131145477,-0.112978987395763,0.139598533511162,-0.943806409835815,0.299569338560104,-0.181263357400894,-0.983246564865112,0.0192336607724428,-0.293737471103668,-0.953158497810364,-0.0721611753106117,-0.404020696878433,-0.91030079126358,0.0901105627417564,-0.456066936254501,-0.882579028606415,0.114268288016319,-0.173593640327454,-0.983820676803589,-0.0442965626716614,-0.00262646726332605,-0.994709074497223,-0.102699086070061,-0.42527037858963,-0.902792513370514,-0.064115010201931,-0.482434034347534,-0.866928279399872,-0.125271022319794,-0.720479667186737,-0.693166494369507,0.0207230579108,-0.451006472110748,-0.875380873680115,0.174073129892349,-0.148112773895264,-0.987415790557861,-0.0554316639900208,-0.42527037858963,-0.902792513370514,-0.064115010201931,-0.451006472110748,-0.875380873680115,0.174073129892349,-0.459453076124191,-0.888132870197296,-0.0110889300704002,-0.404020696878433,-0.91030079126358,0.0901105627417564,-0.148112773895264,-0.987415790557861,-0.0554316639900208,-0.459453076124191,-0.888132870197296,-0.0110889300704002,-0.456066936254501,-0.882579028606415,0.114268288016319,0.581936180591583,-0.785637497901917,0.21005742251873,0.29104146361351,-0.950688242912292,0.107176870107651,-0.259732991456985,-0.934115886688232,0.244880169630051,0.503036439418793,-0.808775126934052,0.304692000150681,
- 0.579367995262146,-0.813794076442719,-0.0455187149345875,0.85209733247757,-0.45581179857254,0.257227003574371,0.644198715686798,-0.673074901103973,0.363288074731827,0.351293444633484,-0.919876992702484,-0.174411579966545,0.823144316673279,-0.392390310764313,0.41044282913208,0.579367995262146,-0.813794076442719,-0.0455187149345875,0.351293444633484,-0.919876992702484,-0.174411579966545,0.524033427238464,-0.709240317344666,0.471558332443237,0.581936180591583,-0.785637497901917,0.21005742251873,0.823144316673279,-0.392390310764313,0.41044282913208,0.524033427238464,-0.709240317344666,0.471558332443237,0.29104146361351,-0.950688242912292,0.107176870107651,0.209236323833466,0.809588730335236,0.548439860343933,0.0798449292778969,0.840388715267181,0.536070644855499,0.784659326076508,0.420205920934677,0.455781519412994,0.851383566856384,0.329370439052582,0.408241510391235,0.878118395805359,-0.418191999197006,0.232429683208466,0.648400187492371,-0.760925948619843,0.0238520465791225,-0.092069111764431,-0.776913821697235,-0.622838914394379,-0.139217987656593,-0.765276551246643,-0.628466665744781,0.648400187492371,-0.760925948619843,0.0238520465791225,0.672064304351807,-0.629071772098541,0.390638381242752,0.183187901973724,-0.709408938884735,0.680574119091034,0.0994959697127342,-0.69649749994278,0.710627794265747,0.968337178230286,0.0409288443624973,0.246268332004547,0.675779938697815,-0.73454886674881,-0.061315231025219,0.851383566856384,0.329370439052582,0.408241510391235,0.784659326076508,0.420205920934677,0.455781519412994,0.675779938697815,-0.73454886674881,-0.061315231025219,0.878118395805359,-0.418191999197006,0.232429683208466,0.632079720497131,0.567369997501373,-0.527794003486633,0.787234842777252,0.399886757135391,-0.469416588544846,0.906270265579224,-0.317743301391602,0.278771668672562,0.823144316673279,-0.392390310764313,0.41044282913208,0.581936180591583,-0.785637497901917,0.21005742251873,0.67418247461319,-0.737798273563385,0.0336408987641335,0.747285604476929,-0.593326449394226,0.299212276935577,0.67418247461319,-0.737798273563385,0.0336408987641335,
- 0.581936180591583,-0.785637497901917,0.21005742251873,0.503036439418793,-0.808775126934052,0.304692000150681,0.699146211147308,-0.714138984680176,-0.0346426293253899,0.95748233795166,-0.0284195505082607,0.287088662385941,0.85209733247757,-0.45581179857254,0.257227003574371,0.579367995262146,-0.813794076442719,-0.0455187149345875,0.906270265579224,-0.317743301391602,0.278771668672562,0.699146211147308,-0.714138984680176,-0.0346426293253899,0.579367995262146,-0.813794076442719,-0.0455187149345875,0.823144316673279,-0.392390310764313,0.41044282913208,-0.530142962932587,-0.824426770210266,0.198164284229279,-0.447414577007294,-0.714520633220673,0.537847995758057,-0.463267028331757,-0.755242705345154,0.463672459125519,-0.354316473007202,-0.916657447814941,0.184929698705673,-0.522076845169067,-0.823734223842621,0.221128314733505,-0.37126687169075,-0.909039795398712,0.189229309558868,-0.183472484350204,-0.955231428146362,0.232101038098335,-0.641520619392395,-0.689777791500092,0.335645496845245,-0.361639082431793,-0.916753113269806,0.169649392366409,-0.522076845169067,-0.823734223842621,0.221128314733505,-0.641520619392395,-0.689777791500092,0.335645496845245,-0.278712272644043,-0.892489790916443,0.35465681552887,-0.530142962932587,-0.824426770210266,0.198164284229279,-0.361639082431793,-0.916753113269806,0.169649392366409,-0.278712272644043,-0.892489790916443,0.35465681552887,-0.447414577007294,-0.714520633220673,0.537847995758057,-0.667275607585907,-0.281765460968018,-0.689457416534424,-0.203644633293152,-0.515789330005646,-0.832159996032715,-0.547658741474152,-0.510859072208405,-0.662640810012817,-0.77964860200882,-0.430471181869507,-0.454799771308899,-0.706027626991272,-0.466417580842972,-0.532897531986237,-0.613194406032562,-0.379027396440506,-0.693059146404266,-0.203644633293152,-0.515789330005646,-0.832159996032715,-0.667275607585907,-0.281765460968018,-0.689457416534424,-0.549793243408203,-0.65276026725769,-0.521182835102081,-0.0908820852637291,-0.764645755290985,-0.638010561466217,-0.613194406032562,-0.379027396440506,-0.693059146404266,
- -0.706027626991272,-0.466417580842972,-0.532897531986237,-0.547658741474152,-0.510859072208405,-0.662640810012817,-0.112924657762051,-0.379379868507385,-0.918324112892151,-0.661052405834198,-0.162808388471603,-0.732463777065277,-0.77964860200882,-0.430471181869507,-0.454799771308899,-0.900151371955872,-0.389225572347641,0.195527479052544,-0.856999337673187,-0.475014090538025,-0.199784696102142,-0.861720383167267,-0.502930104732513,-0.0670763924717903,-0.799252092838287,-0.561726748943329,0.213680565357208,-0.761284828186035,-0.648248374462128,0.0148193668574095,-0.851353704929352,-0.511981725692749,-0.114331290125847,-0.856999337673187,-0.475014090538025,-0.199784696102142,-0.900151371955872,-0.389225572347641,0.195527479052544,-0.809729874134064,-0.564910709857941,0.158787980675697,-0.669333159923553,-0.735521912574768,-0.104884088039398,-0.851353704929352,-0.511981725692749,-0.114331290125847,-0.761284828186035,-0.648248374462128,0.0148193668574095,-0.861720383167267,-0.502930104732513,-0.0670763924717903,-0.909006714820862,-0.315474987030029,-0.272364288568497,-0.794286727905273,-0.585681140422821,0.161512583494186,-0.799252092838287,-0.561726748943329,0.213680565357208,-0.810777604579926,-0.564179658889771,0.156016409397125,-0.794286727905273,-0.59320729970932,0.131200909614563,-0.83380126953125,-0.542812883853912,0.100646607577801,-0.868881464004517,-0.41178485751152,0.274733126163483,-0.642767071723938,-0.757268488407135,-0.115736871957779,-0.360456526279449,-0.869042038917542,-0.338876187801361,-0.506647646427155,-0.759988307952881,-0.407094448804855,-0.745744585990906,-0.613967835903168,-0.258666932582855,-0.360456526279449,-0.869042038917542,-0.338876187801361,-0.261500597000122,-0.800158798694611,-0.539780914783478,-0.378374814987183,-0.641533195972443,-0.667283833026886,-0.506647646427155,-0.759988307952881,-0.407094448804855,-0.261500597000122,-0.800158798694611,-0.539780914783478,-0.161148816347122,-0.576179504394531,-0.801279127597809,-0.184716820716858,-0.252738326787949,-0.949738442897797,-0.378374814987183,-0.641533195972443,-0.667283833026886,
- 0.296621143817902,-0.328335464000702,-0.896778523921967,-0.184716820716858,-0.252738326787949,-0.949738442897797,-0.161148816347122,-0.576179504394531,-0.801279127597809,0.332873284816742,-0.391267716884613,-0.857965648174286,-0.0113517688587308,-0.990814983844757,-0.134747520089149,0.359888851642609,0.179525122046471,-0.91556042432785,0.733428359031677,-0.0831898897886276,-0.674657225608826,-0.621700644493103,-0.670083284378052,0.405557215213776,-0.674197316169739,-0.712492883205414,0.194452866911888,-0.746139109134674,-0.663905620574951,0.050058051943779,-0.76984703540802,-0.618459761142731,0.157617285847664,-0.741970777511597,-0.619990825653076,-0.25512906908989,-0.494253754615784,-0.776684165000916,-0.39048045873642,-0.507724046707153,-0.837761104106903,-0.200929373502731,-0.66268652677536,-0.747971832752228,-0.0372112244367599,-0.494253754615784,-0.776684165000916,-0.39048045873642,-0.321053355932236,-0.862315893173218,-0.391581743955612,-0.304937422275543,-0.812197268009186,-0.497341871261597,-0.507724046707153,-0.837761104106903,-0.200929373502731,-0.321053355932236,-0.862315893173218,-0.391581743955612,-0.186333388090134,-0.640240788459778,-0.74523264169693,-0.000914715230464935,-0.64949095249176,-0.760368764400482,-0.304937422275543,-0.812197268009186,-0.497341871261597,0.20653310418129,-0.507594287395477,-0.836476147174835,-0.000914715230464935,-0.64949095249176,-0.760368764400482,-0.186333388090134,-0.640240788459778,-0.74523264169693,0.297393620014191,-0.253229647874832,-0.920560598373413,-0.0113517688587308,-0.990814983844757,-0.134747520089149,0.670384287834167,-0.0766933485865593,-0.738039970397949,0.425715148448944,-0.342024803161621,-0.837726414203644,-0.76984703540802,-0.618459761142731,0.157617285847664,-0.746139109134674,-0.663905620574951,0.050058051943779,-0.645247936248779,-0.736249923706055,0.203939318656921,-0.682687044143677,-0.65144020318985,0.331004768610001,-0.66268652677536,-0.747971832752228,-0.0372112244367599,-0.507724046707153,-0.837761104106903,-0.200929373502731,-0.573664307594299,-0.599195599555969,-0.558456718921661,
- -0.748026907444,-0.605031847953796,-0.272749483585358,-0.507724046707153,-0.837761104106903,-0.200929373502731,-0.304937422275543,-0.812197268009186,-0.497341871261597,-0.369487196207047,-0.733719170093536,-0.570206463336945,-0.573664307594299,-0.599195599555969,-0.558456718921661,-0.304937422275543,-0.812197268009186,-0.497341871261597,-0.000914715230464935,-0.64949095249176,-0.760368764400482,-0.163132607936859,-0.58100962638855,-0.797380566596985,-0.369487196207047,-0.733719170093536,-0.570206463336945,0.20653310418129,-0.507594287395477,-0.836476147174835,0.323204725980759,-0.28547528386116,-0.902243137359619,-0.163132607936859,-0.58100962638855,-0.797380566596985,-0.000914715230464935,-0.64949095249176,-0.760368764400482,-0.0113517688587308,-0.990814983844757,-0.134747520089149,0.502749562263489,0.08037518709898,-0.860687434673309,0.670384287834167,-0.0766933485865593,-0.738039970397949,-0.682687044143677,-0.65144020318985,0.331004768610001,-0.645247936248779,-0.736249923706055,0.203939318656921,-0.794286727905273,-0.59320729970932,0.131200909614563,-0.810777604579926,-0.564179658889771,0.156016409397125,-0.748026907444,-0.605031847953796,-0.272749483585358,-0.573664307594299,-0.599195599555969,-0.558456718921661,-0.360456526279449,-0.869042038917542,-0.338876187801361,-0.642767071723938,-0.757268488407135,-0.115736871957779,-0.573664307594299,-0.599195599555969,-0.558456718921661,-0.369487196207047,-0.733719170093536,-0.570206463336945,-0.261500597000122,-0.800158798694611,-0.539780914783478,-0.360456526279449,-0.869042038917542,-0.338876187801361,-0.369487196207047,-0.733719170093536,-0.570206463336945,-0.163132607936859,-0.58100962638855,-0.797380566596985,-0.161148816347122,-0.576179504394531,-0.801279127597809,-0.261500597000122,-0.800158798694611,-0.539780914783478,-0.161148816347122,-0.576179504394531,-0.801279127597809,-0.163132607936859,-0.58100962638855,-0.797380566596985,0.323204725980759,-0.28547528386116,-0.902243137359619,0.332873284816742,-0.391267716884613,-0.857965648174286,0.733428359031677,-0.0831898897886276,-0.674657225608826,
- 0.502749562263489,0.08037518709898,-0.860687434673309,-0.0113517688587308,-0.990814983844757,-0.134747520089149,-0.600581169128418,-0.333264261484146,-0.726799309253693,-0.472709953784943,-0.363700926303864,-0.802662491798401,-0.654347479343414,-0.314502954483032,-0.687689781188965,-0.643164098262787,-0.313883990049362,-0.698438823223114,-0.0241557862609625,-0.260148614645004,-0.965266406536102,0.328967303037643,-0.369106560945511,-0.869218647480011,0.648890137672424,-0.307067453861237,-0.696169018745422,-0.0531628057360649,-0.326263844966888,-0.94378262758255,-0.525270700454712,-0.383070349693298,-0.759833991527557,-0.465625435113907,-0.382996797561646,-0.797813653945923,-0.415664315223694,-0.191851913928986,-0.889053523540497,-0.559486210346222,-0.269043117761612,-0.783958494663239,0.0770476087927818,-0.323224008083344,-0.943180739879608,0.40797945857048,-0.347867429256439,-0.844121515750885,0.358942747116089,-0.459523350000381,-0.812402904033661,0.0266168937087059,-0.239820137619972,-0.970452487468719,-0.559486210346222,-0.269043117761612,-0.783958494663239,-0.415664315223694,-0.191851913928986,-0.889053523540497,-0.41437566280365,-0.354642897844315,-0.838165462017059,-0.595426976680756,-0.3124158680439,-0.740177690982819,0.0266168937087059,-0.239820137619972,-0.970452487468719,0.358942747116089,-0.459523350000381,-0.812402904033661,0.326039046049118,-0.195304736495018,-0.924962043762207,0.0455448366701603,-0.289638817310333,-0.956051826477051,-0.595426976680756,-0.3124158680439,-0.740177690982819,-0.41437566280365,-0.354642897844315,-0.838165462017059,-0.472709953784943,-0.363700926303864,-0.802662491798401,-0.600581169128418,-0.333264261484146,-0.726799309253693,0.0455448366701603,-0.289638817310333,-0.956051826477051,0.326039046049118,-0.195304736495018,-0.924962043762207,0.328967303037643,-0.369106560945511,-0.869218647480011,-0.0241557862609625,-0.260148614645004,-0.965266406536102,-0.794286727905273,-0.59320729970932,0.131200909614563,-0.642767071723938,-0.757268488407135,-0.115736871957779,-0.745744585990906,-0.613967835903168,-0.258666932582855,
- -0.83380126953125,-0.542812883853912,0.100646607577801,-0.746139109134674,-0.663905620574951,0.050058051943779,-0.674197316169739,-0.712492883205414,0.194452866911888,-0.741970777511597,-0.619990825653076,-0.25512906908989,-0.66268652677536,-0.747971832752228,-0.0372112244367599,-0.645247936248779,-0.736249923706055,0.203939318656921,-0.746139109134674,-0.663905620574951,0.050058051943779,-0.66268652677536,-0.747971832752228,-0.0372112244367599,-0.748026907444,-0.605031847953796,-0.272749483585358,-0.794286727905273,-0.59320729970932,0.131200909614563,-0.645247936248779,-0.736249923706055,0.203939318656921,-0.748026907444,-0.605031847953796,-0.272749483585358,-0.642767071723938,-0.757268488407135,-0.115736871957779,-0.415664315223694,-0.191851913928986,-0.889053523540497,0.0266168937087059,-0.239820137619972,-0.970452487468719,0.0455448366701603,-0.289638817310333,-0.956051826477051,-0.41437566280365,-0.354642897844315,-0.838165462017059,-0.472709953784943,-0.363700926303864,-0.802662491798401,-0.41437566280365,-0.354642897844315,-0.838165462017059,0.0455448366701603,-0.289638817310333,-0.956051826477051,-0.0241557862609625,-0.260148614645004,-0.965266406536102,-0.654347479343414,-0.314502954483032,-0.687689781188965,-0.472709953784943,-0.363700926303864,-0.802662491798401,-0.0241557862609625,-0.260148614645004,-0.965266406536102,-0.0531628057360649,-0.326263844966888,-0.94378262758255,-0.415664315223694,-0.191851913928986,-0.889053523540497,-0.465625435113907,-0.382996797561646,-0.797813653945923,0.0770476087927818,-0.323224008083344,-0.943180739879608,0.0266168937087059,-0.239820137619972,-0.970452487468719,0.648890137672424,-0.307067453861237,-0.696169018745422,0.328967303037643,-0.369106560945511,-0.869218647480011,-0.491265743970871,0.551003456115723,-0.674576282501221,0.358942747116089,-0.459523350000381,-0.812402904033661,0.40797945857048,-0.347867429256439,-0.844121515750885,0.504010617733002,-0.538774907588959,0.675051867961884,0.326039046049118,-0.195304736495018,-0.924962043762207,0.358942747116089,-0.459523350000381,-0.812402904033661,
- -0.491265743970871,0.551003456115723,-0.674576282501221,0.328967303037643,-0.369106560945511,-0.869218647480011,0.326039046049118,-0.195304736495018,-0.924962043762207,-0.491265743970871,0.551003456115723,-0.674576282501221,0.332873284816742,-0.391267716884613,-0.857965648174286,0.323204725980759,-0.28547528386116,-0.902243137359619,0.502749562263489,0.08037518709898,-0.860687434673309,0.733428359031677,-0.0831898897886276,-0.674657225608826,0.359888851642609,0.179525122046471,-0.91556042432785,0.296621143817902,-0.328335464000702,-0.896778523921967,0.332873284816742,-0.391267716884613,-0.857965648174286,0.733428359031677,-0.0831898897886276,-0.674657225608826,0.670384287834167,-0.0766933485865593,-0.738039970397949,0.20653310418129,-0.507594287395477,-0.836476147174835,0.297393620014191,-0.253229647874832,-0.920560598373413,0.425715148448944,-0.342024803161621,-0.837726414203644,0.502749562263489,0.08037518709898,-0.860687434673309,0.323204725980759,-0.28547528386116,-0.902243137359619,0.20653310418129,-0.507594287395477,-0.836476147174835,0.670384287834167,-0.0766933485865593,-0.738039970397949,0.0684579983353615,-0.965142846107483,-0.252611964941025,0.0323399715125561,-0.957705497741699,-0.28592723608017,0.0131716635078192,-0.974443733692169,-0.2242451608181,0.0818624868988991,-0.988480925559998,-0.127295523881912,-0.13516004383564,-0.973911285400391,0.182287499308586,0.00936375558376312,-0.97099506855011,0.238916248083115,-0.0178656298667192,-0.944315910339355,0.328554898500443,-0.304795026779175,-0.925153136253357,0.226256132125854,-0.120099902153015,-0.947312593460083,0.296942681074142,0.0259089767932892,-0.928903102874756,0.369415640830994,0.274296671152115,-0.867720007896423,0.414516061544418,0.049265518784523,-0.905336260795593,0.42182844877243,0.460321485996246,-0.793682336807251,0.397709012031555,0.213317632675171,-0.899783730506897,0.380637347698212,0.049265518784523,-0.905336260795593,0.42182844877243,0.274296671152115,-0.867720007896423,0.414516061544418,0.213317632675171,-0.899783730506897,0.380637347698212,
- 0.460321485996246,-0.793682336807251,0.397709012031555,0.431901812553406,-0.861133098602295,0.268161863088608,0.248431637883186,-0.957246422767639,0.148192584514618,0.248431637883186,-0.957246422767639,0.148192584514618,0.431901812553406,-0.861133098602295,0.268161863088608,0.249571859836578,-0.968323886394501,-0.00791706796735525,0.0606175288558006,-0.996977210044861,-0.0486009903252125,0.0606175288558006,-0.996977210044861,-0.0486009903252125,0.249571859836578,-0.968323886394501,-0.00791706796735525,0.221755683422089,-0.965113401412964,-0.139214649796486,0.0472963154315948,-0.992656350135803,-0.111338898539543,0.0472963154315948,-0.992656350135803,-0.111338898539543,0.221755683422089,-0.965113401412964,-0.139214649796486,0.381106525659561,-0.916835069656372,-0.119043610990047,0.137343138456345,-0.98477828502655,-0.106529995799065,0.137343138456345,-0.98477828502655,-0.106529995799065,0.381106525659561,-0.916835069656372,-0.119043610990047,0.898409068584442,0.378831118345261,-0.222144678235054,0.0323399715125561,-0.957705497741699,-0.28592723608017,0.0519749671220779,-0.938431739807129,-0.341532588005066,0.0286223888397217,-0.97545063495636,-0.218350559473038,0.0131716635078192,-0.974443733692169,-0.2242451608181,0.00936375558376312,-0.97099506855011,0.238916248083115,-0.0907752364873886,-0.957594394683838,0.273446381092072,-0.07621119171381,-0.952968537807465,0.293330639600754,-0.0178656298667192,-0.944315910339355,0.328554898500443,0.0259089767932892,-0.928903102874756,0.369415640830994,-0.0826013311743736,-0.960425734519959,0.26600655913353,0.111749112606049,-0.920738220214844,0.373836010694504,0.274296671152115,-0.867720007896423,0.414516061544418,0.345099270343781,-0.815126180648804,0.46526974439621,0.460321485996246,-0.793682336807251,0.397709012031555,0.274296671152115,-0.867720007896423,0.414516061544418,0.111749112606049,-0.920738220214844,0.373836010694504,0.460321485996246,-0.793682336807251,0.397709012031555,0.345099270343781,-0.815126180648804,0.46526974439621,0.427806109189987,-0.856328010559082,0.289282470941544,
- 0.431901812553406,-0.861133098602295,0.268161863088608,0.431901812553406,-0.861133098602295,0.268161863088608,0.427806109189987,-0.856328010559082,0.289282470941544,0.264445960521698,-0.962118029594421,0.0663135051727295,0.249571859836578,-0.968323886394501,-0.00791706796735525,0.249571859836578,-0.968323886394501,-0.00791706796735525,0.264445960521698,-0.962118029594421,0.0663135051727295,0.181897893548012,-0.982186198234558,-0.0471541434526443,0.221755683422089,-0.965113401412964,-0.139214649796486,0.221755683422089,-0.965113401412964,-0.139214649796486,0.181897893548012,-0.982186198234558,-0.0471541434526443,0.308226436376572,-0.947919487953186,-0.0802820846438408,0.381106525659561,-0.916835069656372,-0.119043610990047,0.381106525659561,-0.916835069656372,-0.119043610990047,0.308226436376572,-0.947919487953186,-0.0802820846438408,0.898409068584442,0.378831118345261,-0.222144678235054,0.0519749671220779,-0.938431739807129,-0.341532588005066,0.110595412552357,-0.955119490623474,-0.274801015853882,0.0604203753173351,-0.984388113021851,-0.165316089987755,0.0286223888397217,-0.97545063495636,-0.218350559473038,-0.0907752364873886,-0.957594394683838,0.273446381092072,0.0689136758446693,-0.96650367975235,0.247227668762207,0.188041865825653,-0.901231527328491,0.390412598848343,-0.07621119171381,-0.952968537807465,0.293330639600754,-0.0826013311743736,-0.960425734519959,0.26600655913353,0.143195956945419,-0.930327594280243,0.337617456912994,0.255441933870316,-0.860174834728241,0.441416770219803,0.111749112606049,-0.920738220214844,0.373836010694504,0.518805503845215,-0.785436987876892,0.337534666061401,0.345099270343781,-0.815126180648804,0.46526974439621,0.111749112606049,-0.920738220214844,0.373836010694504,0.255441933870316,-0.860174834728241,0.441416770219803,0.345099270343781,-0.815126180648804,0.46526974439621,0.518805503845215,-0.785436987876892,0.337534666061401,0.59404844045639,-0.796574711799622,0.112139523029327,0.427806109189987,-0.856328010559082,0.289282470941544,0.427806109189987,-0.856328010559082,0.289282470941544,
- 0.59404844045639,-0.796574711799622,0.112139523029327,0.383634209632874,-0.915754735469818,-0.119240157306194,0.264445960521698,-0.962118029594421,0.0663135051727295,0.264445960521698,-0.962118029594421,0.0663135051727295,0.383634209632874,-0.915754735469818,-0.119240157306194,0.337105959653854,-0.918935298919678,-0.204737797379494,0.181897893548012,-0.982186198234558,-0.0471541434526443,0.181897893548012,-0.982186198234558,-0.0471541434526443,0.337105959653854,-0.918935298919678,-0.204737797379494,0.49135160446167,-0.855213046073914,-0.164876461029053,0.308226436376572,-0.947919487953186,-0.0802820846438408,0.308226436376572,-0.947919487953186,-0.0802820846438408,0.49135160446167,-0.855213046073914,-0.164876461029053,0.898409068584442,0.378831118345261,-0.222144678235054,0.110595412552357,-0.955119490623474,-0.274801015853882,0.230839103460312,-0.966624081134796,-0.111136503517628,0.194633021950722,-0.980112195014954,-0.0387053713202477,0.0604203753173351,-0.984388113021851,-0.165316089987755,0.0211673658341169,-0.761773943901062,0.647496998310089,0.188041865825653,-0.901231527328491,0.390412598848343,0.0689136758446693,-0.96650367975235,0.247227668762207,0.0899156033992767,-0.902234792709351,0.421767354011536,0.143195956945419,-0.930327594280243,0.337617456912994,0.12883372604847,-0.798581659793854,0.587936520576477,0.375020623207092,-0.594874382019043,0.710973978042603,0.255441933870316,-0.860174834728241,0.441416770219803,0.375020623207092,-0.594874382019043,0.710973978042603,0.53881174325943,-0.43441367149353,0.721780300140381,0.518805503845215,-0.785436987876892,0.337534666061401,0.255441933870316,-0.860174834728241,0.441416770219803,0.518805503845215,-0.785436987876892,0.337534666061401,0.53881174325943,-0.43441367149353,0.721780300140381,0.580684781074524,-0.586942672729492,0.56418389081955,0.59404844045639,-0.796574711799622,0.112139523029327,0.59404844045639,-0.796574711799622,0.112139523029327,0.580684781074524,-0.586942672729492,0.56418389081955,0.486843168735504,-0.727198898792267,0.483906477689743,0.383634209632874,-0.915754735469818,-0.119240157306194,
- 0.383634209632874,-0.915754735469818,-0.119240157306194,0.486843168735504,-0.727198898792267,0.483906477689743,0.469210654497147,-0.831675171852112,0.296913951635361,0.337105959653854,-0.918935298919678,-0.204737797379494,0.337105959653854,-0.918935298919678,-0.204737797379494,0.469210654497147,-0.831675171852112,0.296913951635361,0.55377209186554,-0.766620993614197,0.325005888938904,0.49135160446167,-0.855213046073914,-0.164876461029053,0.49135160446167,-0.855213046073914,-0.164876461029053,0.55377209186554,-0.766620993614197,0.325005888938904,0.898409068584442,0.378831118345261,-0.222144678235054,0.519376277923584,-0.362623751163483,0.773790895938873,0.475077390670776,-0.383821070194244,0.79182243347168,0.379382431507111,-0.531857907772064,0.75709730386734,0.473086535930634,-0.407802045345306,0.780952513217926,0.473086535930634,-0.407802045345306,0.780952513217926,0.379382431507111,-0.531857907772064,0.75709730386734,-0.622424304485321,0.313743710517883,0.717044591903687,0.503506898880005,-0.368333786725998,0.781544029712677,0.541774153709412,-0.36420351266861,0.757520079612732,0.547445058822632,-0.397097855806351,0.736625552177429,0.60278707742691,-0.431620836257935,0.671082079410553,0.60278707742691,-0.431620836257935,0.671082079410553,0.547445058822632,-0.397097855806351,0.736625552177429,-0.622424304485321,0.313743710517883,0.717044591903687,0.541774153709412,-0.36420351266861,0.757520079612732,0.542563438415527,-0.32793915271759,0.773356854915619,0.53093558549881,-0.404244869947433,0.74477744102478,0.547445058822632,-0.397097855806351,0.736625552177429,0.547445058822632,-0.397097855806351,0.736625552177429,0.53093558549881,-0.404244869947433,0.74477744102478,-0.622424304485321,0.313743710517883,0.717044591903687,0.542563438415527,-0.32793915271759,0.773356854915619,0.519376277923584,-0.362623751163483,0.773790895938873,0.473086535930634,-0.407802045345306,0.780952513217926,0.53093558549881,-0.404244869947433,0.74477744102478,0.53093558549881,-0.404244869947433,0.74477744102478,0.473086535930634,-0.407802045345306,0.780952513217926,
- -0.622424304485321,0.313743710517883,0.717044591903687,0.0286223888397217,-0.97545063495636,-0.218350559473038,0.0604203753173351,-0.984388113021851,-0.165316089987755,-0.0520210154354572,-0.998096704483032,-0.0331188105046749,-0.0932122319936752,-0.990400791168213,0.102068029344082,0.0131716635078192,-0.974443733692169,-0.2242451608181,0.0286223888397217,-0.97545063495636,-0.218350559473038,-0.0932122319936752,-0.990400791168213,0.102068029344082,0.0226799994707108,-0.999733209609985,0.00438696891069412,0.0818624868988991,-0.988480925559998,-0.127295523881912,0.0131716635078192,-0.974443733692169,-0.2242451608181,0.0226799994707108,-0.999733209609985,0.00438696891069412,0.0300714336335659,-0.996238887310028,0.0812652558088303,0.0604203753173351,-0.984388113021851,-0.165316089987755,0.194633021950722,-0.980112195014954,-0.0387053713202477,0.162056356668472,-0.964354157447815,0.209186434745789,-0.0520210154354572,-0.998096704483032,-0.0331188105046749,-0.0932122319936752,-0.990400791168213,0.102068029344082,-0.0520210154354572,-0.998096704483032,-0.0331188105046749,0.0689136758446693,-0.96650367975235,0.247227668762207,-0.0907752364873886,-0.957594394683838,0.273446381092072,0.0226799994707108,-0.999733209609985,0.00438696891069412,-0.0932122319936752,-0.990400791168213,0.102068029344082,-0.0907752364873886,-0.957594394683838,0.273446381092072,0.00936375558376312,-0.97099506855011,0.238916248083115,0.0300714336335659,-0.996238887310028,0.0812652558088303,0.0226799994707108,-0.999733209609985,0.00438696891069412,0.00936375558376312,-0.97099506855011,0.238916248083115,-0.13516004383564,-0.973911285400391,0.182287499308586,-0.0520210154354572,-0.998096704483032,-0.0331188105046749,0.162056356668472,-0.964354157447815,0.209186434745789,0.0899156033992767,-0.902234792709351,0.421767354011536,0.0689136758446693,-0.96650367975235,0.247227668762207,-0.07621119171381,-0.952968537807465,0.293330639600754,0.188041865825653,-0.901231527328491,0.390412598848343,0.143195956945419,-0.930327594280243,0.337617456912994,-0.0826013311743736,-0.960425734519959,0.26600655913353,
- -0.0178656298667192,-0.944315910339355,0.328554898500443,-0.07621119171381,-0.952968537807465,0.293330639600754,-0.0826013311743736,-0.960425734519959,0.26600655913353,0.0259089767932892,-0.928903102874756,0.369415640830994,-0.304795026779175,-0.925153136253357,0.226256132125854,-0.0178656298667192,-0.944315910339355,0.328554898500443,0.0259089767932892,-0.928903102874756,0.369415640830994,-0.120099902153015,-0.947312593460083,0.296942681074142,0.143195956945419,-0.930327594280243,0.337617456912994,0.188041865825653,-0.901231527328491,0.390412598848343,0.0211673658341169,-0.761773943901062,0.647496998310089,0.12883372604847,-0.798581659793854,0.587936520576477,0.131195217370987,-0.706611812114716,-0.695332646369934,0.448596060276031,-0.708349764347076,-0.544979095458984,0.134326115250587,-0.825085639953613,-0.548808038234711,0.369853317737579,-0.740275859832764,-0.561426937580109,0.154227748513222,-0.784576773643494,-0.600544154644012,0.486073732376099,-0.686129987239838,-0.54125589132309,0.369853317737579,-0.740275859832764,-0.561426937580109,0.134326115250587,-0.825085639953613,-0.548808038234711,0.53085869550705,-0.764430284500122,-0.365835100412369,0.528066694736481,-0.752771854400635,-0.393039643764496,0.486073732376099,-0.686129987239838,-0.54125589132309,0.154227748513222,-0.784576773643494,-0.600544154644012,0.652296483516693,-0.750698626041412,0.104694962501526,0.633943557739258,-0.727724134922028,0.261788338422775,0.395832002162933,-0.890382468700409,0.224802821874619,0.680089473724365,-0.472811579704285,0.560292422771454,0.459209859371185,-0.752589881420136,0.471947968006134,0.676750302314758,-0.365516245365143,0.63906729221344,0.680089473724365,-0.472811579704285,0.560292422771454,0.395832002162933,-0.890382468700409,0.224802821874619,0.1989376693964,-0.78578245639801,0.585636258125305,0.282362520694733,-0.563391387462616,0.77644157409668,-0.532589733600616,-0.637414932250977,-0.556821703910828,0.185483530163765,-0.890632390975952,-0.415174663066864,0.288081377744675,-0.72535240650177,-0.625198423862457,
- 0.384629786014557,-0.717662751674652,-0.580534338951111,0.305743724107742,-0.746606111526489,-0.59084689617157,0.500020265579224,-0.691691935062408,-0.521096885204315,0.403595209121704,-0.652513682842255,-0.641355454921722,0.305743724107742,-0.746606111526489,-0.59084689617157,0.384629786014557,-0.717662751674652,-0.580534338951111,0.544283986091614,-0.713259637355804,-0.441605895757675,0.452738136053085,-0.815678775310516,-0.360133826732636,0.403595209121704,-0.652513682842255,-0.641355454921722,0.500020265579224,-0.691691935062408,-0.521096885204315,0.601103127002716,-0.75781375169754,0.253758817911148,0.705280363559723,-0.706268608570099,-0.0613552741706371,0.742812097072601,-0.544482529163361,0.38957554101944,0.79837840795517,-0.498882710933685,0.337206214666367,0.752675354480743,-0.332043349742889,0.568530559539795,0.644304990768433,-0.572238862514496,0.507359564304352,0.79837840795517,-0.498882710933685,0.337206214666367,0.742812097072601,-0.544482529163361,0.38957554101944,0.193756505846977,-0.634842991828918,0.747952401638031,0.253138661384583,-0.694477796554565,0.673514246940613,-0.532589733600616,-0.637414932250977,-0.556821703910828,0.288081377744675,-0.72535240650177,-0.625198423862457,0.358225345611572,-0.794244527816772,-0.490765184164047,0.275128304958344,-0.787371754646301,-0.551679491996765,0.384629786014557,-0.717662751674652,-0.580534338951111,0.344629496335983,-0.726173162460327,-0.594897508621216,0.500020265579224,-0.691691935062408,-0.521096885204315,0.384629786014557,-0.717662751674652,-0.580534338951111,0.275128304958344,-0.787371754646301,-0.551679491996765,0.459650903940201,-0.818464517593384,-0.344727367162704,0.544283986091614,-0.713259637355804,-0.441605895757675,0.500020265579224,-0.691691935062408,-0.521096885204315,0.344629496335983,-0.726173162460327,-0.594897508621216,0.705280363559723,-0.706268608570099,-0.0613552741706371,0.57781994342804,-0.774173855781555,0.258416563272476,0.522508323192596,-0.764736890792847,0.377044796943665,0.742812097072601,-0.544482529163361,0.38957554101944,
- 0.523577928543091,-0.710561215877533,0.470073342323303,0.752675354480743,-0.332043349742889,0.568530559539795,0.742812097072601,-0.544482529163361,0.38957554101944,0.522508323192596,-0.764736890792847,0.377044796943665,0.253138661384583,-0.694477796554565,0.673514246940613,0.212698996067047,-0.49957263469696,0.839753806591034,-0.532589733600616,-0.637414932250977,-0.556821703910828,0.358225345611572,-0.794244527816772,-0.490765184164047,0.131195217370987,-0.706611812114716,-0.695332646369934,0.369853317737579,-0.740275859832764,-0.561426937580109,0.275128304958344,-0.787371754646301,-0.551679491996765,0.369853317737579,-0.740275859832764,-0.561426937580109,0.486073732376099,-0.686129987239838,-0.54125589132309,0.344629496335983,-0.726173162460327,-0.594897508621216,0.275128304958344,-0.787371754646301,-0.551679491996765,0.528066694736481,-0.752771854400635,-0.393039643764496,0.459650903940201,-0.818464517593384,-0.344727367162704,0.344629496335983,-0.726173162460327,-0.594897508621216,0.486073732376099,-0.686129987239838,-0.54125589132309,0.57781994342804,-0.774173855781555,0.258416563272476,0.652296483516693,-0.750698626041412,0.104694962501526,0.680089473724365,-0.472811579704285,0.560292422771454,0.522508323192596,-0.764736890792847,0.377044796943665,0.680089473724365,-0.472811579704285,0.560292422771454,0.676750302314758,-0.365516245365143,0.63906729221344,0.523577928543091,-0.710561215877533,0.470073342323303,0.522508323192596,-0.764736890792847,0.377044796943665,0.212698996067047,-0.49957263469696,0.839753806591034,0.1989376693964,-0.78578245639801,0.585636258125305,-0.532589733600616,-0.637414932250977,-0.556821703910828,0.266352236270905,-0.946117997169495,0.184166744351387,0.234952241182327,-0.952447593212128,0.194013208150864,0.226531058549881,-0.965019047260284,0.131992563605309,0.247342869639397,-0.947266459465027,0.203734382987022,0.247342869639397,-0.947266459465027,0.203734382987022,0.226531058549881,-0.965019047260284,0.131992563605309,0.227545768022537,-0.953365981578827,0.19828374683857,0.398998081684113,-0.823809504508972,0.402664303779602,
- 0.398998081684113,-0.823809504508972,0.402664303779602,0.227545768022537,-0.953365981578827,0.19828374683857,0.260183781385422,-0.863312602043152,0.432430267333984,0.44647616147995,-0.626818180084229,0.638559520244598,0.44647616147995,-0.626818180084229,0.638559520244598,0.260183781385422,-0.863312602043152,0.432430267333984,-0.22091256082058,0.47008752822876,0.854526400566101,0.338417261838913,-0.923296391963959,0.181652367115021,0.320113450288773,-0.918978869915009,0.230228587985039,0.293182402849197,-0.923076033592224,0.248947471380234,0.399366706609726,-0.910754561424255,0.105035178363323,0.399366706609726,-0.910754561424255,0.105035178363323,0.293182402849197,-0.923076033592224,0.248947471380234,0.381567686796188,-0.862687766551971,0.33192765712738,0.598787665367126,-0.783827841281891,0.164521604776382,0.598787665367126,-0.783827841281891,0.164521604776382,0.381567686796188,-0.862687766551971,0.33192765712738,0.553983271121979,-0.653126180171967,0.516264259815216,0.770009815692902,-0.565494954586029,0.29546645283699,0.770009815692902,-0.565494954586029,0.29546645283699,0.553983271121979,-0.653126180171967,0.516264259815216,-0.22091256082058,0.47008752822876,0.854526400566101,0.320113450288773,-0.918978869915009,0.230228587985039,0.151250764727592,-0.954476654529572,0.257094472646713,0.288561373949051,-0.940746426582336,0.178125023841858,0.293182402849197,-0.923076033592224,0.248947471380234,0.293182402849197,-0.923076033592224,0.248947471380234,0.288561373949051,-0.940746426582336,0.178125023841858,0.375241279602051,-0.889384686946869,0.261130124330521,0.381567686796188,-0.862687766551971,0.33192765712738,0.381567686796188,-0.862687766551971,0.33192765712738,0.375241279602051,-0.889384686946869,0.261130124330521,0.440473884344101,-0.745826840400696,0.499725013971329,0.553983271121979,-0.653126180171967,0.516264259815216,0.553983271121979,-0.653126180171967,0.516264259815216,0.440473884344101,-0.745826840400696,0.499725013971329,-0.22091256082058,0.47008752822876,0.854526400566101,0.151250764727592,-0.954476654529572,0.257094472646713,
- 0.266352236270905,-0.946117997169495,0.184166744351387,0.247342869639397,-0.947266459465027,0.203734382987022,0.288561373949051,-0.940746426582336,0.178125023841858,0.288561373949051,-0.940746426582336,0.178125023841858,0.247342869639397,-0.947266459465027,0.203734382987022,0.398998081684113,-0.823809504508972,0.402664303779602,0.375241279602051,-0.889384686946869,0.261130124330521,0.375241279602051,-0.889384686946869,0.261130124330521,0.398998081684113,-0.823809504508972,0.402664303779602,0.44647616147995,-0.626818180084229,0.638559520244598,0.440473884344101,-0.745826840400696,0.499725013971329,0.440473884344101,-0.745826840400696,0.499725013971329,0.44647616147995,-0.626818180084229,0.638559520244598,-0.22091256082058,0.47008752822876,0.854526400566101,0.417027562856674,-0.906264364719391,0.0690864026546478,0.452738136053085,-0.815678775310516,-0.360133826732636,0.544283986091614,-0.713259637355804,-0.441605895757675,0.598843157291412,-0.744661092758179,-0.294731885194778,0.518037557601929,-0.826379477977753,-0.22075828909874,0.528066694736481,-0.752771854400635,-0.393039643764496,0.53085869550705,-0.764430284500122,-0.365835100412369,0.756309568881989,-0.650219142436981,0.0721871107816696,0.598289370536804,-0.800699532032013,0.0304974932223558,0.459650903940201,-0.818464517593384,-0.344727367162704,0.528066694736481,-0.752771854400635,-0.393039643764496,0.518037557601929,-0.826379477977753,-0.22075828909874,0.598289370536804,-0.800699532032013,0.0304974932223558,0.598843157291412,-0.744661092758179,-0.294731885194778,0.544283986091614,-0.713259637355804,-0.441605895757675,0.459650903940201,-0.818464517593384,-0.344727367162704,0.601103127002716,-0.75781375169754,0.253758817911148,0.417027562856674,-0.906264364719391,0.0690864026546478,0.598843157291412,-0.744661092758179,-0.294731885194778,0.705280363559723,-0.706268608570099,-0.0613552741706371,0.652296483516693,-0.750698626041412,0.104694962501526,0.518037557601929,-0.826379477977753,-0.22075828909874,0.756309568881989,-0.650219142436981,0.0721871107816696,0.633943557739258,-0.727724134922028,0.261788338422775,
- 0.57781994342804,-0.774173855781555,0.258416563272476,0.598289370536804,-0.800699532032013,0.0304974932223558,0.518037557601929,-0.826379477977753,-0.22075828909874,0.652296483516693,-0.750698626041412,0.104694962501526,0.705280363559723,-0.706268608570099,-0.0613552741706371,0.598843157291412,-0.744661092758179,-0.294731885194778,0.598289370536804,-0.800699532032013,0.0304974932223558,0.57781994342804,-0.774173855781555,0.258416563272476,0.212698996067047,-0.49957263469696,0.839753806591034,0.253138661384583,-0.694477796554565,0.673514246940613,0.505622148513794,-0.558292806148529,0.65776538848877,0.396878182888031,-0.616048157215118,0.680420756340027,0.253138661384583,-0.694477796554565,0.673514246940613,0.193756505846977,-0.634842991828918,0.747952401638031,0.429846704006195,-0.608197927474976,0.667328357696533,0.505622148513794,-0.558292806148529,0.65776538848877,0.282362520694733,-0.563391387462616,0.77644157409668,0.1989376693964,-0.78578245639801,0.585636258125305,0.445206761360168,-0.604776561260223,0.660330474376678,0.393657207489014,-0.638484418392181,0.661340892314911,0.396878182888031,-0.616048157215118,0.680420756340027,0.445206761360168,-0.604776561260223,0.660330474376678,0.1989376693964,-0.78578245639801,0.585636258125305,0.212698996067047,-0.49957263469696,0.839753806591034,0.396878182888031,-0.616048157215118,0.680420756340027,0.505622148513794,-0.558292806148529,0.65776538848877,0.752675354480743,-0.332043349742889,0.568530559539795,0.523577928543091,-0.710561215877533,0.470073342323303,0.505622148513794,-0.558292806148529,0.65776538848877,0.429846704006195,-0.608197927474976,0.667328357696533,0.644304990768433,-0.572238862514496,0.507359564304352,0.752675354480743,-0.332043349742889,0.568530559539795,0.393657207489014,-0.638484418392181,0.661340892314911,0.445206761360168,-0.604776561260223,0.660330474376678,0.676750302314758,-0.365516245365143,0.63906729221344,0.459209859371185,-0.752589881420136,0.471947968006134,0.523577928543091,-0.710561215877533,0.470073342323303,0.676750302314758,-0.365516245365143,0.63906729221344,
- 0.445206761360168,-0.604776561260223,0.660330474376678,0.396878182888031,-0.616048157215118,0.680420756340027,0.078060083091259,-0.993369102478027,-0.0844075009226799,0.216424345970154,-0.942005574703217,-0.256488084793091,0.116238072514534,-0.787542939186096,-0.605198264122009,0.193160057067871,-0.828465163707733,-0.525675475597382,0.13180710375309,-0.845759689807892,-0.517027616500854,0.0843670144677162,-0.857529878616333,-0.507468938827515,0.0949610844254494,-0.834681332111359,-0.54248458147049,0.0477864220738411,-0.824066281318665,-0.56447446346283,0.0308682136237621,-0.909255504608154,-0.415092259645462,0.140574485063553,-0.953818261623383,-0.265460997819901,0.119518354535103,-0.930348455905914,-0.346651494503021,0.174119338393211,-0.952526748180389,-0.249750733375549,-0.204111739993095,-0.885669767856598,-0.417046099901199,-0.461966127157211,-0.704021751880646,-0.539389252662659,-0.486837923526764,-0.745258867740631,-0.455607414245605,-0.228527516126633,-0.870236098766327,-0.436422318220139,-0.461966127157211,-0.704021751880646,-0.539389252662659,-0.482799649238586,-0.710604071617126,-0.511806964874268,-0.468173623085022,-0.741129100322723,-0.481187373399735,-0.486837923526764,-0.745258867740631,-0.455607414245605,0.0934029594063759,-0.94800478219986,-0.304241716861725,0.0779941454529762,-0.920316934585571,-0.38331925868988,0.213453739881516,-0.930845439434052,-0.296587646007538,0.196556717157364,-0.97284322977066,-0.122236251831055,0.119725003838539,-0.781170248985291,-0.612730801105499,0.114659033715725,-0.816938877105713,-0.565211594104767,0.0858275219798088,-0.825982570648193,-0.557123482227325,0.143240034580231,-0.76774537563324,-0.624539434909821,0.259098798036575,-0.74239844083786,-0.617828845977783,0.0739864408969879,-0.982676386833191,-0.169921070337296,0.15703073143959,-0.957991540431976,-0.239987045526505,0.140363231301308,-0.888994216918945,-0.435875594615936,-0.255059391260147,-0.899153113365173,-0.355624049901962,-0.435340940952301,-0.693632960319519,-0.573891699314117,-0.406598150730133,-0.705767273902893,-0.58014702796936,
- -0.18523782491684,-0.873514473438263,-0.450177043676376,-0.435340940952301,-0.693632960319519,-0.573891699314117,-0.428987503051758,-0.707494854927063,-0.561623394489288,-0.416849136352539,-0.691094517707825,-0.590444922447205,-0.406598150730133,-0.705767273902893,-0.58014702796936,0.196556717157364,-0.97284322977066,-0.122236251831055,0.213453739881516,-0.930845439434052,-0.296587646007538,0.0915432572364807,-0.916671276092529,-0.389016300439835,0.0814641639590263,-0.923566818237305,-0.374683976173401,0.0670250058174133,-0.866883039474487,-0.493985384702683,0.041612520813942,-0.876920700073242,-0.478830486536026,0.114659033715725,-0.816938877105713,-0.565211594104767,0.119725003838539,-0.781170248985291,-0.612730801105499,0.140363231301308,-0.888994216918945,-0.435875594615936,0.15703073143959,-0.957991540431976,-0.239987045526505,0.100618429481983,-0.964632928371429,-0.243637397885323,0.192714601755142,-0.937292218208313,-0.290421098470688,-0.18523782491684,-0.873514473438263,-0.450177043676376,-0.406598150730133,-0.705767273902893,-0.58014702796936,-0.498328655958176,-0.688815712928772,-0.526499390602112,-0.25663024187088,-0.850010573863983,-0.460025131702423,-0.406598150730133,-0.705767273902893,-0.58014702796936,-0.416849136352539,-0.691094517707825,-0.590444922447205,-0.467943280935287,-0.696886539459229,-0.543487191200256,-0.498328655958176,-0.688815712928772,-0.526499390602112,0.0814641639590263,-0.923566818237305,-0.374683976173401,0.0915432572364807,-0.916671276092529,-0.389016300439835,0.216424345970154,-0.942005574703217,-0.256488084793091,0.078060083091259,-0.993369102478027,-0.0844075009226799,0.0949610844254494,-0.834681332111359,-0.54248458147049,0.041612520813942,-0.876920700073242,-0.478830486536026,0.0670250058174133,-0.866883039474487,-0.493985384702683,0.0477864220738411,-0.824066281318665,-0.56447446346283,0.192714601755142,-0.937292218208313,-0.290421098470688,0.100618429481983,-0.964632928371429,-0.243637397885323,0.140574485063553,-0.953818261623383,-0.265460997819901,0.0308682136237621,-0.909255504608154,-0.415092259645462,
- -0.25663024187088,-0.850010573863983,-0.460025131702423,-0.498328655958176,-0.688815712928772,-0.526499390602112,-0.461966127157211,-0.704021751880646,-0.539389252662659,-0.204111739993095,-0.885669767856598,-0.417046099901199,-0.498328655958176,-0.688815712928772,-0.526499390602112,-0.467943280935287,-0.696886539459229,-0.543487191200256,-0.482799649238586,-0.710604071617126,-0.511806964874268,-0.461966127157211,-0.704021751880646,-0.539389252662659,-0.428987503051758,-0.707494854927063,-0.561623394489288,-0.338050127029419,-0.40075945854187,0.851536273956299,-0.416849136352539,-0.691094517707825,-0.590444922447205,-0.482799649238586,-0.710604071617126,-0.511806964874268,-0.338050127029419,-0.40075945854187,0.851536273956299,-0.468173623085022,-0.741129100322723,-0.481187373399735,-0.467943280935287,-0.696886539459229,-0.543487191200256,-0.338050127029419,-0.40075945854187,0.851536273956299,-0.482799649238586,-0.710604071617126,-0.511806964874268,-0.416849136352539,-0.691094517707825,-0.590444922447205,-0.338050127029419,-0.40075945854187,0.851536273956299,-0.467943280935287,-0.696886539459229,-0.543487191200256,0.216424345970154,-0.942005574703217,-0.256488084793091,0.0949610844254494,-0.834681332111359,-0.54248458147049,0.0843670144677162,-0.857529878616333,-0.507468938827515,0.116238072514534,-0.787542939186096,-0.605198264122009,0.213453739881516,-0.930845439434052,-0.296587646007538,0.0779941454529762,-0.920316934585571,-0.38331925868988,0.0858275219798088,-0.825982570648193,-0.557123482227325,0.114659033715725,-0.816938877105713,-0.565211594104767,0.0915432572364807,-0.916671276092529,-0.389016300439835,0.213453739881516,-0.930845439434052,-0.296587646007538,0.114659033715725,-0.816938877105713,-0.565211594104767,0.041612520813942,-0.876920700073242,-0.478830486536026,0.216424345970154,-0.942005574703217,-0.256488084793091,0.0915432572364807,-0.916671276092529,-0.389016300439835,0.041612520813942,-0.876920700073242,-0.478830486536026,0.0949610844254494,-0.834681332111359,-0.54248458147049,0.174119338393211,-0.952526748180389,-0.249750733375549,
- 0.13180710375309,-0.845759689807892,-0.517027616500854,0.0477864220738411,-0.824066281318665,-0.56447446346283,0.0308682136237621,-0.909255504608154,-0.415092259645462,0.140363231301308,-0.888994216918945,-0.435875594615936,0.119725003838539,-0.781170248985291,-0.612730801105499,0.143240034580231,-0.76774537563324,-0.624539434909821,0.259098798036575,-0.74239844083786,-0.617828845977783,0.192714601755142,-0.937292218208313,-0.290421098470688,0.0670250058174133,-0.866883039474487,-0.493985384702683,0.119725003838539,-0.781170248985291,-0.612730801105499,0.140363231301308,-0.888994216918945,-0.435875594615936,0.0477864220738411,-0.824066281318665,-0.56447446346283,0.0670250058174133,-0.866883039474487,-0.493985384702683,0.192714601755142,-0.937292218208313,-0.290421098470688,0.0308682136237621,-0.909255504608154,-0.415092259645462,0.140574485063553,-0.953818261623383,-0.265460997819901,-0.204111739993095,-0.885669767856598,-0.417046099901199,-0.228527516126633,-0.870236098766327,-0.436422318220139,0.119518354535103,-0.930348455905914,-0.346651494503021,0.15703073143959,-0.957991540431976,-0.239987045526505,0.0739864408969879,-0.982676386833191,-0.169921070337296,-0.255059391260147,-0.899153113365173,-0.355624049901962,-0.18523782491684,-0.873514473438263,-0.450177043676376,0.100618429481983,-0.964632928371429,-0.243637397885323,0.15703073143959,-0.957991540431976,-0.239987045526505,-0.18523782491684,-0.873514473438263,-0.450177043676376,-0.25663024187088,-0.850010573863983,-0.460025131702423,0.140574485063553,-0.953818261623383,-0.265460997819901,0.100618429481983,-0.964632928371429,-0.243637397885323,-0.25663024187088,-0.850010573863983,-0.460025131702423,-0.204111739993095,-0.885669767856598,-0.417046099901199,-0.832737922668457,-0.468180537223816,-0.295558363199234,-0.927686333656311,-0.300372809171677,-0.221752882003784,-0.855594098567963,-0.440734446048737,-0.271499246358871,-0.717082858085632,-0.607698500156403,-0.341313242912292,-0.717082858085632,-0.607698500156403,-0.341313242912292,-0.855594098567963,-0.440734446048737,-0.271499246358871,
- -0.706697940826416,-0.617759585380554,-0.344892978668213,-0.559802949428558,-0.728610455989838,-0.394648790359497,-0.559802949428558,-0.728610455989838,-0.394648790359497,-0.706697940826416,-0.617759585380554,-0.344892978668213,-0.88928496837616,-0.393842309713364,-0.232509106397629,-0.543915510177612,-0.7767174243927,-0.317594081163406,-0.543915510177612,-0.7767174243927,-0.317594081163406,-0.88928496837616,-0.393842309713364,-0.232509106397629,0.00214956700801849,-0.700579762458801,0.713570952415466,-0.790442228317261,-0.421272903680801,-0.444668531417847,-0.808747291564941,-0.474962174892426,-0.346898943185806,-0.734937131404877,-0.492318123579025,-0.466358512639999,-0.721189022064209,-0.538522005081177,-0.435752958059311,-0.721189022064209,-0.538522005081177,-0.435752958059311,-0.734937131404877,-0.492318123579025,-0.466358512639999,-0.589644432067871,-0.63310980796814,-0.501489222049713,-0.568876206874847,-0.670667707920074,-0.476009100675583,-0.568876206874847,-0.670667707920074,-0.476009100675583,-0.589644432067871,-0.63310980796814,-0.501489222049713,-0.373716741800308,-0.770178556442261,-0.51687616109848,-0.40007871389389,-0.578752875328064,-0.710620999336243,-0.40007871389389,-0.578752875328064,-0.710620999336243,-0.373716741800308,-0.770178556442261,-0.51687616109848,0.00214956700801849,-0.700579762458801,0.713570952415466,-0.808747291564941,-0.474962174892426,-0.346898943185806,-0.891027450561523,-0.385627388954163,-0.239502817392349,-0.79157418012619,-0.534029364585876,-0.297023594379425,-0.734937131404877,-0.492318123579025,-0.466358512639999,-0.734937131404877,-0.492318123579025,-0.466358512639999,-0.79157418012619,-0.534029364585876,-0.297023594379425,-0.647333204746246,-0.670910954475403,-0.361715614795685,-0.589644432067871,-0.63310980796814,-0.501489222049713,-0.589644432067871,-0.63310980796814,-0.501489222049713,-0.647333204746246,-0.670910954475403,-0.361715614795685,-0.659962594509125,-0.555363357067108,-0.505985140800476,-0.373716741800308,-0.770178556442261,-0.51687616109848,-0.373716741800308,-0.770178556442261,-0.51687616109848,
- -0.659962594509125,-0.555363357067108,-0.505985140800476,0.00214956700801849,-0.700579762458801,0.713570952415466,-0.891027450561523,-0.385627388954163,-0.239502817392349,-0.832737922668457,-0.468180537223816,-0.295558363199234,-0.717082858085632,-0.607698500156403,-0.341313242912292,-0.79157418012619,-0.534029364585876,-0.297023594379425,-0.79157418012619,-0.534029364585876,-0.297023594379425,-0.717082858085632,-0.607698500156403,-0.341313242912292,-0.559802949428558,-0.728610455989838,-0.394648790359497,-0.647333204746246,-0.670910954475403,-0.361715614795685,-0.647333204746246,-0.670910954475403,-0.361715614795685,-0.559802949428558,-0.728610455989838,-0.394648790359497,-0.543915510177612,-0.7767174243927,-0.317594081163406,-0.659962594509125,-0.555363357067108,-0.505985140800476,-0.659962594509125,-0.555363357067108,-0.505985140800476,-0.543915510177612,-0.7767174243927,-0.317594081163406,0.00214956700801849,-0.700579762458801,0.713570952415466,0.183659717440605,-0.29752704501152,0.936881422996521,0.0748875141143799,-0.368256509304047,0.926703333854675,0.10018265247345,-0.258166134357452,0.960892200469971,0.263403415679932,-0.11894515901804,0.957324743270874,-0.482947289943695,-0.296923249959946,0.823770880699158,-0.236742436885834,-0.302091419696808,0.923414289951324,-0.143162697553635,-0.419292509555817,0.896492123603821,-0.418662250041962,-0.542481601238251,0.728310108184814,-0.608669102191925,-0.624158918857574,0.489844560623169,-0.717225074768066,-0.639067351818085,0.277815133333206,-0.691040098667145,-0.709898054599762,0.136045873165131,-0.578325033187866,-0.596220374107361,0.556831657886505,-0.745739817619324,-0.6588454246521,-0.0989689156413078,-0.636754631996155,-0.679084300994873,-0.365223467350006,-0.668823599815369,-0.678856611251831,-0.303032666444778,-0.689549207687378,-0.686962068080902,-0.229357957839966,-0.524234294891357,-0.69248902797699,-0.495618164539337,-0.632857143878937,0.493296921253204,-0.596783101558685,-0.784786820411682,-0.611455321311951,-0.101153470575809,0.364320755004883,-0.392108529806137,0.844701945781708,
- 0.213293492794037,-0.465925723314285,0.858731091022491,0.0897470414638519,-0.357927650213242,0.929426372051239,0.19262620806694,-0.286411225795746,0.938543438911438,-0.345424890518188,-0.560545861721039,0.752642035484314,-0.195397555828094,-0.486890077590942,0.851327180862427,-0.0749524533748627,-0.545487880706787,0.834760546684265,-0.323484569787979,-0.535802483558655,0.779918909072876,-0.627834856510162,-0.534923434257507,0.565402865409851,-0.82556939125061,-0.534004271030426,0.1824139803648,-0.767559587955475,-0.620528399944305,0.160614028573036,-0.511619925498962,-0.631333827972412,0.582805871963501,-0.785412549972534,-0.587616682052612,-0.194509252905846,-0.558317840099335,-0.759579181671143,-0.33364737033844,-0.582935929298401,-0.769597887992859,-0.260585576295853,-0.708249866962433,-0.687669038772583,-0.159666627645493,-0.21907950937748,-0.947769165039063,-0.2318145185709,0.640521109104156,-0.494168937206268,0.587817788124084,-0.387449204921722,-0.804431438446045,-0.450303614139557,0.19262620806694,-0.286411225795746,0.938543438911438,0.0897470414638519,-0.357927650213242,0.929426372051239,0.111311763525009,-0.289072275161743,0.950813889503479,0.250773340463638,-0.178049221634865,0.951530933380127,-0.467777460813522,-0.41886031627655,0.778293251991272,-0.150802984833717,-0.464728802442551,0.872516810894012,-0.195397555828094,-0.486890077590942,0.851327180862427,-0.345424890518188,-0.560545861721039,0.752642035484314,-0.511619925498962,-0.631333827972412,0.582805871963501,-0.767559587955475,-0.620528399944305,0.160614028573036,-0.668614447116852,-0.735567390918732,0.109066389501095,-0.663966715335846,-0.531032919883728,0.526452660560608,-0.708249866962433,-0.687669038772583,-0.159666627645493,-0.582935929298401,-0.769597887992859,-0.260585576295853,-0.63996684551239,-0.655343651771545,-0.401207268238068,-0.648885309696198,-0.71952897310257,-0.247438997030258,-0.387449204921722,-0.804431438446045,-0.450303614139557,-0.632857143878937,0.493296921253204,-0.596783101558685,-0.525308132171631,-0.789932548999786,-0.316319614648819,
- 0.250773340463638,-0.178049221634865,0.951530933380127,0.111311763525009,-0.289072275161743,0.950813889503479,0.0748875141143799,-0.368256509304047,0.926703333854675,0.183659717440605,-0.29752704501152,0.936881422996521,-0.143162697553635,-0.419292509555817,0.896492123603821,-0.150802984833717,-0.464728802442551,0.872516810894012,-0.467777460813522,-0.41886031627655,0.778293251991272,-0.418662250041962,-0.542481601238251,0.728310108184814,-0.663966715335846,-0.531032919883728,0.526452660560608,-0.668614447116852,-0.735567390918732,0.109066389501095,-0.717225074768066,-0.639067351818085,0.277815133333206,-0.608669102191925,-0.624158918857574,0.489844560623169,-0.648885309696198,-0.71952897310257,-0.247438997030258,-0.63996684551239,-0.655343651771545,-0.401207268238068,-0.636754631996155,-0.679084300994873,-0.365223467350006,-0.745739817619324,-0.6588454246521,-0.0989689156413078,-0.525308132171631,-0.789932548999786,-0.316319614648819,-0.632857143878937,0.493296921253204,-0.596783101558685,-0.524234294891357,-0.69248902797699,-0.495618164539337,0.0748875141143799,-0.368256509304047,0.926703333854675,-0.143162697553635,-0.419292509555817,0.896492123603821,-0.236742436885834,-0.302091419696808,0.923414289951324,0.10018265247345,-0.258166134357452,0.960892200469971,0.0897470414638519,-0.357927650213242,0.929426372051239,0.213293492794037,-0.465925723314285,0.858731091022491,-0.0749524533748627,-0.545487880706787,0.834760546684265,-0.195397555828094,-0.486890077590942,0.851327180862427,0.111311763525009,-0.289072275161743,0.950813889503479,0.0897470414638519,-0.357927650213242,0.929426372051239,-0.195397555828094,-0.486890077590942,0.851327180862427,-0.150802984833717,-0.464728802442551,0.872516810894012,0.0748875141143799,-0.368256509304047,0.926703333854675,0.111311763525009,-0.289072275161743,0.950813889503479,-0.150802984833717,-0.464728802442551,0.872516810894012,-0.143162697553635,-0.419292509555817,0.896492123603821,-0.578325033187866,-0.596220374107361,0.556831657886505,-0.482947289943695,-0.296923249959946,0.823770880699158,
- -0.418662250041962,-0.542481601238251,0.728310108184814,-0.608669102191925,-0.624158918857574,0.489844560623169,-0.511619925498962,-0.631333827972412,0.582805871963501,-0.345424890518188,-0.560545861721039,0.752642035484314,-0.323484569787979,-0.535802483558655,0.779918909072876,-0.627834856510162,-0.534923434257507,0.565402865409851,-0.663966715335846,-0.531032919883728,0.526452660560608,-0.467777460813522,-0.41886031627655,0.778293251991272,-0.345424890518188,-0.560545861721039,0.752642035484314,-0.511619925498962,-0.631333827972412,0.582805871963501,-0.418662250041962,-0.542481601238251,0.728310108184814,-0.467777460813522,-0.41886031627655,0.778293251991272,-0.663966715335846,-0.531032919883728,0.526452660560608,-0.608669102191925,-0.624158918857574,0.489844560623169,-0.717225074768066,-0.639067351818085,0.277815133333206,-0.745739817619324,-0.6588454246521,-0.0989689156413078,-0.689549207687378,-0.686962068080902,-0.229357957839966,-0.691040098667145,-0.709898054599762,0.136045873165131,-0.767559587955475,-0.620528399944305,0.160614028573036,-0.82556939125061,-0.534004271030426,0.1824139803648,-0.785412549972534,-0.587616682052612,-0.194509252905846,-0.708249866962433,-0.687669038772583,-0.159666627645493,-0.668614447116852,-0.735567390918732,0.109066389501095,-0.767559587955475,-0.620528399944305,0.160614028573036,-0.708249866962433,-0.687669038772583,-0.159666627645493,-0.648885309696198,-0.71952897310257,-0.247438997030258,-0.717225074768066,-0.639067351818085,0.277815133333206,-0.668614447116852,-0.735567390918732,0.109066389501095,-0.648885309696198,-0.71952897310257,-0.247438997030258,-0.745739817619324,-0.6588454246521,-0.0989689156413078,-0.161115229129791,-0.981016278266907,0.107930414378643,0.217552244663239,-0.962679803371429,-0.160992607474327,-0.0177039951086044,-0.996174156665802,-0.0855776444077492,-0.165974333882332,-0.984630644321442,0.0543610565364361,-0.165974333882332,-0.984630644321442,0.0543610565364361,-0.0177039951086044,-0.996174156665802,-0.0855776444077492,-0.26463308930397,-0.963620185852051,0.0374915152788162,
- -0.291143089532852,-0.955499410629272,0.0475055314600468,-0.291143089532852,-0.955499410629272,0.0475055314600468,-0.26463308930397,-0.963620185852051,0.0374915152788162,-0.204360470175743,-0.968329131603241,-0.143441662192345,-0.357785135507584,-0.933639407157898,0.0175317004323006,-0.357785135507584,-0.933639407157898,0.0175317004323006,-0.204360470175743,-0.968329131603241,-0.143441662192345,-0.384911745786667,0.0589570961892605,-0.921068370342255,0.0860976427793503,-0.902272522449493,0.42248272895813,-0.0738610178232193,-0.971967875957489,0.223210647702217,-0.115946352481842,-0.986692190170288,0.113996051251888,-0.0547677725553513,-0.981487274169922,0.183530300855637,-0.0547677725553513,-0.981487274169922,0.183530300855637,-0.115946352481842,-0.986692190170288,0.113996051251888,-0.198894426226616,-0.97445023059845,0.104344584047794,-0.29009935259819,-0.94152045249939,0.17141093313694,-0.29009935259819,-0.94152045249939,0.17141093313694,-0.198894426226616,-0.97445023059845,0.104344584047794,-0.344233423471451,-0.925613582134247,0.157299131155014,-0.257811695337296,-0.917339265346527,0.303351014852524,-0.257811695337296,-0.917339265346527,0.303351014852524,-0.344233423471451,-0.925613582134247,0.157299131155014,-0.384911745786667,0.0589570961892605,-0.921068370342255,-0.0738610178232193,-0.971967875957489,0.223210647702217,0.101921737194061,-0.992871820926666,0.0617863833904266,-0.0677831992506981,-0.997669577598572,0.00780435651540756,-0.115946352481842,-0.986692190170288,0.113996051251888,-0.115946352481842,-0.986692190170288,0.113996051251888,-0.0677831992506981,-0.997669577598572,0.00780435651540756,-0.308776050806046,-0.946710765361786,0.0916304290294647,-0.198894426226616,-0.97445023059845,0.104344584047794,-0.198894426226616,-0.97445023059845,0.104344584047794,-0.308776050806046,-0.946710765361786,0.0916304290294647,-0.386830687522888,-0.920045673847198,0.0622736737132072,-0.344233423471451,-0.925613582134247,0.157299131155014,-0.344233423471451,-0.925613582134247,0.157299131155014,-0.386830687522888,-0.920045673847198,0.0622736737132072,
- -0.384911745786667,0.0589570961892605,-0.921068370342255,0.101921737194061,-0.992871820926666,0.0617863833904266,-0.161115229129791,-0.981016278266907,0.107930414378643,-0.165974333882332,-0.984630644321442,0.0543610565364361,-0.0677831992506981,-0.997669577598572,0.00780435651540756,-0.0677831992506981,-0.997669577598572,0.00780435651540756,-0.165974333882332,-0.984630644321442,0.0543610565364361,-0.291143089532852,-0.955499410629272,0.0475055314600468,-0.308776050806046,-0.946710765361786,0.0916304290294647,-0.308776050806046,-0.946710765361786,0.0916304290294647,-0.291143089532852,-0.955499410629272,0.0475055314600468,-0.357785135507584,-0.933639407157898,0.0175317004323006,-0.386830687522888,-0.920045673847198,0.0622736737132072,-0.386830687522888,-0.920045673847198,0.0622736737132072,-0.357785135507584,-0.933639407157898,0.0175317004323006,-0.384911745786667,0.0589570961892605,-0.921068370342255,-0.63996684551239,-0.655343651771545,-0.401207268238068,-0.525308132171631,-0.789932548999786,-0.316319614648819,-0.524234294891357,-0.69248902797699,-0.495618164539337,-0.636754631996155,-0.679084300994873,-0.365223467350006,-0.668823599815369,-0.678856611251831,-0.303032666444778,-0.636754631996155,-0.679084300994873,-0.365223467350006,-0.524234294891357,-0.69248902797699,-0.495618164539337,-0.784786820411682,-0.611455321311951,-0.101153470575809,-0.582935929298401,-0.769597887992859,-0.260585576295853,-0.558317840099335,-0.759579181671143,-0.33364737033844,-0.21907950937748,-0.947769165039063,-0.2318145185709,-0.387449204921722,-0.804431438446045,-0.450303614139557,-0.63996684551239,-0.655343651771545,-0.401207268238068,-0.582935929298401,-0.769597887992859,-0.260585576295853,-0.387449204921722,-0.804431438446045,-0.450303614139557,-0.525308132171631,-0.789932548999786,-0.316319614648819,0.123315922915936,-0.718140184879303,0.684885323047638,0.351954430341721,-0.517716646194458,0.779806137084961,0.00637082383036613,-0.597908735275269,0.801538944244385,0.093914158642292,-0.677505314350128,0.729497671127319,0.310087084770203,-0.668680012226105,0.675805568695068,
- 0.158265739679337,-0.71370005607605,0.68233734369278,0.121025696396828,-0.679863572120667,0.723282933235168,0.00159386824816465,-0.47770756483078,0.878517508506775,0.158265739679337,-0.71370005607605,0.68233734369278,0.345804929733276,-0.629660785198212,0.695662438869476,0.0530404262244701,-0.523981630802155,0.850076496601105,0.121025696396828,-0.679863572120667,0.723282933235168,0.345804929733276,-0.629660785198212,0.695662438869476,0.123315922915936,-0.718140184879303,0.684885323047638,0.093914158642292,-0.677505314350128,0.729497671127319,0.0530404262244701,-0.523981630802155,0.850076496601105,0.424589216709137,-0.838247895240784,0.342146843671799,0.464842736721039,-0.878738105297089,0.108354024589062,0.681693971157074,-0.731371819972992,-0.019715579226613,0.709598958492279,-0.652485549449921,0.265954911708832,0.421773672103882,-0.719420075416565,0.551853120326996,0.331113785505295,-0.932075440883636,0.146966561675072,0.306581258773804,-0.95017147064209,-0.0564108490943909,0.486531525850296,-0.840549290180206,0.238251924514771,0.383232116699219,-0.918125212192535,0.100892543792725,0.421773672103882,-0.719420075416565,0.551853120326996,0.486531525850296,-0.840549290180206,0.238251924514771,0.447937190532684,-0.891410171985626,-0.0688505172729492,0.424589216709137,-0.838247895240784,0.342146843671799,0.383232116699219,-0.918125212192535,0.100892543792725,0.447937190532684,-0.891410171985626,-0.0688505172729492,0.464842736721039,-0.878738105297089,0.108354024589062,0.191095441579819,-0.730820298194885,0.655274152755737,0.310904294252396,-0.74620133638382,0.588661253452301,0.605308532714844,-0.669830679893494,0.430033028125763,0.579344570636749,-0.562964081764221,0.589433014392853,0.242690309882164,-0.738926887512207,0.628560662269592,0.338362663984299,-0.864113211631775,0.372584521770477,0.200799137353897,-0.953870534896851,0.22318360209465,0.306772619485855,-0.702003121376038,0.642714738845825,0.549132704734802,-0.609520494937897,0.571784973144531,0.242690309882164,-0.738926887512207,0.628560662269592,0.306772619485855,-0.702003121376038,0.642714738845825,
- 0.395734667778015,-0.855947315692902,0.33278876543045,0.191095441579819,-0.730820298194885,0.655274152755737,0.549132704734802,-0.609520494937897,0.571784973144531,0.395734667778015,-0.855947315692902,0.33278876543045,0.310904294252396,-0.74620133638382,0.588661253452301,-0.0989090651273727,-0.725986838340759,0.680558681488037,-0.293450027704239,-0.647718548774719,0.703098773956299,-0.110688135027885,-0.760075747966766,0.640338122844696,0.0772849768400192,-0.714955985546112,0.694884777069092,-0.131252139806747,-0.582608997821808,0.802084684371948,-0.167404592037201,-0.530367791652679,0.831075072288513,-0.293450027704239,-0.647718548774719,0.703098773956299,-0.0989090651273727,-0.725986838340759,0.680558681488037,0.0690390765666962,-0.573264241218567,0.816456913948059,0.0201793033629656,-0.66071343421936,0.750367045402527,-0.167404592037201,-0.530367791652679,0.831075072288513,-0.131252139806747,-0.582608997821808,0.802084684371948,0.0568652525544167,-0.733369410037994,0.677447915077209,-0.119176991283894,-0.758520126342773,0.640659213066101,0.0201793033629656,-0.66071343421936,0.750367045402527,0.0690390765666962,-0.573264241218567,0.816456913948059,-0.0860075950622559,-0.74065899848938,0.666353523731232,-0.271139532327652,-0.66991263628006,0.691158831119537,-0.119176991283894,-0.758520126342773,0.640659213066101,0.0568652525544167,-0.733369410037994,0.677447915077209,-0.107666008174419,-0.640122830867767,0.760690987110138,-0.207280471920967,-0.529706656932831,0.822463274002075,-0.271139532327652,-0.66991263628006,0.691158831119537,-0.0860075950622559,-0.74065899848938,0.666353523731232,0.00168906152248383,-0.601410150527954,0.798938751220703,-0.0801622569561005,-0.48210197687149,0.872440099716187,-0.207280471920967,-0.529706656932831,0.822463274002075,-0.107666008174419,-0.640122830867767,0.760690987110138,0.0772849768400192,-0.714955985546112,0.694884777069092,-0.110688135027885,-0.760075747966766,0.640338122844696,0.118062317371368,-0.713953495025635,0.690167903900146,0.0520137324929237,-0.663610100746155,0.746268272399902,
- 0.0612922310829163,-0.631746351718903,0.772748291492462,0.191902965307236,-0.721832573413849,0.664929389953613,0.0772849768400192,-0.714955985546112,0.694884777069092,0.0520137324929237,-0.663610100746155,0.746268272399902,0.191902965307236,-0.721832573413849,0.664929389953613,0.113985456526279,-0.768733084201813,0.629330575466156,-0.0989090651273727,-0.725986838340759,0.680558681488037,0.0772849768400192,-0.714955985546112,0.694884777069092,0.113985456526279,-0.768733084201813,0.629330575466156,0.0585157871246338,-0.723889410495758,0.687430024147034,-0.131252139806747,-0.582608997821808,0.802084684371948,-0.0989090651273727,-0.725986838340759,0.680558681488037,0.0585157871246338,-0.723889410495758,0.687430024147034,0.138002827763557,-0.673512637615204,0.726179003715515,0.0690390765666962,-0.573264241218567,0.816456913948059,-0.131252139806747,-0.582608997821808,0.802084684371948,0.138002827763557,-0.673512637615204,0.726179003715515,0.204687461256981,-0.719764173030853,0.663357079029083,0.0568652525544167,-0.733369410037994,0.677447915077209,0.0690390765666962,-0.573264241218567,0.816456913948059,0.204687461256981,-0.719764173030853,0.663357079029083,0.137846812605858,-0.783319234848022,0.606143057346344,-0.0860075950622559,-0.74065899848938,0.666353523731232,0.0568652525544167,-0.733369410037994,0.677447915077209,0.137846812605858,-0.783319234848022,0.606143057346344,0.0626677274703979,-0.770910799503326,0.63385272026062,-0.107666008174419,-0.640122830867767,0.760690987110138,-0.0860075950622559,-0.74065899848938,0.666353523731232,0.0626677274703979,-0.770910799503326,0.63385272026062,0.101724646985531,-0.769110918045044,0.630967974662781,0.00168906152248383,-0.601410150527954,0.798938751220703,-0.107666008174419,-0.640122830867767,0.760690987110138
- }
- BinormalsW: *3594 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *10782 {
- a: 0.0327377803623676,0.455809354782104,-0.889475166797638,0.999250113964081,-0.0387194752693176,0.00012083601905033,0.944505989551544,-0.0497215129435062,-0.324709266424179,-0.2479268014431,0.353664666414261,-0.901916682720184,-0.545454382896423,0.0421545766294003,0.837079703807831,-0.227383822202683,-0.970980048179626,0.0741242542862892,-0.157213181257248,-0.986450791358948,0.0468924902379513,-0.369034320116043,0.137545928359032,0.91918158531189,0.0262810196727514,0.233513563871384,0.971998274326324,-0.262511044740677,-0.964913666248322,-0.00543032679706812,-0.166298389434814,-0.961091578006744,0.220562592148781,0.244956597685814,0.270309209823608,0.931090354919434,-0.287230461835861,-0.249232262372971,0.924868583679199,0.929466664791107,-0.240730926394463,0.279535740613937,0.873658776283264,-0.0396943278610706,0.484917283058167,-0.368787884712219,-0.695740163326263,0.616393625736237,0.929466664791107,-0.240730926394463,0.279535740613937,-0.287230461835861,-0.249232262372971,0.924868583679199,-0.312209159135818,-0.129981070756912,0.941079318523407,0.947604656219482,0.0363271608948708,0.317373305559158,0.969615757465363,0.108378611505032,0.219315826892853,-0.20128445327282,0.00734106171876192,0.97950541973114,-0.192220419645309,-0.000725892605260015,0.981351494789124,0.981728374958038,-0.0149596240371466,0.189698845148087,0.95424222946167,-0.0648136734962463,0.291926234960556,-0.123427845537663,-0.0173242054879665,0.992202341556549,-0.265048503875732,0.244615748524666,0.932690978050232,0.93285745382309,-0.152473762631416,0.326387137174606,0.95394241809845,-0.100884392857552,0.282517701387405,-0.360486716032028,0.0876045152544975,0.928641319274902,-0.347320675849915,0.0552228316664696,0.936118960380554,0.940787792205811,0.181578367948532,0.286264955997467,0.91532039642334,0.244074761867523,0.320337265729904,-0.262383937835693,0.211091086268425,0.941591918468475,-0.325363337993622,-0.312880307435989,-0.892325401306152,0.999250113964081,-0.0387194752693176,0.00012083601905033,0.143916323781013,-0.44728821516037,0.882735252380371,
- 0.389516711235046,-0.383612066507339,0.837328255176544,0.944505989551544,-0.0497215129435062,-0.324709266424179,-0.227383822202683,-0.970980048179626,0.0741242542862892,0.523399472236633,-0.345061421394348,-0.779092729091644,0.154246285557747,-0.272802740335464,-0.949624478816986,-0.157213181257248,-0.986450791358948,0.0468924902379513,-0.166298389434814,-0.961091578006744,0.220562592148781,-0.262511044740677,-0.964913666248322,-0.00543032679706812,-0.00357476761564612,-0.412388682365417,-0.911000967025757,-0.240800976753235,-0.502483129501343,-0.830376863479614,-0.962189912796021,0.113667920231819,-0.247528031468391,-0.287230461835861,-0.249232262372971,0.924868583679199,-0.368787884712219,-0.695740163326263,0.616393625736237,-0.888585925102234,-0.149502605199814,-0.433663487434387,-0.287230461835861,-0.249232262372971,0.924868583679199,-0.962189912796021,0.113667920231819,-0.247528031468391,-0.932939112186432,0.113613642752171,-0.341638147830963,-0.312209159135818,-0.129981070756912,0.941079318523407,-0.20128445327282,0.00734106171876192,0.97950541973114,-0.966926455497742,-0.0836820900440216,-0.240936934947968,-0.980231940746307,-0.0167392417788506,-0.197142168879509,-0.192220419645309,-0.000725892605260015,0.981351494789124,-0.123427845537663,-0.0173242054879665,0.992202341556549,-0.965539276599884,0.173561975359917,-0.193933352828026,-0.949938297271729,0.123539067804813,-0.286976099014282,-0.265048503875732,0.244615748524666,0.932690978050232,-0.360486716032028,0.0876045152544975,0.928641319274902,-0.944113612174988,0.0727569088339806,-0.321490079164505,-0.930800497531891,-0.0491456426680088,-0.362208783626556,-0.347320675849915,0.0552228316664696,0.936118960380554,-0.262383937835693,0.211091086268425,0.941591918468475,-0.901002883911133,-0.192676097154617,-0.388676851987839,-0.325363337993622,-0.312880307435989,-0.892325401306152,0.143916323781013,-0.44728821516037,0.882735252380371,-0.878132104873657,-0.463695913553238,0.11777138710022,-0.834501981735229,-0.402036666870117,0.376792967319489,0.389516711235046,-0.383612066507339,0.837328255176544,
- 0.523399472236633,-0.345061421394348,-0.779092729091644,-0.0158570241183043,0.863640606403351,-0.503858625888824,0.138863265514374,0.988766670227051,-0.05529560521245,0.154246285557747,-0.272802740335464,-0.949624478816986,-0.00357476761564612,-0.412388682365417,-0.911000967025757,0.257403552532196,0.955440878868103,-0.144485875964165,0.277223527431488,0.956375956535339,-0.0921533182263374,-0.240800976753235,-0.502483129501343,-0.830376863479614,0.493635803461075,0.500509858131409,-0.711205840110779,-0.962189912796021,0.113667920231819,-0.247528031468391,-0.888585925102234,-0.149502605199814,-0.433663487434387,0.319841265678406,0.790928542613983,-0.521664261817932,-0.962189912796021,0.113667920231819,-0.247528031468391,0.493635803461075,0.500509858131409,-0.711205840110779,0.436814427375793,-0.0765718668699265,-0.89628678560257,-0.932939112186432,0.113613642752171,-0.341638147830963,-0.966926455497742,-0.0836820900440216,-0.240936934947968,0.26924791932106,-0.132767587900162,-0.953875362873077,0.180276647210121,0.0886788964271545,-0.979610323905945,-0.980231940746307,-0.0167392417788506,-0.197142168879509,-0.965539276599884,0.173561975359917,-0.193933352828026,0.307385325431824,0.0378290340304375,-0.950832903385162,0.21541990339756,-0.236007258296013,-0.947573125362396,-0.949938297271729,0.123539067804813,-0.286976099014282,-0.944113612174988,0.0727569088339806,-0.321490079164505,0.24553707242012,-0.0872106328606606,-0.965456306934357,0.292178750038147,-0.245546698570251,-0.924304306507111,-0.930800497531891,-0.0491456426680088,-0.362208783626556,-0.901002883911133,-0.192676097154617,-0.388676851987839,0.434405118227005,-0.184715792536736,-0.881573796272278,-0.325363337993622,-0.312880307435989,-0.892325401306152,-0.813616633415222,0.557033658027649,0.166557684540749,0.0327377803623676,0.455809354782104,-0.889475166797638,-0.2479268014431,0.353664666414261,-0.901916682720184,-0.799028396606445,0.442963868379593,0.40661609172821,0.471996605396271,0.805289745330811,0.358786404132843,-0.545454382896423,0.0421545766294003,0.837079703807831,
- -0.369034320116043,0.137545928359032,0.91918158531189,0.434934079647064,0.89438009262085,0.104481995105743,0.0847748070955276,0.98814445734024,-0.127999365329742,0.0262810196727514,0.233513563871384,0.971998274326324,0.244956597685814,0.270309209823608,0.931090354919434,0.14883728325367,0.987801373004913,-0.0457804836332798,0.375292986631393,0.706871330738068,-0.599573254585266,0.873658776283264,-0.0396943278610706,0.484917283058167,0.929466664791107,-0.240730926394463,0.279535740613937,0.539226889610291,0.204175680875778,-0.817035257816315,0.539226889610291,0.204175680875778,-0.817035257816315,0.929466664791107,-0.240730926394463,0.279535740613937,0.947604656219482,0.0363271608948708,0.317373305559158,0.442087382078171,0.0176126044243574,-0.896799027919769,0.268083989620209,0.0496309101581573,-0.962116241455078,0.969615757465363,0.108378611505032,0.219315826892853,0.981728374958038,-0.0149596240371466,0.189698845148087,0.18739640712738,-0.144264191389084,-0.971632838249207,0.28925895690918,-0.324624300003052,-0.900526702404022,0.95424222946167,-0.0648136734962463,0.291926234960556,0.93285745382309,-0.152473762631416,0.326387137174606,0.200866028666496,-0.304782778024673,-0.930999636650085,0.241160869598389,-0.133131921291351,-0.961310267448425,0.95394241809845,-0.100884392857552,0.282517701387405,0.940787792205811,0.181578367948532,0.286264955997467,0.292311131954193,-0.248798012733459,-0.923392474651337,0.446859568357468,-0.265445828437805,-0.854315578937531,0.91532039642334,0.244074761867523,0.320337265729904,-0.325363337993622,-0.312880307435989,-0.892325401306152,-0.920378625392914,-0.0542223900556564,0.387250661849976,-0.13360258936882,0.63781064748764,-0.758516907691956,-0.276466906070709,0.911650717258453,-0.304070651531219,-0.809996545314789,0.0269459094852209,0.585815250873566,-0.0836782902479172,-0.0149513501673937,0.996380627155304,-0.570464074611664,0.80937534570694,-0.139579147100449,0.00158200261648744,0.228785485029221,0.973475635051727,0.229038015007973,0.945669233798981,-0.230762004852295,0.998330414295197,0.00155104661826044,-0.0577399916946888,
- 0.864229261875153,0.00553448917344213,-0.503067851066589,-0.309378802776337,0.879449665546417,-0.361736357212067,-0.690781831741333,0.707399070262909,-0.149689272046089,0.0416941903531551,-0.156291589140892,-0.986830472946167,0.00158200261648744,0.228785485029221,0.973475635051727,0.998330414295197,0.00155104661826044,-0.0577399916946888,0.378382742404938,-0.925010561943054,-0.0343807078897953,0.252097219228745,-0.922799706459045,0.291355073451996,0.864229261875153,0.00553448917344213,-0.503067851066589,0.0416941903531551,-0.156291589140892,-0.986830472946167,0.771239280700684,-0.633430540561676,0.0628946721553802,0.00158200261648744,0.228785485029221,0.973475635051727,0.378382742404938,-0.925010561943054,-0.0343807078897953,-0.920378625392914,-0.0542223900556564,0.387250661849976,-0.809996545314789,0.0269459094852209,0.585815250873566,0.252097219228745,-0.922799706459045,0.291355073451996,0.771239280700684,-0.633430540561676,0.0628946721553802,-0.0836782902479172,-0.0149513501673937,0.996380627155304,0.00158200261648744,0.228785485029221,0.973475635051727,0.684354662895203,-0.29043385386467,-0.668810069561005,0.624329507350922,-0.272453427314758,0.732107818126678,0.652651727199554,-0.340602815151215,0.676783204078674,0.487284123897552,-0.56580913066864,-0.665142238140106,-0.687955558300018,0.136717066168785,-0.712759137153625,0.684354662895203,-0.29043385386467,-0.668810069561005,0.487284123897552,-0.56580913066864,-0.665142238140106,-0.783201575279236,0.250369936227798,-0.569131135940552,-0.394521266222,0.635486543178558,0.663709163665771,-0.687955558300018,0.136717066168785,-0.712759137153625,-0.783201575279236,0.250369936227798,-0.569131135940552,-0.0359688699245453,0.862880885601044,0.504125714302063,0.624329507350922,-0.272453427314758,0.732107818126678,-0.508181810379028,0.343087553977966,0.78996342420578,-0.248722359538078,0.503763318061829,0.827260375022888,0.652651727199554,-0.340602815151215,0.676783204078674,-0.852250695228577,0.267541825771332,-0.449544370174408,0.0835648402571678,-0.757946074008942,-0.646942555904388,
- -0.102152913808823,-0.777711451053619,-0.62026572227478,-0.989839434623718,0.142190009355545,4.73411928396672e-005,0.106136843562126,0.855998575687408,0.505965769290924,-0.852250695228577,0.267541825771332,-0.449544370174408,-0.989839434623718,0.142190009355545,4.73411928396672e-005,0.221646398305893,0.692653000354767,0.686370611190796,0.788048565387726,-0.432764083147049,0.437829583883286,0.0119587033987045,0.703797340393066,0.710300207138062,0.3179572224617,0.896481037139893,0.308585375547409,0.91449099779129,-0.383634507656097,0.128571838140488,0.0835648402571678,-0.757946074008942,-0.646942555904388,0.788048565387726,-0.432764083147049,0.437829583883286,0.91449099779129,-0.383634507656097,0.128571838140488,-0.102152913808823,-0.777711451053619,-0.62026572227478,0.833797872066498,-0.0631003454327583,-0.548451781272888,0.460367649793625,-0.389583200216293,0.797675788402557,0.624329507350922,-0.272453427314758,0.732107818126678,0.684354662895203,-0.29043385386467,-0.668810069561005,-0.546805262565613,0.269484281539917,-0.792705595493317,0.833797872066498,-0.0631003454327583,-0.548451781272888,0.684354662895203,-0.29043385386467,-0.668810069561005,-0.687955558300018,0.136717066168785,-0.712759137153625,-0.59993588924408,0.48329821228981,0.637573421001434,-0.546805262565613,0.269484281539917,-0.792705595493317,-0.687955558300018,0.136717066168785,-0.712759137153625,-0.394521266222,0.635486543178558,0.663709163665771,0.460367649793625,-0.389583200216293,0.797675788402557,-0.726811349391937,-0.0606738701462746,0.684151828289032,-0.508181810379028,0.343087553977966,0.78996342420578,0.624329507350922,-0.272453427314758,0.732107818126678,0.557291805744171,-0.722438395023346,0.409278154373169,-0.600531458854675,-0.0868137255311012,0.794874548912048,-0.420162379741669,-0.0303391385823488,0.906941652297974,0.594604671001434,-0.773359775543213,0.219908863306046,0.620166480541229,-0.0794635266065598,-0.780435144901276,0.557291805744171,-0.722438395023346,0.409278154373169,0.594604671001434,-0.773359775543213,0.219908863306046,
- 0.538040935993195,-0.0967541635036469,-0.837347447872162,-0.426491618156433,0.74197381734848,-0.517281115055084,0.620166480541229,-0.0794635266065598,-0.780435144901276,0.538040935993195,-0.0967541635036469,-0.837347447872162,-0.575124979019165,0.654574573040009,-0.490676581859589,-0.600531458854675,-0.0868137255311012,0.794874548912048,-0.201876774430275,0.96027535200119,-0.192657858133316,-0.302518308162689,0.920462071895599,-0.247451484203339,-0.420162379741669,-0.0303391385823488,0.906941652297974,0.982635319232941,-0.0226808916777372,-0.184155747294426,0.182811081409454,0.418932050466537,-0.889424562454224,0.730853617191315,0.542031109333038,-0.414795637130737,0.510788321495056,-0.0772507935762405,-0.856228709220886,0.999250113964081,-0.0387194752693176,0.00012083601905033,0.0327377803623676,0.455809354782104,-0.889475166797638,0.182811081409454,0.418932050466537,-0.889424562454224,0.982635319232941,-0.0226808916777372,-0.184155747294426,0.0327377803623676,0.455809354782104,-0.889475166797638,-0.813616633415222,0.557033658027649,0.166557684540749,-0.610636830329895,0.610589325428009,-0.504284977912903,0.182811081409454,0.418932050466537,-0.889424562454224,-0.878132104873657,-0.463695913553238,0.11777138710022,0.143916323781013,-0.44728821516037,0.882735252380371,0.123861968517303,-0.358431249856949,0.925302803516388,-0.605225384235382,-0.629140615463257,0.487733751535416,0.143916323781013,-0.44728821516037,0.882735252380371,0.999250113964081,-0.0387194752693176,0.00012083601905033,0.982635319232941,-0.0226808916777372,-0.184155747294426,0.123861968517303,-0.358431249856949,0.925302803516388,0.944505989551544,-0.0497215129435062,-0.324709266424179,0.389516711235046,-0.383612066507339,0.837328255176544,0.460367649793625,-0.389583200216293,0.797675788402557,0.833797872066498,-0.0631003454327583,-0.548451781272888,-0.2479268014431,0.353664666414261,-0.901916682720184,0.944505989551544,-0.0497215129435062,-0.324709266424179,0.833797872066498,-0.0631003454327583,-0.548451781272888,-0.546805262565613,0.269484281539917,-0.792705595493317,
- -0.799028396606445,0.442963868379593,0.40661609172821,-0.2479268014431,0.353664666414261,-0.901916682720184,-0.546805262565613,0.269484281539917,-0.792705595493317,-0.59993588924408,0.48329821228981,0.637573421001434,0.389516711235046,-0.383612066507339,0.837328255176544,-0.834501981735229,-0.402036666870117,0.376792967319489,-0.726811349391937,-0.0606738701462746,0.684151828289032,0.460367649793625,-0.389583200216293,0.797675788402557,-0.811107575893402,0.115014314651489,0.573477149009705,-0.246535465121269,-0.891431033611298,-0.380224883556366,-0.227383822202683,-0.970980048179626,0.0741242542862892,-0.545454382896423,0.0421545766294003,0.837079703807831,-0.246535465121269,-0.891431033611298,-0.380224883556366,0.852052688598633,-0.34481817483902,-0.393835723400116,0.523399472236633,-0.345061421394348,-0.779092729091644,-0.227383822202683,-0.970980048179626,0.0741242542862892,0.852052688598633,-0.34481817483902,-0.393835723400116,0.3548484146595,0.858625471591949,-0.369925826787949,-0.0158570241183043,0.863640606403351,-0.503858625888824,0.523399472236633,-0.345061421394348,-0.779092729091644,0.433535039424896,0.618660628795624,0.655214786529541,-0.811107575893402,0.115014314651489,0.573477149009705,-0.545454382896423,0.0421545766294003,0.837079703807831,0.471996605396271,0.805289745330811,0.358786404132843,-0.348535239696503,-0.932246863842011,-0.097153939306736,-0.192942231893539,0.161162316799164,0.967884182929993,-0.369034320116043,0.137545928359032,0.91918158531189,-0.157213181257248,-0.986450791358948,0.0468924902379513,0.145655423402786,-0.363400131464005,-0.920176446437836,-0.348535239696503,-0.932246863842011,-0.097153939306736,-0.157213181257248,-0.986450791358948,0.0468924902379513,0.154246285557747,-0.272802740335464,-0.949624478816986,0.363109529018402,0.931530714035034,-0.0200469344854355,0.145655423402786,-0.363400131464005,-0.920176446437836,0.154246285557747,-0.272802740335464,-0.949624478816986,0.138863265514374,0.988766670227051,-0.05529560521245,-0.192942231893539,0.161162316799164,0.967884182929993,
- 0.227723836898804,0.972975671291351,-0.0382131487131119,0.434934079647064,0.89438009262085,0.104481995105743,-0.369034320116043,0.137545928359032,0.91918158531189,-0.147306978702545,-0.923245310783386,0.354850351810455,0.577031075954437,0.269590348005295,0.770945012569427,0.244956597685814,0.270309209823608,0.931090354919434,-0.166298389434814,-0.961091578006744,0.220562592148781,-0.694156885147095,-0.325486361980438,-0.642031788825989,-0.147306978702545,-0.923245310783386,0.354850351810455,-0.166298389434814,-0.961091578006744,0.220562592148781,-0.240800976753235,-0.502483129501343,-0.830376863479614,0.540557086467743,0.769465088844299,-0.340178728103638,-0.694156885147095,-0.325486361980438,-0.642031788825989,-0.240800976753235,-0.502483129501343,-0.830376863479614,0.277223527431488,0.956375956535339,-0.0921533182263374,0.244956597685814,0.270309209823608,0.931090354919434,0.577031075954437,0.269590348005295,0.770945012569427,0.464434385299683,0.840337455272675,-0.279524385929108,0.14883728325367,0.987801373004913,-0.0457804836332798,0.864229261875153,0.00553448917344213,-0.503067851066589,0.252097219228745,-0.922799706459045,0.291355073451996,0.557291805744171,-0.722438395023346,0.409278154373169,0.620166480541229,-0.0794635266065598,-0.780435144901276,-0.309378802776337,0.879449665546417,-0.361736357212067,0.864229261875153,0.00553448917344213,-0.503067851066589,0.620166480541229,-0.0794635266065598,-0.780435144901276,-0.426491618156433,0.74197381734848,-0.517281115055084,-0.809996545314789,0.0269459094852209,0.585815250873566,-0.276466906070709,0.911650717258453,-0.304070651531219,-0.201876774430275,0.96027535200119,-0.192657858133316,-0.600531458854675,-0.0868137255311012,0.794874548912048,0.252097219228745,-0.922799706459045,0.291355073451996,-0.809996545314789,0.0269459094852209,0.585815250873566,-0.600531458854675,-0.0868137255311012,0.794874548912048,0.557291805744171,-0.722438395023346,0.409278154373169,0.538040935993195,-0.0967541635036469,-0.837347447872162,0.594604671001434,-0.773359775543213,0.219908863306046,
- 0.63776308298111,-0.710702180862427,0.296918481588364,0.407606661319733,-0.112978152930737,-0.906141579151154,-0.575124979019165,0.654574573040009,-0.490676581859589,0.538040935993195,-0.0967541635036469,-0.837347447872162,0.407606661319733,-0.112978152930737,-0.906141579151154,-0.722196102142334,0.645423352718353,-0.248719826340675,-0.420162379741669,-0.0303391385823488,0.906941652297974,-0.302518308162689,0.920462071895599,-0.247451484203339,-0.530244112014771,0.83178585767746,-0.164236083626747,-0.338568031787872,-0.0132668195292354,0.940848469734192,0.594604671001434,-0.773359775543213,0.219908863306046,-0.420162379741669,-0.0303391385823488,0.906941652297974,-0.338568031787872,-0.0132668195292354,0.940848469734192,0.63776308298111,-0.710702180862427,0.296918481588364,0.292311131954193,-0.248798012733459,-0.923392474651337,0.940787792205811,0.181578367948532,0.286264955997467,0.91532039642334,0.244074761867523,0.320337265729904,0.446859568357468,-0.265445828437805,-0.854315578937531,-0.930800497531891,-0.0491456426680088,-0.362208783626556,0.292178750038147,-0.245546698570251,-0.924304306507111,0.434405118227005,-0.184715792536736,-0.881573796272278,-0.901002883911133,-0.192676097154617,-0.388676851987839,-0.347320675849915,0.0552228316664696,0.936118960380554,-0.930800497531891,-0.0491456426680088,-0.362208783626556,-0.901002883911133,-0.192676097154617,-0.388676851987839,-0.262383937835693,0.211091086268425,0.941591918468475,0.940787792205811,0.181578367948532,0.286264955997467,-0.347320675849915,0.0552228316664696,0.936118960380554,-0.262383937835693,0.211091086268425,0.941591918468475,0.91532039642334,0.244074761867523,0.320337265729904,0.200866028666496,-0.304782778024673,-0.930999636650085,0.93285745382309,-0.152473762631416,0.326387137174606,0.95394241809845,-0.100884392857552,0.282517701387405,0.241160869598389,-0.133131921291351,-0.961310267448425,-0.949938297271729,0.123539067804813,-0.286976099014282,0.21541990339756,-0.236007258296013,-0.947573125362396,0.24553707242012,-0.0872106328606606,-0.965456306934357,
- -0.944113612174988,0.0727569088339806,-0.321490079164505,-0.265048503875732,0.244615748524666,0.932690978050232,-0.949938297271729,0.123539067804813,-0.286976099014282,-0.944113612174988,0.0727569088339806,-0.321490079164505,-0.360486716032028,0.0876045152544975,0.928641319274902,0.93285745382309,-0.152473762631416,0.326387137174606,-0.265048503875732,0.244615748524666,0.932690978050232,-0.360486716032028,0.0876045152544975,0.928641319274902,0.95394241809845,-0.100884392857552,0.282517701387405,0.18739640712738,-0.144264191389084,-0.971632838249207,0.981728374958038,-0.0149596240371466,0.189698845148087,0.95424222946167,-0.0648136734962463,0.291926234960556,0.28925895690918,-0.324624300003052,-0.900526702404022,-0.980231940746307,-0.0167392417788506,-0.197142168879509,0.180276647210121,0.0886788964271545,-0.979610323905945,0.307385325431824,0.0378290340304375,-0.950832903385162,-0.965539276599884,0.173561975359917,-0.193933352828026,-0.192220419645309,-0.000725892605260015,0.981351494789124,-0.980231940746307,-0.0167392417788506,-0.197142168879509,-0.965539276599884,0.173561975359917,-0.193933352828026,-0.123427845537663,-0.0173242054879665,0.992202341556549,0.981728374958038,-0.0149596240371466,0.189698845148087,-0.192220419645309,-0.000725892605260015,0.981351494789124,-0.123427845537663,-0.0173242054879665,0.992202341556549,0.95424222946167,-0.0648136734962463,0.291926234960556,-0.368787884712219,-0.695740163326263,0.616393625736237,0.873658776283264,-0.0396943278610706,0.484917283058167,0.577031075954437,0.269590348005295,0.770945012569427,-0.147306978702545,-0.923245310783386,0.354850351810455,0.464434385299683,0.840337455272675,-0.279524385929108,0.577031075954437,0.269590348005295,0.770945012569427,0.873658776283264,-0.0396943278610706,0.484917283058167,0.375292986631393,0.706871330738068,-0.599573254585266,0.319841265678406,0.790928542613983,-0.521664261817932,-0.888585925102234,-0.149502605199814,-0.433663487434387,-0.694156885147095,-0.325486361980438,-0.642031788825989,0.540557086467743,0.769465088844299,-0.340178728103638,
- -0.888585925102234,-0.149502605199814,-0.433663487434387,-0.368787884712219,-0.695740163326263,0.616393625736237,-0.147306978702545,-0.923245310783386,0.354850351810455,-0.694156885147095,-0.325486361980438,-0.642031788825989,-0.989839434623718,0.142190009355545,4.73411928396672e-005,-0.102152913808823,-0.777711451053619,-0.62026572227478,-0.246535465121269,-0.891431033611298,-0.380224883556366,-0.811107575893402,0.115014314651489,0.573477149009705,0.221646398305893,0.692653000354767,0.686370611190796,-0.989839434623718,0.142190009355545,4.73411928396672e-005,-0.811107575893402,0.115014314651489,0.573477149009705,0.433535039424896,0.618660628795624,0.655214786529541,0.91449099779129,-0.383634507656097,0.128571838140488,0.3179572224617,0.896481037139893,0.308585375547409,0.3548484146595,0.858625471591949,-0.369925826787949,0.852052688598633,-0.34481817483902,-0.393835723400116,-0.102152913808823,-0.777711451053619,-0.62026572227478,0.91449099779129,-0.383634507656097,0.128571838140488,0.852052688598633,-0.34481817483902,-0.393835723400116,-0.246535465121269,-0.891431033611298,-0.380224883556366,0.487284123897552,-0.56580913066864,-0.665142238140106,0.652651727199554,-0.340602815151215,0.676783204078674,0.788048565387726,-0.432764083147049,0.437829583883286,0.0835648402571678,-0.757946074008942,-0.646942555904388,-0.783201575279236,0.250369936227798,-0.569131135940552,0.487284123897552,-0.56580913066864,-0.665142238140106,0.0835648402571678,-0.757946074008942,-0.646942555904388,-0.852250695228577,0.267541825771332,-0.449544370174408,-0.0359688699245453,0.862880885601044,0.504125714302063,-0.783201575279236,0.250369936227798,-0.569131135940552,-0.852250695228577,0.267541825771332,-0.449544370174408,0.106136843562126,0.855998575687408,0.505965769290924,0.652651727199554,-0.340602815151215,0.676783204078674,-0.248722359538078,0.503763318061829,0.827260375022888,0.0119587033987045,0.703797340393066,0.710300207138062,0.788048565387726,-0.432764083147049,0.437829583883286,0.442087382078171,0.0176126044243574,-0.896799027919769,
- 0.947604656219482,0.0363271608948708,0.317373305559158,0.969615757465363,0.108378611505032,0.219315826892853,0.268083989620209,0.0496309101581573,-0.962116241455078,-0.932939112186432,0.113613642752171,-0.341638147830963,0.436814427375793,-0.0765718668699265,-0.89628678560257,0.26924791932106,-0.132767587900162,-0.953875362873077,-0.966926455497742,-0.0836820900440216,-0.240936934947968,-0.312209159135818,-0.129981070756912,0.941079318523407,-0.932939112186432,0.113613642752171,-0.341638147830963,-0.966926455497742,-0.0836820900440216,-0.240936934947968,-0.20128445327282,0.00734106171876192,0.97950541973114,0.947604656219482,0.0363271608948708,0.317373305559158,-0.312209159135818,-0.129981070756912,0.941079318523407,-0.20128445327282,0.00734106171876192,0.97950541973114,0.969615757465363,0.108378611505032,0.219315826892853,-0.348535239696503,-0.932246863842011,-0.097153939306736,0.145655423402786,-0.363400131464005,-0.920176446437836,-0.00357476761564612,-0.412388682365417,-0.911000967025757,-0.262511044740677,-0.964913666248322,-0.00543032679706812,-0.192942231893539,0.161162316799164,0.967884182929993,-0.348535239696503,-0.932246863842011,-0.097153939306736,-0.262511044740677,-0.964913666248322,-0.00543032679706812,0.0262810196727514,0.233513563871384,0.971998274326324,0.227723836898804,0.972975671291351,-0.0382131487131119,-0.192942231893539,0.161162316799164,0.967884182929993,0.0262810196727514,0.233513563871384,0.971998274326324,0.0847748070955276,0.98814445734024,-0.127999365329742,0.145655423402786,-0.363400131464005,-0.920176446437836,0.363109529018402,0.931530714035034,-0.0200469344854355,0.257403552532196,0.955440878868103,-0.144485875964165,-0.00357476761564612,-0.412388682365417,-0.911000967025757,-0.338568031787872,-0.0132668195292354,0.940848469734192,-0.530244112014771,0.83178585767746,-0.164236083626747,-0.570464074611664,0.80937534570694,-0.139579147100449,-0.0836782902479172,-0.0149513501673937,0.996380627155304,-0.722196102142334,0.645423352718353,-0.248719826340675,0.407606661319733,-0.112978152930737,-0.906141579151154,
- 0.0416941903531551,-0.156291589140892,-0.986830472946167,-0.690781831741333,0.707399070262909,-0.149689272046089,0.407606661319733,-0.112978152930737,-0.906141579151154,0.63776308298111,-0.710702180862427,0.296918481588364,0.771239280700684,-0.633430540561676,0.0628946721553802,0.0416941903531551,-0.156291589140892,-0.986830472946167,0.63776308298111,-0.710702180862427,0.296918481588364,-0.338568031787872,-0.0132668195292354,0.940848469734192,-0.0836782902479172,-0.0149513501673937,0.996380627155304,0.771239280700684,-0.633430540561676,0.0628946721553802,0.674445748329163,-0.226317822933197,0.702782452106476,0.0694248825311661,-0.093703992664814,0.993176639080048,0.0608279258012772,-0.0124247819185257,0.998070955276489,0.655739545822144,-0.215685725212097,0.723522901535034,0.839892864227295,0.474288791418076,-0.263875126838684,0.729439973831177,-0.0610622018575668,-0.681313991546631,0.92239898443222,0.00308298133313656,-0.386226266622543,0.878142178058624,0.455938637256622,0.144866153597832,-0.0523250252008438,0.065809540450573,-0.996459305286407,0.444314181804657,0.452510505914688,-0.773187696933746,0.317922949790955,0.474790811538696,-0.820669651031494,-0.207029536366463,0.0486175641417503,-0.977125942707062,-0.73310375213623,-0.380682766437531,0.563595116138458,-0.99707555770874,-0.00367512414231896,0.0763332024216652,-0.945497512817383,-0.0298054125159979,0.32426244020462,-0.559544920921326,-0.373436868190765,0.739901602268219,0.0107359178364277,-0.141873523592949,0.989826560020447,-0.607176184654236,0.142166435718536,0.781745374202728,-0.423764228820801,0.193852454423904,0.884785294532776,0.239857316017151,-0.0231632571667433,0.970531821250916,-0.563809633255005,0.271159201860428,0.780122637748718,0.746533513069153,0.0725153386592865,0.661384224891663,0.767301499843597,-0.0469339303672314,0.639566659927368,-0.559246778488159,-0.239310771226883,0.793708622455597,-0.554967761039734,0.525938510894775,0.644514858722687,0.7670778632164,0.0107998615130782,0.641463100910187,0.746533513069153,0.0725153386592865,0.661384224891663,
- -0.563809633255005,0.271159201860428,0.780122637748718,0.31786373257637,-0.140944391489029,-0.937601864337921,0.764054119586945,0.0320286676287651,0.644356608390808,-0.479495823383331,0.617018818855286,0.623996555805206,-0.702154219150543,0.440275400876999,0.559586524963379,-0.924268782138824,0.36992222070694,-0.0942589864134789,-0.939085483551025,0.342013031244278,-0.0338467508554459,-0.721487760543823,0.238666415214539,0.649995267391205,-0.254695773124695,0.503330707550049,0.82570469379425,0.45758393406868,0.714100062847137,0.529790461063385,0.145867183804512,0.639525711536407,0.754804313182831,-0.535916566848755,0.409133851528168,0.738514065742493,0.824727416038513,0.474878191947937,0.307108044624329,0.366853624582291,0.369477719068527,0.853759109973907,0.637648284435272,0.321489751338959,0.700035035610199,0.860550880432129,0.4998619556427,0.0979300811886787,-0.599513232707977,0.534286499023438,-0.595921039581299,0.138308480381966,0.566001951694489,-0.812719166278839,-0.114777751266956,0.519417703151703,-0.846776902675629,-0.730209231376648,0.549473702907562,-0.406045645475388,-0.874307870864868,0.483704805374146,-0.0401938147842884,-0.575849711894989,0.390175104141235,-0.718443036079407,-0.754320919513702,0.247208654880524,-0.608184218406677,-0.913332641124725,0.391002953052521,0.113754570484161,-0.771549046039581,0.0536253303289413,-0.633905649185181,-0.586992800235748,0.144203156232834,0.796645998954773,-0.575158715248108,0.114343024790287,0.810011148452759,-0.742163956165314,0.189192071557045,-0.642961144447327,-0.755940794944763,-0.010614407248795,-0.654553949832916,-0.686829805374146,0.18094938993454,0.703933358192444,-0.586992800235748,0.144203156232834,0.796645998954773,-0.771549046039581,0.0536253303289413,-0.633905649185181,0.31786373257637,-0.140944391489029,-0.937601864337921,-0.706459105014801,0.0726161152124405,0.704018831253052,-0.779950797557831,-0.0748957693576813,-0.62134325504303,-0.629137992858887,0.225413382053375,-0.743891298770905,-0.0720716565847397,0.033629197627306,-0.996832251548767,-0.0765486285090446,0.0270219389349222,-0.996699571609497,
- -0.657307267189026,0.233508408069611,-0.716533958911896,-0.900108814239502,-0.424793869256973,0.096716970205307,-0.790804028511047,0.0115943877026439,0.61195969581604,-0.942780613899231,-0.0462693311274052,0.330187499523163,-0.876491487026215,-0.429788947105408,-0.216896280646324,-0.353690326213837,-0.46829879283905,0.809690892696381,0.201759904623032,-0.080539382994175,0.976117968559265,0.0115205906331539,-0.182996928691864,0.983045995235443,-0.366118997335434,-0.588008642196655,0.721250772476196,0.962735772132874,-1.0212122106168e-005,-0.270443767309189,0.610757768154144,0.332465440034866,-0.718638837337494,0.784505546092987,0.345163255929947,-0.515182852745056,0.996851682662964,-0.0548387430608273,-0.0572670288383961,0.0626378729939461,0.157968878746033,-0.985455453395844,0.593309044837952,-0.166835531592369,-0.787496268749237,0.43807977437973,-0.182528465986252,-0.880209863185883,-0.170854613184929,0.0453910082578659,-0.984250247478485,0.671136915683746,-0.335966497659683,-0.660834074020386,-0.771549046039581,0.0536253303289413,-0.633905649185181,-0.742163956165314,0.189192071557045,-0.642961144447327,0.702034890651703,-0.123852774500847,-0.7012899518013,0.570482730865479,-0.335346400737762,-0.749728143215179,-0.755940794944763,-0.010614407248795,-0.654553949832916,-0.771549046039581,0.0536253303289413,-0.633905649185181,0.671136915683746,-0.335966497659683,-0.660834074020386,0.31786373257637,-0.140944391489029,-0.937601864337921,-0.779950797557831,-0.0748957693576813,-0.62134325504303,0.568141460418701,-0.326910942792892,-0.755211532115936,0.634056568145752,-0.219799622893333,-0.741390824317932,0.950481653213501,-0.308745503425598,0.035508319735527,0.940906822681427,-0.332895815372467,0.0622459873557091,0.656340599060059,-0.22800013422966,-0.71918910741806,0.269031018018723,-0.591500401496887,-0.760098457336426,-0.404658555984497,-0.81111353635788,-0.422310829162598,-0.265180110931396,-0.719273746013641,-0.642125308513641,0.519424080848694,-0.445136249065399,-0.729419112205505,-0.647926926612854,-0.756791055202484,-0.0863596051931381,
- -0.512909114360809,-0.272728025913239,-0.813967823982239,-0.613541483879089,-0.381878316402435,-0.691184282302856,-0.773651659488678,-0.63292121887207,0.0295601598918438,0.708051085472107,-0.428327977657318,0.561425745487213,-0.0995148867368698,-0.589937150478363,0.801293313503265,0.116028852760792,-0.541630625724792,0.832570433616638,0.828826248645782,-0.38987535238266,0.401303440332413,0.919146060943604,-0.382613837718964,-0.0936858505010605,0.586562812328339,-0.436856210231781,0.681982934474945,0.760197460651398,-0.318020820617676,0.566535592079163,0.899540066719055,-0.352803230285645,-0.257599472999573,0.746533513069153,0.0725153386592865,0.661384224891663,0.671136915683746,-0.335966497659683,-0.660834074020386,0.702034890651703,-0.123852774500847,-0.7012899518013,0.767301499843597,-0.0469339303672314,0.639566659927368,0.7670778632164,0.0107998615130782,0.641463100910187,0.570482730865479,-0.335346400737762,-0.749728143215179,0.671136915683746,-0.335966497659683,-0.660834074020386,0.746533513069153,0.0725153386592865,0.661384224891663,0.31786373257637,-0.140944391489029,-0.937601864337921,0.568141460418701,-0.326910942792892,-0.755211532115936,0.764054119586945,0.0320286676287651,0.644356608390808,0.434753149747849,-0.0699414014816284,0.897829592227936,-0.677748262882233,0.616420865058899,0.400852531194687,-0.628297626972198,0.631879448890686,0.453839659690857,0.581401228904724,-0.0687080323696136,0.810710668563843,-0.792177140712738,0.342403024435043,0.505188643932343,0.616024613380432,0.180088117718697,0.766864955425262,0.610732555389404,-0.0281383581459522,0.79133677482605,-0.639012336730957,0.542400062084198,0.545403838157654,0.642509937286377,0.121569633483887,0.756572544574738,-0.746173143386841,0.373956173658371,0.550801575183868,-0.880775034427643,-0.0765940994024277,-0.467299431562424,-0.677748262882233,0.616420865058899,0.400852531194687,-0.411301702260971,0.0389590598642826,-0.910666286945343,-0.531662106513977,-0.0316133238375187,-0.846366286277771,-0.628297626972198,0.631879448890686,0.453839659690857,
- -0.690937161445618,-0.165364161133766,-0.703747570514679,-0.792177140712738,0.342403024435043,0.505188643932343,-0.639012336730957,0.542400062084198,0.545403838157654,-0.537960648536682,0.0102496100589633,-0.842907726764679,-0.746173143386841,0.373956173658371,0.550801575183868,-0.689544200897217,-0.187124043703079,-0.699652373790741,-0.880775034427643,-0.0765940994024277,-0.467299431562424,-0.411301702260971,0.0389590598642826,-0.910666286945343,0.86503005027771,-0.306122481822968,-0.39750725030899,0.729309439659119,-0.455120176076889,-0.510855495929718,-0.531662106513977,-0.0316133238375187,-0.846366286277771,0.621655523777008,-0.232760921120644,-0.747908294200897,-0.690937161445618,-0.165364161133766,-0.703747570514679,-0.537960648536682,0.0102496100589633,-0.842907726764679,0.704699099063873,-0.235896602272987,-0.669142782688141,-0.689544200897217,-0.187124043703079,-0.699652373790741,0.749478280544281,-0.233052894473076,-0.619652092456818,-0.880775034427643,-0.0765940994024277,-0.467299431562424,0.675805449485779,-0.680772721767426,-0.282551944255829,0.434753149747849,-0.0699414014816284,0.897829592227936,0.581401228904724,-0.0687080323696136,0.810710668563843,0.597414255142212,-0.70046329498291,-0.390445321798325,0.610732555389404,-0.0281383581459522,0.79133677482605,0.616024613380432,0.180088117718697,0.766864955425262,0.549561738967896,-0.76876300573349,-0.327085852622986,0.458964973688126,-0.871384263038635,-0.173322603106499,0.699793934822083,-0.541820824146271,-0.465530604124069,0.642509937286377,0.121569633483887,0.756572544574738,-0.880775034427643,-0.0765940994024277,-0.467299431562424,-0.650285124778748,0.00289508933201432,0.759684801101685,-0.69512927532196,-0.265407562255859,-0.668097376823425,-0.688016474246979,-0.367634922266006,-0.62568211555481,-0.624216854572296,-0.0939516872167587,0.775581479072571,-0.547129213809967,-0.131064385175705,0.826723456382751,-0.687530517578125,-0.540074467658997,-0.485408335924149,-0.763170003890991,-0.527209877967834,-0.37365934252739,-0.472171485424042,-0.115772120654583,0.873871147632599,
- -0.934553742408752,-0.342220902442932,0.0974386036396027,0.444026350975037,0.101973675191402,0.890192091464996,-0.2857466340065,0.0688599199056625,0.955828011035919,0.647199273109436,-0.178528517484665,0.741121113300323,-0.971233427524567,-0.118072025477886,0.206796318292618,0.396815299987793,-0.49516573548317,0.772883236408234,-0.971233427524567,-0.118072025477886,0.206796318292618,-0.979010879993439,-0.195760384202003,0.0567059926688671,0.396815299987793,-0.49516573548317,0.772883236408234,0.396815299987793,-0.49516573548317,0.772883236408234,-0.979010879993439,-0.195760384202003,0.0567059926688671,-0.960571885108948,-0.243203461170197,0.134735852479935,0.229782611131668,-0.565921306610107,0.791790962219238,-0.968798279762268,-0.164496973156929,0.185393556952477,0.312643885612488,-0.385788470506668,0.86799830198288,0.314711064100266,-0.402947187423706,0.859412848949432,-0.952712953090668,-0.0830081179738045,0.292314350605011,0.318760365247726,-0.412672996520996,0.853283584117889,-0.938007533550262,-0.228527814149857,0.260608792304993,-0.514847576618195,0.44410103559494,-0.733284592628479,-0.69512927532196,-0.265407562255859,-0.668097376823425,0.428968608379364,-0.0670571699738503,-0.900827050209045,0.460473388433456,0.00393700273707509,-0.88766473531723,-0.688016474246979,-0.367634922266006,-0.62568211555481,-0.687530517578125,-0.540074467658997,-0.485408335924149,0.49679172039032,0.0943356975913048,-0.862727522850037,0.442955732345581,0.0975769311189651,-0.891217768192291,-0.763170003890991,-0.527209877967834,-0.37365934252739,-0.166782230138779,-0.0770906805992126,-0.982975482940674,-0.934553742408752,-0.342220902442932,0.0974386036396027,-0.821861028671265,-0.387483268976212,-0.417613595724106,0.268550992012024,-0.110605925321579,-0.956894338130951,-0.971233427524567,-0.118072025477886,0.206796318292618,-0.751033782958984,0.105563767254353,-0.651770412921906,-0.593524098396301,0.480107665061951,-0.645930171012878,-0.979010879993439,-0.195760384202003,0.0567059926688671,-0.979010879993439,-0.195760384202003,0.0567059926688671,
- -0.593524098396301,0.480107665061951,-0.645930171012878,-0.189603418111801,0.619111299514771,-0.762070834636688,-0.960571885108948,-0.243203461170197,0.134735852479935,-0.245631918311119,0.42445981502533,-0.871492266654968,-0.968798279762268,-0.164496973156929,0.185393556952477,-0.952712953090668,-0.0830081179738045,0.292314350605011,-0.201407060027123,0.430875688791275,-0.879648447036743,-0.938007533550262,-0.228527814149857,0.260608792304993,-0.365106552839279,0.389155089855194,-0.845727920532227,-0.514847576618195,0.44410103559494,-0.733284592628479,0.428968608379364,-0.0670571699738503,-0.900827050209045,0.795085489749908,0.454390853643417,0.401706546545029,0.711349010467529,0.589680075645447,0.382439643144608,0.460473388433456,0.00393700273707509,-0.88766473531723,0.49679172039032,0.0943356975913048,-0.862727522850037,0.627249777317047,0.633555352687836,0.452951610088348,0.668879330158234,0.56571501493454,0.482251942157745,0.442955732345581,0.0975769311189651,-0.891217768192291,0.923508107662201,0.335808426141739,-0.185379475355148,-0.166782230138779,-0.0770906805992126,-0.982975482940674,0.268550992012024,-0.110605925321579,-0.956894338130951,0.910678327083588,0.191517233848572,0.36604106426239,-0.751033782958984,0.105563767254353,-0.651770412921906,0.863673329353333,0.412771344184875,-0.289289236068726,-0.593524098396301,0.480107665061951,-0.645930171012878,0.863673329353333,0.412771344184875,-0.289289236068726,0.936319231987,0.328480154275894,0.124125465750694,-0.593524098396301,0.480107665061951,-0.645930171012878,-0.593524098396301,0.480107665061951,-0.645930171012878,0.936319231987,0.328480154275894,0.124125465750694,0.964406251907349,0.247389271855354,-0.0933758318424225,-0.189603418111801,0.619111299514771,-0.762070834636688,0.898309588432312,0.377981424331665,-0.223986223340034,-0.245631918311119,0.42445981502533,-0.871492266654968,-0.201407060027123,0.430875688791275,-0.879648447036743,0.961931824684143,0.261906832456589,-0.0780505463480949,-0.365106552839279,0.389155089855194,-0.845727920532227,0.930595099925995,0.33039402961731,-0.157583892345428,
- -0.514847576618195,0.44410103559494,-0.733284592628479,0.854399442672729,0.213606595993042,0.473681151866913,-0.650285124778748,0.00289508933201432,0.759684801101685,-0.624216854572296,-0.0939516872167587,0.775581479072571,0.827446341514587,0.295701533555985,0.477381587028503,0.674362301826477,0.568310022354126,0.471443772315979,-0.547129213809967,-0.131064385175705,0.826723456382751,-0.472171485424042,-0.115772120654583,0.873871147632599,0.630959451198578,0.615238130092621,0.472622603178024,-0.2857466340065,0.0688599199056625,0.955828011035919,0.444026350975037,0.101973675191402,0.890192091464996,0.935347676277161,0.300058424472809,-0.18732263147831,0.749498009681702,0.536542892456055,0.387781530618668,0.872567713260651,0.382208794355392,-0.304207175970078,0.647199273109436,-0.178528517484665,0.741121113300323,0.396815299987793,-0.49516573548317,0.772883236408234,0.991882860660553,0.127022564411163,-0.00579891400411725,0.991882860660553,0.127022564411163,-0.00579891400411725,0.396815299987793,-0.49516573548317,0.772883236408234,0.229782611131668,-0.565921306610107,0.791790962219238,0.962291657924652,0.259149879217148,-0.0826810076832771,0.312643885612488,-0.385788470506668,0.86799830198288,0.92936646938324,-0.156580775976181,-0.334305822849274,0.981564998626709,-0.0482840985059738,-0.184929415583611,0.314711064100266,-0.402947187423706,0.859412848949432,0.959059059619904,0.140740364789963,-0.245760232210159,0.318760365247726,-0.412672996520996,0.853283584117889,-0.514847576618195,0.44410103559494,-0.733284592628479,-0.324397027492523,-0.873183846473694,0.3637535572052,-0.640345335006714,-0.0568852908909321,-0.765977799892426,-0.675916194915771,-0.157697349786758,-0.719908893108368,-0.252114146947861,-0.838440835475922,0.483172208070755,-0.956293284893036,0.280044436454773,-0.0841321274638176,-0.397408932447433,-0.695247232913971,0.598913609981537,-0.31796607375145,-0.85276859998703,0.414346933364868,-0.853811979293823,-0.0798420384526253,-0.514422357082367,-0.946456730365753,0.11250851303339,-0.30259120464325,-0.144272074103355,-0.747578203678131,0.648315072059631,
- -0.414522409439087,-0.763580501079559,0.49509185552597,-0.891034364700317,0.438768535852432,-0.116361230611801,-0.995766758918762,0.0276929084211588,-0.0876446813344955,-0.170517697930336,-0.349104702472687,0.921438872814178,-0.0435693077743053,-0.461514323949814,0.886062145233154,-0.987787365913391,0.0487178415060043,-0.14799639582634,-0.640345335006714,-0.0568852908909321,-0.765977799892426,0.174000412225723,0.891151249408722,-0.419014751911163,0.333472460508347,0.878398537635803,-0.34236279129982,-0.675916194915771,-0.157697349786758,-0.719908893108368,0.371825307607651,0.837022721767426,-0.401421099901199,-0.956293284893036,0.280044436454773,-0.0841321274638176,-0.853811979293823,-0.0798420384526253,-0.514422357082367,0.40307942032814,0.747414708137512,-0.5281081199646,0.360036671161652,0.797088384628296,-0.484792441129684,-0.946456730365753,0.11250851303339,-0.30259120464325,-0.891034364700317,0.438768535852432,-0.116361230611801,0.389295488595963,0.826896965503693,-0.405820816755295,0.0223171878606081,0.411163240671158,-0.911288440227509,-0.995766758918762,0.0276929084211588,-0.0876446813344955,-0.987787365913391,0.0487178415060043,-0.14799639582634,0.246884763240814,0.51199471950531,-0.822744905948639,0.550875902175903,0.572925984859467,-0.606870293617249,0.775315284729004,0.114858582615852,0.621042430400848,0.767274677753448,-0.0201140679419041,0.64100307226181,0.608277261257172,0.596624732017517,-0.523486196994781,0.766463577747345,-0.64139449596405,-0.0338603481650352,0.305699914693832,0.106970310211182,-0.946099936962128,0.51790189743042,0.432277768850327,-0.738182663917542,0.770275950431824,-0.236074656248093,0.592405080795288,0.968383073806763,-0.229776531457901,0.0971447005867958,0.385158687829971,0.44536167383194,-0.808273315429688,0.285222291946411,0.402814328670502,-0.869706153869629,0.887397110462189,-0.451401054859161,-0.0936124846339226,0.979342699050903,-0.187037825584412,0.0768429934978485,0.0787166357040405,-0.0588031411170959,-0.995161235332489,0.26078462600708,0.070024847984314,-0.962854027748108,
- 0.981092214584351,-0.172084003686905,0.0885736793279648,0.775315284729004,0.114858582615852,0.621042430400848,-0.324397027492523,-0.873183846473694,0.3637535572052,-0.252114146947861,-0.838440835475922,0.483172208070755,0.767274677753448,-0.0201140679419041,0.64100307226181,-0.31796607375145,-0.85276859998703,0.414346933364868,-0.397408932447433,-0.695247232913971,0.598913609981537,0.766463577747345,-0.64139449596405,-0.0338603481650352,0.770275950431824,-0.236074656248093,0.592405080795288,-0.414522409439087,-0.763580501079559,0.49509185552597,-0.144272074103355,-0.747578203678131,0.648315072059631,0.968383073806763,-0.229776531457901,0.0971447005867958,0.887397110462189,-0.451401054859161,-0.0936124846339226,-0.170517697930336,-0.349104702472687,0.921438872814178,0.979342699050903,-0.187037825584412,0.0768429934978485,0.981092214584351,-0.172084003686905,0.0885736793279648,-0.0435693077743053,-0.461514323949814,0.886062145233154,-0.0720716565847397,0.033629197627306,-0.996832251548767,0.634056568145752,-0.219799622893333,-0.741390824317932,0.656340599060059,-0.22800013422966,-0.71918910741806,-0.0765486285090446,0.0270219389349222,-0.996699571609497,-0.404658555984497,-0.81111353635788,-0.422310829162598,-0.900108814239502,-0.424793869256973,0.096716970205307,-0.876491487026215,-0.429788947105408,-0.216896280646324,-0.265180110931396,-0.719273746013641,-0.642125308513641,-0.366118997335434,-0.588008642196655,0.721250772476196,-0.647926926612854,-0.756791055202484,-0.0863596051931381,-0.773651659488678,-0.63292121887207,0.0295601598918438,-0.353690326213837,-0.46829879283905,0.809690892696381,0.996851682662964,-0.0548387430608273,-0.0572670288383961,0.708051085472107,-0.428327977657318,0.561425745487213,0.828826248645782,-0.38987535238266,0.401303440332413,0.962735772132874,-1.0212122106168e-005,-0.270443767309189,0.899540066719055,-0.352803230285645,-0.257599472999573,0.43807977437973,-0.182528465986252,-0.880209863185883,0.593309044837952,-0.166835531592369,-0.787496268749237,0.919146060943604,-0.382613837718964,-0.0936858505010605,
- -0.924268782138824,0.36992222070694,-0.0942589864134789,-0.629137992858887,0.225413382053375,-0.743891298770905,-0.657307267189026,0.233508408069611,-0.716533958911896,-0.939085483551025,0.342013031244278,-0.0338467508554459,-0.790804028511047,0.0115943877026439,0.61195969581604,-0.254695773124695,0.503330707550049,0.82570469379425,-0.535916566848755,0.409133851528168,0.738514065742493,-0.942780613899231,-0.0462693311274052,0.330187499523163,0.366853624582291,0.369477719068527,0.853759109973907,0.0115205906331539,-0.182996928691864,0.983045995235443,0.201759904623032,-0.080539382994175,0.976117968559265,0.637648284435272,0.321489751338959,0.700035035610199,0.138308480381966,0.566001951694489,-0.812719166278839,0.784505546092987,0.345163255929947,-0.515182852745056,0.610757768154144,0.332465440034866,-0.718638837337494,-0.114777751266956,0.519417703151703,-0.846776902675629,-0.754320919513702,0.247208654880524,-0.608184218406677,-0.575849711894989,0.390175104141235,-0.718443036079407,0.0626378729939461,0.157968878746033,-0.985455453395844,-0.170854613184929,0.0453910082578659,-0.984250247478485,0.0694248825311661,-0.093703992664814,0.993176639080048,-0.752776801586151,-0.0866199061274529,0.652552008628845,-0.73728883266449,0.190081834793091,0.648285508155823,0.0608279258012772,-0.0124247819185257,0.998070955276489,0.413666546344757,0.784538149833679,0.46193066239357,0.839892864227295,0.474288791418076,-0.263875126838684,0.878142178058624,0.455938637256622,0.144866153597832,0.135263830423355,0.674669563770294,0.725620210170746,0.444314181804657,0.452510505914688,-0.773187696933746,0.491854310035706,0.865277469158173,0.0968201756477356,0.581861734390259,0.813048243522644,0.0197370368987322,0.317922949790955,0.474790811538696,-0.820669651031494,-0.99707555770874,-0.00367512414231896,0.0763332024216652,-0.626733422279358,0.419215947389603,-0.656858623027802,-0.816314339637756,0.266431599855423,-0.512489020824432,-0.945497512817383,-0.0298054125159979,0.32426244020462,-0.423764228820801,0.193852454423904,0.884785294532776,
- -0.607176184654236,0.142166435718536,0.781745374202728,-0.900369584560394,0.43264502286911,-0.0463993921875954,-0.920862019062042,0.37273970246315,0.114360496401787,0.950481653213501,-0.308745503425598,0.035508319735527,0.674445748329163,-0.226317822933197,0.702782452106476,0.655739545822144,-0.215685725212097,0.723522901535034,0.940906822681427,-0.332895815372467,0.0622459873557091,0.729439973831177,-0.0610622018575668,-0.681313991546631,0.269031018018723,-0.591500401496887,-0.760098457336426,0.519424080848694,-0.445136249065399,-0.729419112205505,0.92239898443222,0.00308298133313656,-0.386226266622543,-0.512909114360809,-0.272728025913239,-0.813967823982239,-0.0523250252008438,0.065809540450573,-0.996459305286407,-0.207029536366463,0.0486175641417503,-0.977125942707062,-0.613541483879089,-0.381878316402435,-0.691184282302856,-0.0995148867368698,-0.589937150478363,0.801293313503265,-0.73310375213623,-0.380682766437531,0.563595116138458,-0.559544920921326,-0.373436868190765,0.739901602268219,0.116028852760792,-0.541630625724792,0.832570433616638,0.760197460651398,-0.318020820617676,0.566535592079163,0.586562812328339,-0.436856210231781,0.681982934474945,0.0107359178364277,-0.141873523592949,0.989826560020447,0.239857316017151,-0.0231632571667433,0.970531821250916,-0.985373675823212,-0.170361816883087,0.0039313081651926,-0.679803788661957,-0.592131853103638,-0.432720154523849,-0.876491487026215,-0.429788947105408,-0.216896280646324,-0.942780613899231,-0.0462693311274052,0.330187499523163,-0.535916566848755,0.409133851528168,0.738514065742493,-0.798691689968109,0.342098444700241,0.495035499334335,-0.985373675823212,-0.170361816883087,0.0039313081651926,-0.942780613899231,-0.0462693311274052,0.330187499523163,-0.191373899579048,0.607282340526581,0.77109283208847,-0.798691689968109,0.342098444700241,0.495035499334335,-0.535916566848755,0.409133851528168,0.738514065742493,0.145867183804512,0.639525711536407,0.754804313182831,0.878142178058624,0.455938637256622,0.144866153597832,0.706681728363037,0.571770668029785,0.416748553514481,
- -0.207882583141327,0.749146163463593,0.628939509391785,0.135263830423355,0.674669563770294,0.725620210170746,0.992713391780853,0.113050125539303,-0.0417102240025997,0.706681728363037,0.571770668029785,0.416748553514481,0.878142178058624,0.455938637256622,0.144866153597832,0.92239898443222,0.00308298133313656,-0.386226266622543,0.519424080848694,-0.445136249065399,-0.729419112205505,0.788566529750824,-0.38874477148056,-0.476487517356873,0.992713391780853,0.113050125539303,-0.0417102240025997,0.92239898443222,0.00308298133313656,-0.386226266622543,0.0613007396459579,-0.725980281829834,-0.684977948665619,0.788566529750824,-0.38874477148056,-0.476487517356873,0.519424080848694,-0.445136249065399,-0.729419112205505,-0.265180110931396,-0.719273746013641,-0.642125308513641,-0.876491487026215,-0.429788947105408,-0.216896280646324,-0.679803788661957,-0.592131853103638,-0.432720154523849,0.0613007396459579,-0.725980281829834,-0.684977948665619,-0.265180110931396,-0.719273746013641,-0.642125308513641,-0.739520847797394,-0.173391208052635,-0.6504185795784,-0.221380650997162,-0.513259828090668,-0.829189360141754,-0.336447030305862,-0.576229512691498,-0.744824051856995,-0.823108494281769,-0.210863515734673,-0.527284562587738,-0.939687252044678,0.328381836414337,-0.0956722795963287,-0.739520847797394,-0.173391208052635,-0.6504185795784,-0.823108494281769,-0.210863515734673,-0.527284562587738,-0.950157701969147,0.309146672487259,-0.0403568968176842,-0.563587963581085,0.629879057407379,0.534435272216797,-0.939687252044678,0.328381836414337,-0.0956722795963287,-0.950157701969147,0.309146672487259,-0.0403568968176842,-0.552380323410034,0.750056147575378,0.363719522953033,0.323873847723007,0.462385267019272,0.825412392616272,-0.581866919994354,0.578685581684113,0.571448862552643,-0.54553759098053,0.534113228321075,0.645842015743256,0.373291045427322,0.565328240394592,0.735566377639771,0.832765460014343,0.077504426240921,0.54817396402359,0.323873847723007,0.462385267019272,0.825412392616272,0.373291045427322,0.565328240394592,0.735566377639771,
- 0.860341012477875,0.141708478331566,0.489624410867691,0.946870446205139,-0.321574866771698,0.00509123969823122,0.832765460014343,0.077504426240921,0.54817396402359,0.860341012477875,0.141708478331566,0.489624410867691,0.946420550346375,-0.322577625513077,-0.0152208032086492,0.519234716892242,-0.643637418746948,-0.562250912189484,0.946870446205139,-0.321574866771698,0.00509123969823122,0.946420550346375,-0.322577625513077,-0.0152208032086492,0.439051359891891,-0.668424546718597,-0.600368678569794,-0.221380650997162,-0.513259828090668,-0.829189360141754,0.519234716892242,-0.643637418746948,-0.562250912189484,0.439051359891891,-0.668424546718597,-0.600368678569794,-0.336447030305862,-0.576229512691498,-0.744824051856995,0.0115205906331539,-0.182996928691864,0.983045995235443,0.366853624582291,0.369477719068527,0.853759109973907,0.0835960730910301,0.595182299613953,0.799230635166168,-0.422528505325317,0.056453675031662,0.904589772224426,0.366853624582291,0.369477719068527,0.853759109973907,0.824727416038513,0.474878191947937,0.307108044624329,0.658458471298218,0.637159526348114,0.400574713945389,0.0835960730910301,0.595182299613953,0.799230635166168,0.491854310035706,0.865277469158173,0.0968201756477356,0.444314181804657,0.452510505914688,-0.773187696933746,0.69580078125,0.453636169433594,-0.556844294071198,0.446578741073608,0.874640762805939,0.188602834939957,0.444314181804657,0.452510505914688,-0.773187696933746,-0.0523250252008438,0.065809540450573,-0.996459305286407,0.38580784201622,-0.0714342370629311,-0.919809401035309,0.69580078125,0.453636169433594,-0.556844294071198,-0.0523250252008438,0.065809540450573,-0.996459305286407,-0.512909114360809,-0.272728025913239,-0.813967823982239,-0.111101791262627,-0.563641011714935,-0.818513989448547,0.38580784201622,-0.0714342370629311,-0.919809401035309,-0.512909114360809,-0.272728025913239,-0.813967823982239,-0.647926926612854,-0.756791055202484,-0.0863596051931381,-0.520340263843536,-0.839251339435577,-0.157807692885399,-0.111101791262627,-0.563641011714935,-0.818513989448547,
- -0.647926926612854,-0.756791055202484,-0.0863596051931381,-0.366118997335434,-0.588008642196655,0.721250772476196,-0.700751900672913,-0.457044303417206,0.547774732112885,-0.520340263843536,-0.839251339435577,-0.157807692885399,-0.366118997335434,-0.588008642196655,0.721250772476196,0.0115205906331539,-0.182996928691864,0.983045995235443,-0.422528505325317,0.056453675031662,0.904589772224426,-0.700751900672913,-0.457044303417206,0.547774732112885,0.924629688262939,0.169728815555573,0.34095761179924,0.757295787334442,0.601865351200104,-0.253498047590256,0.784752428531647,0.612278938293457,0.0963233783841133,0.677901387214661,0.188009276986122,0.710705459117889,0.757295787334442,0.601865351200104,-0.253498047590256,0.103446781635284,0.737151443958282,-0.667762339115143,0.374503821134567,0.773164749145508,-0.511823356151581,0.784752428531647,0.612278938293457,0.0963233783841133,0.100599408149719,0.743269443511963,-0.661385118961334,-0.744682550430298,0.282527595758438,-0.604670166969299,-0.356779515743256,0.274785131216049,-0.892861425876617,0.32876518368721,0.817991435527802,-0.472020596265793,-0.744682550430298,0.282527595758438,-0.604670166969299,-0.944135367870331,-0.251672357320786,-0.212766289710999,-0.701742351055145,-0.263599097728729,-0.661871016025543,-0.356779515743256,0.274785131216049,-0.892861425876617,-0.944135367870331,-0.251672357320786,-0.212766289710999,-0.684801399707794,-0.645826935768127,0.337571561336517,-0.748965620994568,-0.657731533050537,-0.0802483037114143,-0.701742351055145,-0.263599097728729,-0.661871016025543,-0.684801399707794,-0.645826935768127,0.337571561336517,0.00672621699050069,-0.743394136428833,0.668819725513458,-0.368974983692169,-0.731800973415375,0.572996258735657,-0.748965620994568,-0.657731533050537,-0.0802483037114143,0.00672621699050069,-0.743394136428833,0.668819725513458,0.685734152793884,-0.405499458312988,0.604432821273804,0.347328096628189,-0.417924374341965,0.8394655585289,-0.368974983692169,-0.731800973415375,0.572996258735657,0.685734152793884,-0.405499458312988,0.604432821273804,
- 0.924629688262939,0.169728815555573,0.34095761179924,0.677901387214661,0.188009276986122,0.710705459117889,0.347328096628189,-0.417924374341965,0.8394655585289,0.440143913030624,0.330182820558548,-0.835016489028931,0.876028120517731,-0.0177678242325783,-0.481932610273361,0.76031231880188,-0.0855211839079857,-0.643903136253357,0.284730345010757,0.258957475423813,-0.922967910766602,-0.405728161334991,0.497452139854431,-0.76676332950592,-0.299736082553864,0.512258350849152,-0.804828941822052,0.440143913030624,0.330182820558548,-0.835016489028931,0.284730345010757,0.258957475423813,-0.922967910766602,-0.835694134235382,0.495600938796997,-0.236632853746414,-0.299736082553864,0.512258350849152,-0.804828941822052,-0.405728161334991,0.497452139854431,-0.76676332950592,-0.856544673442841,0.489491671323776,-0.163490667939186,-0.770455002784729,0.0987776294350624,0.629795372486115,-0.842492401599884,0.0257196649909019,0.538094043731689,-0.887073278427124,0.365639001131058,-0.281795978546143,-0.867253303527832,0.467842400074005,-0.170279294252396,-0.388740986585617,-0.345455139875412,0.854131877422333,-0.842492401599884,0.0257196649909019,0.538094043731689,-0.770455002784729,0.0987776294350624,0.629795372486115,-0.287244111299515,-0.285615146160126,0.914283812046051,0.354342818260193,-0.553569495677948,0.753659069538116,0.291214674711227,-0.548068583011627,0.784101188182831,-0.388740986585617,-0.345455139875412,0.854131877422333,-0.287244111299515,-0.285615146160126,0.914283812046051,0.869286477565765,-0.455752402544022,0.191391617059708,0.291214674711227,-0.548068583011627,0.784101188182831,0.354342818260193,-0.553569495677948,0.753659069538116,0.901780009269714,-0.427077770233154,0.0663125440478325,0.76031231880188,-0.0855211839079857,-0.643903136253357,0.876028120517731,-0.0177678242325783,-0.481932610273361,0.869286477565765,-0.455752402544022,0.191391617059708,0.901780009269714,-0.427077770233154,0.0663125440478325,0.784505546092987,0.345163255929947,-0.515182852745056,0.138308480381966,0.566001951694489,-0.812719166278839,
- 0.480136603116989,0.62955117225647,-0.610847234725952,0.946770846843719,0.254056364297867,-0.197687357664108,0.138308480381966,0.566001951694489,-0.812719166278839,-0.599513232707977,0.534286499023438,-0.595921039581299,-0.280834138393402,0.667784452438354,-0.689344704151154,0.480136603116989,0.62955117225647,-0.610847234725952,-0.626733422279358,0.419215947389603,-0.656858623027802,-0.99707555770874,-0.00367512414231896,0.0763332024216652,-0.958190083503723,0.201120659708977,-0.203524455428123,-0.27792876958847,0.694708168506622,-0.663427650928497,-0.99707555770874,-0.00367512414231896,0.0763332024216652,-0.73310375213623,-0.380682766437531,0.563595116138458,-0.9076087474823,-0.31378436088562,0.278901010751724,-0.958190083503723,0.201120659708977,-0.203524455428123,-0.73310375213623,-0.380682766437531,0.563595116138458,-0.0995148867368698,-0.589937150478363,0.801293313503265,-0.383746236562729,-0.672107636928558,0.633253693580627,-0.9076087474823,-0.31378436088562,0.278901010751724,-0.0995148867368698,-0.589937150478363,0.801293313503265,0.708051085472107,-0.428327977657318,0.561425745487213,0.431000292301178,-0.625318825244904,0.650549829006195,-0.383746236562729,-0.672107636928558,0.633253693580627,0.708051085472107,-0.428327977657318,0.561425745487213,0.996851682662964,-0.0548387430608273,-0.0572670288383961,0.941843092441559,-0.241286382079124,0.233907237648964,0.431000292301178,-0.625318825244904,0.650549829006195,0.996851682662964,-0.0548387430608273,-0.0572670288383961,0.784505546092987,0.345163255929947,-0.515182852745056,0.946770846843719,0.254056364297867,-0.197687357664108,0.941843092441559,-0.241286382079124,0.233907237648964,-0.170854613184929,0.0453910082578659,-0.984250247478485,0.43807977437973,-0.182528465986252,-0.880209863185883,0.254918038845062,-0.0884552225470543,-0.962908387184143,-0.383077353239059,0.102237321436405,-0.918040990829468,-0.892034649848938,0.248089894652367,-0.377790421247482,-0.754320919513702,0.247208654880524,-0.608184218406677,-0.170854613184929,0.0453910082578659,-0.984250247478485,
- -0.383077353239059,0.102237321436405,-0.918040990829468,-0.913332641124725,0.391002953052521,0.113754570484161,-0.754320919513702,0.247208654880524,-0.608184218406677,-0.892034649848938,0.248089894652367,-0.377790421247482,-0.860226333141327,0.354120701551437,0.366891473531723,-0.245132401585579,0.103224284946918,0.963978707790375,-0.423764228820801,0.193852454423904,0.884785294532776,-0.920862019062042,0.37273970246315,0.114360496401787,-0.879751086235046,0.292997688055038,0.374420166015625,0.239857316017151,-0.0231632571667433,0.970531821250916,-0.423764228820801,0.193852454423904,0.884785294532776,-0.245132401585579,0.103224284946918,0.963978707790375,0.3925521671772,-0.107721634209156,0.913399636745453,0.867285370826721,-0.289052486419678,0.40529602766037,0.760197460651398,-0.318020820617676,0.566535592079163,0.239857316017151,-0.0231632571667433,0.970531821250916,0.3925521671772,-0.107721634209156,0.913399636745453,0.899540066719055,-0.352803230285645,-0.257599472999573,0.760197460651398,-0.318020820617676,0.566535592079163,0.867285370826721,-0.289052486419678,0.40529602766037,0.856181740760803,-0.264896720647812,-0.443601876497269,0.254918038845062,-0.0884552225470543,-0.962908387184143,0.43807977437973,-0.182528465986252,-0.880209863185883,0.899540066719055,-0.352803230285645,-0.257599472999573,0.856181740760803,-0.264896720647812,-0.443601876497269,-0.559246778488159,-0.239310771226883,0.793708622455597,0.767301499843597,-0.0469339303672314,0.639566659927368,0.710284471511841,-0.359309256076813,0.605304002761841,-0.732726573944092,-0.230561479926109,0.640275895595551,-0.742163956165314,0.189192071557045,-0.642961144447327,-0.575158715248108,0.114343024790287,0.810011148452759,-0.720034778118134,0.0357264541089535,0.693017661571503,-0.662531733512878,0.404932349920273,-0.630143880844116,0.702034890651703,-0.123852774500847,-0.7012899518013,-0.742163956165314,0.189192071557045,-0.642961144447327,-0.662531733512878,0.404932349920273,-0.630143880844116,0.653872966766357,0.0962934717535973,-0.750451683998108,0.767301499843597,-0.0469339303672314,0.639566659927368,
- 0.702034890651703,-0.123852774500847,-0.7012899518013,0.653872966766357,0.0962934717535973,-0.750451683998108,0.710284471511841,-0.359309256076813,0.605304002761841,-0.779950797557831,-0.0748957693576813,-0.62134325504303,-0.706459105014801,0.0726161152124405,0.704018831253052,-0.686829805374146,0.18094938993454,0.703933358192444,-0.755940794944763,-0.010614407248795,-0.654553949832916,-0.479495823383331,0.617018818855286,0.623996555805206,0.764054119586945,0.0320286676287651,0.644356608390808,0.7670778632164,0.0107998615130782,0.641463100910187,-0.554967761039734,0.525938510894775,0.644514858722687,0.764054119586945,0.0320286676287651,0.644356608390808,0.568141460418701,-0.326910942792892,-0.755211532115936,0.570482730865479,-0.335346400737762,-0.749728143215179,0.7670778632164,0.0107998615130782,0.641463100910187,0.568141460418701,-0.326910942792892,-0.755211532115936,-0.779950797557831,-0.0748957693576813,-0.62134325504303,-0.755940794944763,-0.010614407248795,-0.654553949832916,0.570482730865479,-0.335346400737762,-0.749728143215179,-0.628297626972198,0.631879448890686,0.453839659690857,-0.531662106513977,-0.0316133238375187,-0.846366286277771,-0.537960648536682,0.0102496100589633,-0.842907726764679,-0.639012336730957,0.542400062084198,0.545403838157654,0.581401228904724,-0.0687080323696136,0.810710668563843,-0.628297626972198,0.631879448890686,0.453839659690857,-0.639012336730957,0.542400062084198,0.545403838157654,0.610732555389404,-0.0281383581459522,0.79133677482605,0.597414255142212,-0.70046329498291,-0.390445321798325,0.581401228904724,-0.0687080323696136,0.810710668563843,0.610732555389404,-0.0281383581459522,0.79133677482605,0.458964973688126,-0.871384263038635,-0.173322603106499,-0.531662106513977,-0.0316133238375187,-0.846366286277771,0.729309439659119,-0.455120176076889,-0.510855495929718,0.704699099063873,-0.235896602272987,-0.669142782688141,-0.537960648536682,0.0102496100589633,-0.842907726764679,-0.689544200897217,-0.187124043703079,-0.699652373790741,-0.746173143386841,0.373956173658371,0.550801575183868,
- -0.792177140712738,0.342403024435043,0.505188643932343,-0.690937161445618,-0.165364161133766,-0.703747570514679,-0.746173143386841,0.373956173658371,0.550801575183868,0.642509937286377,0.121569633483887,0.756572544574738,0.616024613380432,0.180088117718697,0.766864955425262,-0.792177140712738,0.342403024435043,0.505188643932343,0.549561738967896,-0.76876300573349,-0.327085852622986,0.616024613380432,0.180088117718697,0.766864955425262,0.642509937286377,0.121569633483887,0.756572544574738,0.699793934822083,-0.541820824146271,-0.465530604124069,0.749478280544281,-0.233052894473076,-0.619652092456818,-0.689544200897217,-0.187124043703079,-0.699652373790741,-0.690937161445618,-0.165364161133766,-0.703747570514679,0.621655523777008,-0.232760921120644,-0.747908294200897,0.460473388433456,0.00393700273707509,-0.88766473531723,0.711349010467529,0.589680075645447,0.382439643144608,0.627249777317047,0.633555352687836,0.452951610088348,0.49679172039032,0.0943356975913048,-0.862727522850037,-0.688016474246979,-0.367634922266006,-0.62568211555481,0.460473388433456,0.00393700273707509,-0.88766473531723,0.49679172039032,0.0943356975913048,-0.862727522850037,-0.687530517578125,-0.540074467658997,-0.485408335924149,-0.624216854572296,-0.0939516872167587,0.775581479072571,-0.688016474246979,-0.367634922266006,-0.62568211555481,-0.687530517578125,-0.540074467658997,-0.485408335924149,-0.547129213809967,-0.131064385175705,0.826723456382751,0.827446341514587,0.295701533555985,0.477381587028503,-0.624216854572296,-0.0939516872167587,0.775581479072571,-0.547129213809967,-0.131064385175705,0.826723456382751,0.674362301826477,0.568310022354126,0.471443772315979,0.442955732345581,0.0975769311189651,-0.891217768192291,0.668879330158234,0.56571501493454,0.482251942157745,0.847004771232605,0.356380462646484,0.394431054592133,0.403431564569473,-0.0346959382295609,-0.914351761341095,-0.763170003890991,-0.527209877967834,-0.37365934252739,0.442955732345581,0.0975769311189651,-0.891217768192291,0.403431564569473,-0.0346959382295609,-0.914351761341095,
- -0.81976044178009,-0.4531230032444,-0.350246161222458,-0.472171485424042,-0.115772120654583,0.873871147632599,-0.763170003890991,-0.527209877967834,-0.37365934252739,-0.81976044178009,-0.4531230032444,-0.350246161222458,-0.434378445148468,-0.0548986233770847,0.899055898189545,0.630959451198578,0.615238130092621,0.472622603178024,-0.472171485424042,-0.115772120654583,0.873871147632599,-0.434378445148468,-0.0548986233770847,0.899055898189545,0.668515741825104,0.635591328144073,0.386147856712341,-0.591038107872009,0.0285663083195686,-0.806137681007385,-0.753990650177002,-0.266229152679443,0.600516617298126,-0.821142196655273,-0.288991302251816,0.492147892713547,-0.5648432970047,-0.0594909563660622,-0.823051035404205,-0.753990650177002,-0.266229152679443,0.600516617298126,0.620658934116364,-0.0165816005319357,0.783905148506165,0.507250964641571,0.075475886464119,0.858486950397491,-0.821142196655273,-0.288991302251816,0.492147892713547,0.830245316028595,0.345996528863907,-0.43701159954071,0.507250964641571,0.075475886464119,0.858486950397491,0.620658934116364,-0.0165816005319357,0.783905148506165,0.77307802438736,0.367281585931778,-0.517160058021545,0.742009878158569,0.452485948801041,-0.494649171829224,-0.591038107872009,0.0285663083195686,-0.806137681007385,-0.5648432970047,-0.0594909563660622,-0.823051035404205,0.801999092102051,0.418140977621078,-0.426562547683716,0.962291657924652,0.259149879217148,-0.0826810076832771,0.229782611131668,-0.565921306610107,0.791790962219238,0.282847613096237,-0.472147017717361,0.834909856319427,0.965535342693329,0.233749330043793,-0.114466331899166,-0.189603418111801,0.619111299514771,-0.762070834636688,0.964406251907349,0.247389271855354,-0.0933758318424225,0.971166968345642,0.18363194167614,-0.152033135294914,-0.174976050853729,0.48341903090477,-0.857723414897919,-0.960571885108948,-0.243203461170197,0.134735852479935,-0.189603418111801,0.619111299514771,-0.762070834636688,-0.174976050853729,0.48341903090477,-0.857723414897919,-0.96847927570343,-0.134701058268547,0.209531620144844,
- 0.229782611131668,-0.565921306610107,0.791790962219238,-0.960571885108948,-0.243203461170197,0.134735852479935,-0.96847927570343,-0.134701058268547,0.209531620144844,0.282847613096237,-0.472147017717361,0.834909856319427,0.389295488595963,0.826896965503693,-0.405820816755295,-0.891034364700317,0.438768535852432,-0.116361230611801,-0.956293284893036,0.280044436454773,-0.0841321274638176,0.371825307607651,0.837022721767426,-0.401421099901199,-0.891034364700317,0.438768535852432,-0.116361230611801,-0.414522409439087,-0.763580501079559,0.49509185552597,-0.397408932447433,-0.695247232913971,0.598913609981537,-0.956293284893036,0.280044436454773,-0.0841321274638176,0.766463577747345,-0.64139449596405,-0.0338603481650352,-0.397408932447433,-0.695247232913971,0.598913609981537,-0.414522409439087,-0.763580501079559,0.49509185552597,0.887397110462189,-0.451401054859161,-0.0936124846339226,0.887397110462189,-0.451401054859161,-0.0936124846339226,0.285222291946411,0.402814328670502,-0.869706153869629,0.305699914693832,0.106970310211182,-0.946099936962128,0.766463577747345,-0.64139449596405,-0.0338603481650352,0.246884763240814,0.51199471950531,-0.822744905948639,-0.987787365913391,0.0487178415060043,-0.14799639582634,-0.946456730365753,0.11250851303339,-0.30259120464325,0.360036671161652,0.797088384628296,-0.484792441129684,-0.987787365913391,0.0487178415060043,-0.14799639582634,-0.0435693077743053,-0.461514323949814,0.886062145233154,-0.144272074103355,-0.747578203678131,0.648315072059631,-0.946456730365753,0.11250851303339,-0.30259120464325,0.968383073806763,-0.229776531457901,0.0971447005867958,-0.144272074103355,-0.747578203678131,0.648315072059631,-0.0435693077743053,-0.461514323949814,0.886062145233154,0.981092214584351,-0.172084003686905,0.0885736793279648,0.981092214584351,-0.172084003686905,0.0885736793279648,0.26078462600708,0.070024847984314,-0.962854027748108,0.385158687829971,0.44536167383194,-0.808273315429688,0.968383073806763,-0.229776531457901,0.0971447005867958,-0.675916194915771,-0.157697349786758,-0.719908893108368,
- 0.333472460508347,0.878398537635803,-0.34236279129982,0.40307942032814,0.747414708137512,-0.5281081199646,-0.853811979293823,-0.0798420384526253,-0.514422357082367,-0.252114146947861,-0.838440835475922,0.483172208070755,-0.675916194915771,-0.157697349786758,-0.719908893108368,-0.853811979293823,-0.0798420384526253,-0.514422357082367,-0.31796607375145,-0.85276859998703,0.414346933364868,0.767274677753448,-0.0201140679419041,0.64100307226181,-0.252114146947861,-0.838440835475922,0.483172208070755,-0.31796607375145,-0.85276859998703,0.414346933364868,0.770275950431824,-0.236074656248093,0.592405080795288,0.608277261257172,0.596624732017517,-0.523486196994781,0.767274677753448,-0.0201140679419041,0.64100307226181,0.770275950431824,-0.236074656248093,0.592405080795288,0.51790189743042,0.432277768850327,-0.738182663917542,-0.711260259151459,0.608194649219513,0.352431625127792,-0.50096994638443,0.229305937886238,-0.834534525871277,-0.466994792222977,0.202167123556137,-0.860839366912842,-0.599986433982849,0.637828648090363,0.482898443937302,-0.539313733577728,0.168508321046829,-0.82507312297821,-0.692522287368774,0.487729668617249,0.531538009643555,-0.700684428215027,0.59482353925705,0.393987774848938,-0.52580988407135,0.102476254105568,-0.84440666437149,-0.759941697120667,0.402140289545059,0.510658264160156,-0.465668261051178,0.119086198508739,-0.876910209655762,-0.975142240524292,0.088932991027832,-0.202949330210686,-0.50096994638443,0.229305937886238,-0.834534525871277,0.720093190670013,-0.297157466411591,-0.627027332782745,0.802532970905304,-0.365042299032211,-0.471895039081573,-0.466994792222977,0.202167123556137,-0.860839366912842,0.849382340908051,-0.175455927848816,-0.497759729623795,-0.539313733577728,0.168508321046829,-0.82507312297821,-0.52580988407135,0.102476254105568,-0.84440666437149,0.732852816581726,-0.345401674509048,-0.58619487285614,-0.465668261051178,0.119086198508739,-0.876910209655762,0.810799062252045,-0.0679951533675194,-0.581361711025238,-0.975142240524292,0.088932991027832,-0.202949330210686,0.497127383947372,-0.740101218223572,-0.452895760536194,
- 0.526637673377991,-0.0797435119748116,0.846341371536255,0.529106438159943,-0.0644799023866653,0.846101939678192,0.611017525196075,-0.712537169456482,-0.344888746738434,0.585539281368256,0.0209523066878319,0.810373187065125,0.775928854942322,-0.414122343063354,-0.4758540391922,0.607290089130402,-0.58948540687561,-0.532640516757965,0.557335257530212,-0.0837124288082123,0.826056659221649,0.768119215965271,-0.327952176332474,-0.549945890903473,0.654157876968384,-0.0132549749687314,0.756241977214813,-0.975142240524292,0.088932991027832,-0.202949330210686,0.526637673377991,-0.0797435119748116,0.846341371536255,-0.711260259151459,0.608194649219513,0.352431625127792,-0.599986433982849,0.637828648090363,0.482898443937302,0.529106438159943,-0.0644799023866653,0.846101939678192,-0.700684428215027,0.59482353925705,0.393987774848938,-0.692522287368774,0.487729668617249,0.531538009643555,0.585539281368256,0.0209523066878319,0.810373187065125,0.557335257530212,-0.0837124288082123,0.826056659221649,0.654157876968384,-0.0132549749687314,0.756241977214813,-0.759941697120667,0.402140289545059,0.510658264160156,-0.975142240524292,0.088932991027832,-0.202949330210686,-0.472662597894669,0.182487830519676,-0.862141788005829,0.735929489135742,-0.499664515256882,-0.456884235143662,0.669647872447968,-0.539986312389374,-0.509888708591461,-0.469976723194122,0.122078195214272,-0.874196112155914,-0.595927953720093,0.654557824134827,0.465213984251022,-0.472662597894669,0.182487830519676,-0.862141788005829,-0.469976723194122,0.122078195214272,-0.874196112155914,-0.610871553421021,0.678540468215942,0.407944530248642,0.48788920044899,0.0030800390522927,0.872900187969208,-0.595927953720093,0.654557824134827,0.465213984251022,-0.610871553421021,0.678540468215942,0.407944530248642,0.522576987743378,-0.0502749271690845,0.851108551025391,0.61922550201416,-0.669262230396271,-0.410667568445206,0.48788920044899,0.0030800390522927,0.872900187969208,0.522576987743378,-0.0502749271690845,0.851108551025391,0.670661747455597,-0.538528203964233,-0.510098099708557,
- 0.810799062252045,-0.0679951533675194,-0.581361711025238,-0.465668261051178,0.119086198508739,-0.876910209655762,-0.539313733577728,0.168508321046829,-0.82507312297821,0.849382340908051,-0.175455927848816,-0.497759729623795,-0.465668261051178,0.119086198508739,-0.876910209655762,-0.759941697120667,0.402140289545059,0.510658264160156,-0.692522287368774,0.487729668617249,0.531538009643555,-0.539313733577728,0.168508321046829,-0.82507312297821,0.585539281368256,0.0209523066878319,0.810373187065125,-0.692522287368774,0.487729668617249,0.531538009643555,-0.759941697120667,0.402140289545059,0.510658264160156,0.654157876968384,-0.0132549749687314,0.756241977214813,0.654157876968384,-0.0132549749687314,0.756241977214813,0.768119215965271,-0.327952176332474,-0.549945890903473,0.775928854942322,-0.414122343063354,-0.4758540391922,0.585539281368256,0.0209523066878319,0.810373187065125,0.0835960730910301,0.595182299613953,0.799230635166168,0.658458471298218,0.637159526348114,0.400574713945389,0.45758393406868,0.714100062847137,0.529790461063385,-0.254695773124695,0.503330707550049,0.82570469379425,0.446578741073608,0.874640762805939,0.188602834939957,0.69580078125,0.453636169433594,-0.556844294071198,0.839892864227295,0.474288791418076,-0.263875126838684,0.413666546344757,0.784538149833679,0.46193066239357,0.69580078125,0.453636169433594,-0.556844294071198,0.38580784201622,-0.0714342370629311,-0.919809401035309,0.729439973831177,-0.0610622018575668,-0.681313991546631,0.839892864227295,0.474288791418076,-0.263875126838684,0.38580784201622,-0.0714342370629311,-0.919809401035309,-0.111101791262627,-0.563641011714935,-0.818513989448547,0.269031018018723,-0.591500401496887,-0.760098457336426,0.729439973831177,-0.0610622018575668,-0.681313991546631,-0.111101791262627,-0.563641011714935,-0.818513989448547,-0.520340263843536,-0.839251339435577,-0.157807692885399,-0.404658555984497,-0.81111353635788,-0.422310829162598,0.269031018018723,-0.591500401496887,-0.760098457336426,-0.520340263843536,-0.839251339435577,-0.157807692885399,-0.700751900672913,-0.457044303417206,0.547774732112885,
- -0.900108814239502,-0.424793869256973,0.096716970205307,-0.404658555984497,-0.81111353635788,-0.422310829162598,-0.700751900672913,-0.457044303417206,0.547774732112885,-0.422528505325317,0.056453675031662,0.904589772224426,-0.790804028511047,0.0115943877026439,0.61195969581604,-0.900108814239502,-0.424793869256973,0.096716970205307,-0.422528505325317,0.056453675031662,0.904589772224426,0.0835960730910301,0.595182299613953,0.799230635166168,-0.254695773124695,0.503330707550049,0.82570469379425,-0.790804028511047,0.0115943877026439,0.61195969581604,-0.575849711894989,0.390175104141235,-0.718443036079407,-0.405728161334991,0.497452139854431,-0.76676332950592,0.284730345010757,0.258957475423813,-0.922967910766602,0.0626378729939461,0.157968878746033,-0.985455453395844,-0.856544673442841,0.489491671323776,-0.163490667939186,-0.405728161334991,0.497452139854431,-0.76676332950592,-0.575849711894989,0.390175104141235,-0.718443036079407,-0.874307870864868,0.483704805374146,-0.0401938147842884,-0.607176184654236,0.142166435718536,0.781745374202728,-0.770455002784729,0.0987776294350624,0.629795372486115,-0.867253303527832,0.467842400074005,-0.170279294252396,-0.900369584560394,0.43264502286911,-0.0463993921875954,-0.287244111299515,-0.285615146160126,0.914283812046051,-0.770455002784729,0.0987776294350624,0.629795372486115,-0.607176184654236,0.142166435718536,0.781745374202728,0.0107359178364277,-0.141873523592949,0.989826560020447,0.586562812328339,-0.436856210231781,0.681982934474945,0.354342818260193,-0.553569495677948,0.753659069538116,-0.287244111299515,-0.285615146160126,0.914283812046051,0.0107359178364277,-0.141873523592949,0.989826560020447,0.901780009269714,-0.427077770233154,0.0663125440478325,0.354342818260193,-0.553569495677948,0.753659069538116,0.586562812328339,-0.436856210231781,0.681982934474945,0.919146060943604,-0.382613837718964,-0.0936858505010605,0.593309044837952,-0.166835531592369,-0.787496268749237,0.76031231880188,-0.0855211839079857,-0.643903136253357,0.901780009269714,-0.427077770233154,0.0663125440478325,
- 0.919146060943604,-0.382613837718964,-0.0936858505010605,0.284730345010757,0.258957475423813,-0.922967910766602,0.76031231880188,-0.0855211839079857,-0.643903136253357,0.593309044837952,-0.166835531592369,-0.787496268749237,0.0626378729939461,0.157968878746033,-0.985455453395844,-0.947333991527557,0.255351573228836,-0.193271726369858,-0.892034649848938,0.248089894652367,-0.377790421247482,-0.383077353239059,0.102237321436405,-0.918040990829468,-0.559748947620392,0.312784731388092,-0.767363607883453,-0.860226333141327,0.354120701551437,0.366891473531723,-0.892034649848938,0.248089894652367,-0.377790421247482,-0.947333991527557,0.255351573228836,-0.193271726369858,-0.8742915391922,0.149291262030602,0.461872577667236,-0.115262389183044,-0.185658305883408,0.975830614566803,-0.245132401585579,0.103224284946918,0.963978707790375,-0.879751086235046,0.292997688055038,0.374420166015625,-0.865691840648651,0.184142038226128,0.465477555990219,0.3925521671772,-0.107721634209156,0.913399636745453,-0.245132401585579,0.103224284946918,0.963978707790375,-0.115262389183044,-0.185658305883408,0.975830614566803,0.490311503410339,-0.324960291385651,0.808699786663055,0.930219113826752,-0.323646515607834,0.173047363758087,0.867285370826721,-0.289052486419678,0.40529602766037,0.3925521671772,-0.107721634209156,0.913399636745453,0.490311503410339,-0.324960291385651,0.808699786663055,0.856181740760803,-0.264896720647812,-0.443601876497269,0.867285370826721,-0.289052486419678,0.40529602766037,0.930219113826752,-0.323646515607834,0.173047363758087,0.754827678203583,-0.0393919572234154,-0.654739141464233,0.0956836640834808,0.240722894668579,-0.965865910053253,0.254918038845062,-0.0884552225470543,-0.962908387184143,0.856181740760803,-0.264896720647812,-0.443601876497269,0.754827678203583,-0.0393919572234154,-0.654739141464233,-0.383077353239059,0.102237321436405,-0.918040990829468,0.254918038845062,-0.0884552225470543,-0.962908387184143,0.0956836640834808,0.240722894668579,-0.965865910053253,-0.559748947620392,0.312784731388092,-0.767363607883453,
- -0.732726573944092,-0.230561479926109,0.640275895595551,0.710284471511841,-0.359309256076813,0.605304002761841,0.490311503410339,-0.324960291385651,0.808699786663055,-0.115262389183044,-0.185658305883408,0.975830614566803,-0.865691840648651,0.184142038226128,0.465477555990219,-0.662531733512878,0.404932349920273,-0.630143880844116,-0.720034778118134,0.0357264541089535,0.693017661571503,-0.8742915391922,0.149291262030602,0.461872577667236,-0.947333991527557,0.255351573228836,-0.193271726369858,-0.559748947620392,0.312784731388092,-0.767363607883453,0.653872966766357,0.0962934717535973,-0.750451683998108,-0.662531733512878,0.404932349920273,-0.630143880844116,-0.559748947620392,0.312784731388092,-0.767363607883453,0.0956836640834808,0.240722894668579,-0.965865910053253,0.754827678203583,-0.0393919572234154,-0.654739141464233,0.710284471511841,-0.359309256076813,0.605304002761841,0.653872966766357,0.0962934717535973,-0.750451683998108,0.754827678203583,-0.0393919572234154,-0.654739141464233,0.930219113826752,-0.323646515607834,0.173047363758087,0.490311503410339,-0.324960291385651,0.808699786663055,-0.114777751266956,0.519417703151703,-0.846776902675629,0.610757768154144,0.332465440034866,-0.718638837337494,0.440143913030624,0.330182820558548,-0.835016489028931,-0.299736082553864,0.512258350849152,-0.804828941822052,-0.730209231376648,0.549473702907562,-0.406045645475388,-0.114777751266956,0.519417703151703,-0.846776902675629,-0.299736082553864,0.512258350849152,-0.804828941822052,-0.835694134235382,0.495600938796997,-0.236632853746414,-0.945497512817383,-0.0298054125159979,0.32426244020462,-0.816314339637756,0.266431599855423,-0.512489020824432,-0.887073278427124,0.365639001131058,-0.281795978546143,-0.842492401599884,0.0257196649909019,0.538094043731689,-0.559544920921326,-0.373436868190765,0.739901602268219,-0.945497512817383,-0.0298054125159979,0.32426244020462,-0.842492401599884,0.0257196649909019,0.538094043731689,-0.388740986585617,-0.345455139875412,0.854131877422333,0.116028852760792,-0.541630625724792,0.832570433616638,
- -0.559544920921326,-0.373436868190765,0.739901602268219,-0.388740986585617,-0.345455139875412,0.854131877422333,0.291214674711227,-0.548068583011627,0.784101188182831,0.828826248645782,-0.38987535238266,0.401303440332413,0.116028852760792,-0.541630625724792,0.832570433616638,0.291214674711227,-0.548068583011627,0.784101188182831,0.869286477565765,-0.455752402544022,0.191391617059708,0.962735772132874,-1.0212122106168e-005,-0.270443767309189,0.828826248645782,-0.38987535238266,0.401303440332413,0.869286477565765,-0.455752402544022,0.191391617059708,0.876028120517731,-0.0177678242325783,-0.481932610273361,0.440143913030624,0.330182820558548,-0.835016489028931,0.610757768154144,0.332465440034866,-0.718638837337494,0.962735772132874,-1.0212122106168e-005,-0.270443767309189,0.876028120517731,-0.0177678242325783,-0.481932610273361,0.637648284435272,0.321489751338959,0.700035035610199,0.201759904623032,-0.080539382994175,0.976117968559265,0.387337356805801,0.106028988957405,0.915820777416229,0.759130299091339,0.506870210170746,0.408416122198105,0.860550880432129,0.4998619556427,0.0979300811886787,0.637648284435272,0.321489751338959,0.700035035610199,0.759130299091339,0.506870210170746,0.408416122198105,0.704636037349701,0.602225542068481,-0.375249803066254,0.317922949790955,0.474790811538696,-0.820669651031494,0.581861734390259,0.813048243522644,0.0197370368987322,0.59392523765564,0.721202790737152,-0.356538087129593,0.0526867024600506,0.167618304491043,-0.984443068504334,-0.207029536366463,0.0486175641417503,-0.977125942707062,0.317922949790955,0.474790811538696,-0.820669651031494,0.0526867024600506,0.167618304491043,-0.984443068504334,-0.4460628926754,-0.257075786590576,-0.857286393642426,-0.613541483879089,-0.381878316402435,-0.691184282302856,-0.207029536366463,0.0486175641417503,-0.977125942707062,-0.4460628926754,-0.257075786590576,-0.857286393642426,-0.751086413860321,-0.566766679286957,-0.338592529296875,-0.773651659488678,-0.63292121887207,0.0295601598918438,-0.613541483879089,-0.381878316402435,-0.691184282302856,
- -0.751086413860321,-0.566766679286957,-0.338592529296875,-0.708143055438995,-0.605325937271118,0.363474756479263,-0.353690326213837,-0.46829879283905,0.809690892696381,-0.773651659488678,-0.63292121887207,0.0295601598918438,-0.708143055438995,-0.605325937271118,0.363474756479263,-0.190263167023659,-0.344584852457047,0.919272124767303,-0.190263167023659,-0.344584852457047,0.919272124767303,0.387337356805801,0.106028988957405,0.915820777416229,0.201759904623032,-0.080539382994175,0.976117968559265,-0.353690326213837,-0.46829879283905,0.809690892696381,0.759130299091339,0.506870210170746,0.408416122198105,0.387337356805801,0.106028988957405,0.915820777416229,0.677901387214661,0.188009276986122,0.710705459117889,0.784752428531647,0.612278938293457,0.0963233783841133,0.704636037349701,0.602225542068481,-0.375249803066254,0.759130299091339,0.506870210170746,0.408416122198105,0.784752428531647,0.612278938293457,0.0963233783841133,0.374503821134567,0.773164749145508,-0.511823356151581,0.0526867024600506,0.167618304491043,-0.984443068504334,0.59392523765564,0.721202790737152,-0.356538087129593,0.32876518368721,0.817991435527802,-0.472020596265793,-0.356779515743256,0.274785131216049,-0.892861425876617,-0.4460628926754,-0.257075786590576,-0.857286393642426,0.0526867024600506,0.167618304491043,-0.984443068504334,-0.356779515743256,0.274785131216049,-0.892861425876617,-0.701742351055145,-0.263599097728729,-0.661871016025543,-0.751086413860321,-0.566766679286957,-0.338592529296875,-0.4460628926754,-0.257075786590576,-0.857286393642426,-0.701742351055145,-0.263599097728729,-0.661871016025543,-0.748965620994568,-0.657731533050537,-0.0802483037114143,-0.708143055438995,-0.605325937271118,0.363474756479263,-0.751086413860321,-0.566766679286957,-0.338592529296875,-0.748965620994568,-0.657731533050537,-0.0802483037114143,-0.368974983692169,-0.731800973415375,0.572996258735657,-0.190263167023659,-0.344584852457047,0.919272124767303,-0.708143055438995,-0.605325937271118,0.363474756479263,-0.368974983692169,-0.731800973415375,0.572996258735657,
- 0.347328096628189,-0.417924374341965,0.8394655585289,0.677901387214661,0.188009276986122,0.710705459117889,0.387337356805801,0.106028988957405,0.915820777416229,-0.190263167023659,-0.344584852457047,0.919272124767303,0.347328096628189,-0.417924374341965,0.8394655585289,-0.751033782958984,0.105563767254353,-0.651770412921906,-0.971233427524567,-0.118072025477886,0.206796318292618,-0.753990650177002,-0.266229152679443,0.600516617298126,-0.591038107872009,0.0285663083195686,-0.806137681007385,-0.971233427524567,-0.118072025477886,0.206796318292618,0.647199273109436,-0.178528517484665,0.741121113300323,0.620658934116364,-0.0165816005319357,0.783905148506165,-0.753990650177002,-0.266229152679443,0.600516617298126,0.77307802438736,0.367281585931778,-0.517160058021545,0.620658934116364,-0.0165816005319357,0.783905148506165,0.647199273109436,-0.178528517484665,0.741121113300323,0.872567713260651,0.382208794355392,-0.304207175970078,0.863673329353333,0.412771344184875,-0.289289236068726,-0.751033782958984,0.105563767254353,-0.651770412921906,-0.591038107872009,0.0285663083195686,-0.806137681007385,0.742009878158569,0.452485948801041,-0.494649171829224,-0.81976044178009,-0.4531230032444,-0.350246161222458,0.403431564569473,-0.0346959382295609,-0.914351761341095,0.268550992012024,-0.110605925321579,-0.956894338130951,-0.821861028671265,-0.387483268976212,-0.417613595724106,-0.434378445148468,-0.0548986233770847,0.899055898189545,-0.81976044178009,-0.4531230032444,-0.350246161222458,-0.821861028671265,-0.387483268976212,-0.417613595724106,-0.2857466340065,0.0688599199056625,0.955828011035919,0.668515741825104,0.635591328144073,0.386147856712341,-0.434378445148468,-0.0548986233770847,0.899055898189545,-0.2857466340065,0.0688599199056625,0.955828011035919,0.749498009681702,0.536542892456055,0.387781530618668,0.403431564569473,-0.0346959382295609,-0.914351761341095,0.847004771232605,0.356380462646484,0.394431054592133,0.910678327083588,0.191517233848572,0.36604106426239,0.268550992012024,-0.110605925321579,-0.956894338130951,-0.5648432970047,-0.0594909563660622,-0.823051035404205,
- -0.821142196655273,-0.288991302251816,0.492147892713547,-0.934553742408752,-0.342220902442932,0.0974386036396027,-0.166782230138779,-0.0770906805992126,-0.982975482940674,-0.821142196655273,-0.288991302251816,0.492147892713547,0.507250964641571,0.075475886464119,0.858486950397491,0.444026350975037,0.101973675191402,0.890192091464996,-0.934553742408752,-0.342220902442932,0.0974386036396027,0.935347676277161,0.300058424472809,-0.18732263147831,0.444026350975037,0.101973675191402,0.890192091464996,0.507250964641571,0.075475886464119,0.858486950397491,0.830245316028595,0.345996528863907,-0.43701159954071,0.801999092102051,0.418140977621078,-0.426562547683716,-0.5648432970047,-0.0594909563660622,-0.823051035404205,-0.166782230138779,-0.0770906805992126,-0.982975482940674,0.923508107662201,0.335808426141739,-0.185379475355148,0.946770846843719,0.254056364297867,-0.197687357664108,0.480136603116989,0.62955117225647,-0.610847234725952,0.757295787334442,0.601865351200104,-0.253498047590256,0.924629688262939,0.169728815555573,0.34095761179924,0.480136603116989,0.62955117225647,-0.610847234725952,-0.280834138393402,0.667784452438354,-0.689344704151154,0.103446781635284,0.737151443958282,-0.667762339115143,0.757295787334442,0.601865351200104,-0.253498047590256,-0.27792876958847,0.694708168506622,-0.663427650928497,-0.958190083503723,0.201120659708977,-0.203524455428123,-0.744682550430298,0.282527595758438,-0.604670166969299,0.100599408149719,0.743269443511963,-0.661385118961334,-0.958190083503723,0.201120659708977,-0.203524455428123,-0.9076087474823,-0.31378436088562,0.278901010751724,-0.944135367870331,-0.251672357320786,-0.212766289710999,-0.744682550430298,0.282527595758438,-0.604670166969299,-0.9076087474823,-0.31378436088562,0.278901010751724,-0.383746236562729,-0.672107636928558,0.633253693580627,-0.684801399707794,-0.645826935768127,0.337571561336517,-0.944135367870331,-0.251672357320786,-0.212766289710999,-0.383746236562729,-0.672107636928558,0.633253693580627,0.431000292301178,-0.625318825244904,0.650549829006195,0.00672621699050069,-0.743394136428833,0.668819725513458,
- -0.684801399707794,-0.645826935768127,0.337571561336517,0.431000292301178,-0.625318825244904,0.650549829006195,0.941843092441559,-0.241286382079124,0.233907237648964,0.685734152793884,-0.405499458312988,0.604432821273804,0.00672621699050069,-0.743394136428833,0.668819725513458,0.941843092441559,-0.241286382079124,0.233907237648964,0.946770846843719,0.254056364297867,-0.197687357664108,0.924629688262939,0.169728815555573,0.34095761179924,0.685734152793884,-0.405499458312988,0.604432821273804,-0.789755940437317,0.107842393219471,0.603867053985596,0.466568410396576,0.48638528585434,0.738744378089905,0.508363246917725,0.545842826366425,0.666049778461456,-0.766279399394989,-0.00389511464163661,0.64249575138092,-0.679244518280029,0.53498113155365,0.50241619348526,0.731102228164673,0.379981189966202,0.566660284996033,0.62062805891037,0.467337638139725,0.629616022109985,-0.702420771121979,0.206622540950775,0.681110918521881,-0.455079287290573,0.691549718379974,0.560947239398956,0.488933861255646,-0.0823785439133644,0.868422448635101,-0.619124472141266,0.548790514469147,0.561706364154816,-0.551347255706787,-0.58164370059967,-0.598085880279541,-0.789755940437317,0.107842393219471,0.603867053985596,-0.766279399394989,-0.00389511464163661,0.64249575138092,-0.426581203937531,-0.648669481277466,-0.630282759666443,-0.670523822307587,-0.479118853807449,-0.566430032253265,-0.679244518280029,0.53498113155365,0.50241619348526,-0.702420771121979,0.206622540950775,0.681110918521881,-0.562965273857117,-0.450410038232803,-0.69296532869339,-0.455079287290573,0.691549718379974,0.560947239398956,-0.619124472141266,0.548790514469147,0.561706364154816,-0.513352036476135,0.114687643945217,-0.850480198860168,0.81387734413147,0.0423846393823624,-0.579488754272461,-0.551347255706787,-0.58164370059967,-0.598085880279541,-0.426581203937531,-0.648669481277466,-0.630282759666443,0.749171376228333,0.127365857362747,-0.650015532970428,0.743143022060394,-0.371459782123566,-0.556557416915894,-0.670523822307587,-0.479118853807449,-0.566430032253265,-0.562965273857117,-0.450410038232803,-0.69296532869339,
- 0.872739732265472,-0.110852010548115,-0.475433945655823,-0.455079287290573,0.691549718379974,0.560947239398956,-0.513352036476135,0.114687643945217,-0.850480198860168,0.790982842445374,-0.290365308523178,-0.538548052310944,0.508363246917725,0.545842826366425,0.666049778461456,0.466568410396576,0.48638528585434,0.738744378089905,0.824156105518341,0.0176084656268358,-0.566088914871216,0.78690242767334,0.0668510273098946,-0.61344575881958,0.731102228164673,0.379981189966202,0.566660284996033,0.735310614109039,-0.598076939582825,-0.318782716989517,0.879941046237946,-0.167092427611351,-0.444729030132294,0.62062805891037,0.467337638139725,0.629616022109985,0.488933861255646,-0.0823785439133644,0.868422448635101,-0.455079287290573,0.691549718379974,0.560947239398956,0.496441870927811,-0.827460050582886,-0.262403190135956,-0.789755940437317,0.107842393219471,0.603867053985596,-0.551347255706787,-0.58164370059967,-0.598085880279541,-0.558277666568756,-0.45262086391449,-0.695313155651093,-0.806876838207245,0.0750029161572456,0.58593887090683,0.466568410396576,0.48638528585434,0.738744378089905,-0.789755940437317,0.107842393219471,0.603867053985596,-0.806876838207245,0.0750029161572456,0.58593887090683,0.547802865505219,0.420307725667953,0.723362565040588,0.824156105518341,0.0176084656268358,-0.566088914871216,0.466568410396576,0.48638528585434,0.738744378089905,0.547802865505219,0.420307725667953,0.723362565040588,0.797360241413116,-0.00524980714544654,-0.603480756282806,0.819520175457001,-0.114466480910778,-0.561501622200012,-0.558277666568756,-0.45262086391449,-0.695313155651093,-0.551347255706787,-0.58164370059967,-0.598085880279541,0.81387734413147,0.0423846393823624,-0.579488754272461,-0.71337217092514,-0.0686056986451149,-0.697419047355652,-0.66755485534668,0.542359828948975,0.510114014148712,-0.673748552799225,0.565038025379181,0.47622999548912,-0.809734046459198,-0.290479600429535,-0.509855389595032,-0.66755485534668,0.542359828948975,0.510114014148712,0.610287189483643,0.0945422649383545,0.786518394947052,0.663223505020142,0.384022831916809,0.64238703250885,
- -0.673748552799225,0.565038025379181,0.47622999548912,0.610287189483643,0.0945422649383545,0.786518394947052,0.56903338432312,-0.710595488548279,-0.413829654455185,0.610229551792145,-0.730966031551361,-0.30546447634697,0.663223505020142,0.384022831916809,0.64238703250885,0.700711369514465,-0.418057471513748,-0.578127503395081,-0.71337217092514,-0.0686056986451149,-0.697419047355652,-0.809734046459198,-0.290479600429535,-0.509855389595032,0.642262816429138,-0.446106493473053,-0.623287618160248,-0.532487869262695,0.611833930015564,-0.584906876087189,-0.492247760295868,-0.581490218639374,-0.64773553609848,-0.483504712581635,-0.654887974262238,-0.580814182758331,-0.288943529129028,0.773154556751251,-0.564573884010315,-0.288943529129028,0.773154556751251,-0.564573884010315,-0.483504712581635,-0.654887974262238,-0.580814182758331,-0.269668966531754,-0.55433189868927,-0.787397563457489,-0.236737236380577,0.74364185333252,-0.625261783599854,-0.577779591083527,0.556747734546661,-0.596827149391174,0.064982607960701,-0.560519933700562,-0.825587451457977,-0.184619963169098,0.830139875411987,0.526101887226105,-0.725334227085114,-0.584124803543091,-0.364264458417892,0.24225527048111,-0.846519708633423,0.474042922258377,0.354900658130646,-0.702855110168457,0.616474151611328,-0.667038023471832,-0.63612025976181,-0.387829184532166,-0.667038023471832,-0.63612025976181,-0.387829184532166,0.354900658130646,-0.702855110168457,0.616474151611328,0.209538176655769,-0.711103022098541,0.671138107776642,-0.271689802408218,-0.55446195602417,-0.786610901355743,0.00314933946356177,-0.589956283569336,-0.807429075241089,0.363240838050842,-0.786781013011932,0.499030858278275,-0.184619963169098,0.830139875411987,0.526101887226105,0.24225527048111,-0.846519708633423,0.474042922258377,0.519147574901581,0.682081758975983,0.515024542808533,0.477859109640121,0.663264930248261,0.575960278511047,0.354900658130646,-0.702855110168457,0.616474151611328,0.354900658130646,-0.702855110168457,0.616474151611328,0.477859109640121,0.663264930248261,0.575960278511047,
- 0.198411747813225,0.781338512897491,0.591728687286377,0.209538176655769,-0.711103022098541,0.671138107776642,0.363240838050842,-0.786781013011932,0.499030858278275,0.0324771665036678,0.682567954063416,0.730100154876709,-0.184619963169098,0.830139875411987,0.526101887226105,0.519147574901581,0.682081758975983,0.515024542808533,-0.532487869262695,0.611833930015564,-0.584906876087189,-0.288943529129028,0.773154556751251,-0.564573884010315,0.477859109640121,0.663264930248261,0.575960278511047,0.477859109640121,0.663264930248261,0.575960278511047,-0.288943529129028,0.773154556751251,-0.564573884010315,-0.236737236380577,0.74364185333252,-0.625261783599854,0.198411747813225,0.781338512897491,0.591728687286377,0.0324771665036678,0.682567954063416,0.730100154876709,-0.577779591083527,0.556747734546661,-0.596827149391174,-0.184619963169098,0.830139875411987,0.526101887226105,-0.236737236380577,0.74364185333252,-0.625261783599854,-0.269668966531754,-0.55433189868927,-0.787397563457489,0.064982607960701,-0.560519933700562,-0.825587451457977,-0.577779591083527,0.556747734546661,-0.596827149391174,-0.271689802408218,-0.55446195602417,-0.786610901355743,0.209538176655769,-0.711103022098541,0.671138107776642,0.363240838050842,-0.786781013011932,0.499030858278275,0.00314933946356177,-0.589956283569336,-0.807429075241089,0.209538176655769,-0.711103022098541,0.671138107776642,0.198411747813225,0.781338512897491,0.591728687286377,0.0324771665036678,0.682567954063416,0.730100154876709,0.363240838050842,-0.786781013011932,0.499030858278275,0.198411747813225,0.781338512897491,0.591728687286377,-0.236737236380577,0.74364185333252,-0.625261783599854,-0.577779591083527,0.556747734546661,-0.596827149391174,0.0324771665036678,0.682567954063416,0.730100154876709,-0.513352036476135,0.114687643945217,-0.850480198860168,-0.619124472141266,0.548790514469147,0.561706364154816,-0.66755485534668,0.542359828948975,0.510114014148712,-0.71337217092514,-0.0686056986451149,-0.697419047355652,-0.619124472141266,0.548790514469147,0.561706364154816,0.488933861255646,-0.0823785439133644,0.868422448635101,
- 0.610287189483643,0.0945422649383545,0.786518394947052,-0.66755485534668,0.542359828948975,0.510114014148712,0.488933861255646,-0.0823785439133644,0.868422448635101,0.496441870927811,-0.827460050582886,-0.262403190135956,0.56903338432312,-0.710595488548279,-0.413829654455185,0.610287189483643,0.0945422649383545,0.786518394947052,0.790982842445374,-0.290365308523178,-0.538548052310944,-0.513352036476135,0.114687643945217,-0.850480198860168,-0.71337217092514,-0.0686056986451149,-0.697419047355652,0.700711369514465,-0.418057471513748,-0.578127503395081,-0.809734046459198,-0.290479600429535,-0.509855389595032,-0.673748552799225,0.565038025379181,0.47622999548912,-0.679244518280029,0.53498113155365,0.50241619348526,-0.670523822307587,-0.479118853807449,-0.566430032253265,-0.673748552799225,0.565038025379181,0.47622999548912,0.663223505020142,0.384022831916809,0.64238703250885,0.731102228164673,0.379981189966202,0.566660284996033,-0.679244518280029,0.53498113155365,0.50241619348526,0.663223505020142,0.384022831916809,0.64238703250885,0.610229551792145,-0.730966031551361,-0.30546447634697,0.735310614109039,-0.598076939582825,-0.318782716989517,0.731102228164673,0.379981189966202,0.566660284996033,0.642262816429138,-0.446106493473053,-0.623287618160248,-0.809734046459198,-0.290479600429535,-0.509855389595032,-0.670523822307587,-0.479118853807449,-0.566430032253265,0.743143022060394,-0.371459782123566,-0.556557416915894,-0.806876838207245,0.0750029161572456,0.58593887090683,-0.558277666568756,-0.45262086391449,-0.695313155651093,-0.562965273857117,-0.450410038232803,-0.69296532869339,-0.702420771121979,0.206622540950775,0.681110918521881,0.547802865505219,0.420307725667953,0.723362565040588,-0.806876838207245,0.0750029161572456,0.58593887090683,-0.702420771121979,0.206622540950775,0.681110918521881,0.62062805891037,0.467337638139725,0.629616022109985,0.797360241413116,-0.00524980714544654,-0.603480756282806,0.547802865505219,0.420307725667953,0.723362565040588,0.62062805891037,0.467337638139725,0.629616022109985,0.879941046237946,-0.167092427611351,-0.444729030132294,
- -0.562965273857117,-0.450410038232803,-0.69296532869339,-0.558277666568756,-0.45262086391449,-0.695313155651093,0.819520175457001,-0.114466480910778,-0.561501622200012,0.872739732265472,-0.110852010548115,-0.475433945655823,-0.90008556842804,0.429221242666245,-0.0749329179525375,-0.653326511383057,0.0948055163025856,-0.751116693019867,-0.739520847797394,-0.173391208052635,-0.6504185795784,-0.939687252044678,0.328381836414337,-0.0956722795963287,-0.6060950756073,0.453443944454193,0.653480887413025,-0.90008556842804,0.429221242666245,-0.0749329179525375,-0.939687252044678,0.328381836414337,-0.0956722795963287,-0.563587963581085,0.629879057407379,0.534435272216797,0.184079796075821,0.201912760734558,0.961948990821838,-0.633036553859711,0.386616319417953,0.670665740966797,-0.581866919994354,0.578685581684113,0.571448862552643,0.323873847723007,0.462385267019272,0.825412392616272,0.727874875068665,-0.105544023215771,0.677538573741913,0.184079796075821,0.201912760734558,0.961948990821838,0.323873847723007,0.462385267019272,0.825412392616272,0.832765460014343,0.077504426240921,0.54817396402359,0.927640914916992,-0.368693143129349,0.0595610812306404,0.727874875068665,-0.105544023215771,0.677538573741913,0.832765460014343,0.077504426240921,0.54817396402359,0.946870446205139,-0.321574866771698,0.00509123969823122,0.583554923534393,-0.505982398986816,-0.635173559188843,0.927640914916992,-0.368693143129349,0.0595610812306404,0.946870446205139,-0.321574866771698,0.00509123969823122,0.519234716892242,-0.643637418746948,-0.562250912189484,-0.107155583798885,-0.236438795924187,-0.965719699859619,0.583554923534393,-0.505982398986816,-0.635173559188843,0.519234716892242,-0.643637418746948,-0.562250912189484,-0.221380650997162,-0.513259828090668,-0.829189360141754,-0.653326511383057,0.0948055163025856,-0.751116693019867,-0.107155583798885,-0.236438795924187,-0.965719699859619,-0.221380650997162,-0.513259828090668,-0.829189360141754,-0.739520847797394,-0.173391208052635,-0.6504185795784,-0.710611939430237,0.24736051261425,0.658667922019959,
- -0.930953979492188,0.362414687871933,-0.0444996766746044,-0.90008556842804,0.429221242666245,-0.0749329179525375,-0.6060950756073,0.453443944454193,0.653480887413025,0.107172951102257,0.0756876096129417,0.991355299949646,-0.661346077919006,0.359032094478607,0.658572196960449,-0.633036553859711,0.386616319417953,0.670665740966797,0.184079796075821,0.201912760734558,0.961948990821838,0.665173411369324,-0.183991432189941,0.723665297031403,0.107172951102257,0.0756876096129417,0.991355299949646,0.184079796075821,0.201912760734558,0.961948990821838,0.727874875068665,-0.105544023215771,0.677538573741913,0.921531140804291,-0.377912044525146,0.0892351120710373,0.665173411369324,-0.183991432189941,0.723665297031403,0.727874875068665,-0.105544023215771,0.677538573741913,0.927640914916992,-0.368693143129349,0.0595610812306404,0.655861914157867,-0.361655235290527,-0.662609040737152,0.921531140804291,-0.377912044525146,0.0892351120710373,0.927640914916992,-0.368693143129349,0.0595610812306404,0.583554923534393,-0.505982398986816,-0.635173559188843,-0.055134505033493,-0.0764268860220909,-0.99554967880249,0.655861914157867,-0.361655235290527,-0.662609040737152,0.583554923534393,-0.505982398986816,-0.635173559188843,-0.107155583798885,-0.236438795924187,-0.965719699859619,-0.634755313396454,0.192692294716835,-0.74830174446106,-0.055134505033493,-0.0764268860220909,-0.99554967880249,-0.107155583798885,-0.236438795924187,-0.965719699859619,-0.653326511383057,0.0948055163025856,-0.751116693019867,-0.930953979492188,0.362414687871933,-0.0444996766746044,-0.634755313396454,0.192692294716835,-0.74830174446106,-0.653326511383057,0.0948055163025856,-0.751116693019867,-0.90008556842804,0.429221242666245,-0.0749329179525375,0.0694248825311661,-0.093703992664814,0.993176639080048,0.674445748329163,-0.226317822933197,0.702782452106476,0.485525816679001,-0.035911250859499,0.873484373092651,0.151736795902252,-0.0667431131005287,0.98616498708725,-0.924268782138824,0.36992222070694,-0.0942589864134789,-0.702154219150543,0.440275400876999,0.559586524963379,
- -0.893764019012451,0.436957687139511,0.101260893046856,-0.933408856391907,0.287760436534882,-0.214340493083,-0.0720716565847397,0.033629197627306,-0.996832251548767,-0.629137992858887,0.225413382053375,-0.743891298770905,-0.628606617450714,0.17182631790638,-0.758504807949066,-0.0663030073046684,0.0225186590105295,-0.997545421123505,0.950481653213501,-0.308745503425598,0.035508319735527,0.634056568145752,-0.219799622893333,-0.741390824317932,0.655166804790497,-0.179385051131248,-0.733878374099731,0.964716613292694,-0.240925997495651,0.106191039085388,0.634056568145752,-0.219799622893333,-0.741390824317932,-0.0720716565847397,0.033629197627306,-0.996832251548767,-0.0663030073046684,0.0225186590105295,-0.997545421123505,0.655166804790497,-0.179385051131248,-0.733878374099731,-0.629137992858887,0.225413382053375,-0.743891298770905,-0.924268782138824,0.36992222070694,-0.0942589864134789,-0.933408856391907,0.287760436534882,-0.214340493083,-0.628606617450714,0.17182631790638,-0.758504807949066,-0.752776801586151,-0.0866199061274529,0.652552008628845,0.0694248825311661,-0.093703992664814,0.993176639080048,0.151736795902252,-0.0667431131005287,0.98616498708725,-0.174258306622505,-0.205704733729362,0.962974309921265,0.674445748329163,-0.226317822933197,0.702782452106476,0.950481653213501,-0.308745503425598,0.035508319735527,0.964716613292694,-0.240925997495651,0.106191039085388,0.485525816679001,-0.035911250859499,0.873484373092651,0.151736795902252,-0.0667431131005287,0.98616498708725,0.485525816679001,-0.035911250859499,0.873484373092651,0.225772529840469,0.243813648819923,0.94317638874054,0.148100689053535,0.229601427912712,0.961950838565826,0.138944819569588,-0.0189799964427948,0.990118265151978,0.147862270474434,-0.196727231144905,0.969244599342346,0.00503125134855509,-0.305570363998413,0.952156245708466,-0.174258306622505,-0.205704733729362,0.962974309921265,-0.721487760543823,0.238666415214539,0.649995267391205,-0.939085483551025,0.342013031244278,-0.0338467508554459,-0.930953979492188,0.362414687871933,-0.0444996766746044,
- -0.710611939430237,0.24736051261425,0.658667922019959,0.0608279258012772,-0.0124247819185257,0.998070955276489,-0.73728883266449,0.190081834793091,0.648285508155823,-0.661346077919006,0.359032094478607,0.658572196960449,0.107172951102257,0.0756876096129417,0.991355299949646,0.655739545822144,-0.215685725212097,0.723522901535034,0.0608279258012772,-0.0124247819185257,0.998070955276489,0.107172951102257,0.0756876096129417,0.991355299949646,0.665173411369324,-0.183991432189941,0.723665297031403,0.940906822681427,-0.332895815372467,0.0622459873557091,0.655739545822144,-0.215685725212097,0.723522901535034,0.665173411369324,-0.183991432189941,0.723665297031403,0.921531140804291,-0.377912044525146,0.0892351120710373,0.656340599060059,-0.22800013422966,-0.71918910741806,0.940906822681427,-0.332895815372467,0.0622459873557091,0.921531140804291,-0.377912044525146,0.0892351120710373,0.655861914157867,-0.361655235290527,-0.662609040737152,-0.0765486285090446,0.0270219389349222,-0.996699571609497,0.656340599060059,-0.22800013422966,-0.71918910741806,0.655861914157867,-0.361655235290527,-0.662609040737152,-0.055134505033493,-0.0764268860220909,-0.99554967880249,-0.657307267189026,0.233508408069611,-0.716533958911896,-0.0765486285090446,0.0270219389349222,-0.996699571609497,-0.055134505033493,-0.0764268860220909,-0.99554967880249,-0.634755313396454,0.192692294716835,-0.74830174446106,-0.939085483551025,0.342013031244278,-0.0338467508554459,-0.657307267189026,0.233508408069611,-0.716533958911896,-0.634755313396454,0.192692294716835,-0.74830174446106,-0.930953979492188,0.362414687871933,-0.0444996766746044,-0.95310640335083,-0.207786485552788,0.220029711723328,0.251491874456406,-0.410337507724762,0.876569986343384,0.312643885612488,-0.385788470506668,0.86799830198288,-0.968798279762268,-0.164496973156929,0.185393556952477,0.251491874456406,-0.410337507724762,0.876569986343384,0.933801054954529,-0.131870433688164,-0.332604616880417,0.92936646938324,-0.156580775976181,-0.334305822849274,0.312643885612488,-0.385788470506668,0.86799830198288,
- 0.828524887561798,0.523537933826447,-0.198631435632706,-0.35688191652298,0.400068461894989,-0.844144880771637,-0.245631918311119,0.42445981502533,-0.871492266654968,0.898309588432312,0.377981424331665,-0.223986223340034,-0.35688191652298,0.400068461894989,-0.844144880771637,-0.95310640335083,-0.207786485552788,0.220029711723328,-0.968798279762268,-0.164496973156929,0.185393556952477,-0.245631918311119,0.42445981502533,-0.871492266654968,0.965535342693329,0.233749330043793,-0.114466331899166,0.282847613096237,-0.472147017717361,0.834909856319427,0.314711064100266,-0.402947187423706,0.859412848949432,0.981564998626709,-0.0482840985059738,-0.184929415583611,-0.174976050853729,0.48341903090477,-0.857723414897919,0.971166968345642,0.18363194167614,-0.152033135294914,0.961931824684143,0.261906832456589,-0.0780505463480949,-0.201407060027123,0.430875688791275,-0.879648447036743,-0.96847927570343,-0.134701058268547,0.209531620144844,-0.174976050853729,0.48341903090477,-0.857723414897919,-0.201407060027123,0.430875688791275,-0.879648447036743,-0.952712953090668,-0.0830081179738045,0.292314350605011,0.282847613096237,-0.472147017717361,0.834909856319427,-0.96847927570343,-0.134701058268547,0.209531620144844,-0.952712953090668,-0.0830081179738045,0.292314350605011,0.314711064100266,-0.402947187423706,0.859412848949432,0.251491874456406,-0.410337507724762,0.876569986343384,-0.95310640335083,-0.207786485552788,0.220029711723328,-0.938007533550262,-0.228527814149857,0.260608792304993,0.318760365247726,-0.412672996520996,0.853283584117889,-0.95310640335083,-0.207786485552788,0.220029711723328,-0.35688191652298,0.400068461894989,-0.844144880771637,-0.365106552839279,0.389155089855194,-0.845727920532227,-0.938007533550262,-0.228527814149857,0.260608792304993,-0.35688191652298,0.400068461894989,-0.844144880771637,0.828524887561798,0.523537933826447,-0.198631435632706,0.930595099925995,0.33039402961731,-0.157583892345428,-0.365106552839279,0.389155089855194,-0.845727920532227,0.933801054954529,-0.131870433688164,-0.332604616880417,0.251491874456406,-0.410337507724762,0.876569986343384,
- 0.318760365247726,-0.412672996520996,0.853283584117889,0.959059059619904,0.140740364789963,-0.245760232210159,-0.934553742408752,-0.342220902442932,0.0974386036396027,-0.2857466340065,0.0688599199056625,0.955828011035919,-0.821861028671265,-0.387483268976212,-0.417613595724106,0.670346081256866,-0.205274939537048,0.713090598583221,-0.995766758918762,0.0276929084211588,-0.0876446813344955,0.0223171878606081,0.411163240671158,-0.911288440227509,0.670346081256866,-0.205274939537048,0.713090598583221,-0.170517697930336,-0.349104702472687,0.921438872814178,-0.995766758918762,0.0276929084211588,-0.0876446813344955,0.670346081256866,-0.205274939537048,0.713090598583221,0.979342699050903,-0.187037825584412,0.0768429934978485,-0.170517697930336,-0.349104702472687,0.921438872814178,0.670346081256866,-0.205274939537048,0.713090598583221,0.0787166357040405,-0.0588031411170959,-0.995161235332489,0.979342699050903,-0.187037825584412,0.0768429934978485,0.522576987743378,-0.0502749271690845,0.851108551025391,-0.610871553421021,0.678540468215942,0.407944530248642,-0.700684428215027,0.59482353925705,0.393987774848938,0.557335257530212,-0.0837124288082123,0.826056659221649,0.670661747455597,-0.538528203964233,-0.510098099708557,0.522576987743378,-0.0502749271690845,0.851108551025391,0.557335257530212,-0.0837124288082123,0.826056659221649,0.607290089130402,-0.58948540687561,-0.532640516757965,-0.469976723194122,0.122078195214272,-0.874196112155914,0.669647872447968,-0.539986312389374,-0.509888708591461,0.732852816581726,-0.345401674509048,-0.58619487285614,-0.52580988407135,0.102476254105568,-0.84440666437149,-0.610871553421021,0.678540468215942,0.407944530248642,-0.469976723194122,0.122078195214272,-0.874196112155914,-0.52580988407135,0.102476254105568,-0.84440666437149,-0.700684428215027,0.59482353925705,0.393987774848938,0.529106438159943,-0.0644799023866653,0.846101939678192,-0.599986433982849,0.637828648090363,0.482898443937302,-0.595927953720093,0.654557824134827,0.465213984251022,0.48788920044899,0.0030800390522927,0.872900187969208,
- 0.611017525196075,-0.712537169456482,-0.344888746738434,0.529106438159943,-0.0644799023866653,0.846101939678192,0.48788920044899,0.0030800390522927,0.872900187969208,0.61922550201416,-0.669262230396271,-0.410667568445206,-0.466994792222977,0.202167123556137,-0.860839366912842,0.802532970905304,-0.365042299032211,-0.471895039081573,0.735929489135742,-0.499664515256882,-0.456884235143662,-0.472662597894669,0.182487830519676,-0.862141788005829,-0.599986433982849,0.637828648090363,0.482898443937302,-0.466994792222977,0.202167123556137,-0.860839366912842,-0.472662597894669,0.182487830519676,-0.862141788005829,-0.595927953720093,0.654557824134827,0.465213984251022,0.21290910243988,0.114881195127964,0.970294773578644,-0.00647404650226235,-0.0547739379107952,0.998477756977081,0.346222370862961,0.936338424682617,-0.0583121478557587,0.412824660539627,0.90782219171524,0.0737214162945747,0.595185041427612,-0.171532079577446,0.785067796707153,0.980059862136841,0.137361347675323,0.143577575683594,0.333045393228531,-0.762605428695679,-0.554539203643799,0.776765704154968,-0.426658034324646,-0.463247239589691,0.902157187461853,-0.176356106996536,-0.393714219331741,0.74042284488678,-0.277547240257263,-0.61216139793396,-0.515303373336792,-0.785577893257141,-0.342534214258194,-0.30936798453331,-0.776455938816071,-0.549006044864655,0.595091700553894,-0.385536938905716,-0.70514327287674,0.430848747491837,-0.376510620117188,-0.820127546787262,-0.883599579334259,-0.396237760782242,-0.249494642019272,-0.799250423908234,-0.499476253986359,-0.334248811006546,-0.114752948284149,-0.831537783145905,0.543485760688782,-0.428143620491028,-0.409090518951416,0.805815041065216,-0.926196813583374,-0.0702502131462097,-0.370438098907471,-0.828748464584351,0.22226394712925,0.513590157032013,0.439062356948853,-0.876033186912537,0.199474558234215,0.142232865095139,-0.956851601600647,0.253386497497559,-0.541450381278992,0.0985208749771118,0.834940195083618,-0.1526730209589,0.130944386124611,0.979563415050507,0.452686697244644,-0.887403070926666,0.0871244817972183,
- 0.413716286420822,-0.904416561126709,0.104257620871067,0.174276739358902,0.123644053936005,0.976903140544891,0.605378866195679,0.289192169904709,0.741541862487793,0.230036735534668,-0.882763743400574,-0.409647643566132,0.452686697244644,-0.887403070926666,0.0871244817972183,0.605378866195679,0.289192169904709,0.741541862487793,0.412824660539627,0.90782219171524,0.0737214162945747,0.346222370862961,0.936338424682617,-0.0583121478557587,0.0430596247315407,-0.00620631035417318,-0.999053239822388,0.133858844637871,0.0831092521548271,-0.987509310245514,0.776765704154968,-0.426658034324646,-0.463247239589691,0.333045393228531,-0.762605428695679,-0.554539203643799,-0.889553129673004,-0.370645791292191,-0.267052203416824,-0.619200527667999,-0.186445012688637,-0.762777149677277,-0.30936798453331,-0.776455938816071,-0.549006044864655,-0.515303373336792,-0.785577893257141,-0.342534214258194,-0.815849781036377,0.252930760383606,0.520014584064484,-0.966435968875885,0.0698336586356163,0.247234523296356,-0.799250423908234,-0.499476253986359,-0.334248811006546,-0.883599579334259,-0.396237760782242,-0.249494642019272,-0.449636042118073,0.132780969142914,0.883287370204926,-0.643469035625458,0.290566235780716,0.708180069923401,0.773412525653839,-0.466562747955322,-0.42912957072258,0.899856686592102,-0.378726989030838,0.216387897729874,-0.428143620491028,-0.409090518951416,0.805815041065216,-0.114752948284149,-0.831537783145905,0.543485760688782,0.311733186244965,-0.318457186222076,-0.895213663578033,0.691252291202545,-0.290317177772522,-0.66172981262207,0.142232865095139,-0.956851601600647,0.253386497497559,0.439062356948853,-0.876033186912537,0.199474558234215,-0.349875330924988,-0.324146717786789,-0.878928959369659,0.0814320296049118,-0.118255257606506,-0.98963850736618,0.413716286420822,-0.904416561126709,0.104257620871067,0.452686697244644,-0.887403070926666,0.0871244817972183,0.230036735534668,-0.882763743400574,-0.409647643566132,-0.349875330924988,-0.324146717786789,-0.878928959369659,0.452686697244644,-0.887403070926666,0.0871244817972183,
- 0.133858844637871,0.0831092521548271,-0.987509310245514,0.0430596247315407,-0.00620631035417318,-0.999053239822388,-0.60191547870636,-0.795169949531555,-0.0735015869140625,-0.698177754878998,-0.714090287685394,0.0512144528329372,-0.619200527667999,-0.186445012688637,-0.762777149677277,-0.889553129673004,-0.370645791292191,-0.267052203416824,-0.397716373205185,0.657326102256775,0.640112638473511,-0.591643571853638,0.653103351593018,0.472666770219803,-0.966435968875885,0.0698336586356163,0.247234523296356,-0.815849781036377,0.252930760383606,0.520014584064484,0.427028089761734,0.825605690479279,0.368811964988709,0.190404340624809,0.855291306972504,0.481895267963409,-0.643469035625458,0.290566235780716,0.708180069923401,-0.449636042118073,0.132780969142914,0.883287370204926,0.62630969285965,0.757017254829407,0.186174929141998,0.61527419090271,0.736485302448273,0.281117409467697,-0.0699051469564438,0.643979728221893,-0.761842012405396,0.312137007713318,0.716552317142487,-0.623797416687012,0.899856686592102,-0.378726989030838,0.216387897729874,0.773412525653839,-0.466562747955322,-0.42912957072258,-0.66161048412323,0.654303312301636,-0.366276919841766,-0.367884159088135,0.749398410320282,-0.55051177740097,0.691252291202545,-0.290317177772522,-0.66172981262207,0.311733186244965,-0.318457186222076,-0.895213663578033,-0.791300415992737,0.565812230110168,0.231733098626137,-0.582897245883942,0.805500984191895,-0.10676597058773,0.0814320296049118,-0.118255257606506,-0.98963850736618,-0.349875330924988,-0.324146717786789,-0.878928959369659,0.230036735534668,-0.882763743400574,-0.409647643566132,-0.791300415992737,0.565812230110168,0.231733098626137,-0.349875330924988,-0.324146717786789,-0.878928959369659,-0.038023941218853,-0.950779139995575,0.307527512311935,-0.0629729926586151,-0.991727709770203,0.111850708723068,-0.00647404650226235,-0.0547739379107952,0.998477756977081,0.21290910243988,0.114881195127964,0.970294773578644,-0.728694975376129,0.290634721517563,0.620109021663666,-0.284358948469162,0.854601681232452,0.434506714344025,
- 0.980059862136841,0.137361347675323,0.143577575683594,0.595185041427612,-0.171532079577446,0.785067796707153,0.252926468849182,0.743250131607056,0.619360506534576,0.635219573974609,0.501858353614807,0.587055563926697,0.74042284488678,-0.277547240257263,-0.61216139793396,0.902157187461853,-0.176356106996536,-0.393714219331741,0.839428544044495,0.284982532262802,0.462757647037506,0.886655569076538,0.360621631145477,0.289471745491028,0.430848747491837,-0.376510620117188,-0.820127546787262,0.595091700553894,-0.385536938905716,-0.70514327287674,-0.926196813583374,-0.0702502131462097,-0.370438098907471,0.354937642812729,0.535152077674866,-0.766571223735809,-0.0198572818189859,0.924912929534912,-0.37966001033783,-0.828748464584351,0.22226394712925,0.513590157032013,-0.541450381278992,0.0985208749771118,0.834940195083618,-0.0249220952391624,0.980401635169983,-0.195426449179649,-0.24380749464035,0.932513296604156,-0.26641508936882,-0.1526730209589,0.130944386124611,0.979563415050507,0.174276739358902,0.123644053936005,0.976903140544891,-0.60377162694931,0.79052734375,-0.102597497403622,-0.365522384643555,0.930697023868561,0.0140141965821385,0.605378866195679,0.289192169904709,0.741541862487793,0.605378866195679,0.289192169904709,0.741541862487793,-0.365522384643555,0.930697023868561,0.0140141965821385,0.230036735534668,-0.882763743400574,-0.409647643566132,0.0320772454142571,-0.849941432476044,-0.525899827480316,-0.988194644451141,-0.152522504329681,-0.0144336679950356,-0.889553129673004,-0.370645791292191,-0.267052203416824,0.333045393228531,-0.762605428695679,-0.554539203643799,0.987241685390472,0.00648619141429663,-0.159096643328667,0.0320772454142571,-0.849941432476044,-0.525899827480316,0.333045393228531,-0.762605428695679,-0.554539203643799,0.980059862136841,0.137361347675323,0.143577575683594,-0.0336476974189281,0.877995491027832,0.47748476266861,0.987241685390472,0.00648619141429663,-0.159096643328667,0.980059862136841,0.137361347675323,0.143577575683594,-0.284358948469162,0.854601681232452,0.434506714344025,-0.988194644451141,-0.152522504329681,-0.0144336679950356,
- -0.033077422529459,0.800990521907806,0.597762584686279,-0.397716373205185,0.657326102256775,0.640112638473511,-0.889553129673004,-0.370645791292191,-0.267052203416824,0.888175189495087,-0.459500342607498,0.00203271675854921,0.909004509449005,-0.387147784233093,-0.154361799359322,-0.331009089946747,-0.0139378262683749,-0.943524599075317,-0.231428220868111,-0.00636429619044065,-0.972831189632416,0.311598241329193,0.02833092212677,0.949791491031647,0.453012496232986,-0.0481443889439106,0.890203297138214,0.909004509449005,-0.387147784233093,-0.154361799359322,0.888175189495087,-0.459500342607498,0.00203271675854921,-0.688080668449402,0.718275189399719,0.103082440793514,-0.885146677494049,0.408057451248169,0.223616495728493,0.453012496232986,-0.0481443889439106,0.890203297138214,0.311598241329193,0.02833092212677,0.949791491031647,-0.231428220868111,-0.00636429619044065,-0.972831189632416,-0.331009089946747,-0.0139378262683749,-0.943524599075317,-0.892067074775696,0.390644669532776,0.227185115218163,-0.981025457382202,0.16880689561367,0.0953586399555206,-0.893854796886444,-0.448171854019165,-0.012866442091763,-0.827549576759338,-0.452236831188202,0.33263111114502,0.199567228555679,0.254843950271606,0.946164667606354,-0.122624911367893,0.0573044158518314,0.990797281265259,0.113747268915176,-0.209439933300018,-0.971183061599731,-0.251995235681534,-0.296896725893021,-0.921059608459473,-0.827549576759338,-0.452236831188202,0.33263111114502,-0.893854796886444,-0.448171854019165,-0.012866442091763,0.950370252132416,0.302271157503128,0.0736787542700768,0.932626247406006,0.101735562086105,-0.346205502748489,-0.251995235681534,-0.296896725893021,-0.921059608459473,0.113747268915176,-0.209439933300018,-0.971183061599731,-0.122624911367893,0.0573044158518314,0.990797281265259,0.199567228555679,0.254843950271606,0.946164667606354,0.627612352371216,0.760287940502167,-0.167526125907898,0.729718446731567,0.677708566188812,0.090675376355648,-0.738929212093353,-0.436400175094604,0.513360023498535,-0.428143620491028,-0.409090518951416,0.805815041065216,
- 0.899856686592102,-0.378726989030838,0.216387897729874,0.569862008094788,0.109798915684223,0.814371943473816,-0.53161758184433,-0.30817848443985,-0.788928806781769,-0.926196813583374,-0.0702502131462097,-0.370438098907471,-0.428143620491028,-0.409090518951416,0.805815041065216,-0.738929212093353,-0.436400175094604,0.513360023498535,0.631078064441681,0.366033881902695,-0.683929562568665,0.354937642812729,0.535152077674866,-0.766571223735809,-0.926196813583374,-0.0702502131462097,-0.370438098907471,-0.53161758184433,-0.30817848443985,-0.788928806781769,0.569862008094788,0.109798915684223,0.814371943473816,0.899856686592102,-0.378726989030838,0.216387897729874,0.312137007713318,0.716552317142487,-0.623797416687012,0.451523274183273,0.766375541687012,-0.456941187381744,-0.827549576759338,-0.452236831188202,0.33263111114502,-0.738929212093353,-0.436400175094604,0.513360023498535,0.569862008094788,0.109798915684223,0.814371943473816,0.199567228555679,0.254843950271606,0.946164667606354,-0.251995235681534,-0.296896725893021,-0.921059608459473,-0.53161758184433,-0.30817848443985,-0.788928806781769,-0.738929212093353,-0.436400175094604,0.513360023498535,-0.827549576759338,-0.452236831188202,0.33263111114502,0.932626247406006,0.101735562086105,-0.346205502748489,0.631078064441681,0.366033881902695,-0.683929562568665,-0.53161758184433,-0.30817848443985,-0.788928806781769,-0.251995235681534,-0.296896725893021,-0.921059608459473,0.199567228555679,0.254843950271606,0.946164667606354,0.569862008094788,0.109798915684223,0.814371943473816,0.451523274183273,0.766375541687012,-0.456941187381744,0.627612352371216,0.760287940502167,-0.167526125907898,0.957013964653015,-0.171856939792633,0.233643919229507,0.979930222034454,-0.154089391231537,0.126464128494263,-0.0771641284227371,-0.0642417222261429,-0.994946479797363,0.127900406718254,0.0356217734515667,-0.991147041320801,-0.264919817447662,-0.253039330244064,0.930477619171143,0.0341744460165501,-0.0868070647120476,0.995638787746429,0.979930222034454,-0.154089391231537,0.126464128494263,
- 0.957013964653015,-0.171856939792633,0.233643919229507,-0.990520060062408,0.0961777046322823,-0.0980811417102814,-0.872810065746307,0.48783740401268,-0.0147423157468438,0.0341744460165501,-0.0868070647120476,0.995638787746429,-0.264919817447662,-0.253039330244064,0.930477619171143,0.127900406718254,0.0356217734515667,-0.991147041320801,-0.0771641284227371,-0.0642417222261429,-0.994946479797363,-0.997262716293335,0.0101941656321287,-0.073232889175415,-0.877458870410919,0.470941156148911,-0.0909972414374352,0.694044828414917,0.67651641368866,0.24622617661953,0.901405036449432,0.246344432234764,0.356066554784775,0.250777304172516,0.104895979166031,-0.962344884872437,0.293029993772507,-0.0180606078356504,-0.95593273639679,-0.178609356284142,-0.248705700039864,0.951968669891357,-0.299305438995361,-0.376183152198792,0.87687087059021,0.901405036449432,0.246344432234764,0.356066554784775,0.694044828414917,0.67651641368866,0.24622617661953,-0.735738277435303,-0.675123989582062,0.0538212992250919,-0.927828073501587,-0.366448044776917,-0.0696486681699753,-0.299305438995361,-0.376183152198792,0.87687087059021,-0.178609356284142,-0.248705700039864,0.951968669891357,0.293029993772507,-0.0180606078356504,-0.95593273639679,0.250777304172516,0.104895979166031,-0.962344884872437,-0.819121062755585,0.525976717472076,-0.228887110948563,-0.942783951759338,0.190393686294556,-0.27369436621666,0.250777304172516,0.104895979166031,-0.962344884872437,0.127900406718254,0.0356217734515667,-0.991147041320801,-0.877458870410919,0.470941156148911,-0.0909972414374352,-0.819121062755585,0.525976717472076,-0.228887110948563,-0.299305438995361,-0.376183152198792,0.87687087059021,-0.927828073501587,-0.366448044776917,-0.0696486681699753,-0.990520060062408,0.0961777046322823,-0.0980811417102814,-0.264919817447662,-0.253039330244064,0.930477619171143,0.901405036449432,0.246344432234764,0.356066554784775,-0.299305438995361,-0.376183152198792,0.87687087059021,-0.264919817447662,-0.253039330244064,0.930477619171143,0.957013964653015,-0.171856939792633,0.233643919229507,
- 0.250777304172516,0.104895979166031,-0.962344884872437,0.901405036449432,0.246344432234764,0.356066554784775,0.957013964653015,-0.171856939792633,0.233643919229507,0.127900406718254,0.0356217734515667,-0.991147041320801,-0.0771641284227371,-0.0642417222261429,-0.994946479797363,-0.231428220868111,-0.00636429619044065,-0.972831189632416,-0.981025457382202,0.16880689561367,0.0953586399555206,-0.997262716293335,0.0101941656321287,-0.073232889175415,0.0341744460165501,-0.0868070647120476,0.995638787746429,-0.872810065746307,0.48783740401268,-0.0147423157468438,-0.688080668449402,0.718275189399719,0.103082440793514,0.311598241329193,0.02833092212677,0.949791491031647,0.979930222034454,-0.154089391231537,0.126464128494263,0.0341744460165501,-0.0868070647120476,0.995638787746429,0.311598241329193,0.02833092212677,0.949791491031647,0.888175189495087,-0.459500342607498,0.00203271675854921,-0.0771641284227371,-0.0642417222261429,-0.994946479797363,0.979930222034454,-0.154089391231537,0.126464128494263,0.888175189495087,-0.459500342607498,0.00203271675854921,-0.231428220868111,-0.00636429619044065,-0.972831189632416,0.263811677694321,-0.0619572959840298,-0.962582290172577,0.293029993772507,-0.0180606078356504,-0.95593273639679,-0.942783951759338,0.190393686294556,-0.27369436621666,-0.852318704128265,-0.522646307945251,0.0198365543037653,-0.0128563903272152,-0.0649640709161758,0.997804820537567,-0.503411471843719,-0.848240494728088,0.164514318108559,-0.735738277435303,-0.675123989582062,0.0538212992250919,-0.178609356284142,-0.248705700039864,0.951968669891357,0.406205713748932,0.911987841129303,0.0572291314601898,-0.0128563903272152,-0.0649640709161758,0.997804820537567,-0.178609356284142,-0.248705700039864,0.951968669891357,0.694044828414917,0.67651641368866,0.24622617661953,0.263811677694321,-0.0619572959840298,-0.962582290172577,0.406205713748932,0.911987841129303,0.0572291314601898,0.694044828414917,0.67651641368866,0.24622617661953,0.293029993772507,-0.0180606078356504,-0.95593273639679,-0.59675133228302,-0.338594645261765,0.72748988866806,
- 0.117469236254692,-0.541973173618317,0.832145571708679,0.0616635829210281,-0.784475743770599,0.617086112499237,-0.337840110063553,-0.251044541597366,0.907105624675751,0.412824660539627,0.90782219171524,0.0737214162945747,0.133858844637871,0.0831092521548271,-0.987509310245514,-0.108155027031899,0.62959748506546,-0.769356548786163,0.616855144500732,0.429455637931824,-0.659588932991028,0.133858844637871,0.0831092521548271,-0.987509310245514,-0.698177754878998,-0.714090287685394,0.0512144528329372,-0.765463888645172,-0.537321388721466,-0.354049414396286,-0.101364687085152,-0.717550933361053,-0.689090728759766,-0.038023941218853,-0.950779139995575,0.307527512311935,0.21290910243988,0.114881195127964,0.970294773578644,-0.337840110063553,-0.251044541597366,0.907105624675751,0.0616635829210281,-0.784475743770599,0.617086112499237,0.21290910243988,0.114881195127964,0.970294773578644,0.412824660539627,0.90782219171524,0.0737214162945747,0.0191634632647038,0.66945606470108,0.742604434490204,0.468242794275284,0.107697740197182,0.877011895179749,0.346222370862961,0.936338424682617,-0.0583121478557587,0.406205713748932,0.911987841129303,0.0572291314601898,0.263811677694321,-0.0619572959840298,-0.962582290172577,0.0430596247315407,-0.00620631035417318,-0.999053239822388,-0.60191547870636,-0.795169949531555,-0.0735015869140625,0.0430596247315407,-0.00620631035417318,-0.999053239822388,0.263811677694321,-0.0619572959840298,-0.962582290172577,-0.852318704128265,-0.522646307945251,0.0198365543037653,-0.00647404650226235,-0.0547739379107952,0.998477756977081,-0.0629729926586151,-0.991727709770203,0.111850708723068,-0.503411471843719,-0.848240494728088,0.164514318108559,-0.0128563903272152,-0.0649640709161758,0.997804820537567,0.346222370862961,0.936338424682617,-0.0583121478557587,-0.00647404650226235,-0.0547739379107952,0.998477756977081,-0.0128563903272152,-0.0649640709161758,0.997804820537567,0.406205713748932,0.911987841129303,0.0572291314601898,-0.331009089946747,-0.0139378262683749,-0.943524599075317,-0.619200527667999,-0.186445012688637,-0.762777149677277,
- -0.591643571853638,0.653103351593018,0.472666770219803,-0.892067074775696,0.390644669532776,0.227185115218163,0.453012496232986,-0.0481443889439106,0.890203297138214,-0.885146677494049,0.408057451248169,0.223616495728493,-0.728694975376129,0.290634721517563,0.620109021663666,0.595185041427612,-0.171532079577446,0.785067796707153,0.909004509449005,-0.387147784233093,-0.154361799359322,0.453012496232986,-0.0481443889439106,0.890203297138214,0.595185041427612,-0.171532079577446,0.785067796707153,0.776765704154968,-0.426658034324646,-0.463247239589691,-0.331009089946747,-0.0139378262683749,-0.943524599075317,0.909004509449005,-0.387147784233093,-0.154361799359322,0.776765704154968,-0.426658034324646,-0.463247239589691,-0.619200527667999,-0.186445012688637,-0.762777149677277,0.142232865095139,-0.956851601600647,0.253386497497559,-0.114752948284149,-0.831537783145905,0.543485760688782,-0.828748464584351,0.22226394712925,0.513590157032013,-0.541450381278992,0.0985208749771118,0.834940195083618,0.691252291202545,-0.290317177772522,-0.66172981262207,0.773412525653839,-0.466562747955322,-0.42912957072258,-0.114752948284149,-0.831537783145905,0.543485760688782,0.142232865095139,-0.956851601600647,0.253386497497559,-0.367884159088135,0.749398410320282,-0.55051177740097,-0.0699051469564438,0.643979728221893,-0.761842012405396,0.773412525653839,-0.466562747955322,-0.42912957072258,0.691252291202545,-0.290317177772522,-0.66172981262207,-0.828748464584351,0.22226394712925,0.513590157032013,-0.0198572818189859,0.924912929534912,-0.37966001033783,-0.0249220952391624,0.980401635169983,-0.195426449179649,-0.541450381278992,0.0985208749771118,0.834940195083618,0.413716286420822,-0.904416561126709,0.104257620871067,0.439062356948853,-0.876033186912537,0.199474558234215,-0.1526730209589,0.130944386124611,0.979563415050507,0.174276739358902,0.123644053936005,0.976903140544891,0.0814320296049118,-0.118255257606506,-0.98963850736618,0.311733186244965,-0.318457186222076,-0.895213663578033,0.439062356948853,-0.876033186912537,0.199474558234215,
- 0.413716286420822,-0.904416561126709,0.104257620871067,-0.582897245883942,0.805500984191895,-0.10676597058773,-0.66161048412323,0.654303312301636,-0.366276919841766,0.311733186244965,-0.318457186222076,-0.895213663578033,0.0814320296049118,-0.118255257606506,-0.98963850736618,-0.1526730209589,0.130944386124611,0.979563415050507,-0.24380749464035,0.932513296604156,-0.26641508936882,-0.60377162694931,0.79052734375,-0.102597497403622,0.174276739358902,0.123644053936005,0.976903140544891,-0.135682672262192,0.44041046500206,0.887484550476074,-0.206457242369652,0.466649770736694,0.86000782251358,0.535093069076538,-0.749767661094666,0.389260649681091,0.492903262376785,-0.770964503288269,0.403311401605606,-0.518040597438812,0.318376421928406,0.793895781040192,-0.809711933135986,0.111162103712559,0.576202809810638,0.458963245153427,-0.637466967105865,0.618860840797424,0.472368359565735,-0.761059284210205,0.444586277008057,-0.809711933135986,0.111162103712559,0.576202809810638,-0.911549210548401,0.0208756700158119,0.410660684108734,0.0940118059515953,-0.743785262107849,0.661774158477783,0.458963245153427,-0.637466967105865,0.618860840797424,-0.911549210548401,0.0208756700158119,0.410660684108734,-0.985374867916107,0.139492690563202,0.0978674739599228,-0.0452565364539623,-0.963155329227448,0.265110790729523,0.0940118059515953,-0.743785262107849,0.661774158477783,-0.0215060096234083,-0.941098272800446,0.337448745965958,-0.0452565364539623,-0.963155329227448,0.265110790729523,-0.985374867916107,0.139492690563202,0.0978674739599228,-0.942219197750092,-0.101671278476715,-0.319195657968521,0.704251646995544,-0.103586241602898,0.702352821826935,0.227679267525673,-0.968544363975525,-0.100418083369732,-0.679766714572906,-0.0892636924982071,-0.727976143360138,0.78191876411438,-0.561196327209473,0.271407067775726,0.725952565670013,-0.590890228748322,0.35191136598587,0.171748220920563,-0.264571666717529,-0.948949098587036,0.124738752841949,-0.388000249862671,-0.913179039955139,0.478274136781693,-0.756160736083984,0.44662606716156,0.472284018993378,-0.617015480995178,0.629475712776184,
- 0.617463827133179,-0.191213488578796,-0.76300448179245,0.353366792201996,-0.268493294715881,-0.896126806735992,0.472284018993378,-0.617015480995178,0.629475712776184,0.22120226919651,-0.470311433076859,0.854328155517578,0.885843276977539,-0.0501342266798019,-0.46126800775528,0.617463827133179,-0.191213488578796,-0.76300448179245,0.22120226919651,-0.470311433076859,0.854328155517578,0.038056880235672,-0.762651026248932,0.645689725875854,0.976363897323608,0.163759544491768,-0.14105449616909,0.885843276977539,-0.0501342266798019,-0.46126800775528,0.974372088909149,0.184572488069534,0.128577664494514,0.976363897323608,0.163759544491768,-0.14105449616909,0.038056880235672,-0.762651026248932,0.645689725875854,0.00191170629113913,-0.964025378227234,0.265803605318069,0.704251646995544,-0.103586241602898,0.702352821826935,0.714762091636658,0.333830922842026,0.614550292491913,0.0111535638570786,-0.923756837844849,0.382817089557648,0.124738752841949,-0.388000249862671,-0.913179039955139,0.171748220920563,-0.264571666717529,-0.948949098587036,-0.744832158088684,0.546872496604919,-0.382302820682526,-0.724791347980499,0.546152234077454,-0.419994324445724,0.353366792201996,-0.268493294715881,-0.896126806735992,0.617463827133179,-0.191213488578796,-0.76300448179245,-0.304136633872986,0.788881242275238,-0.534010648727417,-0.443433791399002,0.761412441730499,-0.472882151603699,0.617463827133179,-0.191213488578796,-0.76300448179245,0.885843276977539,-0.0501342266798019,-0.46126800775528,-0.357534229755402,0.678641974925995,-0.641571700572968,-0.304136633872986,0.788881242275238,-0.534010648727417,0.885843276977539,-0.0501342266798019,-0.46126800775528,0.976363897323608,0.163759544491768,-0.14105449616909,-0.0917742475867271,0.813639223575592,-0.5740807056427,-0.357534229755402,0.678641974925995,-0.641571700572968,0.974372088909149,0.184572488069534,0.128577664494514,-0.21692930161953,0.905675768852234,-0.364270567893982,-0.0917742475867271,0.813639223575592,-0.5740807056427,0.976363897323608,0.163759544491768,-0.14105449616909,0.704251646995544,-0.103586241602898,0.702352821826935,
- -0.304806560277939,0.948199987411499,-0.0894977748394012,0.714762091636658,0.333830922842026,0.614550292491913,-0.724791347980499,0.546152234077454,-0.419994324445724,-0.744832158088684,0.546872496604919,-0.382302820682526,-0.206457242369652,0.466649770736694,0.86000782251358,-0.135682672262192,0.44041046500206,0.887484550476074,-0.443433791399002,0.761412441730499,-0.472882151603699,-0.304136633872986,0.788881242275238,-0.534010648727417,-0.809711933135986,0.111162103712559,0.576202809810638,-0.518040597438812,0.318376421928406,0.793895781040192,-0.304136633872986,0.788881242275238,-0.534010648727417,-0.357534229755402,0.678641974925995,-0.641571700572968,-0.911549210548401,0.0208756700158119,0.410660684108734,-0.809711933135986,0.111162103712559,0.576202809810638,-0.357534229755402,0.678641974925995,-0.641571700572968,-0.0917742475867271,0.813639223575592,-0.5740807056427,-0.985374867916107,0.139492690563202,0.0978674739599228,-0.911549210548401,0.0208756700158119,0.410660684108734,-0.985374867916107,0.139492690563202,0.0978674739599228,-0.0917742475867271,0.813639223575592,-0.5740807056427,-0.21692930161953,0.905675768852234,-0.364270567893982,-0.942219197750092,-0.101671278476715,-0.319195657968521,-0.679766714572906,-0.0892636924982071,-0.727976143360138,-0.304806560277939,0.948199987411499,-0.0894977748394012,0.704251646995544,-0.103586241602898,0.702352821826935,-0.120598696172237,-0.860838532447815,0.494381338357925,-0.157267570495605,-0.861414134502411,0.482941567897797,0.754205048084259,-0.337344318628311,-0.563359260559082,0.74063628911972,-0.486590087413788,-0.463344573974609,-0.199974671006203,-0.944776177406311,0.259630650281906,-0.0840385779738426,-0.928240180015564,0.362364083528519,0.75849461555481,0.188624769449234,0.623784065246582,0.998374104499817,0.00209601921960711,-0.0569625087082386,0.828427970409393,-0.434223562479019,-0.353775650262833,0.883282959461212,-0.256956785917282,-0.392153471708298,0.201121866703033,0.933912217617035,-0.295563757419586,0.222298935055733,0.862487733364105,-0.454640805721283,
- 0.996815323829651,0.0444829016923904,0.0661848708987236,0.911002397537231,0.0941167920827866,0.401518136262894,0.283715784549713,0.882938027381897,-0.374066770076752,0.0889361873269081,0.96751469373703,-0.236654862761498,0.222298935055733,0.862487733364105,-0.454640805721283,0.201121866703033,0.933912217617035,-0.295563757419586,-0.874781429767609,0.409294664859772,0.259298086166382,-0.793169975280762,0.375209361314774,0.479686766862869,0.0889361873269081,0.96751469373703,-0.236654862761498,0.283715784549713,0.882938027381897,-0.374066770076752,-0.916394114494324,0.175036668777466,-0.359977751970291,-0.957989454269409,0.258618324995041,-0.123986355960369,-0.793169975280762,0.375209361314774,0.479686766862869,-0.874781429767609,0.409294664859772,0.259298086166382,-0.157267570495605,-0.861414134502411,0.482941567897797,-0.120598696172237,-0.860838532447815,0.494381338357925,-0.957989454269409,0.258618324995041,-0.123986355960369,-0.916394114494324,0.175036668777466,-0.359977751970291,-0.0840385779738426,-0.928240180015564,0.362364083528519,-0.199974671006203,-0.944776177406311,0.259630650281906,-0.206457242369652,0.466649770736694,0.86000782251358,-0.518040597438812,0.318376421928406,0.793895781040192,0.472368359565735,-0.761059284210205,0.444586277008057,0.535093069076538,-0.749767661094666,0.389260649681091,0.171748220920563,-0.264571666717529,-0.948949098587036,0.725952565670013,-0.590890228748322,0.35191136598587,0.478274136781693,-0.756160736083984,0.44662606716156,0.353366792201996,-0.268493294715881,-0.896126806735992,-0.744832158088684,0.546872496604919,-0.382302820682526,0.171748220920563,-0.264571666717529,-0.948949098587036,0.353366792201996,-0.268493294715881,-0.896126806735992,-0.443433791399002,0.761412441730499,-0.472882151603699,-0.206457242369652,0.466649770736694,0.86000782251358,-0.744832158088684,0.546872496604919,-0.382302820682526,-0.443433791399002,0.761412441730499,-0.472882151603699,-0.518040597438812,0.318376421928406,0.793895781040192,0.201121866703033,0.933912217617035,-0.295563757419586,
- 0.0889361873269081,0.96751469373703,-0.236654862761498,-0.957989454269409,0.258618324995041,-0.123986355960369,-0.874781429767609,0.409294664859772,0.259298086166382,-0.157267570495605,-0.861414134502411,0.482941567897797,-0.874781429767609,0.409294664859772,0.259298086166382,-0.957989454269409,0.258618324995041,-0.123986355960369,-0.199974671006203,-0.944776177406311,0.259630650281906,0.754205048084259,-0.337344318628311,-0.563359260559082,-0.157267570495605,-0.861414134502411,0.482941567897797,-0.199974671006203,-0.944776177406311,0.259630650281906,0.998374104499817,0.00209601921960711,-0.0569625087082386,0.201121866703033,0.933912217617035,-0.295563757419586,0.883282959461212,-0.256956785917282,-0.392153471708298,0.996815323829651,0.0444829016923904,0.0661848708987236,0.0889361873269081,0.96751469373703,-0.236654862761498,0.75849461555481,0.188624769449234,0.623784065246582,-0.0840385779738426,-0.928240180015564,0.362364083528519,-0.725678741931915,-0.687248051166534,-0.0328723825514317,0.283715784549713,0.882938027381897,-0.374066770076752,0.911002397537231,0.0941167920827866,0.401518136262894,0.716885566711426,0.696876049041748,0.0209486670792103,-0.916394114494324,0.175036668777466,-0.359977751970291,0.283715784549713,0.882938027381897,-0.374066770076752,-0.725678741931915,-0.687248051166534,-0.0328723825514317,-0.0840385779738426,-0.928240180015564,0.362364083528519,-0.916394114494324,0.175036668777466,-0.359977751970291,-0.725678741931915,-0.687248051166534,-0.0328723825514317,-0.942219197750092,-0.101671278476715,-0.319195657968521,-0.21692930161953,0.905675768852234,-0.364270567893982,-0.304806560277939,0.948199987411499,-0.0894977748394012,-0.679766714572906,-0.0892636924982071,-0.727976143360138,0.227679267525673,-0.968544363975525,-0.100418083369732,-0.0215060096234083,-0.941098272800446,0.337448745965958,-0.942219197750092,-0.101671278476715,-0.319195657968521,-0.679766714572906,-0.0892636924982071,-0.727976143360138,0.714762091636658,0.333830922842026,0.614550292491913,0.974372088909149,0.184572488069534,0.128577664494514,
- 0.00191170629113913,-0.964025378227234,0.265803605318069,0.0111535638570786,-0.923756837844849,0.382817089557648,-0.304806560277939,0.948199987411499,-0.0894977748394012,-0.21692930161953,0.905675768852234,-0.364270567893982,0.974372088909149,0.184572488069534,0.128577664494514,0.714762091636658,0.333830922842026,0.614550292491913,0.765781342983246,-0.111457824707031,0.633368968963623,-0.55463182926178,-0.255184143781662,0.792000412940979,-0.599611759185791,-0.187165632843971,0.778096973896027,0.792962372303009,-0.0127736367285252,0.609136641025543,0.655732929706573,0.049999188631773,0.753335654735565,-0.738542139530182,0.154362142086029,0.656298637390137,-0.794817328453064,0.212773814797401,0.568324387073517,0.520789086818695,0.0370058305561543,0.852882921695709,0.593951046466827,0.171106711030006,0.786094427108765,-0.815043330192566,0.194340154528618,0.545835316181183,-0.79642117023468,0.0366018377244473,0.603633642196655,0.645709693431854,0.351081907749176,0.678085923194885,-0.743264138698578,-0.0995841026306152,0.661544740200043,0.595604121685028,0.42860272526741,0.679378688335419,0.645709693431854,0.351081907749176,0.678085923194885,-0.79642117023468,0.0366018377244473,0.603633642196655,0.595604121685028,0.42860272526741,0.679378688335419,-0.743264138698578,-0.0995841026306152,0.661544740200043,-0.682745814323425,-0.117881864309311,0.721083879470825,0.626751720905304,0.275499790906906,0.728891015052795,0.626751720905304,0.275499790906906,0.728891015052795,-0.682745814323425,-0.117881864309311,0.721083879470825,-0.670735538005829,-0.178758054971695,0.719833016395569,0.648508667945862,0.00232275831513107,0.761203706264496,0.648508667945862,0.00232275831513107,0.761203706264496,-0.670735538005829,-0.178758054971695,0.719833016395569,-0.676370799541473,-0.255082756280899,0.690981388092041,0.742701649665833,-0.0395882986485958,0.668451249599457,0.742701649665833,-0.0395882986485958,0.668451249599457,-0.676370799541473,-0.255082756280899,0.690981388092041,-0.647318780422211,-0.356547594070435,0.673685491085052,0.734791576862335,0.0291709266602993,0.67766535282135,
- 0.734791576862335,0.0291709266602993,0.67766535282135,-0.647318780422211,-0.356547594070435,0.673685491085052,-0.218851611018181,-0.0523428618907928,-0.974353194236755,-0.55463182926178,-0.255184143781662,0.792000412940979,-0.788907706737518,0.171107038855553,-0.590209364891052,-0.694838523864746,0.137618884444237,-0.70587569475174,-0.599611759185791,-0.187165632843971,0.778096973896027,-0.738542139530182,0.154362142086029,0.656298637390137,-0.548551201820374,-0.181090638041496,-0.816270589828491,-0.616216003894806,-0.186264365911484,-0.765234231948853,-0.794817328453064,0.212773814797401,0.568324387073517,-0.815043330192566,0.194340154528618,0.545835316181183,-0.579105854034424,-0.170971110463142,-0.797123074531555,-0.50961709022522,-0.376056015491486,-0.773868501186371,-0.79642117023468,0.0366018377244473,0.603633642196655,-0.531949877738953,-0.578282833099365,-0.618561446666718,-0.743264138698578,-0.0995841026306152,0.661544740200043,-0.79642117023468,0.0366018377244473,0.603633642196655,-0.50961709022522,-0.376056015491486,-0.773868501186371,-0.743264138698578,-0.0995841026306152,0.661544740200043,-0.531949877738953,-0.578282833099365,-0.618561446666718,-0.639909625053406,-0.512974619865417,-0.572164952754974,-0.682745814323425,-0.117881864309311,0.721083879470825,-0.682745814323425,-0.117881864309311,0.721083879470825,-0.639909625053406,-0.512974619865417,-0.572164952754974,-0.751856684684753,-0.248739644885063,-0.610606253147125,-0.670735538005829,-0.178758054971695,0.719833016395569,-0.670735538005829,-0.178758054971695,0.719833016395569,-0.751856684684753,-0.248739644885063,-0.610606253147125,-0.691482901573181,-0.0936717018485069,-0.71629399061203,-0.676370799541473,-0.255082756280899,0.690981388092041,-0.676370799541473,-0.255082756280899,0.690981388092041,-0.691482901573181,-0.0936717018485069,-0.71629399061203,-0.669776797294617,-0.156304523348808,-0.72592556476593,-0.647318780422211,-0.356547594070435,0.673685491085052,-0.647318780422211,-0.356547594070435,0.673685491085052,-0.669776797294617,-0.156304523348808,-0.72592556476593,
- -0.218851611018181,-0.0523428618907928,-0.974353194236755,-0.788907706737518,0.171107038855553,-0.590209364891052,0.741963922977448,0.263309150934219,-0.616569399833679,0.764573931694031,0.152112931013107,-0.626329362392426,-0.694838523864746,0.137618884444237,-0.70587569475174,-0.548551201820374,-0.181090638041496,-0.816270589828491,0.83586847782135,-0.079340472817421,-0.543165862560272,0.777574479579926,-0.106234967708588,-0.619751632213593,-0.616216003894806,-0.186264365911484,-0.765234231948853,-0.579105854034424,-0.170971110463142,-0.797123074531555,0.777153193950653,-0.105525195598602,-0.620400965213776,0.761838257312775,-0.102026849985123,-0.639681994915009,-0.50961709022522,-0.376056015491486,-0.773868501186371,0.617320239543915,0.0710585191845894,-0.78349632024765,-0.531949877738953,-0.578282833099365,-0.618561446666718,-0.50961709022522,-0.376056015491486,-0.773868501186371,0.761838257312775,-0.102026849985123,-0.639681994915009,-0.531949877738953,-0.578282833099365,-0.618561446666718,0.617320239543915,0.0710585191845894,-0.78349632024765,0.547485947608948,0.298219919204712,-0.781872093677521,-0.639909625053406,-0.512974619865417,-0.572164952754974,-0.639909625053406,-0.512974619865417,-0.572164952754974,0.547485947608948,0.298219919204712,-0.781872093677521,0.604687571525574,0.346686750650406,-0.717050313949585,-0.751856684684753,-0.248739644885063,-0.610606253147125,-0.751856684684753,-0.248739644885063,-0.610606253147125,0.604687571525574,0.346686750650406,-0.717050313949585,0.601707935333252,0.377549856901169,-0.703849256038666,-0.691482901573181,-0.0936717018485069,-0.71629399061203,-0.691482901573181,-0.0936717018485069,-0.71629399061203,0.601707935333252,0.377549856901169,-0.703849256038666,0.527163565158844,0.442711561918259,-0.725331008434296,-0.669776797294617,-0.156304523348808,-0.72592556476593,-0.669776797294617,-0.156304523348808,-0.72592556476593,0.527163565158844,0.442711561918259,-0.725331008434296,-0.218851611018181,-0.0523428618907928,-0.974353194236755,0.741963922977448,0.263309150934219,-0.616569399833679,
- 0.73336273431778,0.0977832600474358,0.672768652439117,0.773051559925079,0.128987088799477,0.621090650558472,0.764573931694031,0.152112931013107,-0.626329362392426,0.603053033351898,0.526287078857422,0.599457263946533,0.777574479579926,-0.106234967708588,-0.619751632213593,0.83586847782135,-0.079340472817421,-0.543165862560272,0.663452208042145,0.37010195851326,0.650273561477661,0.777153193950653,-0.105525195598602,-0.620400965213776,0.592118263244629,0.537536859512329,0.60037487745285,0.527946472167969,0.767474234104156,0.363670080900192,0.761838257312775,-0.102026849985123,-0.639681994915009,0.527946472167969,0.767474234104156,0.363670080900192,0.331557899713516,0.896992683410645,0.292358487844467,0.617320239543915,0.0710585191845894,-0.78349632024765,0.761838257312775,-0.102026849985123,-0.639681994915009,0.617320239543915,0.0710585191845894,-0.78349632024765,0.331557899713516,0.896992683410645,0.292358487844467,0.342550784349442,0.804809927940369,0.484705924987793,0.547485947608948,0.298219919204712,-0.781872093677521,0.547485947608948,0.298219919204712,-0.781872093677521,0.342550784349442,0.804809927940369,0.484705924987793,0.432691246271133,0.682019531726837,0.589599609375,0.604687571525574,0.346686750650406,-0.717050313949585,0.604687571525574,0.346686750650406,-0.717050313949585,0.432691246271133,0.682019531726837,0.589599609375,0.577653825283051,0.543369472026825,0.609151542186737,0.601707935333252,0.377549856901169,-0.703849256038666,0.601707935333252,0.377549856901169,-0.703849256038666,0.577653825283051,0.543369472026825,0.609151542186737,0.502113699913025,0.618814587593079,0.60411125421524,0.527163565158844,0.442711561918259,-0.725331008434296,0.527163565158844,0.442711561918259,-0.725331008434296,0.502113699913025,0.618814587593079,0.60411125421524,-0.218851611018181,-0.0523428618907928,-0.974353194236755,-0.151440188288689,0.852109372615814,0.500974535942078,-0.845170617103577,-0.44950133562088,0.289197862148285,-0.917796194553375,-0.319913893938065,0.235170587897301,-0.235086232423782,0.795850872993469,0.55799263715744,
- -0.235086232423782,0.795850872993469,0.55799263715744,-0.917796194553375,-0.319913893938065,0.235170587897301,0.581801295280457,0.798281133174896,0.155738651752472,-0.828548491001129,-0.462277263402939,0.315922737121582,0.249994903802872,-0.790638625621796,-0.558921337127686,0.128757417201996,-0.82979428768158,-0.543012857437134,-0.789258360862732,-0.446005880832672,0.422078460454941,-0.789258360862732,-0.446005880832672,0.422078460454941,0.128757417201996,-0.82979428768158,-0.543012857437134,0.581801295280457,0.798281133174896,0.155738651752472,0.249994903802872,-0.790638625621796,-0.558921337127686,0.827020943164825,0.369844019412994,-0.42338153719902,0.829459190368652,0.427859991788864,-0.35907256603241,0.128757417201996,-0.82979428768158,-0.543012857437134,0.128757417201996,-0.82979428768158,-0.543012857437134,0.829459190368652,0.427859991788864,-0.35907256603241,0.581801295280457,0.798281133174896,0.155738651752472,0.827020943164825,0.369844019412994,-0.42338153719902,-0.151440188288689,0.852109372615814,0.500974535942078,-0.235086232423782,0.795850872993469,0.55799263715744,0.829459190368652,0.427859991788864,-0.35907256603241,0.829459190368652,0.427859991788864,-0.35907256603241,-0.235086232423782,0.795850872993469,0.55799263715744,0.581801295280457,0.798281133174896,0.155738651752472,-0.694838523864746,0.137618884444237,-0.70587569475174,0.764573931694031,0.152112931013107,-0.626329362392426,0.797611474990845,-0.0215700604021549,-0.602785885334015,-0.605508804321289,-0.0249886624515057,-0.795446157455444,-0.599611759185791,-0.187165632843971,0.778096973896027,-0.694838523864746,0.137618884444237,-0.70587569475174,-0.605508804321289,-0.0249886624515057,-0.795446157455444,-0.7142373919487,-0.0131324930116534,0.699780404567719,0.792962372303009,-0.0127736367285252,0.609136641025543,-0.599611759185791,-0.187165632843971,0.778096973896027,-0.7142373919487,-0.0131324930116534,0.699780404567719,0.713423669338226,0.078336589038372,0.696340441703796,0.764573931694031,0.152112931013107,-0.626329362392426,0.773051559925079,0.128987088799477,0.621090650558472,
- 0.695424497127533,0.262010484933853,0.669130146503448,0.797611474990845,-0.0215700604021549,-0.602785885334015,-0.605508804321289,-0.0249886624515057,-0.795446157455444,0.797611474990845,-0.0215700604021549,-0.602785885334015,0.83586847782135,-0.079340472817421,-0.543165862560272,-0.548551201820374,-0.181090638041496,-0.816270589828491,-0.7142373919487,-0.0131324930116534,0.699780404567719,-0.605508804321289,-0.0249886624515057,-0.795446157455444,-0.548551201820374,-0.181090638041496,-0.816270589828491,-0.738542139530182,0.154362142086029,0.656298637390137,0.713423669338226,0.078336589038372,0.696340441703796,-0.7142373919487,-0.0131324930116534,0.699780404567719,-0.738542139530182,0.154362142086029,0.656298637390137,0.655732929706573,0.049999188631773,0.753335654735565,0.797611474990845,-0.0215700604021549,-0.602785885334015,0.695424497127533,0.262010484933853,0.669130146503448,0.663452208042145,0.37010195851326,0.650273561477661,0.83586847782135,-0.079340472817421,-0.543165862560272,-0.616216003894806,-0.186264365911484,-0.765234231948853,0.777574479579926,-0.106234967708588,-0.619751632213593,0.777153193950653,-0.105525195598602,-0.620400965213776,-0.579105854034424,-0.170971110463142,-0.797123074531555,-0.794817328453064,0.212773814797401,0.568324387073517,-0.616216003894806,-0.186264365911484,-0.765234231948853,-0.579105854034424,-0.170971110463142,-0.797123074531555,-0.815043330192566,0.194340154528618,0.545835316181183,0.520789086818695,0.0370058305561543,0.852882921695709,-0.794817328453064,0.212773814797401,0.568324387073517,-0.815043330192566,0.194340154528618,0.545835316181183,0.593951046466827,0.171106711030006,0.786094427108765,0.777153193950653,-0.105525195598602,-0.620400965213776,0.777574479579926,-0.106234967708588,-0.619751632213593,0.603053033351898,0.526287078857422,0.599457263946533,0.592118263244629,0.537536859512329,0.60037487745285,0.703871607780457,-0.427522957324982,0.567264258861542,-0.694716930389404,-0.659986913204193,0.285982102155685,-0.904646337032318,-0.328143030405045,0.271913826465607,
- 0.433550387620926,-0.396936446428299,0.808996677398682,-0.905860185623169,-0.354971021413803,0.231112450361252,0.415912747383118,-0.363084435462952,0.833778262138367,0.433550387620926,-0.396936446428299,0.808996677398682,-0.904646337032318,-0.328143030405045,0.271913826465607,-0.81062787771225,-0.583918690681458,0.0438347533345222,0.354284554719925,-0.225340068340302,0.907581627368927,0.415912747383118,-0.363084435462952,0.833778262138367,-0.905860185623169,-0.354971021413803,0.231112450361252,-0.102908596396446,0.0491343103349209,0.993476510047913,-0.711453258991241,-0.681476473808289,-0.171534359455109,-0.851941466331482,-0.447426617145538,-0.272038966417313,-0.46582156419754,0.311462432146072,0.828252077102661,-0.776116132736206,-0.59836357831955,-0.199009612202644,-0.539841175079346,0.343845963478088,0.768336832523346,-0.46582156419754,0.311462432146072,0.828252077102661,-0.851941466331482,-0.447426617145538,-0.272038966417313,-0.578991830348969,0.387899935245514,0.71714860200882,-0.739849448204041,-0.643104135990143,-0.197585433721542,-0.835824131965637,0.292552143335342,0.464554876089096,-0.805894553661346,-0.379626244306564,0.454332292079926,-0.359987050294876,0.522957444190979,-0.772609114646912,-0.469678431749344,0.389258712530136,-0.792388677597046,-0.861945033073425,-0.480649173259735,0.161330014467239,-0.325103998184204,0.407785624265671,-0.853239834308624,-0.825517892837524,-0.561952769756317,0.0522437393665314,-0.861945033073425,-0.480649173259735,0.161330014467239,-0.469678431749344,0.389258712530136,-0.792388677597046,-0.207780033349991,0.395389139652252,-0.894703805446625,-0.856712639331818,-0.509885251522064,0.0778490602970123,-0.825517892837524,-0.561952769756317,0.0522437393665314,-0.325103998184204,0.407785624265671,-0.853239834308624,-0.739408671855927,-0.6478511095047,-0.183203786611557,0.0796165689826012,0.164908602833748,-0.983090162277222,0.407544195652008,-0.0939227491617203,-0.908342599868774,-0.495054602622986,-0.862604975700378,-0.104084081947804,0.5207359790802,-0.22817188501358,-0.822661340236664,
- -0.630952477455139,-0.772640287876129,-0.0701849460601807,-0.495054602622986,-0.862604975700378,-0.104084081947804,0.407544195652008,-0.0939227491617203,-0.908342599868774,-0.767830729484558,-0.572684228420258,-0.287173837423325,0.602429866790771,-0.431576430797577,-0.671431303024292,-0.835824131965637,0.292552143335342,0.464554876089096,-0.359987050294876,0.522957444190979,-0.772609114646912,0.898427665233612,0.436241120100021,-0.050212487578392,0.862282276153564,0.45586171746254,-0.220588877797127,-0.469678431749344,0.389258712530136,-0.792388677597046,0.8556227684021,0.503693699836731,-0.119173511862755,-0.325103998184204,0.407785624265671,-0.853239834308624,-0.469678431749344,0.389258712530136,-0.792388677597046,0.862282276153564,0.45586171746254,-0.220588877797127,0.854585647583008,0.513251423835754,-0.0790972858667374,-0.207780033349991,0.395389139652252,-0.894703805446625,-0.325103998184204,0.407785624265671,-0.853239834308624,0.8556227684021,0.503693699836731,-0.119173511862755,0.0796165689826012,0.164908602833748,-0.983090162277222,0.793501257896423,0.606968104839325,0.0441069230437279,0.77728682756424,0.608983516693115,0.158000573515892,0.407544195652008,-0.0939227491617203,-0.908342599868774,0.707151174545288,0.670175194740295,0.225394114851952,0.5207359790802,-0.22817188501358,-0.822661340236664,0.407544195652008,-0.0939227491617203,-0.908342599868774,0.77728682756424,0.608983516693115,0.158000573515892,0.602429866790771,-0.431576430797577,-0.671431303024292,0.686520576477051,0.687957286834717,0.235381364822388,-0.835824131965637,0.292552143335342,0.464554876089096,0.898427665233612,0.436241120100021,-0.050212487578392,0.703871607780457,-0.427522957324982,0.567264258861542,0.433550387620926,-0.396936446428299,0.808996677398682,0.862282276153564,0.45586171746254,-0.220588877797127,0.433550387620926,-0.396936446428299,0.808996677398682,0.415912747383118,-0.363084435462952,0.833778262138367,0.8556227684021,0.503693699836731,-0.119173511862755,0.862282276153564,0.45586171746254,-0.220588877797127,0.354284554719925,-0.225340068340302,0.907581627368927,
- 0.854585647583008,0.513251423835754,-0.0790972858667374,0.8556227684021,0.503693699836731,-0.119173511862755,0.415912747383118,-0.363084435462952,0.833778262138367,0.793501257896423,0.606968104839325,0.0441069230437279,-0.102908596396446,0.0491343103349209,0.993476510047913,-0.46582156419754,0.311462432146072,0.828252077102661,0.77728682756424,0.608983516693115,0.158000573515892,-0.46582156419754,0.311462432146072,0.828252077102661,-0.539841175079346,0.343845963478088,0.768336832523346,0.707151174545288,0.670175194740295,0.225394114851952,0.77728682756424,0.608983516693115,0.158000573515892,0.686520576477051,0.687957286834717,0.235381364822388,-0.578991830348969,0.387899935245514,0.71714860200882,-0.835824131965637,0.292552143335342,0.464554876089096,0.195568263530731,0.240141347050667,0.950833976268768,-0.970356523990631,-0.218206718564034,0.103894867002964,-0.968503594398499,-0.208792299032211,0.135671302676201,0.0562668591737747,0.223955363035202,0.972973704338074,0.0562668591737747,0.223955363035202,0.972973704338074,-0.968503594398499,-0.208792299032211,0.135671302676201,-0.973760843276978,-0.223522394895554,0.042749360203743,0.0850439518690109,0.470487475395203,0.878298997879028,0.0850439518690109,0.470487475395203,0.878298997879028,-0.973760843276978,-0.223522394895554,0.042749360203743,-0.965386569499969,-0.241056367754936,0.0996020510792732,-0.113795027136803,0.668067276477814,0.735348045825958,-0.113795027136803,0.668067276477814,0.735348045825958,-0.965386569499969,-0.241056367754936,0.0996020510792732,0.853991627693176,0.516419768333435,-0.0633158013224602,-0.93929123878479,-0.319834798574448,0.124248549342155,0.0629222244024277,-0.221856072545052,-0.973047196865082,-0.0653144791722298,-0.279119789600372,-0.958032369613647,-0.910945475101471,-0.38128998875618,0.15746845304966,-0.910945475101471,-0.38128998875618,0.15746845304966,-0.0653144791722298,-0.279119789600372,-0.958032369613647,0.0682013183832169,-0.331842124462128,-0.94086629152298,-0.800899922847748,-0.586926519870758,0.1186448559165,-0.800899922847748,-0.586926519870758,0.1186448559165,
- 0.0682013183832169,-0.331842124462128,-0.94086629152298,0.160154953598976,-0.524928212165833,-0.835943043231964,-0.637771010398865,-0.695436716079712,0.331083089113235,-0.637771010398865,-0.695436716079712,0.331083089113235,0.160154953598976,-0.524928212165833,-0.835943043231964,0.853991627693176,0.516419768333435,-0.0633158013224602,0.0629222244024277,-0.221856072545052,-0.973047196865082,0.98550420999527,0.125385284423828,-0.114280708134174,0.954956531524658,0.269333690404892,-0.12456901371479,-0.0653144791722298,-0.279119789600372,-0.958032369613647,-0.0653144791722298,-0.279119789600372,-0.958032369613647,0.954956531524658,0.269333690404892,-0.12456901371479,0.919434428215027,0.321385234594345,-0.226609796285629,0.0682013183832169,-0.331842124462128,-0.94086629152298,0.0682013183832169,-0.331842124462128,-0.94086629152298,0.919434428215027,0.321385234594345,-0.226609796285629,0.893140137195587,0.420472383499146,-0.159698471426964,0.160154953598976,-0.524928212165833,-0.835943043231964,0.160154953598976,-0.524928212165833,-0.835943043231964,0.893140137195587,0.420472383499146,-0.159698471426964,0.853991627693176,0.516419768333435,-0.0633158013224602,0.98550420999527,0.125385284423828,-0.114280708134174,0.195568263530731,0.240141347050667,0.950833976268768,0.0562668591737747,0.223955363035202,0.972973704338074,0.954956531524658,0.269333690404892,-0.12456901371479,0.954956531524658,0.269333690404892,-0.12456901371479,0.0562668591737747,0.223955363035202,0.972973704338074,0.0850439518690109,0.470487475395203,0.878298997879028,0.919434428215027,0.321385234594345,-0.226609796285629,0.919434428215027,0.321385234594345,-0.226609796285629,0.0850439518690109,0.470487475395203,0.878298997879028,-0.113795027136803,0.668067276477814,0.735348045825958,0.893140137195587,0.420472383499146,-0.159698471426964,0.893140137195587,0.420472383499146,-0.159698471426964,-0.113795027136803,0.668067276477814,0.735348045825958,0.853991627693176,0.516419768333435,-0.0633158013224602,-0.907552897930145,-0.419335067272186,-0.022491704672575,
- -0.856712639331818,-0.509885251522064,0.0778490602970123,-0.207780033349991,0.395389139652252,-0.894703805446625,-0.0979112908244133,0.297181159257889,-0.949787735939026,0.185680344700813,-0.143289089202881,0.972106456756592,0.354284554719925,-0.225340068340302,0.907581627368927,-0.81062787771225,-0.583918690681458,0.0438347533345222,-0.652349650859833,-0.757873356342316,0.00823571067303419,0.801186084747314,0.59836882352829,-0.00746081816032529,0.854585647583008,0.513251423835754,-0.0790972858667374,0.354284554719925,-0.225340068340302,0.907581627368927,0.185680344700813,-0.143289089202881,0.972106456756592,0.801186084747314,0.59836882352829,-0.00746081816032529,-0.0979112908244133,0.297181159257889,-0.949787735939026,-0.207780033349991,0.395389139652252,-0.894703805446625,0.854585647583008,0.513251423835754,-0.0790972858667374,-0.739408671855927,-0.6478511095047,-0.183203786611557,-0.907552897930145,-0.419335067272186,-0.022491704672575,-0.0979112908244133,0.297181159257889,-0.949787735939026,0.0796165689826012,0.164908602833748,-0.983090162277222,-0.102908596396446,0.0491343103349209,0.993476510047913,0.185680344700813,-0.143289089202881,0.972106456756592,-0.652349650859833,-0.757873356342316,0.00823571067303419,-0.711453258991241,-0.681476473808289,-0.171534359455109,0.793501257896423,0.606968104839325,0.0441069230437279,0.801186084747314,0.59836882352829,-0.00746081816032529,0.185680344700813,-0.143289089202881,0.972106456756592,-0.102908596396446,0.0491343103349209,0.993476510047913,0.0796165689826012,0.164908602833748,-0.983090162277222,-0.0979112908244133,0.297181159257889,-0.949787735939026,0.801186084747314,0.59836882352829,-0.00746081816032529,0.793501257896423,0.606968104839325,0.0441069230437279,0.686520576477051,0.687957286834717,0.235381364822388,0.602429866790771,-0.431576430797577,-0.671431303024292,0.619539022445679,-0.295636862516403,-0.727165997028351,0.648013174533844,0.713060915470123,0.267624914646149,0.602429866790771,-0.431576430797577,-0.671431303024292,-0.767830729484558,-0.572684228420258,-0.287173837423325,
- -0.750769972801209,-0.651335656642914,-0.11002828925848,0.619539022445679,-0.295636862516403,-0.727165997028351,-0.739849448204041,-0.643104135990143,-0.197585433721542,-0.578991830348969,0.387899935245514,0.71714860200882,-0.510878205299377,0.434083670377731,0.742007315158844,-0.770362317562103,-0.621675550937653,-0.141638740897179,0.648013174533844,0.713060915470123,0.267624914646149,-0.510878205299377,0.434083670377731,0.742007315158844,-0.578991830348969,0.387899935245514,0.71714860200882,0.686520576477051,0.687957286834717,0.235381364822388,0.648013174533844,0.713060915470123,0.267624914646149,0.619539022445679,-0.295636862516403,-0.727165997028351,0.5207359790802,-0.22817188501358,-0.822661340236664,0.707151174545288,0.670175194740295,0.225394114851952,0.619539022445679,-0.295636862516403,-0.727165997028351,-0.750769972801209,-0.651335656642914,-0.11002828925848,-0.630952477455139,-0.772640287876129,-0.0701849460601807,0.5207359790802,-0.22817188501358,-0.822661340236664,-0.770362317562103,-0.621675550937653,-0.141638740897179,-0.510878205299377,0.434083670377731,0.742007315158844,-0.539841175079346,0.343845963478088,0.768336832523346,-0.776116132736206,-0.59836357831955,-0.199009612202644,0.707151174545288,0.670175194740295,0.225394114851952,-0.539841175079346,0.343845963478088,0.768336832523346,-0.510878205299377,0.434083670377731,0.742007315158844,0.648013174533844,0.713060915470123,0.267624914646149,0.818506419658661,0.0155214183032513,0.57428765296936,0.928074657917023,0.116959437727928,0.353550523519516,0.132255762815475,0.616175293922424,-0.776425421237946,0.345562696456909,0.558879435062408,-0.753817141056061,0.0947492644190788,0.529939234256744,-0.842725992202759,0.0273132547736168,0.511083483695984,-0.859096944332123,0.991607189178467,0.0312841571867466,0.125444650650024,0.99836653470993,0.0216874089092016,0.0528571344912052,0.981583535671234,-0.0507526285946369,0.184168294072151,0.948721408843994,0.053094319999218,0.311622738838196,0.229515299201012,0.365587145090103,-0.902035892009735,0.239892512559891,0.287014722824097,-0.927401781082153,
- 0.873366415500641,-0.357196003198624,0.331122547388077,0.773514986038208,-0.617363035678864,0.143308937549591,0.33759480714798,0.320527315139771,-0.885037839412689,0.30594676733017,0.36137592792511,-0.880797386169434,0.773514986038208,-0.617363035678864,0.143308937549591,0.815662443637848,-0.577612519264221,0.0325362533330917,0.388022601604462,0.316813200712204,-0.865487039089203,0.33759480714798,0.320527315139771,-0.885037839412689,0.38470795750618,0.316208451986313,-0.86718624830246,0.157860234379768,0.391040325164795,-0.906734645366669,-0.947759568691254,-0.123642116785049,-0.294048398733139,-0.93908429145813,-0.150939658284187,-0.308768510818481,-0.990511655807495,-0.0520410425961018,-0.127194687724113,-0.992692768573761,-0.072685033082962,-0.0963213816285133,0.0223029665648937,0.560639560222626,-0.827759563922882,0.0763729438185692,0.637739837169647,-0.766456186771393,0.143992304801941,0.662215292453766,-0.735348284244537,0.247967228293419,0.183164417743683,-0.951295435428619,-0.970466494560242,-0.104622639715672,-0.217367812991142,-0.981802046298981,-0.0680967792868614,-0.177278250455856,0.284205585718155,0.281828224658966,-0.916405975818634,0.40182039141655,0.420739710330963,-0.813337802886963,-0.841712713241577,0.536295652389526,-0.0625032931566238,-0.954677164554596,0.268570840358734,-0.128301069140434,0.40182039141655,0.420739710330963,-0.813337802886963,0.430949807167053,0.38612687587738,-0.815590739250183,-0.776960492134094,0.60803884267807,-0.163160011172295,-0.841712713241577,0.536295652389526,-0.0625032931566238,-0.93908429145813,-0.150939658284187,-0.308768510818481,-0.947759568691254,-0.123642116785049,-0.294048398733139,-0.383009612560272,-0.393016487360001,0.835967540740967,-0.40856146812439,-0.373840838670731,0.832658708095551,0.00769578944891691,-0.494634807109833,0.869066834449768,-0.16111096739769,-0.478863179683685,0.862979292869568,-0.992692768573761,-0.072685033082962,-0.0963213816285133,-0.990511655807495,-0.0520410425961018,-0.127194687724113,-0.981802046298981,-0.0680967792868614,-0.177278250455856,
- -0.970466494560242,-0.104622639715672,-0.217367812991142,-0.264075249433517,-0.261990070343018,0.928237736225128,-0.07989302277565,-0.309974133968353,0.947382211685181,-0.954677164554596,0.268570840358734,-0.128301069140434,-0.841712713241577,0.536295652389526,-0.0625032931566238,-0.386965692043304,-0.36671769618988,0.846035242080688,-0.372055202722549,-0.352405309677124,0.85871148109436,-0.841712713241577,0.536295652389526,-0.0625032931566238,-0.776960492134094,0.60803884267807,-0.163160011172295,-0.38968351483345,-0.389256030321121,0.834641635417938,-0.386965692043304,-0.36671769618988,0.846035242080688,-0.40856146812439,-0.373840838670731,0.832658708095551,-0.383009612560272,-0.393016487360001,0.835967540740967,0.928074657917023,0.116959437727928,0.353550523519516,0.818506419658661,0.0155214183032513,0.57428765296936,0.991607189178467,0.0312841571867466,0.125444650650024,-0.16111096739769,-0.478863179683685,0.862979292869568,0.00769578944891691,-0.494634807109833,0.869066834449768,0.99836653470993,0.0216874089092016,0.0528571344912052,-0.07989302277565,-0.309974133968353,0.947382211685181,-0.264075249433517,-0.261990070343018,0.928237736225128,0.948721408843994,0.053094319999218,0.311622738838196,0.981583535671234,-0.0507526285946369,0.184168294072151,-0.372055202722549,-0.352405309677124,0.85871148109436,-0.386965692043304,-0.36671769618988,0.846035242080688,0.773514986038208,-0.617363035678864,0.143308937549591,0.873366415500641,-0.357196003198624,0.331122547388077,-0.386965692043304,-0.36671769618988,0.846035242080688,-0.38968351483345,-0.389256030321121,0.834641635417938,0.815662443637848,-0.577612519264221,0.0325362533330917,0.773514986038208,-0.617363035678864,0.143308937549591,0.430949807167053,0.38612687587738,-0.815590739250183,0.844884216785431,-0.527827799320221,0.0869971513748169,-0.776960492134094,0.60803884267807,-0.163160011172295,0.815662443637848,-0.577612519264221,0.0325362533330917,0.844884216785431,-0.527827799320221,0.0869971513748169,0.388022601604462,0.316813200712204,-0.865487039089203,-0.38968351483345,-0.389256030321121,0.834641635417938,
- 0.844884216785431,-0.527827799320221,0.0869971513748169,0.815662443637848,-0.577612519264221,0.0325362533330917,-0.776960492134094,0.60803884267807,-0.163160011172295,0.844884216785431,-0.527827799320221,0.0869971513748169,-0.38968351483345,-0.389256030321121,0.834641635417938,0.928074657917023,0.116959437727928,0.353550523519516,0.991607189178467,0.0312841571867466,0.125444650650024,0.0273132547736168,0.511083483695984,-0.859096944332123,0.132255762815475,0.616175293922424,-0.776425421237946,-0.947759568691254,-0.123642116785049,-0.294048398733139,0.157860234379768,0.391040325164795,-0.906734645366669,0.0223029665648937,0.560639560222626,-0.827759563922882,-0.992692768573761,-0.072685033082962,-0.0963213816285133,-0.383009612560272,-0.393016487360001,0.835967540740967,-0.947759568691254,-0.123642116785049,-0.294048398733139,-0.992692768573761,-0.072685033082962,-0.0963213816285133,-0.16111096739769,-0.478863179683685,0.862979292869568,0.928074657917023,0.116959437727928,0.353550523519516,-0.383009612560272,-0.393016487360001,0.835967540740967,-0.16111096739769,-0.478863179683685,0.862979292869568,0.991607189178467,0.0312841571867466,0.125444650650024,0.239892512559891,0.287014722824097,-0.927401781082153,0.0947492644190788,0.529939234256744,-0.842725992202759,0.99836653470993,0.0216874089092016,0.0528571344912052,0.981583535671234,-0.0507526285946369,0.184168294072151,-0.981802046298981,-0.0680967792868614,-0.177278250455856,-0.990511655807495,-0.0520410425961018,-0.127194687724113,0.0763729438185692,0.637739837169647,-0.766456186771393,0.143992304801941,0.662215292453766,-0.735348284244537,-0.07989302277565,-0.309974133968353,0.947382211685181,0.00769578944891691,-0.494634807109833,0.869066834449768,-0.990511655807495,-0.0520410425961018,-0.127194687724113,-0.981802046298981,-0.0680967792868614,-0.177278250455856,0.99836653470993,0.0216874089092016,0.0528571344912052,0.00769578944891691,-0.494634807109833,0.869066834449768,-0.07989302277565,-0.309974133968353,0.947382211685181,0.981583535671234,-0.0507526285946369,0.184168294072151,
- 0.948721408843994,0.053094319999218,0.311622738838196,0.873366415500641,-0.357196003198624,0.331122547388077,0.30594676733017,0.36137592792511,-0.880797386169434,0.229515299201012,0.365587145090103,-0.902035892009735,-0.970466494560242,-0.104622639715672,-0.217367812991142,0.247967228293419,0.183164417743683,-0.951295435428619,0.284205585718155,0.281828224658966,-0.916405975818634,-0.954677164554596,0.268570840358734,-0.128301069140434,-0.264075249433517,-0.261990070343018,0.928237736225128,-0.970466494560242,-0.104622639715672,-0.217367812991142,-0.954677164554596,0.268570840358734,-0.128301069140434,-0.372055202722549,-0.352405309677124,0.85871148109436,0.948721408843994,0.053094319999218,0.311622738838196,-0.264075249433517,-0.261990070343018,0.928237736225128,-0.372055202722549,-0.352405309677124,0.85871148109436,0.873366415500641,-0.357196003198624,0.331122547388077,0.269892662763596,-0.809353888034821,0.521636009216309,-0.345832973718643,0.467476427555084,0.813551127910614,-0.478476792573929,0.473203778266907,0.739687979221344,0.363205790519714,-0.743758857250214,0.561163425445557,0.363205790519714,-0.743758857250214,0.561163425445557,-0.478476792573929,0.473203778266907,0.739687979221344,-0.631332993507385,0.330562770366669,0.701531827449799,0.398550420999527,-0.654314339160919,0.642674148082733,0.398550420999527,-0.654314339160919,0.642674148082733,-0.631332993507385,0.330562770366669,0.701531827449799,-0.401353508234024,0.428271919488907,0.809628665447235,0.391940861940384,-0.56980562210083,0.722290575504303,0.391940861940384,-0.56980562210083,0.722290575504303,-0.401353508234024,0.428271919488907,0.809628665447235,0.852246999740601,-0.372012346982956,-0.367806851863861,-0.596157133579254,0.362335681915283,0.716456294059753,-0.198834702372551,0.775870680809021,-0.598739802837372,-0.161514341831207,0.794995844364166,-0.584717512130737,-0.663978755474091,0.357998162508011,0.656482696533203,-0.663978755474091,0.357998162508011,0.656482696533203,-0.161514341831207,0.794995844364166,-0.584717512130737,-0.28362911939621,0.743683815002441,-0.605383336544037,
- -0.757880687713623,0.202739968895912,0.620091438293457,-0.757880687713623,0.202739968895912,0.620091438293457,-0.28362911939621,0.743683815002441,-0.605383336544037,-0.43695741891861,0.637730002403259,-0.634325325489044,-0.889859259128571,0.0597815252840519,0.452301561832428,-0.889859259128571,0.0597815252840519,0.452301561832428,-0.43695741891861,0.637730002403259,-0.634325325489044,0.852246999740601,-0.372012346982956,-0.367806851863861,-0.198834702372551,0.775870680809021,-0.598739802837372,0.403329133987427,-0.4304039478302,-0.80751359462738,0.516823589801788,-0.325731039047241,-0.791702389717102,-0.161514341831207,0.794995844364166,-0.584717512130737,-0.161514341831207,0.794995844364166,-0.584717512130737,0.516823589801788,-0.325731039047241,-0.791702389717102,0.659167289733887,-0.254493117332459,-0.707624018192291,-0.28362911939621,0.743683815002441,-0.605383336544037,-0.28362911939621,0.743683815002441,-0.605383336544037,0.659167289733887,-0.254493117332459,-0.707624018192291,0.702465355396271,-0.217292606830597,-0.677736341953278,-0.43695741891861,0.637730002403259,-0.634325325489044,-0.43695741891861,0.637730002403259,-0.634325325489044,0.702465355396271,-0.217292606830597,-0.677736341953278,0.852246999740601,-0.372012346982956,-0.367806851863861,0.403329133987427,-0.4304039478302,-0.80751359462738,0.269892662763596,-0.809353888034821,0.521636009216309,0.363205790519714,-0.743758857250214,0.561163425445557,0.516823589801788,-0.325731039047241,-0.791702389717102,0.516823589801788,-0.325731039047241,-0.791702389717102,0.363205790519714,-0.743758857250214,0.561163425445557,0.398550420999527,-0.654314339160919,0.642674148082733,0.659167289733887,-0.254493117332459,-0.707624018192291,0.659167289733887,-0.254493117332459,-0.707624018192291,0.398550420999527,-0.654314339160919,0.642674148082733,0.391940861940384,-0.56980562210083,0.722290575504303,0.702465355396271,-0.217292606830597,-0.677736341953278,0.702465355396271,-0.217292606830597,-0.677736341953278,0.391940861940384,-0.56980562210083,0.722290575504303,0.852246999740601,-0.372012346982956,-0.367806851863861,
- 0.852992713451386,0.521920740604401,-0.00146749778650701,0.836327135562897,0.529317617416382,0.14275786280632,0.45567661523819,-0.846610903739929,-0.274970680475235,0.368860274553299,-0.904543399810791,-0.213877379894257,0.483820080757141,-0.874596953392029,-0.031596876680851,0.499446660280228,-0.85307776927948,-0.151034325361252,0.798220872879028,0.486600399017334,0.355054259300232,0.644173920154572,0.387897908687592,0.659223020076752,0.399176716804504,0.292658627033234,0.8689124584198,0.259605973958969,0.124931618571281,0.957599520683289,0.677136480808258,-0.701647222042084,-0.221759855747223,0.648085415363312,-0.750335991382599,-0.130311459302902,0.0141864251345396,-0.164218470454216,0.986321985721588,-0.0865115225315094,-0.407749831676483,0.908986210823059,0.742955982685089,-0.624774038791656,-0.240153983235359,0.724193274974823,-0.650463342666626,-0.229001060128212,-0.148621961474419,-0.498669564723969,0.853955626487732,-0.651773035526276,0.0766514167189598,0.754530668258667,0.615501761436462,-0.749824106693268,-0.242737337946892,0.269647210836411,-0.82377028465271,-0.498691231012344,0.414950132369995,-0.752537667751312,-0.511374056339264,-0.929725825786591,-0.364747017621994,-0.0506902970373631,-0.921968281269073,-0.38028958439827,0.0731730237603188,-0.763732492923737,-0.298139661550522,-0.572560548782349,-0.884425342082977,-0.287638068199158,-0.367499947547913,0.547609269618988,-0.722110867500305,-0.422705709934235,0.602227210998535,-0.752328991889954,-0.267064362764359,0.600248515605927,-0.795197904109955,-0.0858026444911957,0.504465579986572,-0.843269467353821,-0.185502171516418,-0.321402043104172,0.15579542517662,-0.934038758277893,-0.662488877773285,-0.142074748873711,-0.73547488451004,0.618919372558594,-0.74143522977829,-0.259253889322281,0.829210221767426,-0.523668169975281,-0.195402100682259,0.0338032059371471,0.297465085983276,-0.954134166240692,-0.0861253216862679,0.308645069599152,-0.947270095348358,0.973004102706909,-0.194544702768326,-0.12415873259306,0.644242882728577,-0.0708120465278625,-0.761535823345184,
- 0.116912879049778,0.441637277603149,-0.88954359292984,-0.921968281269073,-0.38028958439827,0.0731730237603188,-0.929725825786591,-0.364747017621994,-0.0506902970373631,-0.495735853910446,0.813068687915802,0.305229932069778,-0.55381977558136,0.779803514480591,0.291873455047607,-0.48798930644989,0.856588006019592,0.167700678110123,-0.497319638729095,0.79845529794693,0.339326292276382,-0.884425342082977,-0.287638068199158,-0.367499947547913,-0.763732492923737,-0.298139661550522,-0.572560548782349,-0.662488877773285,-0.142074748873711,-0.73547488451004,-0.321402043104172,0.15579542517662,-0.934038758277893,-0.72119802236557,0.677187979221344,0.145910710096359,-0.554577112197876,0.821965634822845,0.12967936694622,-0.0861253216862679,0.308645069599152,-0.947270095348358,0.0338032059371471,0.297465085983276,-0.954134166240692,-0.751231729984283,0.643371641635895,0.147389784455299,-0.759007453918457,0.634939193725586,0.144082486629486,0.116912879049778,0.441637277603149,-0.88954359292984,-0.651773035526276,0.0766514167189598,0.754530668258667,-0.846768856048584,0.521928071975708,0.102828346192837,-0.55381977558136,0.779803514480591,0.291873455047607,-0.495735853910446,0.813068687915802,0.305229932069778,0.836327135562897,0.529317617416382,0.14275786280632,0.852992713451386,0.521920740604401,-0.00146749778650701,0.798220872879028,0.486600399017334,0.355054259300232,-0.497319638729095,0.79845529794693,0.339326292276382,-0.48798930644989,0.856588006019592,0.167700678110123,0.644173920154572,0.387897908687592,0.659223020076752,-0.554577112197876,0.821965634822845,0.12967936694622,-0.72119802236557,0.677187979221344,0.145910710096359,0.259605973958969,0.124931618571281,0.957599520683289,0.399176716804504,0.292658627033234,0.8689124584198,-0.759007453918457,0.634939193725586,0.144082486629486,-0.751231729984283,0.643371641635895,0.147389784455299,-0.0865115225315094,-0.407749831676483,0.908986210823059,0.0141864251345396,-0.164218470454216,0.986321985721588,-0.846768856048584,0.521928071975708,0.102828346192837,-0.651773035526276,0.0766514167189598,0.754530668258667,
- -0.148621961474419,-0.498669564723969,0.853955626487732,0.836327135562897,0.529317617416382,0.14275786280632,0.798220872879028,0.486600399017334,0.355054259300232,0.499446660280228,-0.85307776927948,-0.151034325361252,0.45567661523819,-0.846610903739929,-0.274970680475235,-0.929725825786591,-0.364747017621994,-0.0506902970373631,0.414950132369995,-0.752537667751312,-0.511374056339264,0.547609269618988,-0.722110867500305,-0.422705709934235,-0.884425342082977,-0.287638068199158,-0.367499947547913,-0.495735853910446,0.813068687915802,0.305229932069778,-0.929725825786591,-0.364747017621994,-0.0506902970373631,-0.884425342082977,-0.287638068199158,-0.367499947547913,-0.497319638729095,0.79845529794693,0.339326292276382,0.836327135562897,0.529317617416382,0.14275786280632,-0.495735853910446,0.813068687915802,0.305229932069778,-0.497319638729095,0.79845529794693,0.339326292276382,0.798220872879028,0.486600399017334,0.355054259300232,0.648085415363312,-0.750335991382599,-0.130311459302902,0.483820080757141,-0.874596953392029,-0.031596876680851,0.644173920154572,0.387897908687592,0.659223020076752,0.399176716804504,0.292658627033234,0.8689124584198,-0.662488877773285,-0.142074748873711,-0.73547488451004,-0.763732492923737,-0.298139661550522,-0.572560548782349,0.602227210998535,-0.752328991889954,-0.267064362764359,0.600248515605927,-0.795197904109955,-0.0858026444911957,-0.554577112197876,0.821965634822845,0.12967936694622,-0.48798930644989,0.856588006019592,0.167700678110123,-0.763732492923737,-0.298139661550522,-0.572560548782349,-0.662488877773285,-0.142074748873711,-0.73547488451004,0.644173920154572,0.387897908687592,0.659223020076752,-0.48798930644989,0.856588006019592,0.167700678110123,-0.554577112197876,0.821965634822845,0.12967936694622,0.399176716804504,0.292658627033234,0.8689124584198,0.259605973958969,0.124931618571281,0.957599520683289,0.0141864251345396,-0.164218470454216,0.986321985721588,0.724193274974823,-0.650463342666626,-0.229001060128212,0.677136480808258,-0.701647222042084,-0.221759855747223,-0.321402043104172,0.15579542517662,-0.934038758277893,
- 0.504465579986572,-0.843269467353821,-0.185502171516418,0.618919372558594,-0.74143522977829,-0.259253889322281,-0.0861253216862679,0.308645069599152,-0.947270095348358,-0.72119802236557,0.677187979221344,0.145910710096359,-0.321402043104172,0.15579542517662,-0.934038758277893,-0.0861253216862679,0.308645069599152,-0.947270095348358,-0.759007453918457,0.634939193725586,0.144082486629486,0.259605973958969,0.124931618571281,0.957599520683289,-0.72119802236557,0.677187979221344,0.145910710096359,-0.759007453918457,0.634939193725586,0.144082486629486,0.0141864251345396,-0.164218470454216,0.986321985721588,-0.95393443107605,0.126750588417053,-0.271925061941147,0.160716235637665,0.198023319244385,-0.966931879520416,0.139950037002563,0.0822794958949089,-0.98673403263092,-0.982796251773834,0.16063266992569,-0.0911517441272736,-0.982796251773834,0.16063266992569,-0.0911517441272736,0.139950037002563,0.0822794958949089,-0.98673403263092,0.203163713216782,-0.0937142446637154,-0.974649786949158,-0.950545430183411,0.283305287361145,-0.127284705638886,-0.950545430183411,0.283305287361145,-0.127284705638886,0.203163713216782,-0.0937142446637154,-0.974649786949158,0.168685257434845,0.109506450593472,-0.979568123817444,-0.916286766529083,0.347392112016678,-0.199342399835587,-0.916286766529083,0.347392112016678,-0.199342399835587,0.168685257434845,0.109506450593472,-0.979568123817444,-0.880744814872742,0.274878889322281,0.385655492544174,0.256409406661987,-0.389705091714859,-0.884524822235107,0.983531892299652,-0.0339742600917816,0.177512928843498,0.956185579299927,-0.0798191502690315,0.281670272350311,0.130000054836273,-0.189250707626343,-0.973285257816315,0.130000054836273,-0.189250707626343,-0.973285257816315,0.956185579299927,-0.0798191502690315,0.281670272350311,0.964296936988831,-0.175594747066498,0.198236778378487,0.164767980575562,-0.2255779504776,-0.96019059419632,0.164767980575562,-0.2255779504776,-0.96019059419632,0.964296936988831,-0.175594747066498,0.198236778378487,0.932233929634094,-0.317058801651001,0.174394935369492,
- 0.0612452551722527,-0.328848987817764,-0.942394554615021,0.0612452551722527,-0.328848987817764,-0.942394554615021,0.932233929634094,-0.317058801651001,0.174394935369492,-0.880744814872742,0.274878889322281,0.385655492544174,0.983531892299652,-0.0339742600917816,0.177512928843498,-0.228516548871994,0.0370813868939877,0.972833633422852,-0.222839772701263,0.0227638836950064,0.974589288234711,0.956185579299927,-0.0798191502690315,0.281670272350311,0.956185579299927,-0.0798191502690315,0.281670272350311,-0.222839772701263,0.0227638836950064,0.974589288234711,-0.0820851698517799,0.122502721846104,0.989067852497101,0.964296936988831,-0.175594747066498,0.198236778378487,0.964296936988831,-0.175594747066498,0.198236778378487,-0.0820851698517799,0.122502721846104,0.989067852497101,-0.173176005482674,0.138808727264404,0.975060105323792,0.932233929634094,-0.317058801651001,0.174394935369492,0.932233929634094,-0.317058801651001,0.174394935369492,-0.173176005482674,0.138808727264404,0.975060105323792,-0.880744814872742,0.274878889322281,0.385655492544174,-0.228516548871994,0.0370813868939877,0.972833633422852,-0.95393443107605,0.126750588417053,-0.271925061941147,-0.982796251773834,0.16063266992569,-0.0911517441272736,-0.222839772701263,0.0227638836950064,0.974589288234711,-0.222839772701263,0.0227638836950064,0.974589288234711,-0.982796251773834,0.16063266992569,-0.0911517441272736,-0.950545430183411,0.283305287361145,-0.127284705638886,-0.0820851698517799,0.122502721846104,0.989067852497101,-0.0820851698517799,0.122502721846104,0.989067852497101,-0.950545430183411,0.283305287361145,-0.127284705638886,-0.916286766529083,0.347392112016678,-0.199342399835587,-0.173176005482674,0.138808727264404,0.975060105323792,-0.173176005482674,0.138808727264404,0.975060105323792,-0.916286766529083,0.347392112016678,-0.199342399835587,-0.880744814872742,0.274878889322281,0.385655492544174,-0.751231729984283,0.643371641635895,0.147389784455299,-0.846768856048584,0.521928071975708,0.102828346192837,-0.148621961474419,-0.498669564723969,0.853955626487732,
- -0.0865115225315094,-0.407749831676483,0.908986210823059,0.742955982685089,-0.624774038791656,-0.240153983235359,-0.0865115225315094,-0.407749831676483,0.908986210823059,-0.148621961474419,-0.498669564723969,0.853955626487732,0.615501761436462,-0.749824106693268,-0.242737337946892,0.0338032059371471,0.297465085983276,-0.954134166240692,0.829210221767426,-0.523668169975281,-0.195402100682259,0.973004102706909,-0.194544702768326,-0.12415873259306,0.116912879049778,0.441637277603149,-0.88954359292984,-0.751231729984283,0.643371641635895,0.147389784455299,0.0338032059371471,0.297465085983276,-0.954134166240692,0.116912879049778,0.441637277603149,-0.88954359292984,-0.846768856048584,0.521928071975708,0.102828346192837,-0.966435968875885,0.0698336586356163,0.247234523296356,0.190404340624809,0.855291306972504,0.481895267963409,-0.033077422529459,0.800990521907806,0.597762584686279,-0.988194644451141,-0.152522504329681,-0.0144336679950356,0.252926468849182,0.743250131607056,0.619360506534576,0.902157187461853,-0.176356106996536,-0.393714219331741,0.987241685390472,0.00648619141429663,-0.159096643328667,-0.0336476974189281,0.877995491027832,0.47748476266861,0.902157187461853,-0.176356106996536,-0.393714219331741,-0.30936798453331,-0.776455938816071,-0.549006044864655,0.0320772454142571,-0.849941432476044,-0.525899827480316,0.987241685390472,0.00648619141429663,-0.159096643328667,-0.30936798453331,-0.776455938816071,-0.549006044864655,-0.966435968875885,0.0698336586356163,0.247234523296356,-0.988194644451141,-0.152522504329681,-0.0144336679950356,0.0320772454142571,-0.849941432476044,-0.525899827480316,-0.449636042118073,0.132780969142914,0.883287370204926,-0.122624911367893,0.0573044158518314,0.990797281265259,0.729718446731567,0.677708566188812,0.090675376355648,0.62630969285965,0.757017254829407,0.186174929141998,0.430848747491837,-0.376510620117188,-0.820127546787262,0.886655569076538,0.360621631145477,0.289471745491028,0.950370252132416,0.302271157503128,0.0736787542700768,0.113747268915176,-0.209439933300018,-0.971183061599731,
- -0.883599579334259,-0.396237760782242,-0.249494642019272,0.430848747491837,-0.376510620117188,-0.820127546787262,0.113747268915176,-0.209439933300018,-0.971183061599731,-0.893854796886444,-0.448171854019165,-0.012866442091763,-0.449636042118073,0.132780969142914,0.883287370204926,-0.883599579334259,-0.396237760782242,-0.249494642019272,-0.893854796886444,-0.448171854019165,-0.012866442091763,-0.122624911367893,0.0573044158518314,0.990797281265259,-0.815849781036377,0.252930760383606,0.520014584064484,-0.643469035625458,0.290566235780716,0.708180069923401,0.61527419090271,0.736485302448273,0.281117409467697,0.427028089761734,0.825605690479279,0.368811964988709,0.74042284488678,-0.277547240257263,-0.61216139793396,0.635219573974609,0.501858353614807,0.587055563926697,0.839428544044495,0.284982532262802,0.462757647037506,0.595091700553894,-0.385536938905716,-0.70514327287674,-0.515303373336792,-0.785577893257141,-0.342534214258194,0.74042284488678,-0.277547240257263,-0.61216139793396,0.595091700553894,-0.385536938905716,-0.70514327287674,-0.799250423908234,-0.499476253986359,-0.334248811006546,-0.815849781036377,0.252930760383606,0.520014584064484,-0.515303373336792,-0.785577893257141,-0.342534214258194,-0.799250423908234,-0.499476253986359,-0.334248811006546,-0.643469035625458,0.290566235780716,0.708180069923401,0.920287430286407,0.19342415034771,0.340085506439209,0.860341012477875,0.141708478331566,0.489624410867691,0.373291045427322,0.565328240394592,0.735566377639771,0.429642528295517,0.65281730890274,0.623888611793518,0.925711929798126,-0.361536145210266,-0.111126087605953,0.946420550346375,-0.322577625513077,-0.0152208032086492,0.860341012477875,0.141708478331566,0.489624410867691,0.920287430286407,0.19342415034771,0.340085506439209,0.361502051353455,-0.748410940170288,-0.556055068969727,0.439051359891891,-0.668424546718597,-0.600368678569794,0.946420550346375,-0.322577625513077,-0.0152208032086492,0.925711929798126,-0.361536145210266,-0.111126087605953,-0.465023636817932,-0.619902491569519,-0.632039487361908,-0.336447030305862,-0.576229512691498,-0.744824051856995,
- 0.439051359891891,-0.668424546718597,-0.600368678569794,0.361502051353455,-0.748410940170288,-0.556055068969727,-0.919331669807434,-0.198765724897385,-0.339590191841125,-0.823108494281769,-0.210863515734673,-0.527284562587738,-0.336447030305862,-0.576229512691498,-0.744824051856995,-0.465023636817932,-0.619902491569519,-0.632039487361908,-0.934603810310364,0.326069504022598,0.142106950283051,-0.950157701969147,0.309146672487259,-0.0403568968176842,-0.823108494281769,-0.210863515734673,-0.527284562587738,-0.919331669807434,-0.198765724897385,-0.339590191841125,-0.526053249835968,0.678924977779388,0.512180626392365,-0.552380323410034,0.750056147575378,0.363719522953033,-0.950157701969147,0.309146672487259,-0.0403568968176842,-0.934603810310364,0.326069504022598,0.142106950283051,0.429642528295517,0.65281730890274,0.623888611793518,0.373291045427322,0.565328240394592,0.735566377639771,-0.54553759098053,0.534113228321075,0.645842015743256,-0.523478150367737,0.61826765537262,0.586272716522217,-0.207882583141327,0.749146163463593,0.628939509391785,0.706681728363037,0.571770668029785,0.416748553514481,0.429642528295517,0.65281730890274,0.623888611793518,-0.523478150367737,0.61826765537262,0.586272716522217,0.706681728363037,0.571770668029785,0.416748553514481,0.992713391780853,0.113050125539303,-0.0417102240025997,0.920287430286407,0.19342415034771,0.340085506439209,0.429642528295517,0.65281730890274,0.623888611793518,0.992713391780853,0.113050125539303,-0.0417102240025997,0.788566529750824,-0.38874477148056,-0.476487517356873,0.925711929798126,-0.361536145210266,-0.111126087605953,0.920287430286407,0.19342415034771,0.340085506439209,0.788566529750824,-0.38874477148056,-0.476487517356873,0.0613007396459579,-0.725980281829834,-0.684977948665619,0.361502051353455,-0.748410940170288,-0.556055068969727,0.925711929798126,-0.361536145210266,-0.111126087605953,0.0613007396459579,-0.725980281829834,-0.684977948665619,-0.679803788661957,-0.592131853103638,-0.432720154523849,-0.465023636817932,-0.619902491569519,-0.632039487361908,
- 0.361502051353455,-0.748410940170288,-0.556055068969727,-0.679803788661957,-0.592131853103638,-0.432720154523849,-0.985373675823212,-0.170361816883087,0.0039313081651926,-0.919331669807434,-0.198765724897385,-0.339590191841125,-0.465023636817932,-0.619902491569519,-0.632039487361908,-0.985373675823212,-0.170361816883087,0.0039313081651926,-0.798691689968109,0.342098444700241,0.495035499334335,-0.934603810310364,0.326069504022598,0.142106950283051,-0.919331669807434,-0.198765724897385,-0.339590191841125,-0.798691689968109,0.342098444700241,0.495035499334335,-0.191373899579048,0.607282340526581,0.77109283208847,-0.526053249835968,0.678924977779388,0.512180626392365,-0.934603810310364,0.326069504022598,0.142106950283051
- }
- TangentsW: *3594 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "map1"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *2306 {
- a: 2.5666139125824,-0.905247867107391,2.43275260925293,-0.909023940563202,2.57827353477478,-0.395622462034225,2.39386320114136,-0.429200619459152,2.44372534751892,0.820474088191986,2.56589341163635,0.783733546733856,2.57203602790833,1.61523127555847,2.45576333999634,1.62546062469482,2.55653786659241,1.97396326065063,2.45355677604675,1.99908828735352,2.54034876823425,2.3846971988678,2.47356748580933,2.38943934440613,2.54364633560181,2.61171340942383,2.48736643791199,2.61994957923889,2.54857087135315,2.8998601436615,2.51449275016785,2.90289950370789,2.55624151229858,3.25069189071655,2.51777482032776,3.24890184402466,2.56178975105286,3.69191551208496,2.82656526565552,-0.934513032436371,2.74701595306396,-0.446660250425339,2.69805264472961,0.785482227802277,2.68309283256531,1.59145295619965,2.66451120376587,1.98451089859009,2.60738682746887,2.38698410987854,2.60020041465759,2.61889410018921,2.58258676528931,2.8945734500885,2.59281349182129,3.24292016029358,2.70095801353455,-0.91665381193161,2.91706585884094,-0.480065315961838,2.82719540596008,0.827276170253754,2.79418468475342,1.60246539115906,2.76038670539856,2.01168417930603,2.67586088180542,2.39309239387512,2.6590690612793,2.62732791900635,2.6138379573822,2.89767479896545,2.63063287734985,3.24168467521667,2.27252626419067,-0.88941615819931,2.22877073287964,-0.480538576841354,2.30075430870056,0.82438725233078,2.34831666946411,1.60221695899963,2.35166621208191,2.01104640960693,2.40482258796692,2.39508247375488,2.42858505249023,2.62895393371582,2.48312282562256,2.89934992790222,2.48097324371338,3.24276828765869,7.61291885375977,0.30936387181282,7.69288778305054,0.285151273012161,7.67239952087402,0.511240303516388,7.59838581085205,0.504874527454376,7.6020770072937,0.781368434429169,7.66889953613281,0.784622728824615,7.52431106567383,1.43447947502136,7.36301946640015,0.28555753827095,7.44841480255127,0.278842955827713,7.44927310943604,0.495703011751175,7.37806224822998,0.509446442127228,7.39928865432739,0.782708823680878,7.46628427505493,0.785527646541595,
- 7.5265965461731,0.304038554430008,7.52515077590942,0.490610152482986,7.53460502624512,0.785413324832916,2.55713152885437,-0.0298196859657764,2.73976969718933,-0.0354806967079639,2.70782160758972,0.417320042848587,2.5577404499054,0.423003941774368,2.37946581840515,-0.03185148909688,2.40974497795105,0.415185242891312,2.20438480377197,-0.0338885374367237,2.2549250125885,0.414566069841385,2.91873574256897,-0.0341200418770313,2.86703705787659,0.414071828126907,2.56687331199646,-0.860318601131439,2.42342495918274,-0.863362014293671,2.86532211303711,-0.892311036586761,2.71038174629211,-0.872854888439178,2.7418737411499,-0.73513263463974,2.57079982757568,-0.714120328426361,2.39617609977722,-0.724611461162567,2.92236733436584,-0.754203736782074,2.21546387672424,-0.752456367015839,2.5527606010437,-0.998449504375458,2.31023526191711,-0.931854665279388,2.41898036003113,-1.00224661827087,2.44372940063477,0.983588576316834,2.56540298461914,0.947009444236755,2.69917964935303,0.949362277984619,2.82328844070435,0.989699721336365,2.30762934684753,0.987762212753296,2.44974827766418,1.38608181476593,2.56847429275513,1.36275839805603,2.69169998168945,1.35234761238098,2.8067831993103,1.37729430198669,2.33141040802002,1.3766770362854,2.45465993881226,1.81227445602417,2.56428694725037,1.79459726810455,2.6738018989563,1.78798198699951,2.7772855758667,1.80707478523254,2.34999132156372,1.80663168430328,7.52570581436157,0.418997585773468,7.44894313812256,0.412464708089828,7.68026351928711,0.424459606409073,7.3722882270813,0.42351022362709,7.60396385192871,0.429830849170685,7.52965641021729,0.631098628044128,7.45737981796265,0.633818984031677,7.67073154449463,0.641520738601685,7.3881778717041,0.63966965675354,7.60014486312866,0.63663774728775,2.50521612167358,3.04175424575806,2.64265584945679,3.03847789764404,2.46013689041138,3.03986763954163,2.59703373908997,3.03925037384033,2.5514018535614,3.04273891448975,2.49126815795898,2.74842691421509,2.65567350387573,2.75203704833984,2.43603372573853,2.75366830825806,2.60031461715698,2.74804997444153,
- 2.54559135437012,2.74450612068176,2.48058295249939,2.50663375854492,2.66732358932495,2.5121808052063,2.41690373420715,2.5139856338501,2.60373306274414,2.50489020347595,2.54202508926392,2.50011515617371,2.56807327270508,1.7069548368454,2.4551990032196,1.72099280357361,2.7855429649353,1.70709776878357,2.34917306900024,1.70674991607666,2.67834186553955,1.69195318222046,2.69979810714722,1.03926527500153,2.56513404846191,1.03658103942871,2.44373154640198,1.07307159900665,2.82114505767822,1.0788037776947,2.31140089035034,1.07738816738129,2.56193542480469,0.608607351779938,2.42722845077515,0.623715400695801,2.84653759002686,0.626674652099609,2.27850532531738,0.625428199768066,2.7027952671051,0.606747686862946,2.72102117538452,0.230240911245346,2.55748891830444,0.235915347933769,2.39723491668701,0.230487555265427,2.88839673995972,0.228896886110306,2.23404383659363,0.229282587766647,2.46437788009644,2.21018052101135,2.71467733383179,2.21794033050537,2.38041186332703,2.21872353553772,2.63361978530884,2.20215845108032,2.54778337478638,2.1960780620575,2.68626952171326,1.22653698921204,2.56463742256165,1.2160679101944,2.45355319976807,1.23876297473907,2.78555488586426,1.25053405761719,2.33516049385071,1.25666308403015,7.56319427490234,1.10792398452759,7.59660530090332,1.10955107212067,7.46179962158203,1.10859417915344,7.4952974319458,1.1100035905838,7.52945804595947,1.10994637012482,0.988923013210297,-0.857483565807343,1.07850742340088,-0.857332408428192,1.0981285572052,-0.708768546581268,0.998280227184296,-0.704536378383636,1.05763840675354,0.505911886692047,0.975439012050629,0.499330073595047,1.05730199813843,1.05065310001373,0.973584592342377,1.04833602905273,0.973442018032074,0.807394206523895,1.05125546455383,0.810467183589935,0.930871188640594,1.40190422534943,0.98641437292099,1.41592037677765,0.987742602825165,1.49647438526154,0.929244697093964,1.4870719909668,0.91041225194931,2.30443692207336,0.957183063030243,2.29337382316589,0.959077537059784,2.47517704963684,0.913259923458099,2.48316073417664,0.897092759609222,2.7651252746582,
- 0.936982333660126,2.76109552383423,0.93151730298996,2.98869395256042,0.893559873104095,2.98470234870911,0.92747300863266,3.64573621749878,0.873150289058685,3.65095090866089,0.872797906398773,3.44493079185486,0.930387675762177,3.43322062492371,0.909251153469086,3.84411144256592,0.862418591976166,3.84663200378418,0.814455211162567,4.44223070144653,0.85189551115036,4.07288455963135,0.888921678066254,4.07808542251587,0.476910531520844,-0.863772094249725,0.574763715267181,-0.851348340511322,0.558776557445526,-0.700555741786957,0.444361627101898,-0.710233867168427,0.580245673656464,0.524025499820709,0.483545005321503,0.517368853092194,0.589777171611786,1.05530917644501,0.503688991069794,1.05103063583374,0.509340465068817,0.813863217830658,0.59248274564743,0.821557581424713,0.588066041469574,1.42254412174225,0.649498641490936,1.40307140350342,0.65316241979599,1.48416233062744,0.587048709392548,1.49900054931641,0.64704293012619,2.28723788261414,0.698915183544159,2.29257988929749,0.693972527980804,2.47174835205078,0.642835795879364,2.4685652256012,0.668529689311981,2.75776362419128,0.714803636074066,2.75910568237305,0.719942510128021,2.98794341087341,0.676002442836761,2.98906922340393,0.760530650615692,3.64892482757568,0.705916106700897,3.64544343948364,0.703148066997528,3.43279457092285,0.763893306255341,3.43787336349487,0.769991338253021,3.84628295898438,0.722938716411591,3.84387731552124,0.74178022146225,4.07790088653564,0.778429925441742,4.07220792770386,0.647063910961151,-0.847189843654633,0.729552447795868,-0.844796359539032,0.724250257015228,-0.689166486263275,0.636591374874115,-0.692634284496307,0.728750646114349,0.517431080341339,0.650945127010345,0.523599207401276,0.722669303417206,1.05781781673431,0.650888621807098,1.05681800842285,0.655847012996674,0.821112453937531,0.730587422847748,0.818541586399078,0.75497168302536,1.46389091014862,0.701387345790863,1.47364270687103,0.69712632894516,1.38892614841461,0.751875102519989,1.37556099891663,0.774591386318207,2.4821834564209,0.732106864452362,2.47483968734741,0.735794246196747,
- 2.29874682426453,0.775711238384247,2.30878210067749,0.748141705989838,2.75973987579346,0.784203231334686,2.76379299163818,0.78492134809494,2.97947001457214,0.75071519613266,2.98288464546204,0.816811263561249,3.65487241744995,0.817305982112885,3.45017766952515,0.81621378660202,3.84981060028076,0.815230786800385,4.06833505630493,0.818286597728729,-0.847568213939667,0.903719127178192,-0.850217998027802,0.907804667949677,-0.695230185985565,0.818123519420624,-0.689272105693817,0.893868148326874,0.501322329044342,0.811613738536835,0.509815037250519,0.890220105648041,1.05143260955811,0.80609005689621,1.05776786804199,0.814899384975433,0.816377103328705,0.895181834697723,0.808344066143036,0.813406407833099,1.37072348594666,0.87404602766037,1.38631367683411,0.871397435665131,1.4747611284256,0.813597619533539,1.46096253395081,0.82038277387619,2.31590270996094,0.86531013250351,2.31189513206482,0.867781102657318,2.48713779449463,0.821332395076752,2.48892021179199,0.822528541088104,2.76769423484802,0.859766900539398,2.7663049697876,0.858210265636444,2.97930312156677,0.822037637233734,2.97836518287659,5.77872753143311,0.830405175685883,5.84226608276367,0.827692091464996,5.83872032165527,1.02002537250519,5.78333806991577,1.02075254917145,5.84227085113525,1.36046290397644,5.81088018417358,1.36430871486664,5.80193853378296,1.21837759017944,5.8405237197876,1.21677994728088,5.8256950378418,1.53131711483002,5.84470844268799,1.52928781509399,5.84666681289673,1.6631338596344,5.90464496612549,0.834462821483612,5.893798828125,1.02034831047058,5.87379217147827,1.36437964439392,5.87913465499878,1.21818423271179,5.86372423171997,1.53135752677917,5.96628904342651,0.841427385807037,5.94715690612793,1.02178001403809,5.90482997894287,1.36879646778107,5.92003965377808,1.22065567970276,5.88283205032349,1.53400218486786,5.71512269973755,0.836829960346222,5.72933387756348,1.02256000041962,5.780189037323,1.36963260173798,5.76083612442017,1.22161507606506,5.80656957626343,1.53457570075989,3.24233627319336,-0.980940520763397,3.37999653816223,-1.00117945671082,
- 3.38050889968872,-0.706897437572479,3.26777529716492,-0.718761384487152,3.254469871521,-0.536414802074432,3.36983680725098,-0.531894147396088,3.36162185668945,-0.330502480268478,3.26097416877747,-0.335522383451462,3.36103558540344,-0.0393797941505909,3.25766158103943,-0.0382494516670704,3.2430260181427,-0.137749150395393,3.26902508735657,0.395974904298782,3.34110188484192,0.379250794649124,3.30172801017761,0.636217057704926,3.36165070533752,0.640221416950226,3.35648941993713,0.822786271572113,3.29179573059082,0.827732980251312,3.34876656532288,1.21895527839661,3.29941511154175,1.21725237369537,3.29053139686584,1.06282019615173,3.35045599937439,1.0691089630127,3.32982778549194,1.59596681594849,3.34682559967041,1.59348821640015,3.34733867645264,1.75038909912109,3.52417516708374,-1.00224661827087,3.48614287376404,-0.712202727794647,3.48442196846008,-0.543815791606903,3.46535062789917,-0.344600647687912,3.46431231498718,-0.0523681230843067,3.35869956016541,-0.121902897953987,3.47829151153564,-0.145837500691414,3.42677617073059,0.381539613008499,3.42092347145081,0.648093640804291,3.41793990135193,0.836602628231049,3.3984637260437,1.216548204422,3.41026425361633,1.06636536121368,3.36433172225952,1.59252905845642,3.65897941589355,-0.973527133464813,3.59511470794678,-0.718497216701508,3.59554815292358,-0.542312324047089,3.5608766078949,-0.345315665006638,3.56838274002075,-0.0470385141670704,3.59780716896057,-0.161748364567757,3.51032733917236,0.406368762254715,3.48558449745178,0.648175299167633,3.47362995147705,0.834928095340729,3.44647169113159,1.21649575233459,3.46814632415771,1.0620481967926,3.38116550445557,1.59559965133667,3.09809017181396,-0.982859551906586,3.14388203620911,-0.723560750484467,3.14423847198486,-0.549163997173309,3.16772937774658,-0.349635094404221,3.15732312202454,-0.041600663214922,3.13241934776306,-0.156884387135506,3.18710732460022,0.400630503892899,3.2385139465332,0.643619000911713,3.23360514640808,0.831830441951752,3.24999046325684,1.21559429168701,3.23215699195862,1.06046378612518,3.31161499023438,
- 1.5956449508667,7.29147720336914,-0.997007787227631,7.37608003616333,-1.00224661827087,7.36711883544922,-0.783775746822357,7.29004096984863,-0.780859887599945,7.3623161315918,-0.448453634977341,7.31796836853027,-0.453901499509811,7.30400085449219,-0.615479409694672,7.3646821975708,-0.614276111125946,7.35732746124268,-0.187174513936043,7.32092761993408,-0.182437852025032,7.31988954544067,-0.292762488126755,7.35976266860962,-0.294235199689865,7.35367393493652,0.0514446943998337,7.33816576004028,0.0516552180051804,7.32432270050049,-0.0722982436418533,7.35533857345581,-0.0727192908525467,7.46028709411621,-1.00152325630188,7.15424823760986,-0.769774377346039,7.20627689361572,-0.434941947460175,7.42475271224976,-0.615048348903656,7.26361083984375,-0.179793640971184,7.39937305450439,-0.2956323325634,7.30365800857544,0.0560533553361893,7.38602924346924,-0.0729178935289383,7.19884777069092,-0.996212959289551,7.22182083129883,-0.782738208770752,7.26053142547607,-0.451826691627502,7.24012517929077,-0.61484682559967,7.29220867156982,-0.182741925120354,7.27837562561035,-0.294355154037476,7.32078838348389,0.0524894148111343,7.30527114868164,-0.0729883536696434,1.15718770027161,-0.86363023519516,1.19153523445129,-0.710204303264618,1.12932634353638,0.51301509141922,1.1304874420166,1.05585372447968,1.11836409568787,0.812094151973724,1.0355327129364,1.4196537733078,1.03972721099854,1.49865770339966,1.00109243392944,2.28653240203857,1.00090384483337,2.46839880943298,0.975663125514984,2.75763750076294,0.968636214733124,2.98937487602234,0.642390191555023,0.00277499482035637,0.725044190883636,0.0100121907889843,0.567961871623993,-0.00535793974995613,0.461928069591522,-0.0126094408333302,1.07032775878906,-0.00263925269246101,1.15350556373596,-0.00883026793599129,0.978610694408417,0.00463513657450676,0.894788205623627,0.0126793794333935,0.811794936656952,0.0157030038535595,0.628346383571625,1.16146469116211,0.680526196956635,1.16128754615784,0.559652030467987,1.16987800598145,1.01061081886292,1.16703164577484,1.06782531738281,1.16559743881226,
- 0.941790759563446,1.17031633853912,0.873790919780731,1.17265903949738,0.806589543819427,1.17016506195068,0.740143954753876,1.16476476192474,0.724996984004974,1.93364715576172,0.682096898555756,1.93297612667084,0.667733132839203,1.73865604400635,0.712933242321014,1.73538529872894,0.623158872127533,1.93583273887634,0.607304513454437,1.74638664722443,1.01244378089905,1.9348247051239,0.966159999370575,1.9371280670166,0.977204263210297,1.74650883674622,1.02346563339233,1.74485015869141,0.915705144405365,1.94046354293823,0.923785626888275,1.7461678981781,0.868161618709564,1.94164609909058,0.871209561824799,1.74311363697052,0.820861279964447,1.94003844261169,0.817740380764008,1.73726809024811,0.771638095378876,1.93709492683411,0.763735711574554,1.73500549793243,0.728101909160614,2.53105187416077,0.770480811595917,2.54097890853882,0.778979957103729,2.62376260757446,0.741352498531342,2.61556768417358,0.70757669210434,2.61212730407715,0.689603745937347,2.52723050117493,0.633944928646088,2.52685379981995,0.662878692150116,2.61184597015381,0.944746673107147,2.61602139472961,0.966216504573822,2.5321683883667,1.01254749298096,2.52595710754395,0.98154228925705,2.61102557182312,0.918378531932831,2.54249835014343,0.904617488384247,2.62454771995544,0.863737523555756,2.62948131561279,0.869552791118622,2.54848217964172,0.818893849849701,2.55066823959351,0.821297109127045,2.63125848770142,0.691878974437714,2.1149594783783,0.732834994792938,2.11708903312683,0.635554969310761,2.1132984161377,0.957917630672455,2.11429309844971,1.00363039970398,2.11294174194336,0.910259187221527,2.11831259727478,0.866138875484467,2.12103128433228,0.822400510311127,2.12264943122864,0.776635110378265,2.1210412979126,0.778490960597992,3.15957713127136,0.741890609264374,3.15824937820435,0.710142314434052,3.15916061401367,0.66773122549057,3.15805339813232,0.935916364192963,3.1612184047699,0.971537530422211,3.15842318534851,0.897755324840546,3.16228199005127,0.859614551067352,3.16161489486694,0.819521367549896,3.16171884536743,0.884381234645844,3.3376841545105,
- 0.945930898189545,3.31857800483704,0.688078582286835,3.3184928894043,0.754614055156708,3.32599377632141,0.816204726696014,3.34976124763489,3.56899261474609,-0.225618317723274,3.46796822547913,-0.213364794850349,3.36067581176758,-0.195932820439339,3.25365304946899,-0.204305127263069,3.15466904640198,-0.224681094288826,3.42941117286682,0.325722962617874,3.34441161155701,0.32718351483345,3.35731053352356,0.153181597590446,3.44134497642517,0.145521447062492,3.26894545555115,0.331640988588333,3.27467513084412,0.145715996623039,3.18758225440979,0.137390896677971,3.19301581382751,0.329382687807083,3.51276755332947,0.336483985185623,3.52754831314087,0.145612999796867,3.29108667373657,0.959555387496948,3.23279309272766,0.960033893585205,3.47055506706238,0.96228301525116,3.41363573074341,0.965439319610596,3.3531060218811,0.960908770561218,6.23618745803833,0.833293676376343,6.29955959320068,0.837129831314087,6.287109375,0.939032673835754,6.22814416885376,0.934567213058472,6.24459075927734,1.36694765090942,6.21291399002075,1.36753976345062,6.21908950805664,1.22122716903687,6.25764799118042,1.22362971305847,6.21063947677612,1.53547143936157,6.22978210449219,1.53541350364685,6.20249462127686,1.66870403289795,6.36085748672485,0.850255012512207,6.34488391876221,0.948353469371796,6.16009569168091,1.36926639080048,6.29593372344971,1.2290313243866,6.24852609634399,1.53943288326263,6.165207862854,0.835680603981018,6.16738986968994,0.933635830879211,6.18663263320923,1.3688747882843,6.17891502380371,1.21981394290924,6.1953182220459,1.53577387332916,6.27626848220825,1.02776658535004,6.33097553253174,1.03377461433411,6.3156156539917,1.11936295032501,6.26810598373413,1.11362075805664,6.22114086151123,1.02275335788727,6.22024202346802,1.10975193977356,6.16928958892822,1.01893210411072,6.17350912094116,1.1069860458374,0.704178512096405,3.23581099510193,0.735185563564301,3.24156093597412,0.661164700984955,3.23518657684326,0.94293612241745,3.24133014678955,0.9804407954216,3.23555469512939,0.903977334499359,3.25258541107178,0.861167371273041,3.26022672653198,
- 0.814054906368256,3.26231718063354,0.770295560359955,3.25199961662292,0.702207028865814,1.55148911476135,0.656130254268646,1.55545365810394,0.595879733562469,1.56595647335052,1.03222179412842,1.56413614749908,0.986381709575653,1.56567525863647,0.930577456951141,1.56483566761017,0.872094810009003,1.56058967113495,0.812526404857636,1.55180203914642,0.754736363887787,1.54984259605408,6.35610961914063,-0.795895040035248,6.28415679931641,-0.803021371364594,6.2763557434082,-0.999530494213104,6.35532188415527,-0.996880948543549,6.36243486404419,-0.368807524442673,6.29137420654297,-0.374796122312546,6.28115081787109,-0.516429126262665,6.35772943496704,-0.513612449169159,6.3774209022522,0.265155345201492,6.32111358642578,-0.0267116613686085,6.36834144592285,-0.0432924814522266,6.4276647567749,-0.803028047084808,6.43439674377441,-0.99865335226059,6.4344425201416,-0.373198002576828,6.43827056884766,-0.517218291759491,6.41619777679443,-0.0269038267433643,6.50273752212524,-0.811063945293427,6.51368999481201,-1.00224661827087,6.50279903411865,-0.377922981977463,6.51233005523682,-0.520411431789398,6.4643497467041,-0.00744529440999031,6.20735263824463,-0.809106767177582,6.19722938537598,-1.0001220703125,6.22267150878906,-0.375851601362228,6.20883560180664,-0.518252789974213,6.27625465393066,-0.00518770888447762,6.43164253234863,-0.652755439281464,6.35760974884033,-0.651059806346893,6.28403329849243,-0.648756444454193,6.20865821838379,-0.649943292140961,6.50651741027832,-0.651675641536713,6.41870975494385,-0.137765362858772,6.3661675453186,-0.142321541905403,6.36418151855469,-0.242318347096443,6.41788959503174,-0.247099116444588,6.31404495239258,-0.135034754872322,6.31034088134766,-0.248529151082039,6.25642824172974,-0.127617076039314,6.24898052215576,-0.25047442317009,6.47510290145874,-0.130019620060921,6.47667694091797,-0.252768009901047,5.49873304367065,0.931844294071198,5.55166149139404,0.92860347032547,5.53540897369385,1.04805827140808,5.49236679077148,1.04619193077087,5.51367568969727,1.15878486633301,5.48457765579224,1.15911602973938,
- 5.47843551635742,1.25489640235901,5.50112438201904,1.25575530529022,5.45558643341064,1.33653712272644,5.34510040283203,0.934458673000336,5.39613389968872,0.940283358097076,5.41254615783691,1.04290044307709,5.37240076065063,1.04949617385864,5.42372131347656,1.15719568729401,5.39442825317383,1.15944468975067,5.40965270996094,1.25604248046875,5.43239498138428,1.2564572095871,5.44795036315918,0.94347208738327,5.45253992080688,1.04209959506989,5.45452404022217,1.15842807292938,5.45523881912231,1.25751066207886,0.58321088552475,-0.293488711118698,0.652531564235687,-0.286844700574875,0.482076346874237,-0.296250075101852,1.07089948654175,-0.287936180830002,1.15517330169678,-0.294096678495407,0.977834403514862,-0.280469626188278,0.89376300573349,-0.273469418287277,0.812060534954071,-0.272697895765305,0.729261338710785,-0.279648035764694,0.468384444713593,-0.55079048871994,0.570058286190033,-0.545809209346771,1.08543801307678,-0.550971210002899,1.16802573204041,-0.55190509557724,0.992359340190887,-0.545786798000336,0.905071437358856,-0.536336123943329,0.816773116588593,-0.531292140483856,0.725904405117035,-0.533575236797333,0.642779290676117,-0.538681447505951,0.984353005886078,-0.908100068569183,1.0653293132782,-0.902797400951386,0.513895690441132,-0.913941085338593,0.583190381526947,-0.903361976146698,0.65378874540329,-0.901373326778412,0.731078326702118,-0.896163880825043,0.817955195903778,-0.900218665599823,0.903222978115082,-0.899981439113617,1.11707592010498,-0.914309680461884,0.974725425243378,-0.945224225521088,0.980312764644623,-0.98652595281601,1.03763628005981,-1.00224661827087,1.09309864044189,-0.992400348186493,1.12093567848206,-0.963253676891327,3.34631276130676,1.4365873336792,3.31231713294983,1.44154465198517,3.27589106559753,1.44090092182159,3.41499257087708,1.44081032276154,3.38132500648499,1.43466889858246,7.33630561828613,0.177967190742493,1.8076696395874,-0.894514501094818,1.83386039733887,-0.703639924526215,1.68111777305603,-0.722950160503387,1.67745661735535,-0.923945605754852,1.83970594406128,1.34161961078644,
- 1.84288382530212,1.53354680538177,1.71388483047485,1.5362251996994,1.71298599243164,1.32924973964691,1.83804154396057,1.88624620437622,1.82432985305786,2.23074626922607,1.70662522315979,2.25124478340149,1.7109591960907,1.89731025695801,1.8019278049469,2.49384427070618,1.70945620536804,2.50700879096985,1.68165564537048,3.36172389984131,1.69192314147949,3.18226718902588,1.77842497825623,3.17735457420349,1.75513887405396,3.36692571640015,1.67562508583069,3.65058708190918,1.67426824569702,3.49084091186523,1.73838472366333,3.50331950187683,1.7317191362381,3.65481805801392,1.67885088920593,4.13777923583984,1.67708992958069,3.82302474975586,1.72452402114868,3.81835269927979,1.71256160736084,4.14257669448853,1.68132281303406,4.38889646530151,1.53122854232788,-0.75576776266098,1.5402660369873,-0.926901042461395,1.59032726287842,1.54801845550537,1.58657383918762,1.31818699836731,1.59024620056152,2.23102784156799,1.58731174468994,1.88358855247498,1.61118459701538,2.49634051322937,1.61123037338257,3.36439990997314,1.61479377746582,3.1759295463562,1.61859583854675,3.65570735931396,1.60866641998291,3.50000214576721,1.64568567276001,4.14005374908447,1.62931418418884,3.82378268241882,1.36833786964417,-0.734144389629364,1.40773510932922,-0.899054706096649,1.46446776390076,1.54489660263062,1.45393538475037,1.33213472366333,1.47724843025208,2.21377825737,1.46999454498291,1.87255835533142,1.51881170272827,2.4866030216217,1.54342567920685,3.37073373794556,1.5378246307373,3.17157578468323,1.56290519237518,3.66136050224304,1.54745554924011,3.51402544975281,1.61335802078247,4.14615249633789,1.57958221435547,3.82040095329285,1.94419717788696,-0.903593957424164,1.98785853385925,-0.741160809993744,1.97504830360413,1.33366322517395,1.97159504890442,1.5476678609848,1.95612621307373,1.87564408779144,1.93853187561035,2.21577954292297,1.89185404777527,2.48794221878052,1.8563859462738,3.17219161987305,1.82438182830811,3.3703408241272,1.8013551235199,3.5129063129425,1.78751838207245,3.66051292419434,1.77258229255676,3.81984615325928,1.74615931510925,
- 4.14580249786377,1.72780275344849,0.862407505512238,1.71966624259949,1.11877036094666,1.58278799057007,1.12048840522766,1.57817697525024,0.879692256450653,1.86966490745544,0.885615050792694,1.85321319103241,1.13602662086487,2.01057934761047,0.90583997964859,1.99106776714325,1.14077591896057,1.44453549385071,1.13922142982483,1.43308663368225,0.904253780841827,1.70613813400269,2.72371625900269,1.62454509735107,2.71859216690063,1.78349423408508,2.70399284362793,1.86699914932251,2.70192885398865,1.54514479637146,2.69881200790405,1.70145845413208,2.92439341545105,1.62219452857971,2.92389249801636,1.78024101257324,2.91232872009277,1.85876154899597,2.91381549835205,1.5462338924408,2.911288022995,1.71565985679626,0.456228286027908,1.72386193275452,0.642324864864349,1.58011341094971,0.648137748241425,1.5721971988678,0.454650670289993,1.86655068397522,0.457258015871048,1.86441588401794,0.66777902841568,2.02671122550964,0.451518565416336,2.01871585845947,0.671549379825592,1.43468737602234,0.677527725696564,1.42197561264038,0.459167033433914,1.69300150871277,-0.17039842903614,1.71323108673096,0.205329462885857,1.56894302368164,0.180849835276604,1.54404950141907,-0.206375077366829,1.85372138023376,-0.1634192019701,1.85583233833313,0.200311228632927,1.99517035484314,-0.203772023320198,1.99668169021606,0.17046169936657,1.41228818893433,0.181106612086296,1.39340353012085,-0.195312932133675,1.54029417037964,-0.575766026973724,1.39660787582397,-0.557529151439667,1.8305823802948,-0.537699639797211,1.97062659263611,-0.564238727092743,1.68493604660034,-0.552720487117767,1.80474495887756,-0.99656218290329,1.89093732833862,-1.00224661827087,1.91132855415344,-0.943417489528656,1.82515263557434,-0.937709987163544,1.56182956695557,-0.959056317806244,1.64840245246887,-0.957203567028046,1.43430423736572,-0.941568315029144,1.51794981956482,-0.95914500951767,1.70837450027466,-0.956213414669037,1.79054713249207,-0.937669456005096,5.75687837600708,-0.990516126155853,5.76140213012695,-0.807342290878296,5.67466926574707,-0.80152440071106,5.66388845443726,
- -0.986366212368011,5.76521492004395,-0.652966916561127,5.78469133377075,-0.388536900281906,5.72095060348511,-0.391524523496628,5.68375539779663,-0.645743310451508,5.79458999633789,-0.126207068562508,5.73748874664307,-0.123332932591438,5.801917552948,0.0895336121320724,5.75156021118164,0.102743670344353,5.76649713516235,0.264959961175919,5.81102085113525,0.258265286684036,5.86141300201416,0.724457681179047,5.78314304351807,0.44573238492012,5.82116603851318,0.446298390626907,6.02954149246216,-0.986169755458832,6.0199236869812,-0.801652431488037,5.93527126312256,-0.807049036026001,5.93988132476807,-0.999989211559296,6.01181793212891,-0.646144807338715,5.97773742675781,-0.392117947340012,5.91466236114502,-0.394192427396774,5.93138599395752,-0.644442737102509,5.96658706665039,-0.123505786061287,5.90673589706421,-0.131220296025276,5.95058441162109,0.101557776331902,5.9008150100708,0.100832268595696,5.89825296401978,0.26373291015625,5.94154024124146,0.263875305652618,5.89539813995361,0.44526794552803,5.93146228790283,0.444760590791702,5.84902143478394,-0.811008930206299,5.84778261184692,-1.00224661827087,5.85086822509766,-0.389535158872604,5.8500657081604,-0.64983743429184,5.85002374649048,-0.133067324757576,5.85072612762451,0.0891502350568771,5.85388374328613,0.258607059717178,5.85740232467651,0.447448283433914,7.01339292526245,0.357078105211258,7.01574373245239,0.528119444847107,6.96007299423218,0.530070185661316,6.95071077346802,0.35897234082222,7.01746463775635,0.653312742710114,7.0224871635437,0.821624338626862,6.97916460037231,0.819905579090118,6.96692514419556,0.655304849147797,7.19955730438232,0.362812072038651,7.17890548706055,0.532174944877625,7.12447547912598,0.532613813877106,7.13754081726074,0.366678982973099,7.16378974914551,0.65613979101181,7.15082693099976,0.820691645145416,7.10799980163574,0.81834489107132,7.11491203308105,0.654069483280182,7.07011270523071,0.530680954456329,7.07532644271851,0.364343196153641,7.06548404693604,0.820421993732452,7.06629657745361,0.652431547641754,7.04616832733154,0.986368715763092,
- 7.137864112854,0.985243499279022,5.57310771942139,-0.979037404060364,5.21377658843994,-0.987773597240448,5.20415878295898,-0.713484883308411,5.51861333847046,-0.686955213546753,5.47366809844971,-0.464211165904999,5.20982122421265,-0.485009759664536,5.21768474578857,-0.392378985881805,5.47713851928711,-0.377074122428894,5.47532081604004,-0.303545147180557,5.22074413299561,-0.322474151849747,5.22965383529663,-0.124149911105633,5.44267225265503,-0.115343600511551,5.24433565139771,0.136440545320511,5.40876197814941,0.148624524474144,5.25393104553223,0.308296054601669,5.38574361801147,0.318778067827225,5.25972127914429,0.403401404619217,5.37423706054688,0.415319740772247,5.26660251617432,0.508224904537201,5.35633039474487,0.516652047634125,5.27764940261841,0.670761704444885,5.33533811569214,0.676606059074402,5.31320810317993,0.833587288856506,5.34279012680054,-0.966962397098541,5.31435394287109,-0.696928560733795,5.31820201873779,-0.473829925060272,5.29998588562012,-0.388539165258408,5.29079627990723,-0.319717675447464,5.29617977142334,-0.128481566905975,5.29530143737793,0.136368304491043,5.29725456237793,0.307426333427429,5.29748153686523,0.404595553874969,5.30396938323975,0.505964159965515,5.30765914916992,0.667301118373871,5.45413494110107,-0.976408779621124,5.41699552536011,-0.68490469455719,5.39904499053955,-0.464544951915741,5.38843393325806,-0.381094455718994,5.38288736343384,-0.312341272830963,5.37015867233276,-0.130258411169052,5.35159349441528,0.139663830399513,5.34155416488647,0.310091078281403,5.33589363098145,0.409050583839417,5.3303394317627,0.507697939872742,5.3217134475708,0.668622195720673,5.1406831741333,0.93461400270462,5.18163871765137,0.935873806476593,5.17198181152344,1.10445475578308,5.13474655151367,1.10149562358856,5.09193229675293,1.33454978466034,5.01983785629272,0.934007465839386,5.05986928939819,0.928693354129791,5.05893230438232,1.10241198539734,5.02133178710938,1.10289466381073,5.10092067718506,0.92860347032547,5.09709310531616,1.10199201107025,5.40015459060669,-0.544790506362915,5.31025981903076,
- -0.554621577262878,5.20988464355469,-0.568891525268555,5.49458456039429,-0.543045282363892,6.94003868103027,-1.00224661827087,7.02892589569092,-0.990477502346039,7.03126239776611,-0.825737178325653,6.95119524002075,-0.824893414974213,7.00211429595947,-0.631640732288361,6.93514490127563,-0.627628266811371,6.98952770233154,-0.525546133518219,6.9279522895813,-0.522417008876801,6.91811370849609,-0.339902609586716,6.97339630126953,-0.336539715528488,6.9532642364502,-0.204475119709969,6.90708875656128,-0.209222510457039,6.94657278060913,-0.111740849912167,6.90382766723633,-0.115156598389149,6.89079809188843,0.127520367503166,6.92201995849609,0.130024954676628,6.85777378082275,0.253844052553177,6.6873254776001,-0.978756844997406,6.77035570144653,-0.973345696926117,6.78648948669434,-0.823347747325897,6.70904541015625,-0.826065003871918,6.80158996582031,-0.6314817070961,6.73374557495117,-0.632700741291046,6.80722427368164,-0.526956796646118,6.74440813064575,-0.526829898357391,6.75806617736816,-0.337890356779099,6.81233501434326,-0.34140607714653,6.81991720199585,-0.210434392094612,6.77363014221191,-0.205551102757454,6.82094192504883,-0.115695096552372,6.77813911437988,-0.112768746912479,6.79649543762207,0.129261776804924,6.82793617248535,0.126458689570427,6.8530855178833,-0.987824380397797,6.86821937561035,-0.821027934551239,6.86801195144653,-0.625351548194885,6.86735534667969,-0.521590054035187,6.86516857147217,-0.342751950025558,6.86365604400635,-0.213534310460091,6.86246824264526,-0.117448605597019,6.85951709747314,0.126306340098381,4.80584907531738,0.945544540882111,4.85637664794922,0.953731119632721,4.84348297119141,1.06799495220184,4.80117893218994,1.06514298915863,4.82195377349854,1.1678421497345,4.78932094573975,1.16867685317993,4.80573320388794,1.25668811798096,4.78238391876221,1.25251448154449,4.75888156890869,1.33007824420929,4.65603637695313,0.958685338497162,4.70515060424805,0.951499879360199,4.71695756912231,1.06512129306793,4.67653179168701,1.06856489181519,4.72866058349609,1.16612136363983,4.69784736633301,
- 1.16796135902405,4.73625087738037,1.2526091337204,4.71202516555786,1.2565610408783,4.7544379234314,0.943314611911774,4.75812530517578,1.06343424320221,4.75851917266846,1.16829490661621,4.75936603546143,1.25082969665527,6.75089836120605,-0.437041491270065,6.80965280532837,-0.438778847455978,6.92327690124512,-0.435681939125061,6.98186159133911,-0.435725957155228,6.86631679534912,-0.436602056026459,6.82215881347656,-0.00317684188485146,6.8610577583313,-0.00333127751946449,6.78349447250366,-0.00257468596100807,6.89995384216309,-0.00343810021877289,6.93862533569336,-0.00160389021039009,4.59836196899414,-0.988717496395111,4.60728168487549,-0.86042708158493,4.5405158996582,-0.860197007656097,4.5251350402832,-0.987947404384613,4.53141164779663,-0.523875415325165,4.53879451751709,-0.709421098232269,4.60529184341431,-0.715320289134979,4.59555101394653,-0.525001227855682,4.59302377700806,-0.326612681150436,4.60152864456177,-0.178769543766975,4.53981685638428,-0.186171010136604,4.53307580947876,-0.335051268339157,4.60070657730103,-0.0445992536842823,4.61612272262573,0.226793095469475,4.56642198562622,0.228423401713371,4.53727436065674,-0.0431184358894825,4.62439680099487,0.491938143968582,4.58094596862793,0.490745812654495,4.80919456481934,-0.984248101711273,4.7933349609375,-0.857204377651215,4.72974824905396,-0.863576352596283,4.74079895019531,-1.00137996673584,4.72732257843018,-0.528629958629608,4.72679901123047,-0.711665809154511,4.79199075698853,-0.707303702831268,4.79173803329468,-0.522009789943695,4.78301906585693,-0.334742516279221,4.77364730834961,-0.188389733433723,4.71576976776123,-0.174751475453377,4.7212176322937,-0.331290930509567,4.78319787979126,-0.0450598783791065,4.76148176193237,0.227086588740349,4.71305990219116,0.223722979426384,4.72029829025269,-0.0428924150764942,4.75469255447388,0.489686042070389,4.71179389953613,0.492339164018631,4.66699743270874,-0.864231526851654,4.66833829879761,-1.00224661827087,4.66172122955322,-0.530736863613129,4.6665244102478,-0.718533933162689,4.65833616256714,-0.166657879948616,
- 4.65579700469971,-0.321609705686569,4.66447973251343,0.223545596003532,4.660569190979,-0.0430371351540089,4.66751384735107,0.495808154344559,4.67180109024048,0.840079843997955,4.44887828826904,1.77875745296478,4.49257469177246,1.78614568710327,4.47726917266846,1.88913416862488,4.43985414505005,1.88626003265381,4.45921993255615,1.97654366493225,4.42933511734009,1.97725605964661,4.44458723068237,2.05942487716675,4.42255592346191,2.05558276176453,4.39731693267822,2.13034701347351,4.31710577011108,1.78700518608093,4.36073398590088,1.78430223464966,4.3677773475647,1.8851044178009,4.33267641067505,1.88712775707245,4.37261867523193,1.9730372428894,4.34384059906006,1.97499537467957,4.37630033493042,2.05815458297729,4.35157871246338,2.05841827392578,4.40404415130615,1.77863156795502,4.40284776687622,1.88440442085266,4.40059804916382,1.97551107406616,4.39994716644287,2.05690097808838,4.27957010269165,-0.988717496395111,4.288489818573,-0.86042708158493,4.22172403335571,-0.860197007656097,4.20634317398071,-0.987947404384613,4.21261978149414,-0.523875415325165,4.2200026512146,-0.709421098232269,4.28649997711182,-0.715320289134979,4.27675914764404,-0.525001227855682,4.27423191070557,-0.326612681150436,4.28273677825928,-0.178769543766975,4.22102499008179,-0.186171010136604,4.21428394317627,-0.335051268339157,4.28191471099854,-0.0445992536842823,4.28878402709961,0.0763277485966682,4.23147010803223,0.0778751745820045,4.21848249435425,-0.0431184358894825,4.29733085632324,0.226793095469475,4.32737112045288,0.492707818746567,4.24763011932373,0.228423401713371,4.49040269851685,-0.984248101711273,4.47454309463501,-0.857204377651215,4.41095638275146,-0.863576352596283,4.42200708389282,-1.00137996673584,4.40853071212769,-0.528629958629608,4.40800714492798,-0.711665809154511,4.47319889068604,-0.707303702831268,4.47294616699219,-0.522009789943695,4.46422719955444,-0.334742516279221,4.45485544204712,-0.188389733433723,4.39697790145874,-0.174751475453377,4.40242576599121,-0.331290930509567,4.46440601348877,-0.0450598783791065,4.45472955703735,
- 0.0762031450867653,4.39828109741211,0.0759060755372047,4.4015064239502,-0.0428924150764942,4.44268989562988,0.227086588740349,4.43590068817139,0.489686042070389,4.39426803588867,0.223722979426384,4.34820556640625,-0.864231526851654,4.34954643249512,-1.00224661827087,4.34292936325073,-0.530736863613129,4.34773254394531,-0.718533933162689,4.33954429626465,-0.166657879948616,4.33700513839722,-0.321609705686569,4.34351968765259,0.0757467970252037,4.34177732467651,-0.0430371351540089,4.34568786621094,0.223545596003532,4.44887828826904,1.77875745296478,4.49257469177246,1.78614568710327,4.47726917266846,1.88913416862488,4.43985414505005,1.88626003265381,4.45921993255615,1.97654366493225,4.42933511734009,1.97725605964661,4.44458723068237,2.05942487716675,4.42255592346191,2.05558276176453,4.39731693267822,2.13034701347351,4.31710577011108,1.78700518608093,4.36073398590088,1.78430223464966,4.3677773475647,1.8851044178009,4.33267641067505,1.88712775707245,4.37261867523193,1.9730372428894,4.34384059906006,1.97499537467957,4.37630033493042,2.05815458297729,4.35157871246338,2.05841827392578,4.40404415130615,1.77863156795502,4.40284776687622,1.88440442085266,4.40059804916382,1.97551107406616,4.39994716644287,2.05690097808838,1.58886647224426,1.71057081222534,1.96410179138184,1.7065417766571,1.46714496612549,1.70361816883087,1.84053826332092,1.70439672470093,1.71246767044067,1.71113729476929,1.59929275512695,2.34565877914429,1.91836428642273,2.33337020874023,1.49520635604858,2.33165502548218,1.81465077400208,2.34442043304443,1.70784831047058,2.36175012588501,1.58869123458862,2.04692792892456,1.94785475730896,2.03554964065552,1.47340476512909,2.0329737663269,1.8315954208374,2.04820370674133,1.7089216709137,2.06370306015015,5.13549184799194,-0.386013865470886,5.15106248855591,-0.314129412174225,5.11331272125244,-0.551419019699097,5.11157369613647,-0.469875812530518,5.10273218154907,-0.696937024593353,5.24613189697266,0.671392381191254,5.22881746292114,0.510998666286469,5.22232675552368,0.408301204442978,5.2107458114624,0.311768561601639,
- 5.19299554824829,0.140985012054443,5.16371011734009,-0.123536199331284,5.08682107925415,-0.993633031845093,6.10817050933838,0.941057801246643,6.11858224868774,1.026975274086,6.12764692306519,1.11345720291138,6.1392617225647,1.2242705821991,6.27559471130371,1.37409722805023,6.18010663986206,1.53560388088226,6.09621381759644,0.842389106750488,7.36901903152466,0.0513453930616379,7.44659423828125,-0.784296214580536,7.17860412597656,-0.600870013237,7.39370012283325,-0.186600878834724,7.28671407699585,-0.068218968808651,7.40690517425537,-0.447777956724167,7.239830493927,-0.286351323127747,7.10917282104492,-0.982713997364044,1.06964695453644,0.145474299788475,0.979187607765198,0.148915573954582,0.89587414264679,0.156617984175682,0.813257575035095,0.162369683384895,0.726413011550903,0.161292269825935,0.642351746559143,0.157750442624092,0.565391778945923,0.151082530617714,1.15287244319916,0.144107416272163,0.456007182598114,0.14335036277771,1.14702904224396,0.31484243273735,0.459153115749359,0.316950857639313,1.06646847724915,0.311562478542328,0.978632509708405,0.310543298721313,0.896007418632507,0.316724389791489,0.813683927059174,0.324625909328461,0.727716147899628,0.328130781650543,0.644335091114044,0.328900098800659,0.567433953285217,0.324698269367218
- }
- UVIndex: *3594 {
- a: 73,72,77,78,84,85,130,131,89,90,6,7,8,9,94,95,9,8,148,144,11,10,123,119,13,12,118,114,15,14,113,109,17,16,18,72,75,76,77,85,86,129,130,6,90,91,22,23,8,95,96,8,23,147,148,10,24,122,123,12,25,117,118,14,26,112,113,16,27,18,75,74,79,76,86,87,132,129,91,92,31,22,32,23,96,97,23,32,145,147,24,33,120,122,25,34,115,117,26,35,110,112,27,36,18,37,73,78,80,88,84,131,133,93,89,7,40,98,94,9,41,41,9,144,146,42,11,119,121,43,13,114,116,44,15,109,111,45,17,18,46,47,101,103,154,155,52,53,54,100,102,156,157,52,54,59,99,100,157,158,52,59,46,103,99,158,154,52,62,63,139,140,66,62,140,141,68,66,141,143,63,70,142,139,67,65,134,135,69,67,135,137,64,71,136,138,65,64,138,134,2,20,63,62,3,2,62,66,38,3,66,68,20,29,70,63,60,49,108,104,55,60,104,105,56,55,105,107,49,48,106,108,0,1,83,81,72,73,1,0,73,37,82,1,74,75,28,19,75,72,0,28,77,76,20,2,78,77,2,3,80,78,3,38,76,79,29,20,4,5,85,84,5,21,86,85,21,30,87,86,39,4,84,88,150,151,131,130,149,150,130,129,152,149,129,132,151,153,133,131,124,125,7,6,128,124,6,22,126,128,22,31,7,125,127,40,100,99,60,55,102,100,55,56,103,101,48,49,99,103,49,60,105,104,61,58,107,105,58,57,108,106,51,50,104,108,50,61,111,109,17,45,112,110,36,27,113,112,27,16,109,113,16,17,116,114,15,44,117,115,35,26,118,117,26,14,114,118,14,15,121,119,13,43,122,120,34,25,123,122,25,12,119,123,12,13,95,94,125,124,127,125,94,98,97,96,128,126,96,95,124,128,135,134,5,4,137,135,4,39,138,136,30,21,134,138,21,5,140,139,64,65,141,140,65,67,143,141,67,69,139,142,71,64,146,144,11,42,147,145,33,24,148,147,24,10,144,148,10,11,150,149,91,90,151,150,90,89,153,151,89,93,149,152,92,91,50,51,155,154,57,58,157,156,58,61,158,157,61,50,154,158,159,160,161,162,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,182,181,187,188,189,190,191,192,193,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,213,212,187,218,219,220,221,222,223,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,212,215,243,244,216,212,242,187,219,245,246,247,248,249,252,253,254,
- 255,256,257,258,259,260,261,262,263,264,265,266,267,182,242,243,183,186,244,242,182,187,245,188,268,269,270,271,272,273,274,275,276,277,278,269,279,280,270,281,272,275,282,277,283,278,279,284,285,280,286,281,282,287,283,288,278,289,268,271,290,274,273,291,292,293,276,278,294,295,296,297,298,299,300,301,302,303,304,305,306,307,306,308,307,307,308,309,310,311,312,313,314,315,316,317,295,318,319,296,299,320,321,300,322,302,323,324,306,325,326,308,308,326,327,309,328,311,314,329,316,330,317,318,331,332,319,320,333,334,321,335,322,324,336,325,337,326,337,338,326,326,338,339,327,340,328,329,341,330,342,317,343,294,297,344,345,298,301,346,304,303,347,348,349,305,307,350,350,307,310,351,312,352,353,313,354,315,317,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,356,371,1128,357,1132,359,362,374,1130,363,366,376,1127,367,370,378,1134,379,380,372,381,373,1129,382,383,375,1133,384,385,377,1131,386,379,355,358,380,361,360,381,382,365,364,383,384,368,385,386,369,221,246,249,222,253,226,229,254,233,256,259,230,237,260,263,234,267,240,239,264,191,220,223,192,227,196,199,228,201,232,231,202,205,236,235,206,210,209,238,241,160,387,388,161,390,165,168,391,170,392,393,171,174,394,395,175,179,178,396,397,247,159,162,248,166,252,255,167,257,169,172,258,261,173,176,262,266,265,177,180,225,224,229,228,199,194,225,228,195,194,199,198,168,163,389,391,164,163,168,167,255,250,164,167,251,250,255,254,229,224,251,254,398,399,1139,1140,400,398,1140,1141,401,400,1141,1143,402,403,1142,1135,404,402,1135,1136,405,404,1136,1137,406,405,1137,1138,399,406,1138,1139,232,201,407,408,201,200,409,407,392,170,410,411,170,169,412,410,169,257,413,412,257,256,414,413,256,233,415,414,233,232,408,415,416,417,418,419,417,420,421,418,422,423,424,425,423,426,427,424,426,428,429,427,428,430,431,429,430,432,433,431,432,416,419,433,434,435,436,437,438,439,434,437,440,439,438,441,442,443,444,445,446,443,442,447,448,449,446,447,450,449,448,451,436,435,450,451,236,205,452,453,205,204,454,452,394,174,455,456,174,173,457,455,173,261,458,457,261,260,459,458,
- 260,237,460,459,237,236,453,460,241,240,461,462,463,210,241,462,211,210,463,464,465,179,397,466,180,179,465,467,468,266,180,467,267,266,468,469,461,240,267,469,184,183,470,471,215,214,472,473,243,215,473,474,183,243,474,470,219,218,217,216,189,188,186,185,188,245,244,186,245,219,216,244,270,280,282,275,271,270,275,274,290,271,274,292,280,285,287,282,283,277,272,281,277,276,273,272,291,273,276,293,288,283,281,286,319,332,333,320,296,319,320,299,297,296,299,298,344,297,298,345,321,334,475,476,300,321,476,477,301,300,477,478,346,301,478,479,480,481,482,483,481,484,485,482,486,485,484,487,488,480,483,489,351,310,490,491,327,339,492,493,309,327,493,494,310,309,494,490,376,366,359,1132,366,365,360,359,381,360,365,384,384,1133,373,381,378,370,363,1130,370,369,364,363,383,364,369,386,386,1131,375,383,357,1128,374,362,358,357,362,361,380,358,361,382,372,380,382,1129,495,496,497,498,499,500,501,502,503,504,505,496,506,507,497,1124,499,502,509,504,510,505,1126,511,512,1120,513,508,1123,514,1125,515,505,511,495,498,512,501,500,513,514,515,503,505,516,517,518,519,520,516,519,521,522,520,521,523,1121,522,523,1122,510,504,499,1124,504,503,500,499,513,500,503,515,515,1125,508,513,407,409,197,196,411,410,165,390,410,412,166,165,412,413,252,166,413,414,253,252,414,415,226,253,415,408,227,226,408,407,196,227,209,438,437,238,441,438,209,208,178,442,445,396,447,442,178,177,265,448,447,177,451,448,265,264,239,436,451,264,437,436,239,238,524,463,462,525,464,463,524,526,527,465,466,528,467,465,527,529,530,468,467,529,469,468,530,531,532,461,469,531,462,461,532,525,471,470,529,527,528,473,472,526,524,525,474,473,525,532,531,470,474,531,530,529,206,235,434,439,207,206,439,440,175,395,444,443,176,175,443,446,262,176,446,449,263,262,449,450,234,263,450,435,434,235,234,435,202,231,533,534,203,202,534,535,171,393,536,537,172,171,537,538,258,172,538,539,259,258,539,540,230,259,540,541,541,533,231,230,534,533,419,418,535,534,418,421,537,536,425,424,538,537,424,427,539,538,427,429,540,539,429,431,541,540,431,433,419,533,541,433,325,306,481,480,306,
- 305,484,481,487,484,305,349,337,325,480,488,477,476,324,323,478,477,323,304,479,478,304,348,476,475,336,324,483,482,302,322,482,485,303,302,347,303,485,486,489,483,322,335,453,452,417,416,452,454,420,417,456,455,423,422,455,457,426,423,457,458,428,426,458,459,430,428,459,460,432,430,460,453,416,432,542,543,544,545,546,547,548,549,550,551,552,553,542,545,554,555,546,549,556,550,552,557,558,553,554,559,560,555,556,561,550,557,562,544,543,563,564,547,565,566,548,551,550,567,542,553,568,569,543,542,569,570,563,543,570,571,572,568,553,558,573,574,575,576,574,577,578,575,577,579,580,578,581,573,576,582,583,584,585,586,586,585,587,588,589,590,591,592,593,594,595,595,594,596,597,598,599,591,593,600,601,594,594,601,602,596,599,603,591,600,583,586,601,601,586,588,602,603,589,591,588,587,590,589,597,596,599,598,596,602,603,599,602,588,589,603,557,552,574,573,552,551,577,574,551,567,579,577,562,557,573,581,576,575,546,555,575,578,547,546,578,580,565,547,582,576,555,560,569,568,556,549,570,569,549,548,571,570,548,566,556,568,572,561,604,605,398,400,606,604,400,401,607,608,403,402,609,607,402,404,610,609,404,405,611,610,405,406,612,611,406,399,605,612,399,398,613,614,604,606,615,616,608,607,617,615,607,609,618,617,609,610,619,618,610,611,620,619,611,612,621,620,612,605,614,621,605,604,160,159,622,623,191,190,624,625,221,220,626,627,247,246,628,629,246,221,627,628,220,191,625,626,387,160,623,630,159,247,629,622,623,622,631,632,633,634,635,630,193,192,614,613,161,388,616,615,162,161,615,617,248,162,617,618,249,248,618,619,222,249,619,620,223,222,620,621,192,223,621,614,636,637,312,311,637,638,352,312,639,640,328,340,640,636,311,328,491,490,313,353,493,492,341,329,494,493,329,314,490,494,314,313,637,636,316,315,636,640,330,316,640,639,342,330,638,637,315,354,302,304,323,641,367,1127,641,368,367,641,385,368,641,377,385,523,521,501,514,1122,523,514,1123,519,518,509,502,521,519,502,501,512,498,520,522,1120,512,522,1121,497,507,517,516,498,497,516,520,642,643,644,645,646,647,648,649,650,1106,1107,653,651,1101,1102,652,656,657,658,659,
- 660,661,662,663,664,665,666,667,668,664,667,645,644,669,670,649,648,671,672,653,1107,1103,674,652,1102,1098,673,676,677,657,656,678,679,661,660,680,681,665,664,668,680,664,670,669,682,683,672,671,684,685,674,1103,1105,687,673,1098,1100,686,689,690,677,676,691,692,679,678,693,694,681,680,668,693,680,695,696,643,642,697,698,647,646,699,1104,1106,650,700,1099,1101,651,658,702,703,659,662,704,705,663,666,706,707,667,667,707,668,1097,1093,671,648,1096,1097,648,647,1094,1096,647,698,1093,1095,684,671,708,709,710,711,712,713,709,708,714,715,713,712,711,710,716,717,655,718,719,675,654,720,718,655,701,721,720,654,675,719,722,688,723,657,677,724,725,658,657,723,726,702,658,725,724,677,690,727,718,723,724,719,720,725,723,718,721,726,725,720,719,724,727,722,728,729,730,731,732,733,729,728,734,735,733,732,731,730,736,737,738,739,740,741,742,743,739,738,744,745,743,742,741,740,746,747,740,731,737,746,743,745,734,732,739,743,732,728,740,739,728,731,730,711,717,736,733,735,714,712,729,733,712,708,730,729,708,711,748,741,747,749,750,751,744,742,752,750,742,738,748,752,738,741,753,754,755,756,645,670,757,758,670,683,759,760,695,642,756,755,642,645,761,762,644,752,748,669,682,669,748,749,643,696,751,750,644,643,750,752,710,672,685,716,713,715,697,646,709,713,646,649,710,709,649,672,661,656,659,662,679,676,656,661,692,689,676,679,659,703,704,662,665,660,663,666,681,678,660,665,694,691,678,681,663,705,706,666,763,764,765,766,767,768,769,770,768,771,772,769,771,773,774,772,775,774,773,776,777,778,779,780,781,782,783,784,785,786,787,785,788,789,786,788,790,791,789,792,791,790,793,777,794,795,783,782,796,797,787,786,798,799,786,789,800,798,789,791,801,800,792,802,801,791,777,803,794,797,796,764,763,799,798,768,767,798,800,771,768,800,801,773,771,773,801,802,776,779,803,777,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,815,814,820,821,819,818,822,823,821,820,805,804,823,822,809,808,764,767,770,765,782,781,784,787,796,782,787,799,764,796,799,767,814,819,823,820,805,820,823,808,806,805,808,811,814,813,816,819,810,809,824,818,
- 817,825,822,818,824,809,822,824,776,802,803,779,778,775,776,779,794,792,793,795,803,802,792,794,1119,827,828,1112,1111,831,832,1108,1109,835,836,1118,838,1117,1118,836,1117,838,840,1116,1116,840,842,1115,1115,842,844,1114,1114,844,846,1113,1113,846,848,827,849,850,828,831,851,852,832,835,853,854,836,855,838,836,854,838,855,856,840,840,856,857,842,842,857,858,844,844,858,859,846,846,859,848,849,860,861,850,851,862,863,852,853,864,865,854,866,855,854,865,855,866,867,856,856,867,868,857,857,868,869,858,858,869,870,859,859,870,848,860,826,829,861,833,863,862,830,864,834,837,865,837,839,866,865,866,839,841,867,867,841,843,868,868,843,845,869,869,845,847,870,870,847,848,871,872,873,874,874,873,875,876,877,878,879,879,878,875,877,880,881,878,878,881,875,880,871,874,881,881,874,875,850,861,882,883,828,850,883,884,1112,828,884,1110,861,829,885,882,883,882,862,851,884,883,851,831,1110,884,831,1111,882,885,830,862,852,863,864,853,832,852,853,835,1108,832,835,1109,864,863,833,834,886,887,888,889,890,891,889,888,892,893,891,890,894,895,896,897,898,899,897,896,900,901,902,903,904,905,906,907,908,906,905,909,910,908,907,911,912,913,914,915,916,914,913,917,918,902,904,919,920,905,921,907,905,920,922,909,907,921,912,923,924,913,925,915,913,924,918,926,902,919,886,889,920,889,891,921,920,893,922,921,891,923,894,897,924,897,899,925,924,926,900,902,927,928,929,930,930,929,931,932,932,931,933,934,934,933,935,936,937,938,939,939,938,940,941,941,940,942,943,943,942,935,937,944,945,938,938,945,946,940,940,946,947,942,942,947,935,944,927,930,945,945,930,932,946,946,932,934,947,947,934,935,948,910,909,949,950,893,892,951,952,922,893,950,952,949,909,922,911,948,949,912,894,950,951,895,923,952,950,894,912,949,952,923,926,918,953,954,918,917,955,953,901,900,956,957,954,956,900,926,954,953,915,925,953,955,916,915,957,956,899,898,925,899,956,954,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,971,974,975,972,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,989,992,993,990,979,978,994,995,996,997,981,980,987,986,998,
- 999,991,990,1000,1001,990,993,1002,1000,995,994,959,958,964,997,996,965,999,998,967,966,1001,1000,971,970,1000,1002,974,971,992,1003,993,974,1003,975,1002,1003,974,993,1003,1002,959,964,963,960,978,977,982,981,994,978,981,997,959,994,997,964,969,962,965,966,987,980,983,984,999,996,980,987,965,996,999,966,967,970,973,968,986,985,988,991,998,986,991,1001,967,998,1001,970,1004,1005,1006,1007,1007,1006,1008,1009,1009,1008,1010,1011,1011,1010,1012,1013,1014,1015,1016,1016,1015,1017,1018,1018,1017,1019,1020,1020,1019,1012,1014,1021,1022,1015,1015,1022,1023,1017,1017,1023,1024,1019,1019,1024,1012,1021,1004,1007,1022,1022,1007,1009,1023,1023,1009,1011,1024,1024,1011,1012,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1047,1046,1063,1064,1065,1066,1049,1048,1055,1054,1067,1068,1059,1058,1069,1070,1062,1042,1071,1064,1063,1026,1025,1031,1066,1065,1032,1068,1067,1034,1033,1070,1069,1038,1037,1071,1042,1041,1026,1031,1030,1027,1046,1045,1050,1049,1063,1046,1049,1066,1026,1063,1066,1031,1036,1029,1032,1033,1055,1048,1051,1052,1068,1065,1048,1055,1032,1065,1068,1033,1034,1037,1040,1035,1054,1053,1056,1059,1067,1054,1059,1070,1034,1067,1070,1037,1072,1073,1074,1075,1075,1074,1076,1077,1077,1076,1078,1079,1079,1078,1080,1081,1082,1083,1084,1084,1083,1085,1086,1086,1085,1087,1088,1088,1087,1080,1082,1089,1090,1083,1083,1090,1091,1085,1085,1091,1092,1087,1087,1092,1080,1089,1072,1075,1090,1090,1075,1077,1091,1091,1077,1079,1092,1092,1079,1080,1069,1071,1041,1038,1039,1038,1041,1043,1058,1057,1060,1062,1069,1058,1062,1071,674,687,1095,1093,699,650,1096,1094,650,653,1097,1096,653,674,1093,1097,1098,675,688,1100,1101,1099,701,654,1102,1101,654,655,1098,1102,655,675,1103,673,686,1105,1106,1104,700,651,1107,1106,651,652,1103,1107,652,673,1147,1136,1135,1146,1148,1137,1136,1147,1149,1138,1137,1148,1150,1139,1138,1149,1151,1140,1139,1150,1152,1141,1140,1151,1145,1143,1141,1152,1146,1135,1142,1144,389,
- 163,1146,1144,163,164,1147,1146,164,250,1148,1147,250,251,1149,1148,251,224,1150,1149,224,225,1151,1150,225,194,1152,1151,194,195,1145,1152
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *1831 {
- 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,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,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,0,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,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,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- 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: 2139419747488, "Geometry::", "Mesh" {
- Vertices: *1467 {
- a: -17.7611598968506,-46.46484375,-67.0185394287109,-11.7161483764648,-38.059814453125,-66.770751953125,-15.4811515808105,-41.5510864257813,-71.8674926757813,-11.2421760559082,-41.7797088623047,-59.2797164916992,-6.40769577026367,-37.337158203125,-66.997314453125,19.568883895874,-65.1359710693359,-53.8185882568359,3.2590217590332,-61.2938842773438,-49.1356811523438,15.8575286865234,-72.7709350585938,-45.8490600585938,-12.3743629455566,-42.869384765625,-75.072509765625,33.8960418701172,-92.7159423828125,-42.0850830078125,24.6562614440918,-95.5356750488281,-36.0171203613281,25.8466377258301,-84.4058532714844,-57.5601501464844,35.2541389465332,-124.613525390625,-32.631103515625,25.5054359436035,-125.424987792969,-26.8917846679688,30.9324951171875,-122.910797119141,-43.0133361816406,19.4605026245117,-89.7287673950195,-50.2121658325195,19.7125701904297,-134.118087768555,-34.5165252685547,19.2550086975098,-156.007171630859,-24.1536407470703,22.2311267852783,-154.010406494141,-41.5465087890625,-1.85405683517456,-187.452331542969,-36.9767456054688,3.52720260620117,-196.664428710938,-31.6810302734375,-8.7994270324707,-216.290161132813,-28.7647705078125,27.4442844390869,-159.163269042969,-32.5665893554688,-5.31109809875488,-202.060882568359,-46.5530700683594,-22.4270610809326,-220.968780517578,-31.4472808837891,-18.292423248291,-233.738037109375,-20.889404296875,-26.8112373352051,-248.780700683594,-10.1215209960938,8.06500244140625,-199.462463378906,-36.9331665039063,-13.6820297241211,-231.830505371094,-34.0521850585938,-26.2301139831543,-232.2578125,-34.73828125,-31.993824005127,-255.027496337891,-16.3009338378906,-29.9230937957764,-263.586395263672,1.68411254882813,-44.8388862609863,-258.149963378906,-5.46929931640625,-36.5574493408203,-278.029968261719,8.20541381835938,-24.7266979217529,-283.689636230469,17.0173950195313,-38.0515098571777,-255.418716430664,2.295166015625,-27.7349338531494,-279.978210449219,25.3889770507813,-37.5780258178711,-282.721893310547,24.8796691894531,-23.3607044219971,-309.945983886719,32.0999145507813,
- -5.82141590118408,-323.859008789063,34.6849365234375,-14.5847864151001,-316.589660644531,46.1652221679688,-5.29222869873047,-316.10546875,41.990234375,-5.63144445419312,-335.980163574219,41.8411254882813,4.04232406616211,-340.310607910156,36.3368530273438,13.9871635437012,-368.009429931641,32.8811950683594,10.234112739563,-352.809448242188,48.3302001953125,14.1942882537842,-348.409881591797,41.8088684082031,11.3488883972168,-369.381591796875,40.512939453125,26.7284908294678,-397.130218505859,35.2525939941406,26.9864826202393,-396.392333984375,27.373291015625,19.5380630493164,-398.884857177734,26.2821350097656,26.982234954834,-420.944458007813,11.9276123046875,19.2785797119141,-399.621978759766,34.1602478027344,34.5912628173828,-419.250122070313,10.0281982421875,28.4612445831299,-440.696105957031,-7.06134033203125,30.5622138977051,-424.824310302734,17.9706115722656,38.1716194152832,-423.129516601563,16.0716552734375,32.8774185180664,-445.177612304688,-6.9061279296875,19.3336162567139,-450.814270019531,-23.5105590820313,32.2276306152344,-437.890350341797,-11.4450378417969,32.9347114562988,-448.474975585938,-23.4163818359375,23.1251201629639,-446.928070068359,-26.7640075683594,4.83882522583008,-461.745666503906,-31.2066040039063,23.8143291473389,-455.008605957031,-25.0574340820313,4.10906600952148,-459.693572998047,-36.1935729980469,-14.0521697998047,-476.181732177734,-30.4131774902344,8.14823532104492,-465.177337646484,-33.8609313964844,7.41869735717773,-463.124664306641,-38.8473205566406,-12.4787712097168,-478.926696777344,-33.7547912597656,-36.3293418884277,-496.501220703125,-21.383056640625,-14.3037528991699,-476.701232910156,-37.3476867675781,-37.6055526733398,-499.135864257813,-24.5665588378906,-54.8557243347168,-511.220886230469,-4.87127685546875,-15.8771934509277,-473.956298828125,-34.006103515625,-38.2354011535645,-495.261047363281,-23.1457824707031,22.6517391204834,-490.968231201172,-25.6488952636719,37.0577850341797,-478.257843017578,-14.2197570800781,21.6849956512451,-491.864166259766,-22.8114013671875,35.4929695129395,-473.820465087891,-13.4542541503906,
- 24.2823276519775,-381.164916992188,-25.9989013671875,15.5590162277222,-355.305541992188,-30.4178466796875,20.2970695495605,-376.901885986328,-27.5679016113281,17.2451629638672,-354.437377929688,-33.1727294921875,21.9121532440186,-379.915161132813,-30.6163330078125,12.4097242355347,-355.620788574219,-34.9625854492188,13.8022298812866,-161.912872314453,40.7639007568359,15.2800817489624,-174.274856567383,44.6353149414063,18.8609046936035,-161.664428710938,46.6363525390625,8.611083984375,-194.631958007813,46.7381591796875,11.472939491272,-198.072738647461,49.35400390625,23.0605373382568,-161.661224365234,44.1786193847656,9.02730941772461,-202.488739013672,45.8560028076172,18.1859359741211,-176.429733276367,42.3837280273438,18.4796085357666,-279.854827880859,-32.1224060058594,28.7082042694092,-295.647857666016,-22.5668029785156,17.7711887359619,-277.744323730469,-26.6984252929688,29.1550579071045,-296.591003417969,-15.5558471679688,35.1275062561035,-323.505767822266,-12.0887756347656,22.7673492431641,-274.697845458984,-26.3257751464844,34.3031959533691,-321.233215332031,-7.82305908203125,32.503963470459,-334.300323486328,-1.84817504882813,34.2563743591309,-294.527252197266,-15.1698303222656,32.3553237915039,-343.501190185547,17.1208801269531,32.8680763244629,-344.962768554688,13.3262939453125,38.9238395690918,-323.797637939453,-5.99880981445313,34.2602920532227,-294.235107421875,-21.729248046875,23.4756011962891,-276.808532714844,-31.7509155273438,40.2874717712402,-324.457458496094,-10.8402709960938,39.161060333252,-344.654357910156,15.6005249023438,28.9994983673096,-362.876190185547,20.8406066894531,24.9734134674072,-362.167846679688,20.3966064453125,11.2004489898682,-377.863708496094,33.8081665039063,29.4168224334717,-360.348175048828,24.0541687011719,25.3910503387451,-359.640991210938,23.6099853515625,32.652400970459,-344.084838867188,11.4307861328125,25.9003887176514,-340.196441650391,19.0193786621094,34.7325744628906,-338.463745117188,11.3311767578125,17.3158073425293,-340.762298583984,27.5824279785156,18.6137580871582,-337.134246826172,28.7739562988281,
- 6.8246169090271,-339.743804931641,30.8030700683594,35.242431640625,-344.247100830078,14.7450866699219,4.4922890663147,-342.770355224609,34.0919494628906,-26.3466682434082,-374.174194335938,28.5748291015625,-14.0422515869141,-378.488708496094,44.8511352539063,-24.6075248718262,-371.398651123047,29.4421691894531,-13.1977643966675,-384.042236328125,45.3513488769531,-0.204952239990234,-396.332275390625,60.864990234375,-22.2015037536621,-374.169311523438,26.1099853515625,-11.9434852600098,-379.328552246094,42.7554321289063,-15.2296533584595,-347.476043701172,-32.1449890136719,-13.1225357055664,-348.546356201172,-34.3901062011719,-22.9392051696777,-361.812591552734,-28.7452087402344,-31.3443183898926,-378.10205078125,-17.82177734375,-31.1294078826904,-376.828399658203,-14.7756652832031,-34.9308853149414,-388.541198730469,-3.33807373046875,-26.4236450195313,-374.663391113281,-17.4231567382813,-8.90554809570313,-349.825012207031,-30.2380981445313,-34.0015525817871,-386.262145996094,-0.52093505859375,-35.248722076416,-406.972564697266,7.76571655273438,-34.7356872558594,-409.250610351563,6.3802490234375,-36.7246017456055,-426.275787353516,8.07284545898438,-33.6058540344238,-406.890472412109,7.95034790039063,-32.4024925231934,-388.249053955078,-3.15725708007813,-25.0863819122314,-372.552154541016,-22.8802795410156,-8.77883243560791,4.07056427001953,-70.7536697387695,-16.8280487060547,5.80077362060547,-69.4189682006836,-13.9728841781616,5.0791130065918,-61.0136833190918,-6.41379499435425,2.73711395263672,-60.3312339782715,-4.12073040008545,-5.41917419433594,-68.3801116943359,-7.92962455749512,-13.6677856445313,-58.6677856445313,-14.5583744049072,-27.890625,-61.177734375,-25.329231262207,-53.423095703125,-58.018798828125,-17.6717586517334,2.01938629150391,-74.6232147216797,-24.8263721466064,-55.6140747070313,-63.1638793945313,-37.2734069824219,-74.6820831298828,-44.9067077636719,-25.0533752441406,-45.3827972412109,-74.8251800537109,-39.9626770019531,-84.5234832763672,-50.3379440307617,-36.4159812927246,-98.3284301757813,-25.3469924926758,
- -36.085090637207,-90.4978713989258,-22.2918243408203,-50.2522926330566,-77.3018188476563,-54.5156860351563,-38.2658386230469,-120.747261047363,-9.84004974365234,-30.5701599121094,-131.213897705078,3.08688354492188,-25.0666980743408,-158.733520507813,15.2498626708984,-50.9010887145996,-90.3075103759766,-39.1854476928711,-33.4681282043457,-43.3266143798828,-71.8676452636719,-51.0165596008301,-72.5401611328125,-47.1963958740234,-34.1546096801758,-40.3460159301758,-64.5227813720703,-18.497875213623,2.01353073120117,-59.7872314453125,-17.4783267974854,-16.4235191345215,-58.6920700073242,-31.3278198242188,-50.3239135742188,-56.4069213867188,-45.0597801208496,-73.0956573486328,-41.1532745361328,-45.6698303222656,-92.5348358154297,-14.9147338867188,-51.3888092041016,-101.408325195313,-14.5499267578125,-34.3290634155273,-125.817848205566,8.90870666503906,-47.3238334655762,-116.154342651367,-10.0264205932617,-38.5734748840332,-152.237762451172,25.0278472900391,-37.3985176086426,-158.495697021484,17.0101623535156,-23.0492649078369,-154.213745117188,22.2764739990234,-27.8408756256104,-155.845001220703,28.7253265380859,3.64945435523987,-185.333969116211,40.0410308837891,-7.82984972000122,-182.798049926758,31.5642700195313,2.51734828948975,-195.108154296875,35.042236328125,1.20339143276215,-184.818710327148,48.4801025390625,23.3936882019043,-200.04280090332,28.7101440429688,17.9796352386475,-208.296142578125,26.182373046875,-6.26235151290894,-192.163818359375,44.7473297119141,24.6219711303711,-206.670516967773,35.6009674072266,33.0750961303711,-216.180526733398,10.0235595703125,28.44580078125,-221.42707824707,12.1090545654297,40.580680847168,-217.41633605957,13.0426330566406,33.4492301940918,-228.278717041016,-7.02285766601563,31.4602127075195,-239.218505859375,-6.328857421875,36.5871658325195,-223.70588684082,16.6818084716797,21.4733409881592,-264.610687255859,-27.3548278808594,20.498462677002,-276.285308837891,-23.6310119628906,6.21241092681885,-297.712158203125,-30.442626953125,41.4484100341797,-237.605499267578,-9.06059265136719,
- 29.8776741027832,-263.065490722656,-29.0742797851563,-4.86330509185791,-306.510131835938,-35.7572021484375,-4.93042278289795,-321.984130859375,-31.860107421875,-0.979690730571747,-308.394378662109,-41.0467224121094,-15.7173013687134,-350.101745605469,-30.0031127929688,-11.8461866378784,-358.942749023438,-30.8109130859375,-16.8521671295166,-349.650054931641,-36.1100158691406,-15.9398746490479,-385.571014404297,-31.0133972167969,-11.4576215744019,-371.407623291016,-32.7152404785156,-13.6506824493408,-390.463806152344,-28.9589233398438,-28.1545543670654,-421.802368164063,-21.0972900390625,-31.2877540588379,-421.171295166016,-21.6859436035156,-28.9019870758057,-425.516357421875,-22.899169921875,-16.6248149871826,-386.223907470703,-34.7776184082031,-12.6165113449097,-386.094177246094,-34.4320678710938,-13.024338722229,-356.383666992188,-36.4910583496094,1.41447985172272,-310.131561279297,-39.8913269042969,2.16327261924744,-309.309692382813,-33.9346923828125,26.7075099945068,-277.55078125,-27.2822265625,35.2606163024902,-243.724807739258,-6.86932373046875,19.8974857330322,-211.744400024414,30.3268890380859,-4.95469760894775,-192.245803833008,37.8137512207031,-30.5627059936523,-158.128295898438,12.7125091552734,-29.1187553405762,-291.571838378906,-10.6616821289063,-35.5213584899902,-293.600311279297,-12.2770690917969,-24.273120880127,-304.952026367188,-18.4285888671875,-13.7302274703979,-320.63525390625,-35.86669921875,-17.4318008422852,-321.997161865234,-39.2207946777344,-4.92689228057861,-339.555145263672,-41.5727233886719,-3.0227530002594,-336.858459472656,-38.2393188476563,12.9848136901855,-354.350250244141,-30.7857971191406,-18.9351119995117,-315.994995117188,-39.3231201171875,-30.9578819274902,-284.895233154297,-15.8571472167969,-3.17408394813538,-336.347106933594,-45.1673889160156,12.2089147567749,-356.763000488281,-36.9065551757813,28.884464263916,-361.113800048828,-21.6919250488281,-22.4534797668457,-301.792327880859,-22.8636169433594,-11.3838891983032,-318.261993408203,-39.6282043457031,-0.767802119255066,-334.217651367188,-41.6024169921875,
- 16.364688873291,-352.901702880859,-33.0247497558594,32.5522537231445,-360.753051757813,-24.9835205078125,28.6541213989258,-363.860961914063,-24.1588134765625,35.9597969055176,-371.909423828125,-9.957275390625,33.2744216918945,-372.506317138672,-8.99166870117188,31.9620094299316,-386.202362060547,4.27517700195313,34.0448837280273,-376.275817871094,-11.3265991210938,0.422241926193237,9.51969909667969,-68.3074417114258,-12.7147274017334,7.99904632568359,-69.2265090942383,-6.21042394638062,6.52592849731445,-61.085376739502,-8.10046672821045,10.4922561645508,-76.9745407104492,-12.1100292205811,-8.82098388671875,-82.3864135742188,-0.134014129638672,-10.2647094726563,-75.3350219726563,-5.70065975189209,-12.2815551757813,-62.7444458007813,-7.7643780708313,-41.7744750976563,-74.4424438476563,-7.54560661315918,-41.9794311523438,-62.2880249023438,-17.6764297485352,-10.8379516601563,-69.7949829101563,-19.7672805786133,-42.9806518554688,-75.9572143554688,-19.548412322998,-43.185302734375,-63.804443359375,-19.7701435089111,-78.4237060546875,-53.7899169921875,-26.3776111602783,-93.741455078125,-60.6438064575195,-27.1277332305908,-100.287078857422,-42.1855163574219,-35.1705551147461,-85.6853637695313,-61.5916290283203,-33.7555656433105,-86.1136779785156,-48.4320297241211,-53.5557556152344,-112.122619628906,-31.1187210083008,-45.7435150146484,-119.897842407227,-33.4447174072266,-38.1561393737793,-119.357398986816,-23.5614929199219,-46.2867584228516,-112.027984619141,-19.217414855957,-42.5452690124512,-130.233642578125,-4.011962890625,-53.3258361816406,-133.613098144531,-5.03009033203125,-58.1600723266602,-125.536560058594,1.30133056640625,-45.2435531616211,-126.659980773926,17.8537063598633,-39.0996475219727,-137.201049804688,16.6553955078125,-46.0106735229492,-141.539581298828,24.4399108886719,-31.456579208374,-143.688354492188,24.2735595703125,-51.8905792236328,-130.489410400391,24.7273864746094,-32.8545265197754,-142.031646728516,41.5201110839844,-26.6145629882813,-138.614624023438,35.2906494140625,-18.0421581268311,-153.394500732422,29.4795227050781,
- -18.0432415008545,-160.760726928711,37.6758117675781,-2.77415704727173,-162.622314453125,29.641357421875,-4.54030513763428,-156.672485351563,44.7816162109375,11.8642492294312,-156.770935058594,35.7378540039063,14.525182723999,-168.496917724609,26.8966369628906,23.6303234100342,-175.117095947266,33.1592864990234,27.5964241027832,-182.674667358398,18.8966369628906,19.1986026763916,-162.334411621094,41.3491821289063,38.9390106201172,-179.082336425781,27.5553588867188,36.7721138000488,-177.996856689453,18.9777526855469,38.7620124816895,-215.858856201172,2.64797973632813,42.3304100036621,-215.815277099609,9.27651977539063,51.318675994873,-230.025695800781,0.00067138671875,47.0444526672363,-230.546966552734,-6.37800598144531,40.8730125427246,-236.393188476563,-4.27601623535156,44.1851348876953,-240.208755493164,0.521713256835938,48.4064788818359,-271.633728027344,-0.86907958984375,45.669319152832,-272.383666992188,-4.5828857421875,41.8036880493164,-273.021301269531,-2.08380126953125,44.6562461853027,-272.643463134766,1.52157592773438,35.447582244873,-298.022491455078,6.49996948242188,38.5821723937988,-300.840698242188,5.5001220703125,35.7134170532227,-321.979431152344,6.52252197265625,40.6613616943359,-300.517059326172,8.51712036132813,36.0990295410156,-309.789215087891,10.8396911621094,39.4299392700195,-336.59814453125,7.23876953125,40.0128326416016,-329.110992431641,6.94760131835938,48.6827774047852,-354.229522705078,8.29586791992188,41.2525939941406,-336.143371582031,4.87030029296875,-30.6379089355469,-459.401397705078,-18.4902648925781,-27.3946933746338,-458.300415039063,-18.7144775390625,-16.7693786621094,-468.290435791016,-29.2455139160156,-34.0247802734375,-452.675964355469,0.51055908203125,-37.4453964233398,-452.619964599609,6.50698852539063,-29.6437072753906,-446.953704833984,13.3773498535156,-18.8743591308594,-440.807250976563,26.3782958984375,-22.4866256713867,-444.841094970703,30.1755065917969,-29.5823364257813,-461.161193847656,-17.0020141601563,-34.6073188781738,-456.090698242188,7.7677001953125,-17.1153259277344,-444.917541503906,26.9066772460938,
- -32.2758407592773,-454.874938964844,4.46783447265625,-27.2377109527588,-149.502136230469,23.4578247070313,-24.5472831726074,-177.237243652344,20.7715454101563,-29.3845558166504,-151.790771484375,13.634033203125,-21.3730907440186,-178.172714233398,30.5519104003906,-5.93628120422363,-203.548645019531,28.5656280517578,-29.4872817993164,-181.303405761719,31.4006958007813,-37.1943321228027,-148.510375976563,24.4310302734375,-39.3427276611328,-150.7998046875,14.609375,9.56068706512451,-221.270629882813,37.1072845458984,6.01530075073242,-224.174545288086,29.094970703125,-32.2358283996582,-181.225891113281,22.0709838867188,3.55659437179565,-223.052337646484,39.3587951660156,-6.94517135620117,-214.971084594727,32.0992279052734,7.05696725845337,-236.019226074219,28.3821411132813,14.7198333740234,-253.454559326172,26.5718078613281,20.3110122680664,-273.049041748047,30.5954895019531,21.8555374145508,-276.651092529297,21.9416809082031,28.1570148468018,-305.615295410156,11.1864624023438,30.7196559906006,-302.247497558594,7.76031494140625,31.7628536224365,-318.465850830078,-5.96487426757813,27.4886226654053,-275.049743652344,29.8340148925781,27.574634552002,-336.577209472656,-16.1690063476563,29.7109451293945,-334.336791992188,-18.8572998046875,26.06422996521,-354.838409423828,-22.8706359863281,27.0722713470459,-376.194793701172,-25.4858093261719,32.2863121032715,-308.734191894531,12.2238159179688,26.3341884613037,-372.864532470703,-20.8576965332031,31.4166584014893,-396.273193359375,-33.986083984375,31.456371307373,-337.949188232422,-13.8632507324219,28.1244163513184,-367.698760986328,-22.8833312988281,34.5269393920898,-332.402191162109,-15.0838317871094,34.7936935424805,-303.015228271484,11.2904357910156,27.3416996002197,-273.544311523438,23.8297119140625,15.6907062530518,-240.67301940918,29.6834411621094,6.62485456466675,-223.246368408203,33.1061706542969,18.0058212280273,-233.567016601563,22.8656005859375,3.03125047683716,-227.031372070313,32.2967529296875,23.5492115020752,-230.803726196289,25.9198913574219,6.70768070220947,-228.798324584961,38.3950347900391,
- 30.9330081939697,-242.368896484375,15.665283203125,27.7201328277588,-245.443481445313,15.1014404296875,19.0083179473877,-236.355407714844,26.8164672851563,30.9026298522949,-247.183975219727,20.1285095214844,32.1284790039063,-262.678192138672,0.878448486328125,31.5584774017334,-258.9130859375,0.3701171875,28.4096050262451,-267.826232910156,-15.7822875976563,36.2858123779297,-261.126525878906,0.90863037109375,35.1083869934082,-257.982177734375,-1.211669921875,33.0615692138672,-273.955688476563,-25.9322509765625,29.5291347503662,-275.5771484375,-27.1376953125,30.8865032196045,-277.462524414063,-25.2310791015625,30.0886611938477,-291.790893554688,-34.4715576171875,33.2205238342285,-290.604919433594,-32.4642944335938,32.8727874755859,-306.743957519531,-36.3445434570313,31.7885684967041,-287.675354003906,-35.4194946289063,-7.21686220169067,-344.7646484375,35.1376953125,3.90440583229065,-307.030395507813,31.5819091796875,-0.645700931549072,-327.676055908203,32.6589050292969,5.23295211791992,-304.643493652344,36.2315063476563,19.2238483428955,-290.516693115234,26.6131896972656,1.90271818637848,-329.491821289063,34.4466552734375,-7.07919549942017,-348.937530517578,35.2304382324219,18.4965209960938,-289.227630615234,30.1669006347656,23.4131908416748,-278.556915283203,23.2223815917969,24.9170188903809,-277.116027832031,28.5988464355469,7.03636312484741,-308.235260009766,32.2940368652344,23.0561466217041,-292.268432617188,29.6143798828125,27.0765895843506,-280.311645507813,24.0067138671875,-28.3659629821777,-280.77197265625,-16.60009765625,-38.5766487121582,-255.306518554688,-9.2039794921875,-30.181941986084,-253.059875488281,-9.03643798828125,-35.5697059631348,-282.262847900391,-16.7667541503906,-28.9935340881348,-306.159698486328,-15.5757141113281,-35.0990257263184,-282.158233642578,-9.50100708007813,-37.276782989502,-258.172119140625,-1.582275390625,-37.6666145324707,-306.261169433594,-15.9535522460938,-30.8822860717773,-321.889862060547,-6.38790893554688,-30.5987815856934,-347.934448242188,5.5821533203125,-38.0523071289063,-302.962310791016,-9.02188110351563,
- -28.7663669586182,-293.406951904297,-10.9899597167969,-28.8811988830566,-255.926300048828,-1.41458129882813,-31.429141998291,-345.398101806641,10.9309997558594,-21.1733016967773,-374.699737548828,25.9789733886719,-37.2740898132324,-346.061706542969,9.84161376953125,-21.8963890075684,-372.242248535156,30.1044311523438,-36.4439506530762,-348.59912109375,4.49072265625,-26.1180648803711,-374.637664794922,30.4541320800781,-25.3947944641113,-377.094970703125,26.328857421875,-12.8991165161133,-398.707153320313,40.6649169921875,-8.49339866638184,-397.558532714844,40.5840454101563,-7.63786125183105,-400.565673828125,37.281005859375,-12.5143852233887,-400.596862792969,36.8621520996094,-4.5607590675354,-432.654174804688,36.4376220703125,-5.16754770278931,-439.684753417969,37.5564575195313,6.46320724487305,-454.647796630859,38.4078674316406,-3.19909405708313,-435.752685546875,39.003173828125,30.4838256835938,-124.8291015625,-37.7353515625,29.0018310546875,-127.734252929688,-16.3211669921875,22.6350021362305,-122.848449707031,-35.2019653320313,39.185359954834,-136.128631591797,-1.12667846679688,29.3359069824219,-138.976318359375,7.397705078125,42.8438606262207,-128.240234375,0.0263519287109375,29.6452388763428,-112.812080383301,-37.1626586914063,23.5188045501709,-160.505706787109,39.8370666503906,17.7390327453613,-159.995040893555,38.4366149902344,25.2495727539063,-154.561157226563,42.6253814697266,31.6548156738281,-120.200286865234,-14.8223571777344,31.8765563964844,-132.139495849609,11.1105041503906,18.824333190918,-153.414901733398,40.7325744628906,-0.710384726524353,-177.788497924805,54.7505798339844,2.62393188476563,-168.479064941406,49.6010131835938,5.26544189453125,-170.332855224609,44.5001525878906,-9.73376274108887,-182.503280639648,42.0904846191406,-13.9253568649292,-181.498306274414,46.945068359375,-27.3486633300781,-205.147064208984,32.8802795410156,-33.8345947265625,-226.205322265625,33.631591796875,-30.143798828125,-204.914276123047,35.9753723144531,-27.0738296508789,-205.515777587891,38.6180267333984,-23.7644023895264,-203.922561645508,35.9875946044922,
- 3.43556046485901,-178.059997558594,48.9907684326172,22.44677734375,-400.461791992188,25.4610595703125,7.91830444335938,-409.319610595703,31.0817565917969,0.360807597637177,-409.306304931641,34.0667419433594,20.2352027893066,-393.500213623047,30.7712707519531,-3.67257690429688,-421.562164306641,30.4495544433594,0.254040002822876,-410.861389160156,39.4589233398438,24.6142883300781,-400.832763671875,31.200439453125,-21.3756408691406,-440.765014648438,26.3619384765625,-17.4067993164063,-443.694213867188,25.5479736328125,2.71335291862488,-415.097045898438,37.2565002441406,-22.8689880371094,-442.772369384766,30.6895446777344,-18.900390625,-445.701446533203,29.8757019042969,-25.3793029785156,-471.089141845703,15.6413269042969,-32.0599670410156,-469.838928222656,18.8368530273438,-29.4632263183594,-468.367431640625,14.866943359375,-27.9772644042969,-472.560943603516,19.6119079589844,-39.0458984375,-484.017700195313,2.8680419921875,-35.7151794433594,-480.030944824219,1.89288330078125,-32.8896751403809,-482.446380615234,2.96377563476563,-35.7875862121582,-486.658386230469,3.19512939453125,-26.9247741699219,-491.324890136719,-14.5036010742188,-30.9502582550049,-489.493377685547,-11.7189636230469,-15.4396362304688,-491.110595703125,-31.1193542480469,-28.4716606140137,-494.048950195313,-18.1123962402344,21.6856536865234,-518.669799804688,-39.9285888671875,39.2357025146484,-498.297393798828,-17.9380187988281,31.6936645507813,-507.203735351563,-28.7808837890625,38.1027793884277,-492.812561035156,-19.1660766601563,20.931282043457,-525.016357421875,-42.0114135742188,35.8883514404297,-472.030426025391,-10.3937072753906,33.6349029541016,-470.608062744141,-12.3121643066406,29.9049835205078,-443.389007568359,7.96743774414063,32.7208366394043,-444.201507568359,11.9479064941406,29.4819183349609,-425.329833984375,11.091064453125,33.7128639221191,-424.365142822266,16.7149353027344,38.0088119506836,-469.349334716797,-11.5563659667969,36.4756774902344,-441.541137695313,9.9139404296875,34.1245422363281,-423.752563476563,10.1781005859375,33.8530883789063,-441.775848388672,6.19973754882813,
- 37.1981048583984,-470.160339355469,-14.6271362304688,42.9108009338379,-498.02783203125,-21.4975891113281,23.3954925537109,-519.088500976563,-41.1168212890625,46.8859634399414,-211.205307006836,5.43043518066406,22.5995216369629,-224.644546508789,-26.0000152587891,40.5171813964844,-213.780944824219,7.22589111328125,19.6377201080322,-229.675918579102,-24.0225830078125,28.5094776153564,-227.571411132813,-27.7481689453125,43.4412574768066,-218.559875488281,5.77117919921875,4.72324180603027,-248.641204833984,-37.5865173339844,9.9500560760498,-244.660125732422,-29.9843444824219,-5.02046680450439,-255.986968994141,-32.4049377441406,24.6863288879395,-231.909545898438,-25.6409912109375,12.8073921203613,-246.356994628906,-31.9732055664063
- }
- PolygonVertexIndex: *2637 {
- a: 0,1,-3,1,0,-4,3,4,-2,3,5,-5,5,3,-7,7,5,-7,5,8,-5,8,1,-5,1,8,-3,7,9,-6,9,7,-11,8,5,-12,11,5,-10,8,0,-3,11,0,-9,12,9,-11,10,13,-13,9,14,-12,9,12,-15,0,11,-16,14,15,-12,6,3,-1,0,15,-7,15,7,-7,7,15,-11,16,10,-16,15,14,-17,10,16,-14,13,16,-18,16,14,-19,12,18,-15,19,17,-17,16,18,-20,17,19,-21,21,20,-20,18,12,-23,13,22,-13,22,13,-18,19,18,-24,22,23,-19,21,19,-25,24,19,-24,25,21,-25,26,25,-25,17,27,-23,23,22,-28,27,17,-21,21,27,-21,27,21,-29,23,27,-29,28,21,-26,29,23,-29,23,29,-25,30,28,-26,30,29,-29,25,26,-31,31,30,-27,32,24,-30,29,30,-33,30,31,-34,32,30,-34,31,34,-34,24,32,-36,24,35,-27,26,35,-32,35,34,-32,32,36,-36,34,35,-37,37,32,-34,36,32,-38,33,34,-39,38,37,-34,38,34,-40,40,36,-38,37,38,-41,41,34,-37,36,40,-42,34,41,-40,39,42,-39,38,42,-41,42,39,-44,44,42,-44,45,41,-41,42,45,-41,46,39,-42,41,45,-47,39,46,-44,46,44,-44,47,45,-43,42,44,-48,48,46,-46,48,45,-48,49,44,-47,46,48,-50,44,49,-51,49,51,-51,52,47,-45,47,52,-49,52,44,-51,51,49,-54,53,54,-52,55,52,-51,55,48,-53,55,50,-52,54,55,-52,56,49,-49,48,55,-57,49,56,-54,57,55,-55,57,56,-56,57,54,-59,59,53,-57,53,59,-55,58,54,-60,56,57,-61,59,56,-61,59,61,-59,59,60,-62,61,62,-59,63,60,-58,63,57,-59,61,64,-63,64,65,-63,58,66,-64,66,60,-64,66,58,-63,67,61,-61,60,66,-68,61,67,-65,62,68,-67,68,67,-67,68,62,-66,65,69,-69,70,64,-68,67,68,-71,68,69,-72,71,70,-69,71,69,-73,64,70,-74,65,64,-74,73,69,-66,74,70,-72,70,74,-74,72,74,-72,69,73,-75,72,69,-75,75,76,-78,78,76,-76,77,78,-76,78,77,-77,79,80,-82,80,79,-83,79,83,-83,79,81,-84,82,83,-85,81,84,-84,81,80,-85,85,86,-88,86,88,-88,89,87,-89,87,89,-91,89,88,-92,91,90,-90,90,91,-93,90,92,-86,88,92,-92,86,85,-93,92,88,-87,93,94,-96,95,94,-97,94,97,-97,95,96,-99,97,99,-97,97,100,-100,101,98,-97,100,102,-100,100,103,-103,104,96,-100,96,104,-102,104,99,-103,105,98,-102,98,105,-107,104,107,-102,101,107,-106,106,105,-95,106,94,-94,107,94,-106,94,107,-98,97,107,-101,107,103,-101,104,108,-108,103,107,-109,108,104,-103,109,103,-109,103,109,-111,109,111,-111,112,109,-109,111,109,-113,102,112,-109,111,112,-114,112,102,-114,111,
- 113,-111,103,113,-103,113,103,-111,114,115,-117,117,115,-115,118,115,-118,117,119,-119,120,117,-115,119,117,-122,118,117,-121,118,121,-118,118,119,-122,118,120,-117,116,115,-119,122,123,-125,123,122,-126,123,125,-127,125,122,-128,125,128,-127,125,127,-129,128,123,-127,124,128,-128,128,124,-124,129,130,-132,131,132,-130,129,132,-134,132,134,-134,135,129,-134,129,135,-137,137,133,-135,133,137,-136,134,138,-138,138,134,-140,138,139,-141,141,138,-141,141,137,-139,139,141,-141,137,141,-143,141,139,-143,142,135,-138,134,142,-140,132,142,-135,135,142,-144,142,132,-144,136,135,-144,132,131,-144,136,143,-131,131,130,-144,144,145,-147,144,146,-148,147,148,-145,149,148,-148,150,148,-150,151,148,-151,152,144,-149,152,145,-145,148,151,-154,154,153,-152,155,148,-154,152,148,-156,153,154,-157,153,156,-156,154,157,-157,157,154,-159,159,155,-157,157,158,-161,161,160,-159,161,162,-161,156,157,-164,159,156,-164,160,163,-158,155,159,-165,164,152,-156,165,164,-160,163,165,-160,166,152,-165,164,165,-167,167,145,-153,152,166,-168,167,146,-146,167,147,-147,167,168,-148,168,167,-167,147,168,-150,168,150,-150,168,151,-151,151,168,-170,166,169,-169,169,154,-152,166,170,-170,154,169,-171,170,166,-166,158,154,-171,171,170,-166,170,171,-159,165,172,-172,165,163,-173,173,158,-172,161,158,-174,172,163,-175,163,160,-175,175,171,-173,172,174,-176,171,175,-174,160,176,-175,174,176,-176,173,177,-162,177,162,-162,177,173,-179,175,178,-174,177,179,-163,178,179,-178,162,179,-181,180,179,-182,182,178,-176,179,178,-183,183,181,-180,183,179,-183,181,183,-185,182,175,-186,176,185,-176,183,182,-187,186,182,-186,183,187,-185,188,184,-188,189,183,-187,183,189,-188,187,190,-189,189,190,-188,191,188,-191,189,186,-193,193,191,-191,194,191,-194,193,195,-195,189,196,-191,196,189,-193,193,190,-198,196,197,-191,195,193,-199,198,199,-196,200,193,-198,193,200,-199,198,201,-200,202,199,-202,200,203,-199,201,198,-204,201,204,-203,203,204,-202,202,204,-206,204,206,-206,204,207,-207,207,204,-209,209,207,-209,210,208,-205,210,209,-209,204,203,-211,209,210,-212,209,211,-208,
- 206,207,-212,205,206,-212,210,212,-212,211,212,-206,212,210,-204,202,205,-213,203,213,-213,213,202,-213,213,203,-201,200,197,-214,214,202,-214,202,214,-200,199,214,-196,214,194,-196,215,213,-198,213,215,-215,214,215,-195,197,196,-216,215,216,-195,215,196,-217,191,194,-217,216,196,-193,216,188,-192,188,216,-193,192,217,-189,217,192,-187,184,188,-218,186,185,-218,217,218,-185,218,217,-186,184,218,-182,185,176,-219,181,218,-181,219,218,-177,218,219,-181,176,160,-220,162,180,-220,219,160,-163,220,221,-223,221,223,-223,223,221,-225,225,223,-225,223,225,-227,225,227,-227,228,224,-222,228,221,-230,225,224,-231,228,230,-225,227,225,-232,230,231,-226,231,232,-228,228,229,-234,220,233,-230,233,220,-223,223,233,-223,228,233,-235,233,223,-235,230,228,-235,235,234,-224,234,235,-231,223,226,-236,227,235,-227,236,230,-236,236,235,-228,230,236,-232,227,232,-237,237,231,-237,236,232,-238,238,231,-238,232,231,-239,232,239,-238,239,232,-241,239,240,-242,237,242,-239,242,237,-240,238,242,-233,242,239,-242,240,232,-243,240,242,-242,243,244,-246,244,243,-247,244,246,-248,247,246,-249,248,246,-244,245,248,-244,248,245,-250,249,250,-249,247,248,-251,250,249,-252,252,244,-248,244,252,-246,245,252,-250,252,251,-250,253,247,-251,247,253,-253,251,252,-255,254,252,-254,254,255,-252,250,256,-254,251,256,-251,256,251,-256,256,255,-258,253,258,-255,258,253,-257,255,254,-260,259,254,-259,257,255,-260,256,260,-259,258,260,-260,257,261,-257,260,256,-262,261,257,-263,257,259,-264,259,260,-264,262,257,-264,263,264,-263,262,265,-262,265,260,-262,265,262,-265,266,263,-261,260,265,-267,264,263,-268,266,267,-264,267,268,-265,264,269,-266,269,266,-266,269,264,-269,269,268,-271,267,266,-272,266,269,-272,271,272,-268,271,269,-273,268,267,-274,273,267,-273,268,273,-271,273,274,-271,270,275,-270,272,269,-276,275,270,-275,275,274,-277,272,277,-274,275,277,-273,273,278,-275,273,277,-279,274,278,-277,278,279,-277,276,280,-276,280,277,-276,280,276,-280,280,279,-282,277,282,-279,277,280,-283,282,283,-279,283,282,-281,284,279,-279,284,278,-284,279,284,-282,284,285,
- -282,281,286,-281,280,286,-284,286,281,-286,283,287,-285,286,287,-284,285,284,-289,288,284,-288,288,289,-286,285,290,-287,287,286,-291,290,285,-290,291,288,-288,290,291,-288,292,289,-289,288,291,-293,293,289,-293,289,294,-291,291,290,-295,294,289,-294,293,295,-295,293,292,-297,291,296,-293,295,293,-297,296,297,-296,294,298,-292,296,291,-299,294,295,-300,298,294,-300,299,295,-298,297,300,-300,301,296,-299,298,299,-302,299,300,-302,296,301,-298,301,300,-303,297,301,-304,303,301,-303,300,297,-304,300,303,-303,304,305,-307,307,305,-305,304,308,-308,308,309,-308,308,310,-310,310,308,-312,308,304,-313,312,304,-307,305,312,-307,311,308,-314,312,313,-309,313,314,-312,315,312,-306,312,315,-314,314,313,-316,305,307,-316,315,307,-310,314,315,-310,309,310,-315,316,317,-319,317,316,-320,319,320,-318,316,321,-320,322,321,-317,323,321,-323,324,320,-320,320,324,-326,321,323,-327,318,326,-324,326,318,-318,327,319,-322,319,327,-325,326,328,-322,317,328,-327,328,327,-322,328,317,-321,325,328,-321,325,329,-329,330,328,-330,328,330,-332,328,331,-328,331,330,-333,331,332,-334,332,334,-334,335,333,-335,336,327,-332,333,336,-332,337,333,-336,338,337,-336,339,337,-339,340,337,-340,341,333,-338,336,333,-342,337,340,-343,340,343,-343,344,337,-343,341,337,-345,342,343,-346,345,344,-343,345,343,-341,345,340,-340,344,345,-347,339,346,-346,346,341,-345,346,339,-339,346,338,-336,346,347,-342,335,347,-347,336,341,-348,347,335,-335,334,348,-348,348,336,-348,348,334,-333,336,348,-350,332,349,-349,349,327,-337,349,332,-331,327,349,-325,349,330,-330,349,325,-325,325,349,-330,350,351,-353,351,350,-354,350,354,-354,355,351,-354,351,355,-357,353,354,-358,352,357,-355,357,352,-352,356,357,-352,357,358,-354,358,357,-357,355,353,-359,356,359,-359,359,356,-361,360,361,-360,362,355,-359,362,358,-360,355,363,-357,355,362,-364,360,356,-364,363,361,-361,362,364,-364,361,363,-365,362,359,-365,364,365,-362,361,366,-360,359,366,-365,366,361,-366,367,366,-366,366,367,-369,366,368,-365,368,367,-370,364,370,-366,370,364,-369,368,369,-371,367,365,-371,369,367,-371,371,
- 372,-374,372,371,-375,374,375,-373,374,371,-377,376,371,-378,375,374,-379,378,379,-376,379,378,-381,377,373,-377,373,377,-372,373,381,-377,376,381,-375,381,373,-373,372,375,-382,382,374,-382,382,381,-376,378,374,-383,382,380,-379,380,382,-384,375,383,-383,383,375,-380,384,385,-387,387,385,-385,388,387,-385,389,385,-388,385,389,-391,391,387,-389,392,391,-389,393,391,-393,387,394,-390,394,387,-392,395,390,-390,395,389,-395,390,395,-397,395,386,-397,384,386,-396,384,395,-389,395,392,-389,397,392,-396,394,397,-396,392,397,-394,397,398,-394,397,394,-400,391,399,-395,398,397,-401,399,391,-402,401,391,-394,399,402,-398,400,397,-403,401,403,-400,393,403,-402,403,402,-400,403,393,-399,404,400,-403,403,404,-403,400,405,-399,400,404,-406,398,405,-407,398,407,-404,404,403,-408,407,398,-407,408,407,-407,408,409,-408,407,409,-405,409,408,-411,409,411,-405,411,409,-411,404,411,-406,411,406,-406,408,411,-411,406,411,-409,412,413,-415,413,412,-416,413,415,-417,412,417,-416,417,412,-419,419,416,-416,416,419,-421,417,421,-416,419,415,-422,418,422,-418,414,422,-419,422,414,-414,417,422,-424,413,423,-423,421,417,-424,423,413,-417,416,424,-424,423,424,-422,416,420,-425,425,421,-425,425,419,-422,426,424,-421,425,424,-427,420,427,-427,426,427,-429,429,426,-429,425,426,-430,430,429,-429,430,431,-433,432,429,-431,429,432,-434,425,429,-434,432,431,-434,433,431,-435,434,425,-434,434,431,-431,434,430,-429,425,434,-436,435,434,-429,419,425,-436,428,427,-436,435,420,-420,420,435,-428,436,437,-439,438,439,-437,438,437,-441,439,438,-442,441,442,-440,443,438,-441,443,441,-439,443,440,-445,442,441,-446,445,436,-443,436,445,-438,445,440,-438,445,444,-441,446,445,-442,441,443,-447,444,445,-448,445,446,-448,447,448,-445,443,449,-447,449,447,-447,450,443,-445,449,443,-451,450,444,-449,447,449,-452,448,447,-452,450,452,-450,452,451,-450,453,450,-449,452,450,-454,453,448,-455,455,448,-452,451,452,-456,448,455,-455,455,456,-455,453,454,-458,457,452,-454,456,457,-455,458,457,-457,452,459,-456,452,457,-460,455,459,-457,458,459,-458,458,456,-460,460,461,-463,
- 462,461,-464,461,460,-465,465,463,-462,463,465,-467,467,466,-466,465,468,-468,468,469,-468,468,470,-470,461,471,-466,468,465,-472,470,468,-473,471,472,-469,472,473,-471,473,472,-475,474,472,-472,474,469,-474,469,474,-468,475,467,-475,475,474,-472,467,475,-467,475,463,-467,475,471,-477,476,463,-476,471,461,-477,464,476,-462,463,476,-463,477,476,-465,477,462,-477,477,464,-461,462,477,-461,478,479,-481,480,479,-482,479,478,-483,483,482,-479,481,479,-485,482,484,-480,485,481,-485,484,486,-486,482,483,-488,487,484,-483,480,487,-484,487,480,-482,486,484,-489,484,487,-489,481,488,-488,485,486,-489,488,481,-486
- }
- Edges: *1343 {
- a: 0,1,2,4,5,6,7,9,10,13,14,15,17,18,19,21,25,27,28,31,32,34,35,38,39,42,45,47,48,49,51,52,55,58,59,60,65,67,69,73,75,77,79,82,85,86,88,89,90,93,95,97,100,101,102,104,106,107,108,113,115,116,117,121,122,125,126,128,129,131,132,133,137,140,141,145,146,149,152,153,155,157,159,161,162,166,168,170,171,173,175,178,179,182,183,184,187,188,190,193,195,198,199,203,204,206,209,211,212,213,217,218,219,221,223,225,227,229,232,234,235,238,241,242,243,245,246,248,249,252,254,256,259,261,264,266,268,270,272,275,276,278,280,283,284,285,286,288,290,292,296,298,299,300,301,303,305,306,311,312,315,317,319,322,324,326,327,331,332,333,335,337,341,343,344,347,348,349,352,354,355,357,359,362,363,364,366,367,369,370,372,377,378,380,382,385,387,388,390,395,396,397,399,401,403,406,407,408,412,413,415,416,419,420,423,425,427,429,434,438,439,440,441,443,444,450,451,452,454,455,456,457,460,463,464,465,469,471,472,473,474,475,477,479,481,482,484,485,486,490,491,493,494,495,500,504,505,506,508,509,510,511,514,515,516,517,519,520,522,524,525,526,528,529,531,533,535,539,540,542,544,545,546,547,550,553,554,557,558,562,565,567,570,571,575,578,579,581,583,584,585,586,588,590,593,594,598,599,601,604,606,612,613,614,615,617,618,620,621,622,624,626,628,629,632,633,640,641,645,646,647,649,650,652,653,655,656,657,658,661,663,666,668,672,673,674,675,676,679,680,681,682,684,686,688,689,690,692,694,696,697,700,701,703,704,705,707,708,711,715,716,718,720,723,726,730,731,733,737,739,742,743,747,748,749,751,752,753,754,756,758,759,761,762,764,765,767,768,772,773,774,776,777,779,782,784,785,787,789,790,793,794,795,797,799,800,801,803,804,805,808,809,812,813,817,818,819,822,824,825,828,830,832,834,836,838,840,843,846,847,851,853,855,858,862,863,864,867,870,871,875,878,881,882,884,886,888,889,892,894,896,899,901,902,904,906,908,910,913,915,916,919,921,922,924,928,929,930,933,934,936,940,941,943,944,945,947,950,951,953,956,958,959,961,962,963,967,968,971,972,973,975,977,978,980,982,984,985,987,990,992,994,995,996,998,999,1001,1002,1003,1005,1006,1010,
- 1012,1013,1014,1018,1019,1020,1021,1023,1025,1027,1029,1030,1032,1034,1035,1036,1040,1041,1042,1044,1048,1049,1050,1051,1053,1054,1057,1058,1059,1061,1062,1064,1065,1069,1072,1073,1075,1079,1082,1083,1084,1087,1091,1094,1095,1096,1098,1103,1105,1107,1109,1111,1114,1116,1119,1121,1123,1126,1129,1131,1132,1135,1139,1142,1143,1148,1149,1150,1154,1157,1159,1161,1162,1166,1168,1171,1174,1176,1178,1180,1183,1187,1191,1192,1193,1194,1195,1198,1199,1200,1202,1204,1205,1206,1207,1209,1211,1213,1214,1216,1217,1218,1222,1223,1224,1227,1228,1231,1232,1233,1235,1238,1239,1243,1244,1246,1250,1251,1253,1255,1258,1260,1263,1265,1268,1270,1273,1275,1277,1279,1281,1283,1286,1287,1288,1291,1292,1294,1295,1296,1297,1301,1303,1307,1310,1314,1315,1316,1318,1319,1321,1322,1324,1325,1328,1329,1333,1334,1335,1336,1340,1342,1343,1344,1346,1348,1351,1353,1356,1358,1360,1363,1364,1367,1368,1369,1371,1372,1374,1379,1381,1382,1383,1384,1388,1390,1391,1394,1397,1398,1399,1402,1404,1405,1409,1411,1412,1414,1415,1417,1421,1422,1423,1425,1426,1428,1433,1434,1436,1438,1441,1442,1443,1446,1447,1449,1450,1452,1457,1459,1460,1462,1463,1465,1467,1468,1471,1474,1475,1478,1480,1482,1483,1485,1486,1490,1493,1495,1496,1497,1498,1500,1503,1504,1507,1510,1512,1513,1515,1516,1518,1523,1525,1526,1527,1528,1531,1533,1534,1538,1539,1541,1544,1546,1548,1549,1551,1552,1555,1559,1560,1561,1563,1567,1568,1571,1572,1573,1575,1576,1580,1583,1584,1586,1587,1590,1592,1594,1596,1598,1599,1600,1604,1607,1608,1609,1612,1613,1614,1619,1620,1621,1623,1624,1628,1630,1631,1634,1637,1638,1639,1641,1643,1645,1648,1651,1654,1655,1657,1658,1661,1664,1668,1669,1670,1671,1673,1674,1675,1677,1678,1680,1681,1684,1685,1687,1688,1691,1692,1696,1697,1698,1701,1702,1704,1706,1708,1712,1714,1718,1721,1723,1725,1726,1727,1729,1730,1731,1732,1734,1735,1737,1739,1740,1742,1743,1745,1747,1748,1750,1751,1752,1754,1757,1758,1760,1762,1764,1765,1767,1770,1775,1776,1779,1780,1782,1784,1786,1787,1789,1792,1793,1795,1796,1797,1798,1800,1802,1803,1805,1806,1809,1811,1812,1814,1815,1817,1818,1820,1821,
- 1823,1826,1828,1829,1830,1831,1833,1835,1838,1840,1841,1842,1847,1850,1852,1853,1854,1857,1862,1865,1866,1867,1869,1874,1877,1878,1879,1881,1886,1888,1889,1890,1893,1898,1900,1904,1905,1911,1912,1913,1915,1916,1917,1918,1920,1922,1924,1925,1927,1928,1929,1931,1934,1935,1938,1939,1943,1946,1947,1948,1951,1952,1953,1954,1956,1958,1961,1962,1963,1966,1970,1971,1974,1975,1979,1981,1983,1984,1986,1987,1990,1994,1995,1997,1999,2000,2002,2005,2006,2007,2008,2012,2014,2018,2022,2023,2024,2026,2027,2028,2029,2032,2033,2035,2036,2038,2039,2040,2041,2044,2045,2046,2047,2052,2053,2056,2060,2062,2064,2066,2069,2072,2073,2077,2078,2079,2084,2085,2086,2087,2088,2090,2091,2093,2094,2096,2098,2099,2100,2102,2103,2105,2106,2108,2109,2110,2114,2115,2117,2120,2122,2123,2124,2125,2129,2131,2133,2136,2138,2139,2143,2145,2146,2149,2150,2151,2155,2156,2158,2159,2162,2163,2164,2168,2169,2170,2172,2175,2180,2181,2183,2184,2187,2188,2191,2194,2195,2196,2197,2201,2204,2205,2207,2208,2209,2212,2215,2216,2217,2218,2222,2224,2226,2229,2235,2236,2237,2239,2240,2242,2243,2244,2245,2248,2249,2250,2252,2254,2255,2256,2257,2261,2262,2263,2265,2267,2270,2272,2273,2274,2279,2282,2283,2284,2287,2290,2292,2294,2295,2298,2300,2303,2304,2305,2308,2309,2310,2312,2315,2316,2318,2319,2320,2321,2322,2326,2327,2330,2332,2335,2336,2337,2342,2345,2347,2348,2351,2354,2356,2358,2364,2365,2366,2367,2368,2371,2372,2374,2375,2376,2377,2379,2381,2382,2386,2387,2389,2390,2391,2392,2395,2397,2400,2403,2405,2407,2410,2411,2413,2415,2416,2418,2419,2421,2424,2426,2429,2432,2434,2435,2438,2439,2440,2442,2445,2447,2450,2452,2453,2454,2456,2458,2461,2463,2464,2467,2468,2469,2472,2475,2477,2478,2479,2482,2485,2487,2493,2494,2495,2497,2498,2500,2501,2502,2504,2506,2507,2508,2510,2511,2512,2514,2515,2517,2518,2520,2521,2525,2527,2528,2529,2532,2533,2536,2537,2540,2541,2542,2545,2547,2549,2552,2554,2556,2560,2561,2562,2566,2568,2572,2574,2576,2577,2582,2586,2587,2588,2590,2591,2593,2594,2595,2597,2599,2600,2601,2604,2606,2607,2608,2611,2612,2613,2616,2618,2621,2623,2624,2626,2628,
- 2633
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *7911 {
- a: -0.996515274047852,-0.0549260377883911,0.0627726167440414,-0.400372684001923,0.910651624202728,0.102055780589581,-0.774056851863861,0.481810927391052,-0.41072404384613,-0.400372684001923,0.910651624202728,0.102055780589581,-0.996515274047852,-0.0549260377883911,0.0627726167440414,-0.315862745046616,0.36324217915535,0.87651914358139,-0.315862745046616,0.36324217915535,0.87651914358139,0.706561863422394,0.667308390140533,-0.235520631074905,-0.400372684001923,0.910651624202728,0.102055780589581,-0.315862745046616,0.36324217915535,0.87651914358139,0.768420696258545,0.635123193264008,0.0784102752804756,0.706561863422394,0.667308390140533,-0.235520631074905,0.768420696258545,0.635123193264008,0.0784102752804756,-0.315862745046616,0.36324217915535,0.87651914358139,-0.282903850078583,0.125735059380531,0.950871348381042,-0.141767457127571,0.267782956361771,0.952992379665375,0.768420696258545,0.635123193264008,0.0784102752804756,-0.282903850078583,0.125735059380531,0.950871348381042,0.768420696258545,0.635123193264008,0.0784102752804756,0.244268715381622,-0.0315185450017452,-0.969195246696472,0.706561863422394,0.667308390140533,-0.235520631074905,0.244268715381622,-0.0315185450017452,-0.969195246696472,-0.400372684001923,0.910651624202728,0.102055780589581,0.706561863422394,0.667308390140533,-0.235520631074905,-0.400372684001923,0.910651624202728,0.102055780589581,0.244268715381622,-0.0315185450017452,-0.969195246696472,-0.774056851863861,0.481810927391052,-0.41072404384613,-0.141767457127571,0.267782956361771,0.952992379665375,0.918275713920593,0.306091904640198,0.251152336597443,0.768420696258545,0.635123193264008,0.0784102752804756,0.918275713920593,0.306091904640198,0.251152336597443,-0.141767457127571,0.267782956361771,0.952992379665375,-0.212809652090073,0.299509882926941,0.930056929588318,0.244268715381622,-0.0315185450017452,-0.969195246696472,0.768420696258545,0.635123193264008,0.0784102752804756,0.409842848777771,-0.197039842605591,-0.890620112419128,0.409842848777771,-0.197039842605591,-0.890620112419128,
- 0.768420696258545,0.635123193264008,0.0784102752804756,0.918275713920593,0.306091904640198,0.251152336597443,0.244268715381622,-0.0315185450017452,-0.969195246696472,-0.788968443870544,-0.599616050720215,-0.134124636650085,-0.774056851863861,0.481810927391052,-0.41072404384613,0.409842848777771,-0.197039842605591,-0.890620112419128,-0.788968443870544,-0.599616050720215,-0.134124636650085,0.244268715381622,-0.0315185450017452,-0.969195246696472,0.948564827442169,-0.0158094130456448,0.316188275814056,0.918275713920593,0.306091904640198,0.251152336597443,-0.212809652090073,0.299509882926941,0.930056929588318,-0.212809652090073,0.299509882926941,0.930056929588318,-0.149899333715439,0.18934653699398,0.970400989055634,0.948564827442169,-0.0158094130456448,0.316188275814056,0.918275713920593,0.306091904640198,0.251152336597443,0.41068559885025,-0.221138402819633,-0.884553611278534,0.409842848777771,-0.197039842605591,-0.890620112419128,0.918275713920593,0.306091904640198,0.251152336597443,0.948564827442169,-0.0158094130456448,0.316188275814056,0.41068559885025,-0.221138402819633,-0.884553611278534,-0.788968443870544,-0.599616050720215,-0.134124636650085,0.409842848777771,-0.197039842605591,-0.890620112419128,-0.847848057746887,-0.478877127170563,-0.227662891149521,0.41068559885025,-0.221138402819633,-0.884553611278534,-0.847848057746887,-0.478877127170563,-0.227662891149521,0.409842848777771,-0.197039842605591,-0.890620112419128,-0.282903850078583,0.125735059380531,0.950871348381042,-0.306924909353256,0.377753734588623,0.873555481433868,-0.788968443870544,-0.599616050720215,-0.134124636650085,-0.788968443870544,-0.599616050720215,-0.134124636650085,-0.847848057746887,-0.478877127170563,-0.227662891149521,-0.282903850078583,0.125735059380531,0.950871348381042,-0.847848057746887,-0.478877127170563,-0.227662891149521,-0.141767457127571,0.267782956361771,0.952992379665375,-0.282903850078583,0.125735059380531,0.950871348381042,-0.141767457127571,0.267782956361771,0.952992379665375,-0.847848057746887,-0.478877127170563,-0.227662891149521,
- -0.212809652090073,0.299509882926941,0.930056929588318,-0.960243046283722,0.181029424071312,-0.212512791156769,-0.212809652090073,0.299509882926941,0.930056929588318,-0.847848057746887,-0.478877127170563,-0.227662891149521,-0.847848057746887,-0.478877127170563,-0.227662891149521,0.41068559885025,-0.221138402819633,-0.884553611278534,-0.960243046283722,0.181029424071312,-0.212512791156769,-0.212809652090073,0.299509882926941,0.930056929588318,-0.960243046283722,0.181029424071312,-0.212512791156769,-0.149899333715439,0.18934653699398,0.970400989055634,-0.149899333715439,0.18934653699398,0.970400989055634,-0.960243046283722,0.181029424071312,-0.212512791156769,-0.0869273319840431,-0.0316099375486374,0.99571305513382,-0.960243046283722,0.181029424071312,-0.212512791156769,0.41068559885025,-0.221138402819633,-0.884553611278534,0.188462942838669,-0.0314104929566383,-0.98157787322998,0.948564827442169,-0.0158094130456448,0.316188275814056,0.188462942838669,-0.0314104929566383,-0.98157787322998,0.41068559885025,-0.221138402819633,-0.884553611278534,-0.87605494260788,0.449866056442261,0.173632517457008,-0.0869273319840431,-0.0316099375486374,0.99571305513382,-0.960243046283722,0.181029424071312,-0.212512791156769,-0.960243046283722,0.181029424071312,-0.212512791156769,0.188462942838669,-0.0314104929566383,-0.98157787322998,-0.87605494260788,0.449866056442261,0.173632517457008,-0.0869273319840431,-0.0316099375486374,0.99571305513382,-0.87605494260788,0.449866056442261,0.173632517457008,0.0867973417043686,-0.0631253346800804,0.994224011898041,0.284090548753738,0.0868054553866386,0.954859972000122,0.0867973417043686,-0.0631253346800804,0.994224011898041,-0.87605494260788,0.449866056442261,0.173632517457008,0.188462942838669,-0.0314104929566383,-0.98157787322998,0.948564827442169,-0.0158094130456448,0.316188275814056,0.936949789524078,-0.338561683893204,0.086608812212944,-0.149899333715439,0.18934653699398,0.970400989055634,0.936949789524078,-0.338561683893204,0.086608812212944,0.948564827442169,-0.0158094130456448,0.316188275814056,
- 0.936949789524078,-0.338561683893204,0.086608812212944,-0.149899333715439,0.18934653699398,0.970400989055634,-0.125956922769547,-0.0157446153461933,0.991910755634308,-0.87605494260788,0.449866056442261,0.173632517457008,0.188462942838669,-0.0314104929566383,-0.98157787322998,-0.0550328753888607,-0.00786183960735798,-0.998453617095947,0.936949789524078,-0.338561683893204,0.086608812212944,-0.0550328753888607,-0.00786183960735798,-0.998453617095947,0.188462942838669,-0.0314104929566383,-0.98157787322998,0.284090548753738,0.0868054553866386,0.954859972000122,-0.87605494260788,0.449866056442261,0.173632517457008,-0.723960757255554,0.621661901473999,0.299027264118195,-0.723960757255554,0.621661901473999,0.299027264118195,-0.87605494260788,0.449866056442261,0.173632517457008,-0.0550328753888607,-0.00786183960735798,-0.998453617095947,0.66139680147171,0.0551164038479328,0.74800831079483,0.284090548753738,0.0868054553866386,0.954859972000122,-0.723960757255554,0.621661901473999,0.299027264118195,0.863921701908112,0.0314153358340263,0.502645373344421,0.66139680147171,0.0551164038479328,0.74800831079483,-0.723960757255554,0.621661901473999,0.299027264118195,-0.125956922769547,-0.0157446153461933,0.991910755634308,0.836801528930664,-0.481555610895157,-0.260513663291931,0.936949789524078,-0.338561683893204,0.086608812212944,-0.0550328753888607,-0.00786183960735798,-0.998453617095947,0.936949789524078,-0.338561683893204,0.086608812212944,0.836801528930664,-0.481555610895157,-0.260513663291931,0.836801528930664,-0.481555610895157,-0.260513663291931,-0.125956922769547,-0.0157446153461933,0.991910755634308,0.0867973417043686,-0.0631253346800804,0.994224011898041,0.284090548753738,0.0868054553866386,0.954859972000122,0.836801528930664,-0.481555610895157,-0.260513663291931,0.0867973417043686,-0.0631253346800804,0.994224011898041,0.836801528930664,-0.481555610895157,-0.260513663291931,0.284090548753738,0.0868054553866386,0.954859972000122,0.560150146484375,-0.662712872028351,-0.497034668922424,-0.0550328753888607,-0.00786183960735798,-0.998453617095947,
- 0.836801528930664,-0.481555610895157,-0.260513663291931,0.560150146484375,-0.662712872028351,-0.497034668922424,0.560150146484375,-0.662712872028351,-0.497034668922424,0.284090548753738,0.0868054553866386,0.954859972000122,0.66139680147171,0.0551164038479328,0.74800831079483,-0.566490292549133,-0.149490505456924,-0.810395836830139,-0.0550328753888607,-0.00786183960735798,-0.998453617095947,0.560150146484375,-0.662712872028351,-0.497034668922424,-0.0550328753888607,-0.00786183960735798,-0.998453617095947,-0.566490292549133,-0.149490505456924,-0.810395836830139,-0.723960757255554,0.621661901473999,0.299027264118195,0.196509540081024,-0.738875925540924,-0.644551336765289,0.560150146484375,-0.662712872028351,-0.497034668922424,0.66139680147171,0.0551164038479328,0.74800831079483,0.196509540081024,-0.738875925540924,-0.644551336765289,-0.566490292549133,-0.149490505456924,-0.810395836830139,0.560150146484375,-0.662712872028351,-0.497034668922424,0.66139680147171,0.0551164038479328,0.74800831079483,0.863921701908112,0.0314153358340263,0.502645373344421,0.196509540081024,-0.738875925540924,-0.644551336765289,0.999380588531494,0.031476553529501,0.0157382767647505,0.196509540081024,-0.738875925540924,-0.644551336765289,0.863921701908112,0.0314153358340263,0.502645373344421,-0.986149191856384,-0.00788919348269701,-0.165673062205315,-0.723960757255554,0.621661901473999,0.299027264118195,-0.566490292549133,-0.149490505456924,-0.810395836830139,-0.566490292549133,-0.149490505456924,-0.810395836830139,0.196509540081024,-0.738875925540924,-0.644551336765289,-0.986149191856384,-0.00788919348269701,-0.165673062205315,0.196509540081024,-0.738875925540924,-0.644551336765289,0.999380588531494,0.031476553529501,0.0157382767647505,-0.2997707426548,-0.686317145824432,-0.662651062011719,-0.986149191856384,-0.00788919348269701,-0.165673062205315,0.196509540081024,-0.738875925540924,-0.644551336765289,-0.2997707426548,-0.686317145824432,-0.662651062011719,0.999380588531494,0.031476553529501,0.0157382767647505,0.805625855922699,-0.00789829343557358,-0.592372000217438,
- -0.2997707426548,-0.686317145824432,-0.662651062011719,-0.723960757255554,0.621661901473999,0.299027264118195,-0.986149191856384,-0.00788919348269701,-0.165673062205315,-0.196752861142159,0.724050462245941,0.661089539527893,-0.723960757255554,0.621661901473999,0.299027264118195,-0.196752861142159,0.724050462245941,0.661089539527893,0.863921701908112,0.0314153358340263,0.502645373344421,0.863921701908112,0.0314153358340263,0.502645373344421,-0.196752861142159,0.724050462245941,0.661089539527893,0.999380588531494,0.031476553529501,0.0157382767647505,-0.196752861142159,0.724050462245941,0.661089539527893,0.821961045265198,-0.0237104166299105,-0.569049954414368,0.999380588531494,0.031476553529501,0.0157382767647505,-0.986149191856384,-0.00788919348269701,-0.165673062205315,0.409055888652802,0.660782635211945,0.629316806793213,-0.196752861142159,0.724050462245941,0.661089539527893,0.821961045265198,-0.0237104166299105,-0.569049954414368,-0.196752861142159,0.724050462245941,0.661089539527893,0.409055888652802,0.660782635211945,0.629316806793213,-0.809619307518005,0.0786038190126419,0.581668317317963,-0.986149191856384,-0.00788919348269701,-0.165673062205315,-0.2997707426548,-0.686317145824432,-0.662651062011719,0.409055888652802,0.660782635211945,0.629316806793213,-0.986149191856384,-0.00788919348269701,-0.165673062205315,-0.809619307518005,0.0786038190126419,0.581668317317963,-0.2997707426548,-0.686317145824432,-0.662651062011719,0.805625855922699,-0.00789829343557358,-0.592372000217438,-0.723356306552887,-0.597555220127106,-0.345953017473221,-0.723356306552887,-0.597555220127106,-0.345953017473221,-0.809619307518005,0.0786038190126419,0.581668317317963,-0.2997707426548,-0.686317145824432,-0.662651062011719,-0.723356306552887,-0.597555220127106,-0.345953017473221,0.805625855922699,-0.00789829343557358,-0.592372000217438,0.35498058795929,-0.0867730304598808,-0.93083792924881,-0.362081319093704,0.0787133276462555,0.928817272186279,0.409055888652802,0.660782635211945,0.629316806793213,-0.809619307518005,0.0786038190126419,0.581668317317963,
- -0.809619307518005,0.0786038190126419,0.581668317317963,-0.723356306552887,-0.597555220127106,-0.345953017473221,-0.362081319093704,0.0787133276462555,0.928817272186279,0.746805489063263,0.558138847351074,0.361611098051071,0.821961045265198,-0.0237104166299105,-0.569049954414368,0.409055888652802,0.660782635211945,0.629316806793213,0.409055888652802,0.660782635211945,0.629316806793213,-0.362081319093704,0.0787133276462555,0.928817272186279,0.746805489063263,0.558138847351074,0.361611098051071,0.821961045265198,-0.0237104166299105,-0.569049954414368,0.746805489063263,0.558138847351074,0.361611098051071,0.339319825172424,-0.0552381165325642,-0.939047932624817,0.35498058795929,-0.0867730304598808,-0.93083792924881,-0.82093620300293,-0.568340420722961,-0.0552553236484528,-0.723356306552887,-0.597555220127106,-0.345953017473221,-0.723356306552887,-0.597555220127106,-0.345953017473221,-0.82093620300293,-0.568340420722961,-0.0552553236484528,-0.362081319093704,0.0787133276462555,0.928817272186279,-0.82093620300293,-0.568340420722961,-0.0552553236484528,0.35498058795929,-0.0867730304598808,-0.93083792924881,0.0552966743707657,0.0789952501654625,-0.995340168476105,-0.35498058795929,0.0867730304598808,-0.93083792924881,-0.82093620300293,-0.568340420722961,-0.0552553236484528,0.0552966743707657,0.0789952501654625,-0.995340168476105,0.134250044822693,-0.0868676751852036,0.987132668495178,0.746805489063263,0.558138847351074,0.361611098051071,-0.362081319093704,0.0787133276462555,0.928817272186279,-0.82093620300293,-0.568340420722961,-0.0552553236484528,0.134250044822693,-0.0868676751852036,0.987132668495178,-0.362081319093704,0.0787133276462555,0.928817272186279,0.898976564407349,0.425831019878387,-0.102514870464802,0.339319825172424,-0.0552381165325642,-0.939047932624817,0.746805489063263,0.558138847351074,0.361611098051071,0.746805489063263,0.558138847351074,0.361611098051071,0.134250044822693,-0.0868676751852036,0.987132668495178,0.898976564407349,0.425831019878387,-0.102514870464802,0.339319825172424,-0.0552381165325642,-0.939047932624817,
- 0.898976564407349,0.425831019878387,-0.102514870464802,0.0552966743707657,0.0789952501654625,-0.995340168476105,0.898976564407349,0.425831019878387,-0.102514870464802,-0.35498058795929,0.0867730304598808,-0.93083792924881,0.0552966743707657,0.0789952501654625,-0.995340168476105,-0.844196259975433,-0.394484221935272,0.362925499677658,0.134250044822693,-0.0868676751852036,0.987132668495178,-0.82093620300293,-0.568340420722961,-0.0552553236484528,-0.82093620300293,-0.568340420722961,-0.0552553236484528,-0.35498058795929,0.0867730304598808,-0.93083792924881,-0.844196259975433,-0.394484221935272,0.362925499677658,0.621277332305908,-0.141556859016418,0.770698487758636,0.898976564407349,0.425831019878387,-0.102514870464802,0.134250044822693,-0.0868676751852036,0.987132668495178,0.621277332305908,-0.141556859016418,0.770698487758636,0.134250044822693,-0.0868676751852036,0.987132668495178,-0.844196259975433,-0.394484221935272,0.362925499677658,0.69045627117157,0.470765650272369,-0.549226582050323,-0.35498058795929,0.0867730304598808,-0.93083792924881,0.898976564407349,0.425831019878387,-0.102514870464802,0.898976564407349,0.425831019878387,-0.102514870464802,0.621277332305908,-0.141556859016418,0.770698487758636,0.69045627117157,0.470765650272369,-0.549226582050323,-0.35498058795929,0.0867730304598808,-0.93083792924881,0.69045627117157,0.470765650272369,-0.549226582050323,-0.748565435409546,0.0393981784582138,-0.661889433860779,0.69045627117157,0.470765650272369,-0.549226582050323,-0.922289669513702,0.0788281783461571,-0.378375262022018,-0.748565435409546,0.0393981784582138,-0.661889433860779,-0.628442406654358,-0.479187339544296,0.612731337547302,-0.844196259975433,-0.394484221935272,0.362925499677658,-0.35498058795929,0.0867730304598808,-0.93083792924881,-0.844196259975433,-0.394484221935272,0.362925499677658,-0.628442406654358,-0.479187339544296,0.612731337547302,0.621277332305908,-0.141556859016418,0.770698487758636,-0.628442406654358,-0.479187339544296,0.612731337547302,-0.35498058795929,0.0867730304598808,-0.93083792924881,
- -0.748565435409546,0.0393981784582138,-0.661889433860779,-0.922289669513702,0.0788281783461571,-0.378375262022018,0.69045627117157,0.470765650272369,-0.549226582050323,0.425976693630219,0.670518815517426,-0.607411205768585,0.425976693630219,0.670518815517426,-0.607411205768585,-0.993605554103851,0.0236572753638029,0.11040061712265,-0.922289669513702,0.0788281783461571,-0.378375262022018,-0.219488054513931,-0.697658479213715,0.681980669498444,-0.628442406654358,-0.479187339544296,0.612731337547302,-0.748565435409546,0.0393981784582138,-0.661889433860779,-0.219488054513931,-0.697658479213715,0.681980669498444,0.621277332305908,-0.141556859016418,0.770698487758636,-0.628442406654358,-0.479187339544296,0.612731337547302,-0.219488054513931,-0.697658479213715,0.681980669498444,-0.748565435409546,0.0393981784582138,-0.661889433860779,-0.922289669513702,0.0788281783461571,-0.378375262022018,-0.993605554103851,0.0236572753638029,0.11040061712265,-0.219488054513931,-0.697658479213715,0.681980669498444,-0.922289669513702,0.0788281783461571,-0.378375262022018,0.903274476528168,-0.172800347208977,0.39272803068161,0.69045627117157,0.470765650272369,-0.549226582050323,0.621277332305908,-0.141556859016418,0.770698487758636,0.621277332305908,-0.141556859016418,0.770698487758636,-0.219488054513931,-0.697658479213715,0.681980669498444,0.903274476528168,-0.172800347208977,0.39272803068161,0.69045627117157,0.470765650272369,-0.549226582050323,0.903274476528168,-0.172800347208977,0.39272803068161,0.425976693630219,0.670518815517426,-0.607411205768585,0.118544675409794,-0.829812705516815,0.54530543088913,-0.219488054513931,-0.697658479213715,0.681980669498444,-0.993605554103851,0.0236572753638029,0.11040061712265,0.118544675409794,-0.829812705516815,0.54530543088913,0.903274476528168,-0.172800347208977,0.39272803068161,-0.219488054513931,-0.697658479213715,0.681980669498444,0.118544675409794,-0.829812705516815,0.54530543088913,-0.993605554103851,0.0236572753638029,0.11040061712265,-0.748472511768341,0.110301204025745,0.653928577899933,0.157734796404839,0.796560645103455,-0.583618760108948,
- 0.425976693630219,0.670518815517426,-0.607411205768585,0.903274476528168,-0.172800347208977,0.39272803068161,0.425976693630219,0.670518815517426,-0.607411205768585,0.157734796404839,0.796560645103455,-0.583618760108948,-0.993605554103851,0.0236572753638029,0.11040061712265,-0.748472511768341,0.110301204025745,0.653928577899933,-0.993605554103851,0.0236572753638029,0.11040061712265,0.157734796404839,0.796560645103455,-0.583618760108948,0.903274476528168,-0.172800347208977,0.39272803068161,0.118544675409794,-0.829812705516815,0.54530543088913,0.877763450145721,-0.125394776463509,-0.462393224239349,0.157734796404839,0.796560645103455,-0.583618760108948,0.903274476528168,-0.172800347208977,0.39272803068161,0.877763450145721,-0.125394776463509,-0.462393224239349,0.157734796404839,0.796560645103455,-0.583618760108948,-0.157499849796295,0.834749221801758,-0.527624487876892,-0.748472511768341,0.110301204025745,0.653928577899933,0.157734796404839,0.796560645103455,-0.583618760108948,0.877763450145721,-0.125394776463509,-0.462393224239349,-0.157499849796295,0.834749221801758,-0.527624487876892,-0.157499849796295,0.834749221801758,-0.527624487876892,-0.339711368083954,0.173805832862854,0.924330949783325,-0.748472511768341,0.110301204025745,0.653928577899933,0.315077871084213,-0.897971928119659,0.307200908660889,0.877763450145721,-0.125394776463509,-0.462393224239349,0.118544675409794,-0.829812705516815,0.54530543088913,0.315077871084213,-0.897971928119659,0.307200908660889,0.118544675409794,-0.829812705516815,0.54530543088913,-0.748472511768341,0.110301204025745,0.653928577899933,-0.157499849796295,0.834749221801758,-0.527624487876892,-0.425025671720505,0.794955372810364,-0.43289652466774,-0.339711368083954,0.173805832862854,0.924330949783325,-0.425025671720505,0.794955372810364,-0.43289652466774,0.0706344097852707,0.180510178208351,0.981033563613892,-0.339711368083954,0.173805832862854,0.924330949783325,-0.748472511768341,0.110301204025745,0.653928577899933,0.479587018489838,-0.856966972351074,0.188689976930618,0.315077871084213,-0.897971928119659,0.307200908660889,
- 0.479587018489838,-0.856966972351074,0.188689976930618,0.877763450145721,-0.125394776463509,-0.462393224239349,0.315077871084213,-0.897971928119659,0.307200908660889,0.479587018489838,-0.856966972351074,0.188689976930618,-0.748472511768341,0.110301204025745,0.653928577899933,-0.339711368083954,0.173805832862854,0.924330949783325,0.267451345920563,-0.0865283831954002,-0.959678411483765,-0.157499849796295,0.834749221801758,-0.527624487876892,0.877763450145721,-0.125394776463509,-0.462393224239349,0.877763450145721,-0.125394776463509,-0.462393224239349,0.479587018489838,-0.856966972351074,0.188689976930618,0.267451345920563,-0.0865283831954002,-0.959678411483765,-0.157499849796295,0.834749221801758,-0.527624487876892,0.267451345920563,-0.0865283831954002,-0.959678411483765,-0.425025671720505,0.794955372810364,-0.43289652466774,-0.339711368083954,0.173805832862854,0.924330949783325,0.574518263339996,-0.818491756916046,-1.81741678798818e-016,0.479587018489838,-0.856966972351074,0.188689976930618,0.574518263339996,-0.818491756916046,-1.81741678798818e-016,0.267451345920563,-0.0865283831954002,-0.959678411483765,0.479587018489838,-0.856966972351074,0.188689976930618,0.574518263339996,-0.818491756916046,-1.81741678798818e-016,-0.339711368083954,0.173805832862854,0.924330949783325,0.0706344097852707,0.180510178208351,0.981033563613892,0.0706344097852707,0.180510178208351,0.981033563613892,0.36297070980072,0.126250684261322,0.923208117485046,0.574518263339996,-0.818491756916046,-1.81741678798818e-016,-0.133775353431702,-0.173121050000191,-0.97577315568924,-0.425025671720505,0.794955372810364,-0.43289652466774,0.267451345920563,-0.0865283831954002,-0.959678411483765,0.267451345920563,-0.0865283831954002,-0.959678411483765,0.574518263339996,-0.818491756916046,-1.81741678798818e-016,-0.133775353431702,-0.173121050000191,-0.97577315568924,0.574518263339996,-0.818491756916046,-1.81741678798818e-016,0.36297070980072,0.126250684261322,0.923208117485046,0.197654709219933,-0.735275506973267,-0.6483074426651,0.197654709219933,-0.735275506973267,-0.6483074426651,
- -0.133775353431702,-0.173121050000191,-0.97577315568924,0.574518263339996,-0.818491756916046,-1.81741678798818e-016,0.197654709219933,-0.735275506973267,-0.6483074426651,0.36297070980072,0.126250684261322,0.923208117485046,-0.677333354949951,-0.448930233716965,0.582821726799011,-0.425025671720505,0.794955372810364,-0.43289652466774,-0.133775353431702,-0.173121050000191,-0.97577315568924,-0.642983973026276,0.752761781215668,-0.141142830252647,0.0706344097852707,0.180510178208351,0.981033563613892,-0.425025671720505,0.794955372810364,-0.43289652466774,-0.642983973026276,0.752761781215668,-0.141142830252647,-0.642983973026276,0.752761781215668,-0.141142830252647,0.36297070980072,0.126250684261322,0.923208117485046,0.0706344097852707,0.180510178208351,0.981033563613892,-0.683157086372375,0.730271458625793,1.62152837518591e-016,-0.133775353431702,-0.173121050000191,-0.97577315568924,0.197654709219933,-0.735275506973267,-0.6483074426651,-0.133775353431702,-0.173121050000191,-0.97577315568924,-0.683157086372375,0.730271458625793,1.62152837518591e-016,-0.642983973026276,0.752761781215668,-0.141142830252647,-0.677333354949951,-0.448930233716965,0.582821726799011,-0.683157086372375,0.730271458625793,1.62152837518591e-016,0.197654709219933,-0.735275506973267,-0.6483074426651,0.36297070980072,0.126250684261322,0.923208117485046,-0.642983973026276,0.752761781215668,-0.141142830252647,-0.683157086372375,0.730271458625793,1.62152837518591e-016,-0.677333354949951,-0.448930233716965,0.582821726799011,0.36297070980072,0.126250684261322,0.923208117485046,-0.683157086372375,0.730271458625793,1.62152837518591e-016,0.528329372406006,0.0946261584758759,-0.843749940395355,0.67908376455307,-0.623809516429901,-0.38691982626915,0.133490473031998,-0.785238087177277,0.604633331298828,-0.654986500740051,0.749683380126953,0.0946968495845795,0.67908376455307,-0.623809516429901,-0.38691982626915,0.528329372406006,0.0946261584758759,-0.843749940395355,-0.664057552814484,-0.252974301576614,0.703584790229797,-0.654986500740051,0.749683380126953,0.0946968495845795,
- 0.528329372406006,0.0946261584758759,-0.843749940395355,-0.654986500740051,0.749683380126953,0.0946968495845795,-0.664057552814484,-0.252974301576614,0.703584790229797,0.417815327644348,-0.780447483062744,0.465115159749985,0.61432558298111,0.362294584512711,0.700961291790009,0.102279812097549,0.149485886096954,0.983459711074829,-0.188695803284645,0.117934882640839,0.974928319454193,0.102279812097549,0.149485886096954,0.983459711074829,0.61432558298111,0.362294584512711,0.700961291790009,0.962871193885803,0.213094443082809,-0.165740117430687,0.61432558298111,0.362294584512711,0.700961291790009,-0.283359169960022,-0.338456779718399,-0.897304058074951,0.962871193885803,0.213094443082809,-0.165740117430687,0.61432558298111,0.362294584512711,0.700961291790009,-0.648185908794403,-0.063237652182579,0.758851766586304,-0.283359169960022,-0.338456779718399,-0.897304058074951,0.962871193885803,0.213094443082809,-0.165740117430687,-0.283359169960022,-0.338456779718399,-0.897304058074951,-0.707543671131134,-0.377356618642807,-0.597481310367584,-0.648185908794403,-0.063237652182579,0.758851766586304,-0.707543671131134,-0.377356618642807,-0.597481310367584,-0.283359169960022,-0.338456779718399,-0.897304058074951,-0.648185908794403,-0.063237652182579,0.758851766586304,0.149190649390221,0.212007775902748,0.965813159942627,-0.707543671131134,-0.377356618642807,-0.597481310367584,-0.883177518844604,-0.212908864021301,-0.417932212352753,-0.981184661388397,0.0863442569971085,-0.172688513994217,-0.181327342987061,0.204978734254837,0.961823344230652,-0.981184661388397,0.0863442569971085,-0.172688513994217,-0.964735925197601,0.221414789557457,-0.142338067293167,-0.181327342987061,0.204978734254837,0.961823344230652,0.489526242017746,-0.244763121008873,0.836931943893433,-0.181327342987061,0.204978734254837,0.961823344230652,-0.964735925197601,0.221414789557457,-0.142338067293167,-0.181327342987061,0.204978734254837,0.961823344230652,0.489526242017746,-0.244763121008873,0.836931943893433,0.974687337875366,0.039301909506321,0.220090687274933,
- 0.489526242017746,-0.244763121008873,0.836931943893433,-0.964735925197601,0.221414789557457,-0.142338067293167,-0.118198230862617,-0.583111226558685,-0.803747892379761,-0.118198230862617,-0.583111226558685,-0.803747892379761,0.974687337875366,0.039301909506321,0.220090687274933,0.489526242017746,-0.244763121008873,0.836931943893433,0.974687337875366,0.039301909506321,0.220090687274933,-0.118198230862617,-0.583111226558685,-0.803747892379761,0.252776920795441,-0.150086298584938,-0.955812692642212,0.974687337875366,0.039301909506321,0.220090687274933,0.252776920795441,-0.150086298584938,-0.955812692642212,-0.691030859947205,-0.212020844221115,-0.691030859947205,-0.964735925197601,0.221414789557457,-0.142338067293167,0.252776920795441,-0.150086298584938,-0.955812692642212,-0.118198230862617,-0.583111226558685,-0.803747892379761,-0.968203842639923,0.102330483496189,-0.228275701403618,-0.691030859947205,-0.212020844221115,-0.691030859947205,0.252776920795441,-0.150086298584938,-0.955812692642212,0.252776920795441,-0.150086298584938,-0.955812692642212,-0.964735925197601,0.221414789557457,-0.142338067293167,-0.968203842639923,0.102330483496189,-0.228275701403618,-0.432802617549896,-0.645269334316254,-0.62953108549118,-0.458903282880783,-0.561760902404785,-0.688354909420013,-0.76222163438797,-0.117869324982166,0.636494338512421,-0.76222163438797,-0.117869324982166,0.636494338512421,-0.458903282880783,-0.561760902404785,-0.688354909420013,-0.741699635982513,-0.00789042096585035,0.670685768127441,-0.458903282880783,-0.561760902404785,-0.688354909420013,-0.564831852912903,-0.337330132722855,-0.753109157085419,-0.741699635982513,-0.00789042096585035,0.670685768127441,-0.76222163438797,-0.117869324982166,0.636494338512421,-0.741699635982513,-0.00789042096585035,0.670685768127441,0.487223297357559,0.644392073154449,0.589383006095886,-0.564831852912903,-0.337330132722855,-0.753109157085419,-0.824474573135376,0.27482482790947,0.494684725999832,-0.741699635982513,-0.00789042096585035,0.670685768127441,-0.564831852912903,-0.337330132722855,-0.753109157085419,
- -0.660598695278168,-0.534770369529724,-0.526906073093414,-0.824474573135376,0.27482482790947,0.494684725999832,0.534060657024384,0.486937701702118,0.691137373447418,0.487223297357559,0.644392073154449,0.589383006095886,-0.741699635982513,-0.00789042096585035,0.670685768127441,-0.660598695278168,-0.534770369529724,-0.526906073093414,-0.617493808269501,0.6016606092453,0.506661534309387,-0.824474573135376,0.27482482790947,0.494684725999832,-0.660598695278168,-0.534770369529724,-0.526906073093414,-0.748542189598084,-0.228502348065376,-0.622471928596497,-0.617493808269501,0.6016606092453,0.506661534309387,0.73210197687149,0.377859115600586,0.566788613796234,-0.741699635982513,-0.00789042096585035,0.670685768127441,-0.824474573135376,0.27482482790947,0.494684725999832,-0.741699635982513,-0.00789042096585035,0.670685768127441,0.73210197687149,0.377859115600586,0.566788613796234,0.534060657024384,0.486937701702118,0.691137373447418,0.73210197687149,0.377859115600586,0.566788613796234,-0.824474573135376,0.27482482790947,0.494684725999832,-0.617493808269501,0.6016606092453,0.506661534309387,0.815441727638245,0.0862486511468887,-0.572377443313599,0.487223297357559,0.644392073154449,0.589383006095886,0.534060657024384,0.486937701702118,0.691137373447418,0.487223297357559,0.644392073154449,0.589383006095886,0.815441727638245,0.0862486511468887,-0.572377443313599,0.757504045963287,0.0867973417043686,-0.647034704685211,0.73210197687149,0.377859115600586,0.566788613796234,0.796535909175873,-0.307573288679123,-0.520508646965027,0.534060657024384,0.486937701702118,0.691137373447418,0.534060657024384,0.486937701702118,0.691137373447418,0.796535909175873,-0.307573288679123,-0.520508646965027,0.815441727638245,0.0862486511468887,-0.572377443313599,0.757504045963287,0.0867973417043686,-0.647034704685211,0.815441727638245,0.0862486511468887,-0.572377443313599,-0.458903282880783,-0.561760902404785,-0.688354909420013,0.757504045963287,0.0867973417043686,-0.647034704685211,-0.458903282880783,-0.561760902404785,-0.688354909420013,-0.432802617549896,-0.645269334316254,-0.62953108549118,
- 0.796535909175873,-0.307573288679123,-0.520508646965027,-0.458903282880783,-0.561760902404785,-0.688354909420013,0.815441727638245,0.0862486511468887,-0.572377443313599,-0.458903282880783,-0.561760902404785,-0.688354909420013,0.796535909175873,-0.307573288679123,-0.520508646965027,-0.502397537231445,-0.423897951841354,-0.753596365451813,-0.502397537231445,-0.423897951841354,-0.753596365451813,0.796535909175873,-0.307573288679123,-0.520508646965027,-0.660598695278168,-0.534770369529724,-0.526906073093414,0.796535909175873,-0.307573288679123,-0.520508646965027,-0.755086719989777,-0.330350428819656,-0.566314995288849,-0.660598695278168,-0.534770369529724,-0.526906073093414,0.73210197687149,0.377859115600586,0.566788613796234,0.973605275154114,-0.172736421227455,0.149181455373764,0.796535909175873,-0.307573288679123,-0.520508646965027,-0.755086719989777,-0.330350428819656,-0.566314995288849,0.796535909175873,-0.307573288679123,-0.520508646965027,0.973605275154114,-0.172736421227455,0.149181455373764,0.973605275154114,-0.172736421227455,0.149181455373764,0.73210197687149,0.377859115600586,0.566788613796234,-0.617493808269501,0.6016606092453,0.506661534309387,0.606863856315613,-0.685677349567413,-0.401948779821396,-0.755086719989777,-0.330350428819656,-0.566314995288849,0.973605275154114,-0.172736421227455,0.149181455373764,-0.755086719989777,-0.330350428819656,-0.566314995288849,0.606863856315613,-0.685677349567413,-0.401948779821396,-0.584583103656769,-0.0947972610592842,-0.805776655673981,0.606863856315613,-0.685677349567413,-0.401948779821396,-0.416754841804504,-0.723423421382904,0.550430834293365,-0.584583103656769,-0.0947972610592842,-0.805776655673981,0.605829894542694,-0.118018813431263,0.786792039871216,0.606863856315613,-0.685677349567413,-0.401948779821396,0.973605275154114,-0.172736421227455,0.149181455373764,-0.416754841804504,-0.723423421382904,0.550430834293365,0.606863856315613,-0.685677349567413,-0.401948779821396,0.605829894542694,-0.118018813431263,0.786792039871216,-0.617493808269501,0.6016606092453,0.506661534309387,
- 0.605829894542694,-0.118018813431263,0.786792039871216,0.973605275154114,-0.172736421227455,0.149181455373764,-0.416754841804504,-0.723423421382904,0.550430834293365,0.605829894542694,-0.118018813431263,0.786792039871216,-0.643201529979706,0.603981971740723,0.470635294914246,0.605829894542694,-0.118018813431263,0.786792039871216,-0.617493808269501,0.6016606092453,0.506661534309387,-0.643201529979706,0.603981971740723,0.470635294914246,-0.416754841804504,-0.723423421382904,0.550430834293365,-0.643201529979706,0.603981971740723,0.470635294914246,-0.584583103656769,-0.0947972610592842,-0.805776655673981,-0.748542189598084,-0.228502348065376,-0.622471928596497,-0.643201529979706,0.603981971740723,0.470635294914246,-0.617493808269501,0.6016606092453,0.506661534309387,-0.643201529979706,0.603981971740723,0.470635294914246,-0.748542189598084,-0.228502348065376,-0.622471928596497,-0.584583103656769,-0.0947972610592842,-0.805776655673981,-0.627571642398834,-0.58834844827652,-0.509901940822601,-0.433662801980972,0.756938695907593,-0.488856226205826,-0.306091904640198,0.918275713920593,-0.251152336597443,-0.276276558637619,-0.931446731090546,-0.236808508634567,-0.433662801980972,0.756938695907593,-0.488856226205826,-0.627571642398834,-0.58834844827652,-0.509901940822601,-0.204654648900032,0.865846633911133,-0.456537306308746,-0.433662801980972,0.756938695907593,-0.488856226205826,-0.276276558637619,-0.931446731090546,-0.236808508634567,-0.276276558637619,-0.931446731090546,-0.236808508634567,-0.488310098648071,0.700961291790009,-0.51981395483017,-0.204654648900032,0.865846633911133,-0.456537306308746,0.45612770318985,-0.739241421222687,0.495449066162109,-0.276276558637619,-0.931446731090546,-0.236808508634567,-0.627571642398834,-0.58834844827652,-0.509901940822601,-0.488310098648071,0.700961291790009,-0.51981395483017,-0.276276558637619,-0.931446731090546,-0.236808508634567,-0.110031753778458,-0.919551074504852,0.377251714468002,0.400126159191132,0.776715517044067,0.486427903175354,-0.276276558637619,-0.931446731090546,-0.236808508634567,
- 0.45612770318985,-0.739241421222687,0.495449066162109,0.400126159191132,0.776715517044067,0.486427903175354,-0.110031753778458,-0.919551074504852,0.377251714468002,-0.276276558637619,-0.931446731090546,-0.236808508634567,0.400126159191132,0.776715517044067,0.486427903175354,-0.488310098648071,0.700961291790009,-0.51981395483017,-0.110031753778458,-0.919551074504852,0.377251714468002,0.400126159191132,0.776715517044067,0.486427903175354,0.45612770318985,-0.739241421222687,0.495449066162109,0.102008640766144,0.98869913816452,0.109855458140373,0.102008640766144,0.98869913816452,0.109855458140373,-0.433662801980972,0.756938695907593,-0.488856226205826,0.400126159191132,0.776715517044067,0.486427903175354,-0.800844073295593,-0.494639009237289,0.337610751390457,-0.118018813431263,0.786792039871216,0.605829894542694,-0.245160818099976,0.806658148765564,0.537772119045258,-0.118018813431263,0.786792039871216,0.605829894542694,-0.800844073295593,-0.494639009237289,0.337610751390457,-0.41602236032486,-0.9026899933815,-0.109892696142197,-0.118018813431263,0.786792039871216,0.605829894542694,-0.41602236032486,-0.9026899933815,-0.109892696142197,0.522151231765747,-0.514239847660065,0.680378913879395,-0.41602236032486,-0.9026899933815,-0.109892696142197,-0.800844073295593,-0.494639009237289,0.337610751390457,0.721885085105896,-0.337402790784836,-0.604186415672302,-0.41602236032486,-0.9026899933815,-0.109892696142197,0.848292529582977,0.447709947824478,-0.282764166593552,0.522151231765747,-0.514239847660065,0.680378913879395,-0.41602236032486,-0.9026899933815,-0.109892696142197,0.721885085105896,-0.337402790784836,-0.604186415672302,0.848292529582977,0.447709947824478,-0.282764166593552,0.848292529582977,0.447709947824478,-0.282764166593552,-0.118018813431263,0.786792039871216,0.605829894542694,0.522151231765747,-0.514239847660065,0.680378913879395,-0.245160818099976,0.806658148765564,0.537772119045258,0.848292529582977,0.447709947824478,-0.282764166593552,0.721885085105896,-0.337402790784836,-0.604186415672302,0.848292529582977,0.447709947824478,-0.282764166593552,
- -0.245160818099976,0.806658148765564,0.537772119045258,-0.118018813431263,0.786792039871216,0.605829894542694,-0.692055821418762,0.629141628742218,0.353892177343369,-0.433865189552307,-0.0552192069590092,-0.899284183979034,-0.599746704101563,-0.071022629737854,-0.797031760215759,-0.599746704101563,-0.071022629737854,-0.797031760215759,-0.708925247192383,-0.244185373187065,-0.66166353225708,-0.692055821418762,0.629141628742218,0.353892177343369,-0.692055821418762,0.629141628742218,0.353892177343369,-0.708925247192383,-0.244185373187065,-0.66166353225708,-0.652008950710297,0.628442406654358,0.424198627471924,-0.708925247192383,-0.244185373187065,-0.66166353225708,-0.773646712303162,-0.323668509721756,-0.544710457324982,-0.652008950710297,0.628442406654358,0.424198627471924,0.677438378334045,0.126035049557686,0.724701583385468,-0.692055821418762,0.629141628742218,0.353892177343369,-0.652008950710297,0.628442406654358,0.424198627471924,-0.692055821418762,0.629141628742218,0.353892177343369,0.677438378334045,0.126035049557686,0.724701583385468,0.834568083286285,-0.472397029399872,0.283438175916672,-0.0789583101868629,0.647458136081696,0.757999837398529,-0.652008950710297,0.628442406654358,0.424198627471924,-0.773646712303162,-0.323668509721756,-0.544710457324982,-0.652008950710297,0.628442406654358,0.424198627471924,-0.0789583101868629,0.647458136081696,0.757999837398529,0.677438378334045,0.126035049557686,0.724701583385468,-0.773646712303162,-0.323668509721756,-0.544710457324982,-0.721640765666962,0.235317647457123,0.651045441627502,-0.0789583101868629,0.647458136081696,0.757999837398529,-0.721640765666962,0.235317647457123,0.651045441627502,-0.773646712303162,-0.323668509721756,-0.544710457324982,-0.496525049209595,-0.307372629642487,-0.811779022216797,-0.721640765666962,0.235317647457123,0.651045441627502,-0.496525049209595,-0.307372629642487,-0.811779022216797,-0.0786038190126419,-0.951106190681458,0.298694521188736,0.643538177013397,0.204048693180084,0.737714529037476,-0.721640765666962,0.235317647457123,0.651045441627502,
- -0.0786038190126419,-0.951106190681458,0.298694521188736,0.643538177013397,0.204048693180084,0.737714529037476,-0.0789583101868629,0.647458136081696,0.757999837398529,-0.721640765666962,0.235317647457123,0.651045441627502,0.157499849796295,-0.393749624490738,-0.905624091625214,0.643538177013397,0.204048693180084,0.737714529037476,-0.0786038190126419,-0.951106190681458,0.298694521188736,-0.0789583101868629,0.647458136081696,0.757999837398529,0.643538177013397,0.204048693180084,0.737714529037476,0.7007657289505,-0.566911518573761,-0.433057457208633,0.643538177013397,0.204048693180084,0.737714529037476,0.157499849796295,-0.393749624490738,-0.905624091625214,0.7007657289505,-0.566911518573761,-0.433057457208633,0.7007657289505,-0.566911518573761,-0.433057457208633,0.677438378334045,0.126035049557686,0.724701583385468,-0.0789583101868629,0.647458136081696,0.757999837398529,-0.773646712303162,-0.323668509721756,-0.544710457324982,0.7007657289505,-0.566911518573761,-0.433057457208633,0.157499849796295,-0.393749624490738,-0.905624091625214,-0.708925247192383,-0.244185373187065,-0.66166353225708,0.7007657289505,-0.566911518573761,-0.433057457208633,-0.773646712303162,-0.323668509721756,-0.544710457324982,0.677438378334045,0.126035049557686,0.724701583385468,0.7007657289505,-0.566911518573761,-0.433057457208633,0.631942272186279,-0.671438694000244,-0.387064665555954,0.7007657289505,-0.566911518573761,-0.433057457208633,-0.708925247192383,-0.244185373187065,-0.66166353225708,0.631942272186279,-0.671438694000244,-0.387064665555954,0.834568083286285,-0.472397029399872,0.283438175916672,0.677438378334045,0.126035049557686,0.724701583385468,0.631942272186279,-0.671438694000244,-0.387064665555954,-0.708925247192383,-0.244185373187065,-0.66166353225708,-0.599746704101563,-0.071022629737854,-0.797031760215759,0.631942272186279,-0.671438694000244,-0.387064665555954,0.834568083286285,-0.472397029399872,0.283438175916672,0.631942272186279,-0.671438694000244,-0.387064665555954,-0.433865189552307,-0.0552192069590092,-0.899284183979034,-0.599746704101563,-0.071022629737854,-0.797031760215759,
- -0.433865189552307,-0.0552192069590092,-0.899284183979034,0.631942272186279,-0.671438694000244,-0.387064665555954,0.377753794193268,0.873555600643158,-0.306924939155579,-0.0629901736974716,0.984221458435059,-0.165349200367928,0.102109298110008,0.958256483078003,0.267055064439774,0.377753794193268,0.873555600643158,-0.306924939155579,0.102109298110008,0.958256483078003,0.267055064439774,0.597222983837128,0.60508120059967,0.526499211788177,0.597222983837128,0.60508120059967,0.526499211788177,0.94602632522583,-0.21285592019558,-0.24439013004303,0.377753794193268,0.873555600643158,-0.306924939155579,0.609004974365234,-0.22936549782753,0.759278893470764,0.94602632522583,-0.21285592019558,-0.24439013004303,0.597222983837128,0.60508120059967,0.526499211788177,0.606656670570374,-0.267874360084534,0.748472452163696,0.94602632522583,-0.21285592019558,-0.24439013004303,0.609004974365234,-0.22936549782753,0.759278893470764,0.695962131023407,-0.0949039235711098,0.711779415607452,0.94602632522583,-0.21285592019558,-0.24439013004303,0.606656670570374,-0.267874360084534,0.748472452163696,-0.434881120920181,0.26092866063118,-0.861855328083038,0.377753794193268,0.873555600643158,-0.306924939155579,0.94602632522583,-0.21285592019558,-0.24439013004303,-0.434881120920181,0.26092866063118,-0.861855328083038,-0.0942518189549446,0.981789767742157,-0.164940670132637,0.377753794193268,0.873555600643158,-0.306924939155579,0.94602632522583,-0.21285592019558,-0.24439013004303,0.695962131023407,-0.0949039235711098,0.711779415607452,0.890067338943481,-0.448972016572952,-0.0787670239806175,0.817176818847656,0.267153978347778,0.510735511779785,0.890067338943481,-0.448972016572952,-0.0787670239806175,0.695962131023407,-0.0949039235711098,0.711779415607452,0.252352118492126,-0.315440148115158,-0.91477644443512,0.94602632522583,-0.21285592019558,-0.24439013004303,0.890067338943481,-0.448972016572952,-0.0787670239806175,-0.434881120920181,0.26092866063118,-0.861855328083038,0.94602632522583,-0.21285592019558,-0.24439013004303,0.252352118492126,-0.315440148115158,-0.91477644443512,
- 0.890067338943481,-0.448972016572952,-0.0787670239806175,0.817176818847656,0.267153978347778,0.510735511779785,0.511478185653687,-0.684593856334686,-0.519347071647644,0.890067338943481,-0.448972016572952,-0.0787670239806175,0.511478185653687,-0.684593856334686,-0.519347071647644,0.252352118492126,-0.315440148115158,-0.91477644443512,0.817176818847656,0.267153978347778,0.510735511779785,0.700440108776093,-0.472206801176071,-0.535167694091797,0.511478185653687,-0.684593856334686,-0.519347071647644,0.700440108776093,-0.472206801176071,-0.535167694091797,0.817176818847656,0.267153978347778,0.510735511779785,0.903692722320557,0.314327895641327,0.290753304958344,-0.802155554294586,-0.133692592382431,-0.581956028938293,0.252352118492126,-0.315440148115158,-0.91477644443512,0.511478185653687,-0.684593856334686,-0.519347071647644,0.700440108776093,-0.472206801176071,-0.535167694091797,0.903692722320557,0.314327895641327,0.290753304958344,0.212796464562416,-0.543813109397888,-0.811779022216797,0.964253664016724,0.079037182033062,-0.252918988466263,0.212796464562416,-0.543813109397888,-0.811779022216797,0.903692722320557,0.314327895641327,0.290753304958344,0.964253664016724,0.079037182033062,-0.252918988466263,0.72910350561142,-0.117597341537476,-0.674224734306335,0.212796464562416,-0.543813109397888,-0.811779022216797,0.511478185653687,-0.684593856334686,-0.519347071647644,0.700440108776093,-0.472206801176071,-0.535167694091797,-0.644232988357544,-0.6363765001297,-0.424251049757004,-0.802155554294586,-0.133692592382431,-0.581956028938293,0.511478185653687,-0.684593856334686,-0.519347071647644,-0.644232988357544,-0.6363765001297,-0.424251049757004,0.212796464562416,-0.543813109397888,-0.811779022216797,-0.644232988357544,-0.6363765001297,-0.424251049757004,0.700440108776093,-0.472206801176071,-0.535167694091797,0.252352118492126,-0.315440148115158,-0.91477644443512,-0.802155554294586,-0.133692592382431,-0.581956028938293,-0.701461851596832,0.126105487346649,-0.701461851596832,-0.701461851596832,0.126105487346649,-0.701461851596832,
- -0.434881120920181,0.26092866063118,-0.861855328083038,0.252352118492126,-0.315440148115158,-0.91477644443512,-0.840127050876617,0.502505898475647,0.20414300262928,-0.701461851596832,0.126105487346649,-0.701461851596832,-0.802155554294586,-0.133692592382431,-0.581956028938293,-0.644232988357544,-0.6363765001297,-0.424251049757004,-0.840127050876617,0.502505898475647,0.20414300262928,-0.802155554294586,-0.133692592382431,-0.581956028938293,-0.906383275985718,0.338908523321152,0.252211004495621,-0.434881120920181,0.26092866063118,-0.861855328083038,-0.701461851596832,0.126105487346649,-0.701461851596832,-0.701461851596832,0.126105487346649,-0.701461851596832,-0.840127050876617,0.502505898475647,0.20414300262928,-0.906383275985718,0.338908523321152,0.252211004495621,-0.635494530200958,0.36089813709259,0.68256813287735,-0.0942518189549446,0.981789767742157,-0.164940670132637,-0.434881120920181,0.26092866063118,-0.861855328083038,-0.434881120920181,0.26092866063118,-0.861855328083038,-0.906383275985718,0.338908523321152,0.252211004495621,-0.635494530200958,0.36089813709259,0.68256813287735,-0.635494530200958,0.36089813709259,0.68256813287735,0.126097679138184,0.945732593536377,0.299481987953186,-0.0942518189549446,0.981789767742157,-0.164940670132637,-0.635494530200958,0.36089813709259,0.68256813287735,0.640461325645447,0.371625691652298,0.672089040279388,0.126097679138184,0.945732593536377,0.299481987953186,-0.635494530200958,0.36089813709259,0.68256813287735,-0.10242572426796,-0.0630312189459801,0.992741703987122,0.640461325645447,0.371625691652298,0.672089040279388,-0.10242572426796,-0.0630312189459801,0.992741703987122,-0.635494530200958,0.36089813709259,0.68256813287735,-0.906383275985718,0.338908523321152,0.252211004495621,0.640461325645447,0.371625691652298,0.672089040279388,-0.10242572426796,-0.0630312189459801,0.992741703987122,0.609004974365234,-0.22936549782753,0.759278893470764,-0.10242572426796,-0.0630312189459801,0.992741703987122,0.606656670570374,-0.267874360084534,0.748472452163696,0.609004974365234,-0.22936549782753,0.759278893470764,
- -0.10242572426796,-0.0630312189459801,0.992741703987122,0.695962131023407,-0.0949039235711098,0.711779415607452,0.606656670570374,-0.267874360084534,0.748472452163696,0.695962131023407,-0.0949039235711098,0.711779415607452,-0.10242572426796,-0.0630312189459801,0.992741703987122,0.0630998015403748,0.291836589574814,0.954384505748749,-0.906383275985718,0.338908523321152,0.252211004495621,0.0630998015403748,0.291836589574814,0.954384505748749,-0.10242572426796,-0.0630312189459801,0.992741703987122,0.0630998015403748,0.291836589574814,0.954384505748749,0.789189636707306,0.268324464559555,0.552432715892792,0.695962131023407,-0.0949039235711098,0.711779415607452,-0.906383275985718,0.338908523321152,0.252211004495621,0.0550754517316818,0.755320489406586,0.653037428855896,0.0630998015403748,0.291836589574814,0.954384505748749,0.789189636707306,0.268324464559555,0.552432715892792,0.0630998015403748,0.291836589574814,0.954384505748749,0.0550754517316818,0.755320489406586,0.653037428855896,0.0550754517316818,0.755320489406586,0.653037428855896,-0.906383275985718,0.338908523321152,0.252211004495621,-0.840127050876617,0.502505898475647,0.20414300262928,0.884085118770599,0.370999991893768,0.284170210361481,0.789189636707306,0.268324464559555,0.552432715892792,0.0550754517316818,0.755320489406586,0.653037428855896,-0.196351900696754,0.63618016242981,0.746137201786041,0.0550754517316818,0.755320489406586,0.653037428855896,-0.840127050876617,0.502505898475647,0.20414300262928,0.0550754517316818,0.755320489406586,0.653037428855896,-0.196351900696754,0.63618016242981,0.746137201786041,0.884085118770599,0.370999991893768,0.284170210361481,-0.840127050876617,0.502505898475647,0.20414300262928,-0.95881849527359,0.0707325041294098,0.275070875883102,-0.196351900696754,0.63618016242981,0.746137201786041,-0.840127050876617,0.502505898475647,0.20414300262928,-0.644232988357544,-0.6363765001297,-0.424251049757004,-0.95881849527359,0.0707325041294098,0.275070875883102,0.561391949653625,0.577205896377563,0.593019723892212,0.884085118770599,0.370999991893768,0.284170210361481,
- -0.196351900696754,0.63618016242981,0.746137201786041,0.964253664016724,0.079037182033062,-0.252918988466263,0.884085118770599,0.370999991893768,0.284170210361481,0.561391949653625,0.577205896377563,0.593019723892212,-0.95881849527359,0.0707325041294098,0.275070875883102,-0.644232988357544,-0.6363765001297,-0.424251049757004,-0.748565435409546,-0.472778171300888,-0.464898496866226,-0.644232988357544,-0.6363765001297,-0.424251049757004,0.212796464562416,-0.543813109397888,-0.811779022216797,-0.748565435409546,-0.472778171300888,-0.464898496866226,-0.717737972736359,0.118308454751968,0.686188995838165,-0.196351900696754,0.63618016242981,0.746137201786041,-0.95881849527359,0.0707325041294098,0.275070875883102,-0.95881849527359,0.0707325041294098,0.275070875883102,-0.748565435409546,-0.472778171300888,-0.464898496866226,-0.717737972736359,0.118308454751968,0.686188995838165,-0.196351900696754,0.63618016242981,0.746137201786041,-0.717737972736359,0.118308454751968,0.686188995838165,0.561391949653625,0.577205896377563,0.593019723892212,0.212796464562416,-0.543813109397888,-0.811779022216797,-0.69396835565567,-0.630880296230316,-0.346984177827835,-0.748565435409546,-0.472778171300888,-0.464898496866226,-0.748565435409546,-0.472778171300888,-0.464898496866226,-0.69396835565567,-0.630880296230316,-0.346984177827835,-0.717737972736359,0.118308454751968,0.686188995838165,0.561391949653625,0.577205896377563,0.593019723892212,0.864241719245911,0.487118065357208,0.125707879662514,0.964253664016724,0.079037182033062,-0.252918988466263,0.864241719245911,0.487118065357208,0.125707879662514,0.700743973255157,-0.133849963545799,-0.700743973255157,0.964253664016724,0.079037182033062,-0.252918988466263,0.864241719245911,0.487118065357208,0.125707879662514,0.561391949653625,0.577205896377563,0.593019723892212,0.118033424019814,0.550822615623474,0.826233983039856,-0.717737972736359,0.118308454751968,0.686188995838165,0.118033424019814,0.550822615623474,0.826233983039856,0.561391949653625,0.577205896377563,0.593019723892212,0.864241719245911,0.487118065357208,0.125707879662514,
- 0.663084447383881,0.663084447383881,-0.347329944372177,0.700743973255157,-0.133849963545799,-0.700743973255157,0.118033424019814,0.550822615623474,0.826233983039856,0.663084447383881,0.663084447383881,-0.347329944372177,0.864241719245911,0.487118065357208,0.125707879662514,0.700743973255157,-0.133849963545799,-0.700743973255157,0.663084447383881,0.663084447383881,-0.347329944372177,0.3860182762146,-0.126046791672707,-0.913839221000671,0.3860182762146,-0.126046791672707,-0.913839221000671,0.663084447383881,0.663084447383881,-0.347329944372177,-0.3466717004776,-0.1733358502388,-0.921831548213959,0.300210058689117,0.497716695070267,0.813727259635925,0.118033424019814,0.550822615623474,0.826233983039856,-0.717737972736359,0.118308454751968,0.686188995838165,0.663084447383881,0.663084447383881,-0.347329944372177,0.118033424019814,0.550822615623474,0.826233983039856,0.300210058689117,0.497716695070267,0.813727259635925,0.425738304853439,0.835708558559418,-0.346897900104523,-0.3466717004776,-0.1733358502388,-0.921831548213959,0.663084447383881,0.663084447383881,-0.347329944372177,0.425738304853439,0.835708558559418,-0.346897900104523,0.663084447383881,0.663084447383881,-0.347329944372177,0.300210058689117,0.497716695070267,0.813727259635925,-0.3466717004776,-0.1733358502388,-0.921831548213959,0.425738304853439,0.835708558559418,-0.346897900104523,-0.714500546455383,-0.109923161566257,-0.690945625305176,0.300210058689117,0.497716695070267,0.813727259635925,-0.717737972736359,0.118308454751968,0.686188995838165,-0.599317669868469,-0.662403702735901,0.44948822259903,-0.69396835565567,-0.630880296230316,-0.346984177827835,-0.599317669868469,-0.662403702735901,0.44948822259903,-0.717737972736359,0.118308454751968,0.686188995838165,0.425738304853439,0.835708558559418,-0.346897900104523,0.300210058689117,0.497716695070267,0.813727259635925,0.518193244934082,-0.22769096493721,0.824398338794708,0.518193244934082,-0.22769096493721,0.824398338794708,0.300210058689117,0.497716695070267,0.813727259635925,-0.599317669868469,-0.662403702735901,0.44948822259903,
- 0.425738304853439,0.835708558559418,-0.346897900104523,-0.32391083240509,0.711023807525635,-0.624120891094208,-0.714500546455383,-0.109923161566257,-0.690945625305176,-0.950401842594147,-0.219927683472633,-0.219927683472633,-0.714500546455383,-0.109923161566257,-0.690945625305176,-0.32391083240509,0.711023807525635,-0.624120891094208,0.867514491081238,0.496849179267883,-0.023659486323595,0.425738304853439,0.835708558559418,-0.346897900104523,0.518193244934082,-0.22769096493721,0.824398338794708,0.425738304853439,0.835708558559418,-0.346897900104523,0.867514491081238,0.496849179267883,-0.023659486323595,-0.32391083240509,0.711023807525635,-0.624120891094208,-0.32391083240509,0.711023807525635,-0.624120891094208,-0.299584329128265,0.701658010482788,-0.646471381187439,-0.950401842594147,-0.219927683472633,-0.219927683472633,0.867514491081238,0.496849179267883,-0.023659486323595,-0.299584329128265,0.701658010482788,-0.646471381187439,-0.32391083240509,0.711023807525635,-0.624120891094208,-0.914719521999359,-0.118282705545425,0.386390149593353,-0.950401842594147,-0.219927683472633,-0.219927683472633,-0.299584329128265,0.701658010482788,-0.646471381187439,0.867514491081238,0.496849179267883,-0.023659486323595,0.518193244934082,-0.22769096493721,0.824398338794708,0.393749624490738,-0.669374346733093,0.629999399185181,-0.831660389900208,0.509980380535126,-0.21968387067318,-0.914719521999359,-0.118282705545425,0.386390149593353,-0.299584329128265,0.701658010482788,-0.646471381187439,-0.431654781103134,-0.164813637733459,0.886854350566864,-0.914719521999359,-0.118282705545425,0.386390149593353,-0.831660389900208,0.509980380535126,-0.21968387067318,-0.831660389900208,0.509980380535126,-0.21968387067318,-0.0867002233862877,-0.0788183808326721,0.993111670017242,-0.431654781103134,-0.164813637733459,0.886854350566864,0.867514491081238,0.496849179267883,-0.023659486323595,0.989461004734039,-0.109940111637115,-0.0942343771457672,-0.299584329128265,0.701658010482788,-0.646471381187439,0.989461004734039,-0.109940111637115,-0.0942343771457672,
- 0.867514491081238,0.496849179267883,-0.023659486323595,0.393749624490738,-0.669374346733093,0.629999399185181,-0.831660389900208,0.509980380535126,-0.21968387067318,-0.299584329128265,0.701658010482788,-0.646471381187439,0.368426382541656,0.282198905944824,-0.885791063308716,0.989461004734039,-0.109940111637115,-0.0942343771457672,0.368426382541656,0.282198905944824,-0.885791063308716,-0.299584329128265,0.701658010482788,-0.646471381187439,-0.0867002233862877,-0.0788183808326721,0.993111670017242,-0.831660389900208,0.509980380535126,-0.21968387067318,-0.873988747596741,0.433057516813278,0.220465630292892,-0.873988747596741,0.433057516813278,0.220465630292892,0.118198208510876,-0.0157597605139017,0.992864966392517,-0.0867002233862877,-0.0788183808326721,0.993111670017242,-0.134153857827187,0.0946968495845795,-0.986425518989563,-0.831660389900208,0.509980380535126,-0.21968387067318,0.368426382541656,0.282198905944824,-0.885791063308716,-0.831660389900208,0.509980380535126,-0.21968387067318,-0.134153857827187,0.0946968495845795,-0.986425518989563,-0.873988747596741,0.433057516813278,0.220465630292892,-0.873988747596741,0.433057516813278,0.220465630292892,-0.622491240501404,0.0630370900034904,0.780083954334259,0.118198208510876,-0.0157597605139017,0.992864966392517,0.62195086479187,-0.173201516270638,0.76366114616394,0.118198208510876,-0.0157597605139017,0.992864966392517,-0.622491240501404,0.0630370900034904,0.780083954334259,-0.134153857827187,0.0946968495845795,-0.986425518989563,-0.739859402179718,0.0708375945687294,-0.669021785259247,-0.873988747596741,0.433057516813278,0.220465630292892,-0.622491240501404,0.0630370900034904,0.780083954334259,-0.873988747596741,0.433057516813278,0.220465630292892,-0.739859402179718,0.0708375945687294,-0.669021785259247,-0.622491240501404,0.0630370900034904,0.780083954334259,-0.612504601478577,0.180610328912735,0.769557058811188,0.62195086479187,-0.173201516270638,0.76366114616394,-0.739859402179718,0.0708375945687294,-0.669021785259247,-0.612504601478577,0.180610328912735,0.769557058811188,
- -0.622491240501404,0.0630370900034904,0.780083954334259,0.62195086479187,-0.173201516270638,0.76366114616394,-0.612504601478577,0.180610328912735,0.769557058811188,0.818466424942017,0.00786986947059631,0.574500501155853,-0.612504601478577,0.180610328912735,0.769557058811188,0.797031760215759,-0.071022629737854,0.599746704101563,0.818466424942017,0.00786986947059631,0.574500501155853,-0.612504601478577,0.180610328912735,0.769557058811188,0.682925581932068,-0.109896086156368,0.722174227237701,0.797031760215759,-0.071022629737854,0.599746704101563,0.682925581932068,-0.109896086156368,0.722174227237701,-0.612504601478577,0.180610328912735,0.769557058811188,-0.903218746185303,0.353433430194855,0.243476361036301,0.726552307605743,-0.418557316064835,-0.544914186000824,0.682925581932068,-0.109896086156368,0.722174227237701,-0.903218746185303,0.353433430194855,0.243476361036301,-0.672088980674744,-0.0869762301445007,-0.735344469547272,-0.903218746185303,0.353433430194855,0.243476361036301,-0.612504601478577,0.180610328912735,0.769557058811188,-0.672088980674744,-0.0869762301445007,-0.735344469547272,0.726552307605743,-0.418557316064835,-0.544914186000824,-0.903218746185303,0.353433430194855,0.243476361036301,-0.612504601478577,0.180610328912735,0.769557058811188,-0.739859402179718,0.0708375945687294,-0.669021785259247,-0.672088980674744,-0.0869762301445007,-0.735344469547272,0.726552307605743,-0.418557316064835,-0.544914186000824,-0.672088980674744,-0.0869762301445007,-0.735344469547272,0.670623183250427,-0.299808025360107,-0.678512871265411,0.726552307605743,-0.418557316064835,-0.544914186000824,0.670623183250427,-0.299808025360107,-0.678512871265411,0.786402702331543,-0.228056773543358,0.574073970317841,0.797031760215759,-0.071022629737854,0.599746704101563,0.786402702331543,-0.228056773543358,0.574073970317841,0.670623183250427,-0.299808025360107,-0.678512871265411,0.818466424942017,0.00786986947059631,0.574500501155853,0.797031760215759,-0.071022629737854,0.599746704101563,0.670623183250427,-0.299808025360107,-0.678512871265411,
- -0.672088980674744,-0.0869762301445007,-0.735344469547272,0.505049824714661,-0.071022629737854,-0.860163033008575,0.670623183250427,-0.299808025360107,-0.678512871265411,0.670623183250427,-0.299808025360107,-0.678512871265411,0.505049824714661,-0.071022629737854,-0.860163033008575,0.818466424942017,0.00786986947059631,0.574500501155853,0.505049824714661,-0.071022629737854,-0.860163033008575,-0.672088980674744,-0.0869762301445007,-0.735344469547272,-0.739859402179718,0.0708375945687294,-0.669021785259247,0.890620112419128,-0.197039842605591,0.409842848777771,0.818466424942017,0.00786986947059631,0.574500501155853,0.505049824714661,-0.071022629737854,-0.860163033008575,-0.739859402179718,0.0708375945687294,-0.669021785259247,0.656439363956451,-0.371718674898148,-0.656439363956451,0.505049824714661,-0.071022629737854,-0.860163033008575,0.656439363956451,-0.371718674898148,-0.656439363956451,0.890620112419128,-0.197039842605591,0.409842848777771,0.505049824714661,-0.071022629737854,-0.860163033008575,0.656439363956451,-0.371718674898148,-0.656439363956451,-0.739859402179718,0.0708375945687294,-0.669021785259247,-0.134153857827187,0.0946968495845795,-0.986425518989563,-0.134153857827187,0.0946968495845795,-0.986425518989563,0.368426382541656,0.282198905944824,-0.885791063308716,0.656439363956451,-0.371718674898148,-0.656439363956451,0.739974021911621,-0.385731130838394,0.551044464111328,0.890620112419128,-0.197039842605591,0.409842848777771,0.656439363956451,-0.371718674898148,-0.656439363956451,0.890620112419128,-0.197039842605591,0.409842848777771,0.739974021911621,-0.385731130838394,0.551044464111328,0.118198208510876,-0.0157597605139017,0.992864966392517,0.118198208510876,-0.0157597605139017,0.992864966392517,0.739974021911621,-0.385731130838394,0.551044464111328,-0.0867002233862877,-0.0788183808326721,0.993111670017242,0.739974021911621,-0.385731130838394,0.551044464111328,-0.431654781103134,-0.164813637733459,0.886854350566864,-0.0867002233862877,-0.0788183808326721,0.993111670017242,0.821781516075134,-0.537318646907806,0.189641892910004,
- 0.656439363956451,-0.371718674898148,-0.656439363956451,0.368426382541656,0.282198905944824,-0.885791063308716,0.656439363956451,-0.371718674898148,-0.656439363956451,0.821781516075134,-0.537318646907806,0.189641892910004,0.739974021911621,-0.385731130838394,0.551044464111328,0.739974021911621,-0.385731130838394,0.551044464111328,0.821781516075134,-0.537318646907806,0.189641892910004,-0.431654781103134,-0.164813637733459,0.886854350566864,0.368426382541656,0.282198905944824,-0.885791063308716,0.989461004734039,-0.109940111637115,-0.0942343771457672,0.821781516075134,-0.537318646907806,0.189641892910004,0.821781516075134,-0.537318646907806,0.189641892910004,0.172997906804085,-0.613356173038483,0.770626962184906,-0.431654781103134,-0.164813637733459,0.886854350566864,0.821781516075134,-0.537318646907806,0.189641892910004,0.989461004734039,-0.109940111637115,-0.0942343771457672,0.172997906804085,-0.613356173038483,0.770626962184906,-0.86539089679718,-0.188812553882599,0.464164197444916,-0.431654781103134,-0.164813637733459,0.886854350566864,0.172997906804085,-0.613356173038483,0.770626962184906,0.172997906804085,-0.613356173038483,0.770626962184906,0.989461004734039,-0.109940111637115,-0.0942343771457672,0.393749624490738,-0.669374346733093,0.629999399185181,0.172997906804085,-0.613356173038483,0.770626962184906,-0.919522762298584,-0.385099291801453,-0.0785916894674301,-0.86539089679718,-0.188812553882599,0.464164197444916,-0.919522762298584,-0.385099291801453,-0.0785916894674301,0.172997906804085,-0.613356173038483,0.770626962184906,0.393749624490738,-0.669374346733093,0.629999399185181,0.393749624490738,-0.669374346733093,0.629999399185181,-0.44125959277153,-0.84312105178833,0.307305812835693,-0.919522762298584,-0.385099291801453,-0.0785916894674301,-0.44125959277153,-0.84312105178833,0.307305812835693,0.393749624490738,-0.669374346733093,0.629999399185181,0.518193244934082,-0.22769096493721,0.824398338794708,-0.714500546455383,-0.109923161566257,-0.690945625305176,-0.919522762298584,-0.385099291801453,-0.0785916894674301,
- -0.44125959277153,-0.84312105178833,0.307305812835693,0.518193244934082,-0.22769096493721,0.824398338794708,-0.599317669868469,-0.662403702735901,0.44948822259903,-0.44125959277153,-0.84312105178833,0.307305812835693,-0.44125959277153,-0.84312105178833,0.307305812835693,-0.518801212310791,-0.723177492618561,-0.455916225910187,-0.714500546455383,-0.109923161566257,-0.690945625305176,-0.518801212310791,-0.723177492618561,-0.455916225910187,-0.44125959277153,-0.84312105178833,0.307305812835693,-0.599317669868469,-0.662403702735901,0.44948822259903,-0.714500546455383,-0.109923161566257,-0.690945625305176,-0.518801212310791,-0.723177492618561,-0.455916225910187,-0.3466717004776,-0.1733358502388,-0.921831548213959,-0.599317669868469,-0.662403702735901,0.44948822259903,-0.69396835565567,-0.630880296230316,-0.346984177827835,-0.518801212310791,-0.723177492618561,-0.455916225910187,-0.3466717004776,-0.1733358502388,-0.921831548213959,-0.518801212310791,-0.723177492618561,-0.455916225910187,0.402161180973053,-0.126168221235275,-0.906834065914154,0.0236616898328066,-0.559993326663971,-0.828159153461456,-0.518801212310791,-0.723177492618561,-0.455916225910187,-0.69396835565567,-0.630880296230316,-0.346984177827835,-0.518801212310791,-0.723177492618561,-0.455916225910187,0.0236616898328066,-0.559993326663971,-0.828159153461456,0.402161180973053,-0.126168221235275,-0.906834065914154,-0.69396835565567,-0.630880296230316,-0.346984177827835,0.212796464562416,-0.543813109397888,-0.811779022216797,0.0236616898328066,-0.559993326663971,-0.828159153461456,0.72910350561142,-0.117597341537476,-0.674224734306335,0.402161180973053,-0.126168221235275,-0.906834065914154,0.0236616898328066,-0.559993326663971,-0.828159153461456,0.0236616898328066,-0.559993326663971,-0.828159153461456,0.212796464562416,-0.543813109397888,-0.811779022216797,0.72910350561142,-0.117597341537476,-0.674224734306335,0.560167610645294,-0.252469897270203,0.788968443870544,-0.86368203163147,-0.478950947523117,0.157033085823059,0.40363210439682,-0.459032595157623,0.791435539722443,
- -0.86368203163147,-0.478950947523117,0.157033085823059,0.36301589012146,-0.426149070262909,0.828623235225677,0.40363210439682,-0.459032595157623,0.791435539722443,0.36301589012146,-0.426149070262909,0.828623235225677,-0.86368203163147,-0.478950947523117,0.157033085823059,-0.811224937438965,-0.582821786403656,-0.0472558215260506,-0.7784423828125,-0.613318264484406,-0.133671924471855,0.36301589012146,-0.426149070262909,0.828623235225677,-0.811224937438965,-0.582821786403656,-0.0472558215260506,0.36301589012146,-0.426149070262909,0.828623235225677,-0.7784423828125,-0.613318264484406,-0.133671924471855,-0.197137832641602,0.0709696188569069,0.977803647518158,-0.7784423828125,-0.613318264484406,-0.133671924471855,-0.345504820346832,0.0863762050867081,0.934433400630951,-0.197137832641602,0.0709696188569069,0.977803647518158,-0.410839408636093,0.395037889480591,-0.821678817272186,-0.811224937438965,-0.582821786403656,-0.0472558215260506,-0.86368203163147,-0.478950947523117,0.157033085823059,-0.410839408636093,0.395037889480591,-0.821678817272186,-0.86368203163147,-0.478950947523117,0.157033085823059,0.275752991437912,0.583020687103271,-0.764229774475098,-0.7784423828125,-0.613318264484406,-0.133671924471855,-0.811224937438965,-0.582821786403656,-0.0472558215260506,0.0862831398844719,-0.125502735376358,-0.988334119319916,-0.410839408636093,0.395037889480591,-0.821678817272186,0.0862831398844719,-0.125502735376358,-0.988334119319916,-0.811224937438965,-0.582821786403656,-0.0472558215260506,-0.345504820346832,0.0863762050867081,0.934433400630951,-0.7784423828125,-0.613318264484406,-0.133671924471855,-0.196509540081024,-0.738875925540924,-0.644551336765289,0.0862831398844719,-0.125502735376358,-0.988334119319916,-0.196509540081024,-0.738875925540924,-0.644551336765289,-0.7784423828125,-0.613318264484406,-0.133671924471855,-0.196509540081024,-0.738875925540924,-0.644551336765289,-0.504062056541443,0.354418635368347,0.787596940994263,-0.345504820346832,0.0863762050867081,0.934433400630951,-0.410839408636093,0.395037889480591,-0.821678817272186,
- 0.275752991437912,0.583020687103271,-0.764229774475098,0.820629477500916,0.54445606470108,-0.173594698309898,0.560167610645294,-0.252469897270203,0.788968443870544,0.820629477500916,0.54445606470108,-0.173594698309898,0.275752991437912,0.583020687103271,-0.764229774475098,0.820629477500916,0.54445606470108,-0.173594698309898,0.560167610645294,-0.252469897270203,0.788968443870544,0.40363210439682,-0.459032595157623,0.791435539722443,0.306205093860626,-0.400422036647797,0.863655388355255,0.820629477500916,0.54445606470108,-0.173594698309898,0.40363210439682,-0.459032595157623,0.791435539722443,-0.410839408636093,0.395037889480591,-0.821678817272186,0.820629477500916,0.54445606470108,-0.173594698309898,0.755741536617279,0.645529210567474,-0.110212311148643,0.820629477500916,0.54445606470108,-0.173594698309898,0.306205093860626,-0.400422036647797,0.863655388355255,0.755741536617279,0.645529210567474,-0.110212311148643,0.0862831398844719,-0.125502735376358,-0.988334119319916,-0.410839408636093,0.395037889480591,-0.821678817272186,0.755741536617279,0.645529210567474,-0.110212311148643,0.82432222366333,0.565249443054199,-0.0314027518033981,0.755741536617279,0.645529210567474,-0.110212311148643,0.306205093860626,-0.400422036647797,0.863655388355255,0.755741536617279,0.645529210567474,-0.110212311148643,0.82432222366333,0.565249443054199,-0.0314027518033981,0.0862831398844719,-0.125502735376358,-0.988334119319916,0.306205093860626,-0.400422036647797,0.863655388355255,-0.133816793560982,0.118073657155037,0.983947098255157,0.82432222366333,0.565249443054199,-0.0314027518033981,-0.345504820346832,0.0863762050867081,0.934433400630951,0.82432222366333,0.565249443054199,-0.0314027518033981,-0.133816793560982,0.118073657155037,0.983947098255157,0.565510869026184,0.824703454971313,0.00785431824624538,0.0862831398844719,-0.125502735376358,-0.988334119319916,0.82432222366333,0.565249443054199,-0.0314027518033981,0.565510869026184,0.824703454971313,0.00785431824624538,0.82432222366333,0.565249443054199,-0.0314027518033981,-0.345504820346832,0.0863762050867081,0.934433400630951,
- 0.0862831398844719,-0.125502735376358,-0.988334119319916,0.565510869026184,0.824703454971313,0.00785431824624538,-0.196509540081024,-0.738875925540924,-0.644551336765289,-0.345504820346832,0.0863762050867081,0.934433400630951,-0.496910959482193,0.378598809242249,0.780860066413879,0.565510869026184,0.824703454971313,0.00785431824624538,0.801659882068634,0.377251714468002,-0.463705241680145,-0.196509540081024,-0.738875925540924,-0.644551336765289,0.565510869026184,0.824703454971313,0.00785431824624538,0.565510869026184,0.824703454971313,0.00785431824624538,-0.496910959482193,0.378598809242249,0.780860066413879,0.801659882068634,0.377251714468002,-0.463705241680145,-0.487584739923477,-0.865069687366486,-0.117964051663876,-0.196509540081024,-0.738875925540924,-0.644551336765289,0.801659882068634,0.377251714468002,-0.463705241680145,-0.504062056541443,0.354418635368347,0.787596940994263,-0.196509540081024,-0.738875925540924,-0.644551336765289,-0.487584739923477,-0.865069687366486,-0.117964051663876,-0.496910959482193,0.378598809242249,0.780860066413879,0.789952516555786,0.481871038675308,0.379177212715149,0.801659882068634,0.377251714468002,-0.463705241680145,0.789952516555786,0.481871038675308,0.379177212715149,-0.496910959482193,0.378598809242249,0.780860066413879,-0.61252349615097,0.518289089202881,0.5968177318573,0.789952516555786,0.481871038675308,0.379177212715149,-0.61252349615097,0.518289089202881,0.5968177318573,0.133816793560982,-0.716313421726227,0.684827089309692,0.801659882068634,0.377251714468002,-0.463705241680145,-0.157749518752098,-0.843959987163544,-0.51268595457077,-0.487584739923477,-0.865069687366486,-0.117964051663876,-0.157749518752098,-0.843959987163544,-0.51268595457077,0.801659882068634,0.377251714468002,-0.463705241680145,0.789952516555786,0.481871038675308,0.379177212715149,-0.487584739923477,-0.865069687366486,-0.117964051663876,-0.157749518752098,-0.843959987163544,-0.51268595457077,-0.504062056541443,0.354418635368347,0.787596940994263,-0.157749518752098,-0.843959987163544,-0.51268595457077,
- 0.789952516555786,0.481871038675308,0.379177212715149,0.133816793560982,-0.716313421726227,0.684827089309692,-0.61252349615097,0.518289089202881,0.5968177318573,-0.504062056541443,0.354418635368347,0.787596940994263,-0.157749518752098,-0.843959987163544,-0.51268595457077,-0.61252349615097,0.518289089202881,0.5968177318573,-0.157749518752098,-0.843959987163544,-0.51268595457077,0.133816793560982,-0.716313421726227,0.684827089309692,0.614382803440094,0.764040112495422,0.196917548775673,-0.856332004070282,0.502800464630127,0.117843858897686,0,0.58347362279892,0.812132120132446,-0.856332004070282,0.502800464630127,0.117843858897686,0.614382803440094,0.764040112495422,0.196917548775673,-0.117843858897686,0.597075581550598,-0.793481945991516,-0.856332004070282,0.502800464630127,0.117843858897686,-0.117843858897686,0.597075581550598,-0.793481945991516,-0.322824656963348,0.0551164075732231,-0.944852709770203,-0.322824656963348,0.0551164075732231,-0.944852709770203,-0.117843858897686,0.597075581550598,-0.793481945991516,0.870889604091644,-0.141225337982178,-0.470751166343689,0.870889604091644,-0.141225337982178,-0.470751166343689,-0.117843858897686,0.597075581550598,-0.793481945991516,0.907172560691834,0.418088227510452,0.0473307408392429,0.125688493251801,0.141399547457695,0.981941342353821,0.870889604091644,-0.141225337982178,-0.470751166343689,0.907172560691834,0.418088227510452,0.0473307408392429,0.870889604091644,-0.141225337982178,-0.470751166343689,0.125688493251801,0.141399547457695,0.981941342353821,0.434040725231171,-0.0473498962819576,0.899648070335388,0.434040725231171,-0.0473498962819576,0.899648070335388,0.755741536617279,-0.299147695302963,-0.582550764083862,0.870889604091644,-0.141225337982178,-0.470751166343689,-0.322824656963348,0.0551164075732231,-0.944852709770203,0.870889604091644,-0.141225337982178,-0.470751166343689,0.755741536617279,-0.299147695302963,-0.582550764083862,0.755741536617279,-0.299147695302963,-0.582550764083862,0.434040725231171,-0.0473498962819576,0.899648070335388,0.684022307395935,-0.0943479016423225,0.723333954811096,
- -0.931533813476563,0.165781438350677,0.323668509721756,-0.856332004070282,0.502800464630127,0.117843858897686,-0.322824656963348,0.0551164075732231,-0.944852709770203,-0.856332004070282,0.502800464630127,0.117843858897686,-0.931533813476563,0.165781438350677,0.323668509721756,0.0942343771457672,0.109940111637115,0.989461004734039,0.0942343771457672,0.109940111637115,0.989461004734039,-0.931533813476563,0.165781438350677,0.323668509721756,0.434040725231171,-0.0473498962819576,0.899648070335388,-0.931533813476563,0.165781438350677,0.323668509721756,0.684022307395935,-0.0943479016423225,0.723333954811096,0.434040725231171,-0.0473498962819576,0.899648070335388,-0.550635099411011,-0.0393310822546482,-0.833818972110748,-0.322824656963348,0.0551164075732231,-0.944852709770203,0.755741536617279,-0.299147695302963,-0.582550764083862,-0.322824656963348,0.0551164075732231,-0.944852709770203,-0.550635099411011,-0.0393310822546482,-0.833818972110748,-0.931533813476563,0.165781438350677,0.323668509721756,0.684022307395935,-0.0943479016423225,0.723333954811096,-0.931533813476563,0.165781438350677,0.323668509721756,-0.732965469360352,0.307372599840164,0.606863856315613,-0.732965469360352,0.307372599840164,0.606863856315613,-0.931533813476563,0.165781438350677,0.323668509721756,-0.550635099411011,-0.0393310822546482,-0.833818972110748,-0.732965469360352,0.307372599840164,0.606863856315613,0.825825095176697,-0.0786500051617622,0.558414995670319,0.684022307395935,-0.0943479016423225,0.723333954811096,0.755741536617279,-0.299147695302963,-0.582550764083862,0.456862896680832,-0.567140161991119,-0.685294330120087,-0.550635099411011,-0.0393310822546482,-0.833818972110748,0.684022307395935,-0.0943479016423225,0.723333954811096,0.456862896680832,-0.567140161991119,-0.685294330120087,0.755741536617279,-0.299147695302963,-0.582550764083862,0.456862896680832,-0.567140161991119,-0.685294330120087,0.684022307395935,-0.0943479016423225,0.723333954811096,0.825825095176697,-0.0786500051617622,0.558414995670319,0.456862896680832,-0.567140161991119,-0.685294330120087,
- 0.825825095176697,-0.0786500051617622,0.558414995670319,0.903469562530518,-0.188550174236298,0.38495659828186,-0.550635099411011,-0.0393310822546482,-0.833818972110748,-0.749123752117157,-0.0078855138272047,-0.662383139133453,-0.732965469360352,0.307372599840164,0.606863856315613,-0.749123752117157,-0.0078855138272047,-0.662383139133453,-0.550635099411011,-0.0393310822546482,-0.833818972110748,0.456862896680832,-0.567140161991119,-0.685294330120087,0.825825095176697,-0.0786500051617622,0.558414995670319,-0.732965469360352,0.307372599840164,0.606863856315613,-0.416690349578857,0.589656174182892,0.691863238811493,-0.416690349578857,0.589656174182892,0.691863238811493,-0.732965469360352,0.307372599840164,0.606863856315613,-0.749123752117157,-0.0078855138272047,-0.662383139133453,0.903469562530518,-0.188550174236298,0.38495659828186,0.825825095176697,-0.0786500051617622,0.558414995670319,-0.416690349578857,0.589656174182892,0.691863238811493,0.456862896680832,-0.567140161991119,-0.685294330120087,-0.939428150653839,0.213147565722466,-0.26840803027153,-0.749123752117157,-0.0078855138272047,-0.662383139133453,-0.749123752117157,-0.0078855138272047,-0.662383139133453,-0.939428150653839,0.213147565722466,-0.26840803027153,-0.416690349578857,0.589656174182892,0.691863238811493,0.903469562530518,-0.188550174236298,0.38495659828186,-0.157251372933388,-0.786256790161133,-0.597555220127106,0.456862896680832,-0.567140161991119,-0.685294330120087,-0.939428150653839,0.213147565722466,-0.26840803027153,0.456862896680832,-0.567140161991119,-0.685294330120087,-0.157251372933388,-0.786256790161133,-0.597555220127106,-0.157251372933388,-0.786256790161133,-0.597555220127106,0.903469562530518,-0.188550174236298,0.38495659828186,0.946762144565582,-0.307697683572769,0.094676211476326,0.903469562530518,-0.188550174236298,0.38495659828186,-0.416690349578857,0.589656174182892,0.691863238811493,0.05489731580019,0.839144706726074,0.541130661964417,-0.416690349578857,0.589656174182892,0.691863238811493,-0.939428150653839,0.213147565722466,-0.26840803027153,
- 0.05489731580019,0.839144706726074,0.541130661964417,0.936949789524078,-0.322814643383026,0.133849963545799,0.903469562530518,-0.188550174236298,0.38495659828186,0.05489731580019,0.839144706726074,0.541130661964417,0.05489731580019,0.839144706726074,0.541130661964417,0.880934476852417,-0.440467238426209,-0.173040702939034,0.936949789524078,-0.322814643383026,0.133849963545799,0.946762144565582,-0.307697683572769,0.094676211476326,-0.464192926883698,-0.841841459274292,-0.275368690490723,-0.157251372933388,-0.786256790161133,-0.597555220127106,-0.464192926883698,-0.841841459274292,-0.275368690490723,-0.939428150653839,0.213147565722466,-0.26840803027153,-0.157251372933388,-0.786256790161133,-0.597555220127106,-0.464192926883698,-0.841841459274292,-0.275368690490723,0.946762144565582,-0.307697683572769,0.094676211476326,0.880934476852417,-0.440467238426209,-0.173040702939034,-0.966230273246765,0.204243794083595,0.157110601663589,0.05489731580019,0.839144706726074,0.541130661964417,-0.939428150653839,0.213147565722466,-0.26840803027153,-0.939428150653839,0.213147565722466,-0.26840803027153,-0.464192926883698,-0.841841459274292,-0.275368690490723,-0.966230273246765,0.204243794083595,0.157110601663589,0.880934476852417,-0.440467238426209,-0.173040702939034,0.05489731580019,0.839144706726074,0.541130661964417,0.354045480489731,0.920518219470978,0.165221214294434,-0.966230273246765,0.204243794083595,0.157110601663589,0.354045480489731,0.920518219470978,0.165221214294434,0.05489731580019,0.839144706726074,0.541130661964417,0.354045480489731,0.920518219470978,0.165221214294434,0.829450130462646,-0.268583834171295,-0.48977056145668,0.880934476852417,-0.440467238426209,-0.173040702939034,0.880934476852417,-0.440467238426209,-0.173040702939034,-0.614554464817047,-0.787890315055847,0.0393945164978504,-0.464192926883698,-0.841841459274292,-0.275368690490723,-0.614554464817047,-0.787890315055847,0.0393945164978504,-0.966230273246765,0.204243794083595,0.157110601663589,-0.464192926883698,-0.841841459274292,-0.275368690490723,-0.614554464817047,-0.787890315055847,0.0393945164978504,
- 0.880934476852417,-0.440467238426209,-0.173040702939034,0.829450130462646,-0.268583834171295,-0.48977056145668,-0.614554464817047,-0.787890315055847,0.0393945164978504,0.829450130462646,-0.268583834171295,-0.48977056145668,0.441328138113022,-0.110332034528255,-0.890537083148956,0.354045480489731,0.920518219470978,0.165221214294434,-0.966230273246765,0.204243794083595,0.157110601663589,-0.840853095054626,0.235753208398819,0.487223267555237,-0.966230273246765,0.204243794083595,0.157110601663589,-0.614554464817047,-0.787890315055847,0.0393945164978504,-0.840853095054626,0.235753208398819,0.487223267555237,-0.840853095054626,0.235753208398819,0.487223267555237,-0.353313595056534,0.0471084751188755,0.934318065643311,0.354045480489731,0.920518219470978,0.165221214294434,-0.840853095054626,0.235753208398819,0.487223267555237,-0.614554464817047,-0.787890315055847,0.0393945164978504,-0.353313595056534,0.0471084751188755,0.934318065643311,0.829450130462646,-0.268583834171295,-0.48977056145668,0.354045480489731,0.920518219470978,0.165221214294434,0.5363649725914,0.8439861536026,1.87402572038886e-016,0.5363649725914,0.8439861536026,1.87402572038886e-016,0.354045480489731,0.920518219470978,0.165221214294434,-0.353313595056534,0.0471084751188755,0.934318065643311,0.829450130462646,-0.268583834171295,-0.48977056145668,0.5363649725914,0.8439861536026,1.87402572038886e-016,0.441328138113022,-0.110332034528255,-0.890537083148956,0.5363649725914,0.8439861536026,1.87402572038886e-016,0.110212303698063,-0.0629784613847733,-0.991910755634308,0.441328138113022,-0.110332034528255,-0.890537083148956,0.441328138113022,-0.110332034528255,-0.890537083148956,-0.434027224779129,-0.852271616458893,0.291981965303421,-0.614554464817047,-0.787890315055847,0.0393945164978504,-0.353313595056534,0.0471084751188755,0.934318065643311,-0.614554464817047,-0.787890315055847,0.0393945164978504,-0.434027224779129,-0.852271616458893,0.291981965303421,-0.434027224779129,-0.852271616458893,0.291981965303421,0.441328138113022,-0.110332034528255,-0.890537083148956,
- 0.110212303698063,-0.0629784613847733,-0.991910755634308,-0.434027224779129,-0.852271616458893,0.291981965303421,0.110212303698063,-0.0629784613847733,-0.991910755634308,-0.118308454751968,-0.118308454751968,-0.985903739929199,-0.353313595056534,0.0471084751188755,0.934318065643311,0.031476553529501,-0.0157382767647505,0.999380588531494,0.5363649725914,0.8439861536026,1.87402572038886e-016,-0.434027224779129,-0.852271616458893,0.291981965303421,0.031476553529501,-0.0157382767647505,0.999380588531494,-0.353313595056534,0.0471084751188755,0.934318065643311,0.5363649725914,0.8439861536026,1.87402572038886e-016,0.291176170110703,0.920746207237244,-0.259697645902634,0.110212303698063,-0.0629784613847733,-0.991910755634308,0.5363649725914,0.8439861536026,1.87402572038886e-016,0.031476553529501,-0.0157382767647505,0.999380588531494,0.291176170110703,0.920746207237244,-0.259697645902634,0.110212303698063,-0.0629784613847733,-0.991910755634308,0.291176170110703,0.920746207237244,-0.259697645902634,-0.118308454751968,-0.118308454751968,-0.985903739929199,0.291176170110703,0.920746207237244,-0.259697645902634,-0.337319761514664,0.007844646461308,-0.941357553005219,-0.118308454751968,-0.118308454751968,-0.985903739929199,-0.118308454751968,-0.118308454751968,-0.985903739929199,-0.205234050750732,-0.734106361865997,0.64727658033371,-0.434027224779129,-0.852271616458893,0.291981965303421,-0.205234050750732,-0.734106361865997,0.64727658033371,0.031476553529501,-0.0157382767647505,0.999380588531494,-0.434027224779129,-0.852271616458893,0.291981965303421,-0.205234050750732,-0.734106361865997,0.64727658033371,-0.118308454751968,-0.118308454751968,-0.985903739929199,-0.337319761514664,0.007844646461308,-0.941357553005219,-0.205234050750732,-0.734106361865997,0.64727658033371,-0.337319761514664,0.007844646461308,-0.941357553005219,-0.730271458625793,1.5169134534529e-016,-0.683157086372375,0.031476553529501,-0.0157382767647505,0.999380588531494,0.385206371545792,0.141504377126694,0.911917090415955,0.291176170110703,0.920746207237244,-0.259697645902634,
- 0.031476553529501,-0.0157382767647505,0.999380588531494,-0.205234050750732,-0.734106361865997,0.64727658033371,0.385206371545792,0.141504377126694,0.911917090415955,0.385206371545792,0.141504377126694,0.911917090415955,0.810094952583313,0.0707849934697151,0.58201003074646,0.291176170110703,0.920746207237244,-0.259697645902634,0.810094952583313,0.0707849934697151,0.58201003074646,0.385206371545792,0.141504377126694,0.911917090415955,-0.205234050750732,-0.734106361865997,0.64727658033371,0.433487623929977,0.575356364250183,-0.693580269813538,-0.337319761514664,0.007844646461308,-0.941357553005219,0.291176170110703,0.920746207237244,-0.259697645902634,0.433487623929977,0.575356364250183,-0.693580269813538,0.291176170110703,0.920746207237244,-0.259697645902634,0.810094952583313,0.0707849934697151,0.58201003074646,-0.337319761514664,0.007844646461308,-0.941357553005219,0.433487623929977,0.575356364250183,-0.693580269813538,-0.730181396007538,-0.0157028250396252,-0.683072865009308,0.433487623929977,0.575356364250183,-0.693580269813538,-0.842310845851898,0.0629765093326569,-0.535300314426422,-0.730181396007538,-0.0157028250396252,-0.683072865009308,-0.730271458625793,1.5169134534529e-016,-0.683157086372375,-0.268224239349365,-0.504892706871033,0.820450603961945,-0.205234050750732,-0.734106361865997,0.64727658033371,-0.205234050750732,-0.734106361865997,0.64727658033371,-0.268224239349365,-0.504892706871033,0.820450603961945,0.810094952583313,0.0707849934697151,0.58201003074646,-0.268224239349365,-0.504892706871033,0.820450603961945,-0.730271458625793,1.5169134534529e-016,-0.683157086372375,-0.842310845851898,0.0629765093326569,-0.535300314426422,0.810094952583313,0.0707849934697151,0.58201003074646,0.970763623714447,-0.0394619330763817,0.236771613359451,0.433487623929977,0.575356364250183,-0.693580269813538,-0.268224239349365,-0.504892706871033,0.820450603961945,0.970763623714447,-0.0394619330763817,0.236771613359451,0.810094952583313,0.0707849934697151,0.58201003074646,-0.842310845851898,0.0629765093326569,-0.535300314426422,
- 0.433487623929977,0.575356364250183,-0.693580269813538,0.276276558637619,0.236808508634567,-0.931446731090546,0.276276558637619,0.236808508634567,-0.931446731090546,0.433487623929977,0.575356364250183,-0.693580269813538,0.970763623714447,-0.0394619330763817,0.236771613359451,0.276276558637619,0.236808508634567,-0.931446731090546,-0.955216944217682,0.0473661310970783,-0.292091131210327,-0.842310845851898,0.0629765093326569,-0.535300314426422,-0.842310845851898,0.0629765093326569,-0.535300314426422,-0.283394277095795,-0.165313333272934,0.944647669792175,-0.268224239349365,-0.504892706871033,0.820450603961945,0.970763623714447,-0.0394619330763817,0.236771613359451,-0.268224239349365,-0.504892706871033,0.820450603961945,-0.283394277095795,-0.165313333272934,0.944647669792175,-0.283394277095795,-0.165313333272934,0.944647669792175,-0.842310845851898,0.0629765093326569,-0.535300314426422,-0.953880250453949,-0.0709497630596161,-0.29168239235878,0.984374046325684,-0.0787499248981476,0.157499849796295,0.276276558637619,0.236808508634567,-0.931446731090546,0.970763623714447,-0.0394619330763817,0.236771613359451,-0.283394277095795,-0.165313333272934,0.944647669792175,0.984374046325684,-0.0787499248981476,0.157499849796295,0.970763623714447,-0.0394619330763817,0.236771613359451,0.24439013004303,-0.21285592019558,-0.94602632522583,-0.955216944217682,0.0473661310970783,-0.292091131210327,0.276276558637619,0.236808508634567,-0.931446731090546,0.276276558637619,0.236808508634567,-0.931446731090546,0.984374046325684,-0.0787499248981476,0.157499849796295,0.24439013004303,-0.21285592019558,-0.94602632522583,-0.951753377914429,0.00786573067307472,-0.306763470172882,-0.955216944217682,0.0473661310970783,-0.292091131210327,0.24439013004303,-0.21285592019558,-0.94602632522583,-0.953880250453949,-0.0709497630596161,-0.29168239235878,-0.150072246789932,0.221159100532532,0.96362179517746,-0.283394277095795,-0.165313333272934,0.944647669792175,0.984374046325684,-0.0787499248981476,0.157499849796295,-0.283394277095795,-0.165313333272934,0.944647669792175,
- -0.150072246789932,0.221159100532532,0.96362179517746,-0.150072246789932,0.221159100532532,0.96362179517746,-0.953880250453949,-0.0709497630596161,-0.29168239235878,-0.951753377914429,0.00786573067307472,-0.306763470172882,-0.951753377914429,0.00786573067307472,-0.306763470172882,-0.964179635047913,0.148938313126564,-0.21948803961277,-0.150072246789932,0.221159100532532,0.96362179517746,-0.951753377914429,0.00786573067307472,-0.306763470172882,0.24439013004303,-0.21285592019558,-0.94602632522583,0.252336442470551,-0.2917640209198,-0.922605037689209,0.984374046325684,-0.0787499248981476,0.157499849796295,0.252336442470551,-0.2917640209198,-0.922605037689209,0.24439013004303,-0.21285592019558,-0.94602632522583,-0.968924522399902,0.149671271443367,-0.196935877203941,-0.951753377914429,0.00786573067307472,-0.306763470172882,0.252336442470551,-0.2917640209198,-0.922605037689209,0.252336442470551,-0.2917640209198,-0.922605037689209,-0.67051887512207,-0.110438413918018,-0.733626544475555,-0.968924522399902,0.149671271443367,-0.196935877203941,-0.150072246789932,0.221159100532532,0.96362179517746,0.923208117485046,-0.126250684261322,0.36297070980072,0.984374046325684,-0.0787499248981476,0.157499849796295,0.252336442470551,-0.2917640209198,-0.922605037689209,0.984374046325684,-0.0787499248981476,0.157499849796295,0.923208117485046,-0.126250684261322,0.36297070980072,-0.150072246789932,0.221159100532532,0.96362179517746,-0.964179635047913,0.148938313126564,-0.21948803961277,-0.322824656963348,0.0551164075732231,0.944852709770203,0.923208117485046,-0.126250684261322,0.36297070980072,-0.150072246789932,0.221159100532532,0.96362179517746,-0.322824656963348,0.0551164075732231,0.944852709770203,-0.322824656963348,0.0551164075732231,0.944852709770203,-0.964179635047913,0.148938313126564,-0.21948803961277,-0.904810965061188,-0.118018828332424,-0.409131914377213,-0.904810965061188,-0.118018828332424,-0.409131914377213,-0.615184783935547,-0.268157482147217,0.741376578807831,-0.322824656963348,0.0551164075732231,0.944852709770203,0.972765982151031,0.211811944842339,0.0941386371850967,
- 0.252336442470551,-0.2917640209198,-0.922605037689209,0.923208117485046,-0.126250684261322,0.36297070980072,0.923208117485046,-0.126250684261322,0.36297070980072,-0.322824656963348,0.0551164075732231,0.944852709770203,0.972765982151031,0.211811944842339,0.0941386371850967,-0.322824656963348,0.0551164075732231,0.944852709770203,-0.615184783935547,-0.268157482147217,0.741376578807831,0.972765982151031,0.211811944842339,0.0941386371850967,0.252336442470551,-0.2917640209198,-0.922605037689209,0.972765982151031,0.211811944842339,0.0941386371850967,-0.67051887512207,-0.110438413918018,-0.733626544475555,0.972765982151031,0.211811944842339,0.0941386371850967,-0.615184783935547,-0.268157482147217,0.741376578807831,0.204496309161186,-0.94382917881012,0.259553015232086,-0.67051887512207,-0.110438413918018,-0.733626544475555,0.972765982151031,0.211811944842339,0.0941386371850967,0.315597206354141,0.0631194412708282,-0.946791589260101,0.315597206354141,0.0631194412708282,-0.946791589260101,0.972765982151031,0.211811944842339,0.0941386371850967,0.204496309161186,-0.94382917881012,0.259553015232086,-0.934635043144226,-0.30630898475647,-0.180643752217293,-0.67051887512207,-0.110438413918018,-0.733626544475555,0.315597206354141,0.0631194412708282,-0.946791589260101,-0.934635043144226,-0.30630898475647,-0.180643752217293,0.315597206354141,0.0631194412708282,-0.946791589260101,0.204496309161186,-0.94382917881012,0.259553015232086,-0.888855040073395,0.0943916887044907,-0.448360502719879,0.260286688804626,0.922834634780884,-0.283949106931686,0.479898601770401,-0.47203141450882,-0.739515841007233,-0.0236506573855877,0.94602632522583,-0.323225647211075,0.260286688804626,0.922834634780884,-0.283949106931686,-0.888855040073395,0.0943916887044907,-0.448360502719879,-0.888855040073395,0.0943916887044907,-0.448360502719879,-0.959440946578979,0.259520918130875,0.110099777579308,-0.0236506573855877,0.94602632522583,-0.323225647211075,-0.959440946578979,0.259520918130875,0.110099777579308,0.0550277754664421,0.888305485248566,-0.455944418907166,
- -0.0236506573855877,0.94602632522583,-0.323225647211075,-0.959440946578979,0.259520918130875,0.110099777579308,0.196406424045563,0.817050755023956,-0.542081713676453,0.0550277754664421,0.888305485248566,-0.455944418907166,0.196406424045563,0.817050755023956,-0.542081713676453,-0.959440946578979,0.259520918130875,0.110099777579308,-0.708859205245972,-0.283543676137924,0.645849525928497,-0.959440946578979,0.259520918130875,0.110099777579308,-0.888855040073395,0.0943916887044907,-0.448360502719879,-0.227880716323853,-0.966528534889221,0.117869339883327,-0.227880716323853,-0.966528534889221,0.117869339883327,-0.888855040073395,0.0943916887044907,-0.448360502719879,0.479898601770401,-0.47203141450882,-0.739515841007233,0.78069007396698,0.615089178085327,0.11040061712265,-0.227880716323853,-0.966528534889221,0.117869339883327,0.479898601770401,-0.47203141450882,-0.739515841007233,-0.708859205245972,-0.283543676137924,0.645849525928497,-0.959440946578979,0.259520918130875,0.110099777579308,-0.156844660639763,-0.925383448600769,0.345058262348175,-0.227880716323853,-0.966528534889221,0.117869339883327,-0.156844660639763,-0.925383448600769,0.345058262348175,-0.959440946578979,0.259520918130875,0.110099777579308,-0.156844660639763,-0.925383448600769,0.345058262348175,0.787572503089905,-0.385910511016846,-0.480419248342514,-0.708859205245972,-0.283543676137924,0.645849525928497,0.937211275100708,-0.315028995275497,-0.149638786911964,-0.227880716323853,-0.966528534889221,0.117869339883327,0.78069007396698,0.615089178085327,0.11040061712265,-0.227880716323853,-0.966528534889221,0.117869339883327,0.937211275100708,-0.315028995275497,-0.149638786911964,-0.156844660639763,-0.925383448600769,0.345058262348175,0.787572503089905,-0.385910511016846,-0.480419248342514,-0.156844660639763,-0.925383448600769,0.345058262348175,0.937211275100708,-0.315028995275497,-0.149638786911964,0.78069007396698,0.615089178085327,0.11040061712265,-0.0236506573855877,0.94602632522583,-0.323225647211075,0.937211275100708,-0.315028995275497,-0.149638786911964,
- 0.937211275100708,-0.315028995275497,-0.149638786911964,-0.0236506573855877,0.94602632522583,-0.323225647211075,0.0550277754664421,0.888305485248566,-0.455944418907166,0.787572503089905,-0.385910511016846,-0.480419248342514,0.937211275100708,-0.315028995275497,-0.149638786911964,0.0550277754664421,0.888305485248566,-0.455944418907166,0.0550277754664421,0.888305485248566,-0.455944418907166,0.196406424045563,0.817050755023956,-0.542081713676453,0.787572503089905,-0.385910511016846,-0.480419248342514,0.732079267501831,0.259770035743713,0.629745602607727,0.520136713981628,-0.070927731692791,-0.851132810115814,0.505191445350647,-0.13419146835804,-0.852510571479797,0.520136713981628,-0.070927731692791,-0.851132810115814,0.732079267501831,0.259770035743713,0.629745602607727,0.663808703422546,0.466246575117111,0.584783852100372,0.663808703422546,0.466246575117111,0.584783852100372,0.535649001598358,0.204806968569756,-0.819227874279022,0.520136713981628,-0.070927731692791,-0.851132810115814,0.732079267501831,0.259770035743713,0.629745602607727,-0.606882750988007,-0.102460712194443,0.788159370422363,0.663808703422546,0.466246575117111,0.584783852100372,-0.691201329231262,-0.00785456039011478,0.722619533538818,-0.606882750988007,-0.102460712194443,0.788159370422363,0.732079267501831,0.259770035743713,0.629745602607727,-0.866356730461121,-0.307162821292877,-0.393798500299454,-0.606882750988007,-0.102460712194443,0.788159370422363,-0.691201329231262,-0.00785456039011478,0.722619533538818,0.792601883411407,0.517937898635864,0.321749299764633,0.535649001598358,0.204806968569756,-0.819227874279022,0.663808703422546,0.466246575117111,0.584783852100372,0.535649001598358,0.204806968569756,-0.819227874279022,0.792601883411407,0.517937898635864,0.321749299764633,0.306735008955002,0.173030003905296,-0.935934960842133,-0.606882750988007,-0.102460712194443,0.788159370422363,-0.866356730461121,-0.307162821292877,-0.393798500299454,-0.805826961994171,-0.418714046478271,-0.418714046478271,0.505191445350647,-0.13419146835804,-0.852510571479797,
- -0.805826961994171,-0.418714046478271,-0.418714046478271,-0.866356730461121,-0.307162821292877,-0.393798500299454,-0.805826961994171,-0.418714046478271,-0.418714046478271,0.505191445350647,-0.13419146835804,-0.852510571479797,0.520136713981628,-0.070927731692791,-0.851132810115814,-0.149361103773117,-0.110055543482304,0.982638835906982,0.663808703422546,0.466246575117111,0.584783852100372,-0.606882750988007,-0.102460712194443,0.788159370422363,0.663808703422546,0.466246575117111,0.584783852100372,-0.149361103773117,-0.110055543482304,0.982638835906982,0.792601883411407,0.517937898635864,0.321749299764633,-0.805826961994171,-0.418714046478271,-0.418714046478271,-0.739424347877502,-0.582100033760071,-0.338247299194336,-0.606882750988007,-0.102460712194443,0.788159370422363,0.520136713981628,-0.070927731692791,-0.851132810115814,-0.739424347877502,-0.582100033760071,-0.338247299194336,-0.805826961994171,-0.418714046478271,-0.418714046478271,-0.739424347877502,-0.582100033760071,-0.338247299194336,-0.149361103773117,-0.110055543482304,0.982638835906982,-0.606882750988007,-0.102460712194443,0.788159370422363,-0.739424347877502,-0.582100033760071,-0.338247299194336,0.520136713981628,-0.070927731692791,-0.851132810115814,0.478862375020981,0.196255072951317,-0.855672121047974,0.346531927585602,0.244147479534149,-0.905708372592926,-0.739424347877502,-0.582100033760071,-0.338247299194336,0.478862375020981,0.196255072951317,-0.855672121047974,0.346531927585602,0.244147479534149,-0.905708372592926,-0.196110099554062,-0.0078444043174386,-0.980550527572632,-0.739424347877502,-0.582100033760071,-0.338247299194336,-0.449866056442261,-0.0473543219268322,-0.891839742660522,-0.739424347877502,-0.582100033760071,-0.338247299194336,-0.196110099554062,-0.0078444043174386,-0.980550527572632,-0.739424347877502,-0.582100033760071,-0.338247299194336,-0.449866056442261,-0.0473543219268322,-0.891839742660522,-0.674411296844482,-0.376415610313416,0.635201334953308,-0.739424347877502,-0.582100033760071,-0.338247299194336,-0.674411296844482,-0.376415610313416,0.635201334953308,
- -0.149361103773117,-0.110055543482304,0.982638835906982,-0.674411296844482,-0.376415610313416,0.635201334953308,-0.449866056442261,-0.0473543219268322,-0.891839742660522,-0.472792834043503,0.228516533970833,-0.851027071475983,-0.674411296844482,-0.376415610313416,0.635201334953308,-0.472792834043503,0.228516533970833,-0.851027071475983,-0.800498723983765,-0.423793464899063,0.423793464899063,-0.472792834043503,0.228516533970833,-0.851027071475983,-0.070636585354805,0.525850176811218,-0.847639143466949,-0.800498723983765,-0.423793464899063,0.423793464899063,-0.23616923391819,0.62978458404541,-0.739996910095215,-0.800498723983765,-0.423793464899063,0.423793464899063,-0.070636585354805,0.525850176811218,-0.847639143466949,0.416368782520294,-0.102128185331821,0.903441667556763,-0.149361103773117,-0.110055543482304,0.982638835906982,-0.674411296844482,-0.376415610313416,0.635201334953308,-0.800498723983765,-0.423793464899063,0.423793464899063,0.416368782520294,-0.102128185331821,0.903441667556763,-0.674411296844482,-0.376415610313416,0.635201334953308,-0.988790571689606,-0.00784754473716021,0.149103343486786,-0.800498723983765,-0.423793464899063,0.423793464899063,-0.23616923391819,0.62978458404541,-0.739996910095215,-0.212697356939316,0.480538457632065,-0.850789427757263,-0.988790571689606,-0.00784754473716021,0.149103343486786,-0.23616923391819,0.62978458404541,-0.739996910095215,-0.306735008955002,0.173030003905296,-0.935934960842133,-0.988790571689606,-0.00784754473716021,0.149103343486786,-0.212697356939316,0.480538457632065,-0.850789427757263,-0.31539112329483,0.141926005482674,-0.938288569450378,-0.988790571689606,-0.00784754473716021,0.149103343486786,-0.306735008955002,0.173030003905296,-0.935934960842133,0.141351565718651,-0.659640669822693,0.738169312477112,-0.800498723983765,-0.423793464899063,0.423793464899063,-0.988790571689606,-0.00784754473716021,0.149103343486786,0.416368782520294,-0.102128185331821,0.903441667556763,-0.800498723983765,-0.423793464899063,0.423793464899063,0.141351565718651,-0.659640669822693,0.738169312477112,
- -0.988790571689606,-0.00784754473716021,0.149103343486786,-0.31539112329483,0.141926005482674,-0.938288569450378,-0.173686623573303,-0.205265983939171,0.963171243667603,-0.31539112329483,0.141926005482674,-0.938288569450378,-0.442649722099304,-0.0790445953607559,-0.893203914165497,-0.173686623573303,-0.205265983939171,0.963171243667603,0.292565554380417,-0.474430620670319,0.830253601074219,-0.988790571689606,-0.00784754473716021,0.149103343486786,-0.173686623573303,-0.205265983939171,0.963171243667603,0.141351565718651,-0.659640669822693,0.738169312477112,-0.988790571689606,-0.00784754473716021,0.149103343486786,0.292565554380417,-0.474430620670319,0.830253601074219,-0.173686623573303,-0.205265983939171,0.963171243667603,-0.442649722099304,-0.0790445953607559,-0.893203914165497,0.976983845233917,-0.015757804736495,-0.21273036301136,0.976983845233917,-0.015757804736495,-0.21273036301136,0.292565554380417,-0.474430620670319,0.830253601074219,-0.173686623573303,-0.205265983939171,0.963171243667603,0.976983845233917,-0.015757804736495,-0.21273036301136,-0.442649722099304,-0.0790445953607559,-0.893203914165497,-0.31539112329483,0.141926005482674,-0.938288569450378,0.976983845233917,-0.015757804736495,-0.21273036301136,-0.31539112329483,0.141926005482674,-0.938288569450378,-0.306735008955002,0.173030003905296,-0.935934960842133,0.292565554380417,-0.474430620670319,0.830253601074219,0.976983845233917,-0.015757804736495,-0.21273036301136,0.976983845233917,0.015757804736495,-0.21273036301136,-0.306735008955002,0.173030003905296,-0.935934960842133,0.976983845233917,0.015757804736495,-0.21273036301136,0.976983845233917,-0.015757804736495,-0.21273036301136,0.976983845233917,0.015757804736495,-0.21273036301136,0.141351565718651,-0.659640669822693,0.738169312477112,0.292565554380417,-0.474430620670319,0.830253601074219,0.976983845233917,0.015757804736495,-0.21273036301136,-0.306735008955002,0.173030003905296,-0.935934960842133,-0.18820783495903,0.454835563898087,-0.870461165904999,0.976983845233917,0.015757804736495,-0.21273036301136,
- -0.18820783495903,0.454835563898087,-0.870461165904999,-0.23616923391819,0.62978458404541,-0.739996910095215,0.976983845233917,0.015757804736495,-0.21273036301136,0.915459871292114,0.268324434757233,-0.299892038106918,0.141351565718651,-0.659640669822693,0.738169312477112,-0.23616923391819,0.62978458404541,-0.739996910095215,0.915459871292114,0.268324434757233,-0.299892038106918,0.976983845233917,0.015757804736495,-0.21273036301136,0.416368782520294,-0.102128185331821,0.903441667556763,0.141351565718651,-0.659640669822693,0.738169312477112,0.915459871292114,0.268324434757233,-0.299892038106918,0.915459871292114,0.268324434757233,-0.299892038106918,-0.23616923391819,0.62978458404541,-0.739996910095215,-0.070636585354805,0.525850176811218,-0.847639143466949,-0.070636585354805,0.525850176811218,-0.847639143466949,0.716491043567657,0.417296975851059,-0.559020459651947,0.915459871292114,0.268324434757233,-0.299892038106918,0.716491043567657,0.417296975851059,-0.559020459651947,0.416368782520294,-0.102128185331821,0.903441667556763,0.915459871292114,0.268324434757233,-0.299892038106918,0.716491043567657,0.417296975851059,-0.559020459651947,-0.070636585354805,0.525850176811218,-0.847639143466949,-0.560376942157745,0.110496863722801,-0.820833802223206,0.416368782520294,-0.102128185331821,0.903441667556763,0.716491043567657,0.417296975851059,-0.559020459651947,0.786621630191803,0.346113532781601,-0.511304080486298,-0.560376942157745,0.110496863722801,-0.820833802223206,0.786621630191803,0.346113532781601,-0.511304080486298,0.716491043567657,0.417296975851059,-0.559020459651947,0.786621630191803,0.346113532781601,-0.511304080486298,-0.149361103773117,-0.110055543482304,0.982638835906982,0.416368782520294,-0.102128185331821,0.903441667556763,0.786621630191803,0.346113532781601,-0.511304080486298,-0.560376942157745,0.110496863722801,-0.820833802223206,-0.449866056442261,-0.0473543219268322,-0.891839742660522,-0.149361103773117,-0.110055543482304,0.982638835906982,0.786621630191803,0.346113532781601,-0.511304080486298,0.792601883411407,0.517937898635864,0.321749299764633,
- 0.786621630191803,0.346113532781601,-0.511304080486298,-0.449866056442261,-0.0473543219268322,-0.891839742660522,-0.196110099554062,-0.0078444043174386,-0.980550527572632,0.786621630191803,0.346113532781601,-0.511304080486298,0.306735008955002,0.173030003905296,-0.935934960842133,0.792601883411407,0.517937898635864,0.321749299764633,0.306735008955002,0.173030003905296,-0.935934960842133,0.786621630191803,0.346113532781601,-0.511304080486298,-0.196110099554062,-0.0078444043174386,-0.980550527572632,0.173330470919609,0.906045615673065,-0.386054217815399,-0.604409754276276,-0.0784947723150253,-0.792797207832336,-0.5894376039505,-0.243634209036827,-0.770198464393616,-0.604409754276276,-0.0784947723150253,-0.792797207832336,0.173330470919609,0.906045615673065,-0.386054217815399,0.693515658378601,0.677753865718842,0.244306638836861,0.173330470919609,0.906045615673065,-0.386054217815399,0.267261236906052,-0.534522473812103,0.801783740520477,0.693515658378601,0.677753865718842,0.244306638836861,0.572219133377075,0.666282534599304,-0.478155702352524,-0.604409754276276,-0.0784947723150253,-0.792797207832336,0.693515658378601,0.677753865718842,0.244306638836861,-0.604409754276276,-0.0784947723150253,-0.792797207832336,0.572219133377075,0.666282534599304,-0.478155702352524,-0.832814693450928,0.0628539323806763,-0.54997193813324,0.693515658378601,0.677753865718842,0.244306638836861,0.267261236906052,-0.534522473812103,0.801783740520477,-0.282764166593552,-0.848292529582977,0.447709947824478,-0.5894376039505,-0.243634209036827,-0.770198464393616,-0.282764166593552,-0.848292529582977,0.447709947824478,0.267261236906052,-0.534522473812103,0.801783740520477,-0.282764166593552,-0.848292529582977,0.447709947824478,-0.5894376039505,-0.243634209036827,-0.770198464393616,-0.604409754276276,-0.0784947723150253,-0.792797207832336,-0.832814693450928,0.0628539323806763,-0.54997193813324,-0.282764166593552,-0.848292529582977,0.447709947824478,-0.604409754276276,-0.0784947723150253,-0.792797207832336,-0.282764166593552,-0.848292529582977,0.447709947824478,
- 0.403051853179932,-0.545305490493774,0.734976947307587,0.693515658378601,0.677753865718842,0.244306638836861,0.403051853179932,-0.545305490493774,0.734976947307587,-0.282764166593552,-0.848292529582977,0.447709947824478,-0.832814693450928,0.0628539323806763,-0.54997193813324,0.572219133377075,0.666282534599304,-0.478155702352524,0.693515658378601,0.677753865718842,0.244306638836861,0.403051853179932,-0.545305490493774,0.734976947307587,-0.832814693450928,0.0628539323806763,-0.54997193813324,-0.330626666545868,-0.802950501441956,0.495940029621124,0.403051853179932,-0.545305490493774,0.734976947307587,-0.330626666545868,-0.802950501441956,0.495940029621124,-0.832814693450928,0.0628539323806763,-0.54997193813324,-0.920917332172394,0.283359169960022,-0.267616987228394,-0.920917332172394,0.283359169960022,-0.267616987228394,-0.919607877731323,0.369415134191513,-0.133618235588074,-0.330626666545868,-0.802950501441956,0.495940029621124,0.916002094745636,-0.323759347200394,0.236897110939026,0.572219133377075,0.666282534599304,-0.478155702352524,0.403051853179932,-0.545305490493774,0.734976947307587,0.916002094745636,-0.323759347200394,0.236897110939026,0.403051853179932,-0.545305490493774,0.734976947307587,-0.330626666545868,-0.802950501441956,0.495940029621124,0.572219133377075,0.666282534599304,-0.478155702352524,0.552209198474884,0.686317145824432,-0.473322242498398,-0.832814693450928,0.0628539323806763,-0.54997193813324,0.572219133377075,0.666282534599304,-0.478155702352524,0.916002094745636,-0.323759347200394,0.236897110939026,0.552209198474884,0.686317145824432,-0.473322242498398,-0.920917332172394,0.283359169960022,-0.267616987228394,-0.832814693450928,0.0628539323806763,-0.54997193813324,0.552209198474884,0.686317145824432,-0.473322242498398,0.552209198474884,0.686317145824432,-0.473322242498398,-0.919607877731323,0.369415134191513,-0.133618235588074,-0.920917332172394,0.283359169960022,-0.267616987228394,0.916002094745636,-0.323759347200394,0.236897110939026,0.927295923233032,0.235753208398819,-0.290762305259705,
- 0.552209198474884,0.686317145824432,-0.473322242498398,-0.919607877731323,0.369415134191513,-0.133618235588074,0.552209198474884,0.686317145824432,-0.473322242498398,0.927295923233032,0.235753208398819,-0.290762305259705,0.916002094745636,-0.323759347200394,0.236897110939026,-0.330626666545868,-0.802950501441956,0.495940029621124,0.927295923233032,0.235753208398819,-0.290762305259705,0.927295923233032,0.235753208398819,-0.290762305259705,-0.921231389045715,0.228339403867722,-0.314950913190842,-0.919607877731323,0.369415134191513,-0.133618235588074,-0.919607877731323,0.369415134191513,-0.133618235588074,-0.299808025360107,-0.678512871265411,0.670623183250427,-0.330626666545868,-0.802950501441956,0.495940029621124,-0.330626666545868,-0.802950501441956,0.495940029621124,-0.299808025360107,-0.678512871265411,0.670623183250427,0.927295923233032,0.235753208398819,-0.290762305259705,-0.299808025360107,-0.678512871265411,0.670623183250427,-0.919607877731323,0.369415134191513,-0.133618235588074,-0.921231389045715,0.228339403867722,-0.314950913190842,-0.999721229076386,5.243686086563e-018,-0.023615462705493,-0.299808025360107,-0.678512871265411,0.670623183250427,-0.921231389045715,0.228339403867722,-0.314950913190842,-0.299808025360107,-0.678512871265411,0.670623183250427,-0.999721229076386,5.243686086563e-018,-0.023615462705493,0.685677349567413,-0.244321823120117,0.685677349567413,-0.299808025360107,-0.678512871265411,0.670623183250427,0.685677349567413,-0.244321823120117,0.685677349567413,0.927295923233032,0.235753208398819,-0.290762305259705,0.685677349567413,-0.244321823120117,0.685677349567413,-0.999721229076386,5.243686086563e-018,-0.023615462705493,0.250882029533386,-0.454723656177521,-0.854566931724548,0.927295923233032,0.235753208398819,-0.290762305259705,0.141926005482674,0.31539112329483,-0.938288569450378,-0.921231389045715,0.228339403867722,-0.314950913190842,0.141926005482674,0.31539112329483,-0.938288569450378,0.927295923233032,0.235753208398819,-0.290762305259705,0.685677349567413,-0.244321823120117,0.685677349567413,
- 0.685677349567413,-0.244321823120117,0.685677349567413,0.250882029533386,-0.454723656177521,-0.854566931724548,0.141926005482674,0.31539112329483,-0.938288569450378,-0.964772641658783,-0.0470620803534985,-0.258841425180435,-0.921231389045715,0.228339403867722,-0.314950913190842,0.141926005482674,0.31539112329483,-0.938288569450378,0.250882029533386,-0.454723656177521,-0.854566931724548,-0.964772641658783,-0.0470620803534985,-0.258841425180435,0.141926005482674,0.31539112329483,-0.938288569450378,-0.856966972351074,0.188689976930618,0.479587018489838,-0.566314995288849,0.188771679997444,-0.802279591560364,-0.495740383863449,0.0708200484514236,-0.865578413009644,-0.566314995288849,0.188771679997444,-0.802279591560364,-0.856966972351074,0.188689976930618,0.479587018489838,-0.307048588991165,0.267683357000351,0.913272678852081,-0.307048588991165,0.267683357000351,0.913272678852081,-0.450146526098251,0.0315892323851585,-0.892395794391632,-0.566314995288849,0.188771679997444,-0.802279591560364,-0.307048588991165,0.267683357000351,0.913272678852081,-0.856966972351074,0.188689976930618,0.479587018489838,0.930635273456573,-0.291809380054474,0.220828711986542,0.930635273456573,-0.291809380054474,0.220828711986542,-0.856966972351074,0.188689976930618,0.479587018489838,0.385814815759659,-0.409436106681824,-0.826746046543121,-0.450146526098251,0.0315892323851585,-0.892395794391632,-0.307048588991165,0.267683357000351,0.913272678852081,-0.655313074588776,0.568464338779449,0.497406333684921,-0.655313074588776,0.568464338779449,0.497406333684921,-0.653705477714539,0.0315038822591305,-0.756093144416809,-0.450146526098251,0.0315892323851585,-0.892395794391632,-0.653705477714539,0.0315038822591305,-0.756093144416809,-0.655313074588776,0.568464338779449,0.497406333684921,-0.14947198331356,0.267476171255112,0.951900541782379,0.385814815759659,-0.409436106681824,-0.826746046543121,-0.495740383863449,0.0708200484514236,-0.865578413009644,0.930635273456573,-0.291809380054474,0.220828711986542,-0.495740383863449,0.0708200484514236,-0.865578413009644,
- 0.385814815759659,-0.409436106681824,-0.826746046543121,-0.574358224868774,-0.0236037615686655,-0.818263709545136,-0.495740383863449,0.0708200484514236,-0.865578413009644,0.745631456375122,-0.455227613449097,-0.486622631549835,0.930635273456573,-0.291809380054474,0.220828711986542,0.930635273456573,-0.291809380054474,0.220828711986542,0.745631456375122,-0.455227613449097,-0.486622631549835,-0.307048588991165,0.267683357000351,0.913272678852081,0.745631456375122,-0.455227613449097,-0.486622631549835,-0.495740383863449,0.0708200484514236,-0.865578413009644,-0.534621596336365,0.180827900767326,-0.825518667697906,-0.534621596336365,0.180827900767326,-0.825518667697906,-0.517810344696045,0.0235368330031633,-0.855171620845795,0.745631456375122,-0.455227613449097,-0.486622631549835,0.817580759525299,-0.487403929233551,0.306592792272568,-0.307048588991165,0.267683357000351,0.913272678852081,0.745631456375122,-0.455227613449097,-0.486622631549835,0.817580759525299,-0.487403929233551,0.306592792272568,0.745631456375122,-0.455227613449097,-0.486622631549835,-0.517810344696045,0.0235368330031633,-0.855171620845795,-0.655313074588776,0.568464338779449,0.497406333684921,-0.307048588991165,0.267683357000351,0.913272678852081,0.817580759525299,-0.487403929233551,0.306592792272568,0.817580759525299,-0.487403929233551,0.306592792272568,-0.14947198331356,0.267476171255112,0.951900541782379,-0.655313074588776,0.568464338779449,0.497406333684921,-0.14947198331356,0.267476171255112,0.951900541782379,0.817580759525299,-0.487403929233551,0.306592792272568,0.771557867527008,-0.377905905246735,-0.511747598648071,-0.517810344696045,0.0235368330031633,-0.855171620845795,0.771557867527008,-0.377905905246735,-0.511747598648071,0.817580759525299,-0.487403929233551,0.306592792272568,0.771557867527008,-0.377905905246735,-0.511747598648071,-0.517810344696045,0.0235368330031633,-0.855171620845795,-0.653705477714539,0.0315038822591305,-0.756093144416809,0.607014715671539,0.149782851338387,-0.780447483062744,-0.660353660583496,0.133643001317978,-0.73896723985672,
- 0.638171255588531,0.236359730362892,-0.73271518945694,-0.638547956943512,0.086716391146183,-0.764680862426758,-0.660353660583496,0.133643001317978,-0.73896723985672,0.607014715671539,0.149782851338387,-0.780447483062744,0.750408053398132,-0.165879666805267,-0.639821588993073,-0.638547956943512,0.086716391146183,-0.764680862426758,0.607014715671539,0.149782851338387,-0.780447483062744,-0.71582567691803,-0.1730567663908,0.676494598388672,-0.660353660583496,0.133643001317978,-0.73896723985672,-0.638547956943512,0.086716391146183,-0.764680862426758,-0.660353660583496,0.133643001317978,-0.73896723985672,-0.71582567691803,-0.1730567663908,0.676494598388672,-0.613261342048645,-0.298768371343613,0.731196224689484,-0.600532591342926,-0.252855807542801,-0.758567452430725,-0.638547956943512,0.086716391146183,-0.764680862426758,0.750408053398132,-0.165879666805267,-0.639821588993073,0.794487833976746,-0.361845970153809,-0.487705409526825,-0.600532591342926,-0.252855807542801,-0.758567452430725,0.750408053398132,-0.165879666805267,-0.639821588993073,0.764823436737061,-0.236543342471123,-0.5992431640625,-0.600532591342926,-0.252855807542801,-0.758567452430725,0.794487833976746,-0.361845970153809,-0.487705409526825,-0.638547956943512,0.086716391146183,-0.764680862426758,-0.806229650974274,0.229222163558006,0.545390665531158,-0.71582567691803,-0.1730567663908,0.676494598388672,-0.806229650974274,0.229222163558006,0.545390665531158,-0.638547956943512,0.086716391146183,-0.764680862426758,-0.600532591342926,-0.252855807542801,-0.758567452430725,0.718767046928406,0.0157970786094666,0.695071458816528,-0.613261342048645,-0.298768371343613,0.731196224689484,-0.71582567691803,-0.1730567663908,0.676494598388672,0.718767046928406,0.0157970786094666,0.695071458816528,-0.71582567691803,-0.1730567663908,0.676494598388672,-0.806229650974274,0.229222163558006,0.545390665531158,-0.613261342048645,-0.298768371343613,0.731196224689484,0.718767046928406,0.0157970786094666,0.695071458816528,0.830612897872925,-0.133211493492126,0.540681958198547,0.718767046928406,0.0157970786094666,0.695071458816528,
- 0.638171255588531,0.236359730362892,-0.73271518945694,0.830612897872925,-0.133211493492126,0.540681958198547,0.607014715671539,0.149782851338387,-0.780447483062744,0.638171255588531,0.236359730362892,-0.73271518945694,0.718767046928406,0.0157970786094666,0.695071458816528,0.607014715671539,0.149782851338387,-0.780447483062744,0.718767046928406,0.0157970786094666,0.695071458816528,0.735275506973267,-0.197654709219933,-0.6483074426651,0.718767046928406,0.0157970786094666,0.695071458816528,0.808595895767212,-0.306167393922806,-0.502428531646729,0.735275506973267,-0.197654709219933,-0.6483074426651,0.537772119045258,0.498230040073395,0.680123507976532,0.808595895767212,-0.306167393922806,-0.502428531646729,0.718767046928406,0.0157970786094666,0.695071458816528,-0.806229650974274,0.229222163558006,0.545390665531158,0.537772119045258,0.498230040073395,0.680123507976532,0.718767046928406,0.0157970786094666,0.695071458816528,0.808595895767212,-0.306167393922806,-0.502428531646729,0.537772119045258,0.498230040073395,0.680123507976532,0.764823436737061,-0.236543342471123,-0.5992431640625,0.537772119045258,0.498230040073395,0.680123507976532,0.772252261638641,-0.0788012519478798,-0.630410015583038,0.764823436737061,-0.236543342471123,-0.5992431640625,0.537772119045258,0.498230040073395,0.680123507976532,-0.806229650974274,0.229222163558006,0.545390665531158,-0.852271616458893,0.10258824378252,0.512941241264343,-0.600532591342926,-0.252855807542801,-0.758567452430725,-0.852271616458893,0.10258824378252,0.512941241264343,-0.806229650974274,0.229222163558006,0.545390665531158,0.772252261638641,-0.0788012519478798,-0.630410015583038,0.537772119045258,0.498230040073395,0.680123507976532,0.487403929233551,0.597462892532349,0.636769592761993,-0.852271616458893,0.10258824378252,0.512941241264343,-0.600532591342926,-0.252855807542801,-0.758567452430725,-0.598128616809845,-0.495817124843597,-0.629609048366547,-0.598128616809845,-0.495817124843597,-0.629609048366547,-0.600532591342926,-0.252855807542801,-0.758567452430725,0.764823436737061,-0.236543342471123,-0.5992431640625,
- -0.852271616458893,0.10258824378252,0.512941241264343,-0.774274230003357,0.031603030860424,0.632060647010803,0.537772119045258,0.498230040073395,0.680123507976532,0.487403929233551,0.597462892532349,0.636769592761993,0.537772119045258,0.498230040073395,0.680123507976532,-0.774274230003357,0.031603030860424,0.632060647010803,-0.598128616809845,-0.495817124843597,-0.629609048366547,-0.591726362705231,-0.615395367145538,-0.520719170570374,-0.852271616458893,0.10258824378252,0.512941241264343,0.764823436737061,-0.236543342471123,-0.5992431640625,-0.591726362705231,-0.615395367145538,-0.520719170570374,-0.598128616809845,-0.495817124843597,-0.629609048366547,-0.591726362705231,-0.615395367145538,-0.520719170570374,-0.774274230003357,0.031603030860424,0.632060647010803,-0.852271616458893,0.10258824378252,0.512941241264343,-0.591726362705231,-0.615395367145538,-0.520719170570374,0.764823436737061,-0.236543342471123,-0.5992431640625,0.772252261638641,-0.0788012519478798,-0.630410015583038,-0.638547956943512,-0.086716391146183,0.764680862426758,0.487403929233551,0.597462892532349,0.636769592761993,-0.774274230003357,0.031603030860424,0.632060647010803,-0.591726362705231,-0.615395367145538,-0.520719170570374,-0.638547956943512,-0.086716391146183,0.764680862426758,-0.774274230003357,0.031603030860424,0.632060647010803,0.487403929233551,0.597462892532349,0.636769592761993,0.660905301570892,0.369792282581329,0.653037369251251,0.772252261638641,-0.0788012519478798,-0.630410015583038,0.487403929233551,0.597462892532349,0.636769592761993,-0.638547956943512,-0.086716391146183,0.764680862426758,0.660905301570892,0.369792282581329,0.653037369251251,0.772252261638641,-0.0788012519478798,-0.630410015583038,0.660905301570892,0.369792282581329,0.653037369251251,0.747799694538116,0.118073642253876,-0.653340816497803,0.772252261638641,-0.0788012519478798,-0.630410015583038,-0.679783463478088,-0.371509581804276,-0.632356762886047,-0.591726362705231,-0.615395367145538,-0.520719170570374,-0.638547956943512,-0.086716391146183,0.764680862426758,
- -0.591726362705231,-0.615395367145538,-0.520719170570374,-0.679783463478088,-0.371509581804276,-0.632356762886047,-0.679783463478088,-0.371509581804276,-0.632356762886047,0.772252261638641,-0.0788012519478798,-0.630410015583038,0.738419830799103,0.0942663550376892,-0.667720019817352,0.550703287124634,0.165210992097855,-0.818187773227692,-0.679783463478088,-0.371509581804276,-0.632356762886047,0.738419830799103,0.0942663550376892,-0.667720019817352,0.550703287124634,0.165210992097855,-0.818187773227692,-0.91921055316925,-0.345686018466949,-0.188556015491486,-0.679783463478088,-0.371509581804276,-0.632356762886047,-0.679783463478088,-0.371509581804276,-0.632356762886047,-0.91921055316925,-0.345686018466949,-0.188556015491486,-0.638547956943512,-0.086716391146183,0.764680862426758,-0.91921055316925,-0.345686018466949,-0.188556015491486,0.550703287124634,0.165210992097855,-0.818187773227692,0.379260122776031,-0.9244464635849,-0.0395062603056431,-0.91921055316925,-0.345686018466949,-0.188556015491486,0.724746584892273,0.0708991140127182,0.685358107089996,-0.638547956943512,-0.086716391146183,0.764680862426758,0.724746584892273,0.0708991140127182,0.685358107089996,-0.91921055316925,-0.345686018466949,-0.188556015491486,0.379260122776031,-0.9244464635849,-0.0395062603056431,-0.638547956943512,-0.086716391146183,0.764680862426758,0.724746584892273,0.0708991140127182,0.685358107089996,0.660905301570892,0.369792282581329,0.653037369251251,0.724746584892273,0.0708991140127182,0.685358107089996,0.747799694538116,0.118073642253876,-0.653340816497803,0.660905301570892,0.369792282581329,0.653037369251251,0.71671324968338,0.220527172088623,-0.661581456661224,0.724746584892273,0.0708991140127182,0.685358107089996,0.379260122776031,-0.9244464635849,-0.0395062603056431,0.747799694538116,0.118073642253876,-0.653340816497803,0.724746584892273,0.0708991140127182,0.685358107089996,0.71671324968338,0.220527172088623,-0.661581456661224,0.487358748912811,-0.801783740520477,-0.345867514610291,-0.884305477142334,-0.465839475393295,-0.0315823368728161,
- -0.890620112419128,-0.409842848777771,0.197039842605591,-0.884305477142334,-0.465839475393295,-0.0315823368728161,0.487358748912811,-0.801783740520477,-0.345867514610291,0.57650351524353,-0.766038954257965,-0.284303098917007,-0.884305477142334,-0.465839475393295,-0.0315823368728161,0.57650351524353,-0.766038954257965,-0.284303098917007,-0.833406507968903,-0.424565553665161,-0.353804647922516,0.487358748912811,-0.801783740520477,-0.345867514610291,0.927869081497192,0.338121801614761,0.157265961170197,0.57650351524353,-0.766038954257965,-0.284303098917007,0.927869081497192,0.338121801614761,0.157265961170197,0.487358748912811,-0.801783740520477,-0.345867514610291,0.284738481044769,0.949128329753876,0.134459838271141,0.653624415397644,-0.740249335765839,-0.157499864697456,-0.833406507968903,-0.424565553665161,-0.353804647922516,0.57650351524353,-0.766038954257965,-0.284303098917007,-0.833406507968903,-0.424565553665161,-0.353804647922516,0.653624415397644,-0.740249335765839,-0.157499864697456,-0.552192032337189,-0.291872948408127,-0.780957341194153,0.927869081497192,0.338121801614761,0.157265961170197,0.683262407779694,0.235607758164406,0.691116094589233,0.57650351524353,-0.766038954257965,-0.284303098917007,0.653624415397644,-0.740249335765839,-0.157499864697456,0.57650351524353,-0.766038954257965,-0.284303098917007,0.683262407779694,0.235607758164406,0.691116094589233,0.284738481044769,0.949128329753876,0.134459838271141,-0.35551193356514,0.861128926277161,0.363412201404572,0.927869081497192,0.338121801614761,0.157265961170197,-0.890620112419128,-0.409842848777771,0.197039842605591,-0.35551193356514,0.861128926277161,0.363412201404572,0.284738481044769,0.949128329753876,0.134459838271141,-0.35551193356514,0.861128926277161,0.363412201404572,-0.890620112419128,-0.409842848777771,0.197039842605591,-0.884305477142334,-0.465839475393295,-0.0315823368728161,0.927869081497192,0.338121801614761,0.157265961170197,-0.35551193356514,0.861128926277161,0.363412201404572,-0.4236761033535,0.823814630508423,0.376600980758667,-0.884305477142334,-0.465839475393295,-0.0315823368728161,
- -0.4236761033535,0.823814630508423,0.376600980758667,-0.35551193356514,0.861128926277161,0.363412201404572,0.683262407779694,0.235607758164406,0.691116094589233,0.927869081497192,0.338121801614761,0.157265961170197,-0.4236761033535,0.823814630508423,0.376600980758667,-0.4236761033535,0.823814630508423,0.376600980758667,-0.884305477142334,-0.465839475393295,-0.0315823368728161,-0.833406507968903,-0.424565553665161,-0.353804647922516,-0.833406507968903,-0.424565553665161,-0.353804647922516,-0.566314995288849,0.755086719989777,0.330350428819656,-0.4236761033535,0.823814630508423,0.376600980758667,-0.4236761033535,0.823814630508423,0.376600980758667,-0.566314995288849,0.755086719989777,0.330350428819656,0.683262407779694,0.235607758164406,0.691116094589233,-0.833406507968903,-0.424565553665161,-0.353804647922516,-0.573861062526703,-0.298722207546234,-0.762527704238892,-0.566314995288849,0.755086719989777,0.330350428819656,0.0708573535084724,-0.204699024558067,0.976256906986237,0.683262407779694,0.235607758164406,0.691116094589233,-0.566314995288849,0.755086719989777,0.330350428819656,0.0708573535084724,-0.204699024558067,0.976256906986237,0.653624415397644,-0.740249335765839,-0.157499864697456,0.683262407779694,0.235607758164406,0.691116094589233,-0.550226747989655,0.770317435264587,0.322275668382645,-0.566314995288849,0.755086719989777,0.330350428819656,-0.573861062526703,-0.298722207546234,-0.762527704238892,0.0708573535084724,-0.204699024558067,0.976256906986237,-0.566314995288849,0.755086719989777,0.330350428819656,-0.550226747989655,0.770317435264587,0.322275668382645,-0.573861062526703,-0.298722207546234,-0.762527704238892,-0.251283913850784,0.0628209784626961,-0.965872645378113,-0.550226747989655,0.770317435264587,0.322275668382645,-0.550226747989655,0.770317435264587,0.322275668382645,-0.251283913850784,0.0628209784626961,-0.965872645378113,0.0237030144780874,0.339743196964264,-0.940219521522522,-0.7402263879776,0.637854635715485,0.212618231773376,-0.550226747989655,0.770317435264587,0.322275668382645,0.0237030144780874,0.339743196964264,-0.940219521522522,
- 0.0708573535084724,-0.204699024558067,0.976256906986237,-0.550226747989655,0.770317435264587,0.322275668382645,-0.7402263879776,0.637854635715485,0.212618231773376,-0.070636585354805,0.251152336597443,-0.965366780757904,-0.7402263879776,0.637854635715485,0.212618231773376,0.0237030144780874,0.339743196964264,-0.940219521522522,-0.070636585354805,0.251152336597443,-0.965366780757904,-0.41725817322731,-0.866007506847382,-0.275547832250595,-0.915459871292114,0.394594758749008,0.07891895622015,-0.915459871292114,0.394594758749008,0.07891895622015,-0.7402263879776,0.637854635715485,0.212618231773376,-0.070636585354805,0.251152336597443,-0.965366780757904,-0.7402263879776,0.637854635715485,0.212618231773376,-0.915459871292114,0.394594758749008,0.07891895622015,-0.118396870791912,-0.402549356222153,0.907709300518036,0.0708573535084724,-0.204699024558067,0.976256906986237,-0.7402263879776,0.637854635715485,0.212618231773376,-0.118396870791912,-0.402549356222153,0.907709300518036,-0.915459871292114,0.394594758749008,0.07891895622015,-0.41725817322731,-0.866007506847382,-0.275547832250595,-0.118396870791912,-0.402549356222153,0.907709300518036,-0.118396870791912,-0.402549356222153,0.907709300518036,-0.41725817322731,-0.866007506847382,-0.275547832250595,0.805550515651703,-0.552828788757324,-0.213233962655067,0.805550515651703,-0.552828788757324,-0.213233962655067,0.0708573535084724,-0.204699024558067,0.976256906986237,-0.118396870791912,-0.402549356222153,0.907709300518036,0.805550515651703,-0.552828788757324,-0.213233962655067,-0.41725817322731,-0.866007506847382,-0.275547832250595,-0.070636585354805,0.251152336597443,-0.965366780757904,0.805550515651703,-0.552828788757324,-0.213233962655067,-0.070636585354805,0.251152336597443,-0.965366780757904,0,0.376798123121262,-0.926295399665833,0.0708573535084724,-0.204699024558067,0.976256906986237,0.805550515651703,-0.552828788757324,-0.213233962655067,0.671606361865997,-0.734816431999207,-0.0948150232434273,0.671606361865997,-0.734816431999207,-0.0948150232434273,0.805550515651703,-0.552828788757324,-0.213233962655067,
- 0,0.376798123121262,-0.926295399665833,0.653624415397644,-0.740249335765839,-0.157499864697456,0.0708573535084724,-0.204699024558067,0.976256906986237,0.671606361865997,-0.734816431999207,-0.0948150232434273,0,0.376798123121262,-0.926295399665833,-0.251283913850784,0.0628209784626961,-0.965872645378113,0.671606361865997,-0.734816431999207,-0.0948150232434273,0.671606361865997,-0.734816431999207,-0.0948150232434273,-0.552192032337189,-0.291872948408127,-0.780957341194153,0.653624415397644,-0.740249335765839,-0.157499864697456,-0.552192032337189,-0.291872948408127,-0.780957341194153,0.671606361865997,-0.734816431999207,-0.0948150232434273,-0.251283913850784,0.0628209784626961,-0.965872645378113,-0.0471389964222908,-0.48710298538208,-0.872071444988251,0.13419146835804,-0.378893584012985,-0.915659487247467,-0.670623183250427,0.646954119205475,-0.362925499677658,-0.670623183250427,0.646954119205475,-0.362925499677658,-0.495940029621124,0.802950501441956,0.330626666545868,-0.0471389964222908,-0.48710298538208,-0.872071444988251,-0.670623183250427,0.646954119205475,-0.362925499677658,0.13419146835804,-0.378893584012985,-0.915659487247467,0.471259087324142,-0.21206659078598,-0.856120705604553,-0.495940029621124,0.802950501441956,0.330626666545868,-0.670623183250427,0.646954119205475,-0.362925499677658,-0.361946761608124,0.346209943294525,0.86552482843399,-0.361946761608124,0.346209943294525,0.86552482843399,0.566911518573761,-0.7007657289505,0.433057457208633,-0.495940029621124,0.802950501441956,0.330626666545868,-0.599243104457855,0.512510538101196,-0.61501270532608,-0.670623183250427,0.646954119205475,-0.362925499677658,0.471259087324142,-0.21206659078598,-0.856120705604553,-0.599243104457855,0.512510538101196,-0.61501270532608,-0.361946761608124,0.346209943294525,0.86552482843399,-0.670623183250427,0.646954119205475,-0.362925499677658,-0.599243104457855,0.512510538101196,-0.61501270532608,0.471259087324142,-0.21206659078598,-0.856120705604553,0.732260763645172,-0.125980347394943,-0.669270575046539,0.566911518573761,-0.7007657289505,0.433057457208633,
- -0.361946761608124,0.346209943294525,0.86552482843399,0.582550764083862,-0.582550764083862,0.566806137561798,0.582550764083862,-0.582550764083862,0.566806137561798,-0.0471389964222908,-0.48710298538208,-0.872071444988251,0.566911518573761,-0.7007657289505,0.433057457208633,-0.0471389964222908,-0.48710298538208,-0.872071444988251,0.582550764083862,-0.582550764083862,0.566806137561798,0.13419146835804,-0.378893584012985,-0.915659487247467,0.582550764083862,-0.582550764083862,0.566806137561798,0.471259087324142,-0.21206659078598,-0.856120705604553,0.13419146835804,-0.378893584012985,-0.915659487247467,0.582550764083862,-0.582550764083862,0.566806137561798,0.732260763645172,-0.125980347394943,-0.669270575046539,0.471259087324142,-0.21206659078598,-0.856120705604553,-0.760720074176788,0.133322075009346,0.635240435600281,0.582550764083862,-0.582550764083862,0.566806137561798,-0.361946761608124,0.346209943294525,0.86552482843399,-0.361946761608124,0.346209943294525,0.86552482843399,-0.599243104457855,0.512510538101196,-0.61501270532608,-0.760720074176788,0.133322075009346,0.635240435600281,0.732260763645172,-0.125980347394943,-0.669270575046539,0.582550764083862,-0.582550764083862,0.566806137561798,0.465883046388626,-0.481675714254379,0.742254376411438,0.582550764083862,-0.582550764083862,0.566806137561798,-0.760720074176788,0.133322075009346,0.635240435600281,0.465883046388626,-0.481675714254379,0.742254376411438,0.465883046388626,-0.481675714254379,0.742254376411438,0.921688556671143,-0.18906432390213,-0.338740229606628,0.732260763645172,-0.125980347394943,-0.669270575046539,-0.599243104457855,0.512510538101196,-0.61501270532608,-0.858454048633575,0.0315028987824917,0.511922121047974,-0.760720074176788,0.133322075009346,0.635240435600281,-0.858454048633575,0.0315028987824917,0.511922121047974,0.465883046388626,-0.481675714254379,0.742254376411438,-0.760720074176788,0.133322075009346,0.635240435600281,-0.347189337015152,0.583909332752228,-0.733832001686096,-0.599243104457855,0.512510538101196,-0.61501270532608,0.732260763645172,-0.125980347394943,-0.669270575046539,
- -0.858454048633575,0.0315028987824917,0.511922121047974,-0.599243104457855,0.512510538101196,-0.61501270532608,-0.347189337015152,0.583909332752228,-0.733832001686096,-0.347189337015152,0.583909332752228,-0.733832001686096,0.732260763645172,-0.125980347394943,-0.669270575046539,0.921688556671143,-0.18906432390213,-0.338740229606628,0.465883046388626,-0.481675714254379,0.742254376411438,-0.858454048633575,0.0315028987824917,0.511922121047974,0.31598100066185,-0.600363910198212,0.734655857086182,0.921688556671143,-0.18906432390213,-0.338740229606628,0.465883046388626,-0.481675714254379,0.742254376411438,0.31598100066185,-0.600363910198212,0.734655857086182,-0.347189337015152,0.583909332752228,-0.733832001686096,-0.986671268939972,-0.0631469637155533,0.149974033236504,-0.858454048633575,0.0315028987824917,0.511922121047974,-0.986671268939972,-0.0631469637155533,0.149974033236504,0.31598100066185,-0.600363910198212,0.734655857086182,-0.858454048633575,0.0315028987824917,0.511922121047974,-0.212618201971054,0.740226328372955,-0.63785457611084,-0.347189337015152,0.583909332752228,-0.733832001686096,0.921688556671143,-0.18906432390213,-0.338740229606628,-0.986671268939972,-0.0631469637155533,0.149974033236504,-0.347189337015152,0.583909332752228,-0.733832001686096,-0.212618201971054,0.740226328372955,-0.63785457611084,-0.212618201971054,0.740226328372955,-0.63785457611084,0.921688556671143,-0.18906432390213,-0.338740229606628,0.988851487636566,0.0470881685614586,-0.141264483332634,-0.0473808944225311,-0.821268796920776,0.568570673465729,0.921688556671143,-0.18906432390213,-0.338740229606628,0.31598100066185,-0.600363910198212,0.734655857086182,0.31598100066185,-0.600363910198212,0.734655857086182,-0.986671268939972,-0.0631469637155533,0.149974033236504,-0.0473808944225311,-0.821268796920776,0.568570673465729,0.921688556671143,-0.18906432390213,-0.338740229606628,-0.0473808944225311,-0.821268796920776,0.568570673465729,0.98777973651886,-0.134338036179543,-0.0790223777294159,-0.0473808944225311,-0.821268796920776,0.568570673465729,
- 0.906045615673065,0.173330470919609,0.386054217815399,0.98777973651886,-0.134338036179543,-0.0790223777294159,-0.212618201971054,0.740226328372955,-0.63785457611084,0.988851487636566,0.0470881685614586,-0.141264483332634,-0.188865199685097,0.91284841299057,-0.361991614103317,-0.188865199685097,0.91284841299057,-0.361991614103317,-0.986671268939972,-0.0631469637155533,0.149974033236504,-0.212618201971054,0.740226328372955,-0.63785457611084,0.906045615673065,0.173330470919609,0.386054217815399,-0.188865199685097,0.91284841299057,-0.361991614103317,0.988851487636566,0.0470881685614586,-0.141264483332634,0.708375990390778,0.086579293012619,-0.700505137443542,-0.188865199685097,0.91284841299057,-0.361991614103317,0.906045615673065,0.173330470919609,0.386054217815399,-0.986671268939972,-0.0631469637155533,0.149974033236504,-0.487223267555237,-0.840853095054626,-0.235753208398819,-0.0473808944225311,-0.821268796920776,0.568570673465729,-0.986671268939972,-0.0631469637155533,0.149974033236504,-0.188865199685097,0.91284841299057,-0.361991614103317,-0.487223267555237,-0.840853095054626,-0.235753208398819,-0.0473808944225311,-0.821268796920776,0.568570673465729,-0.487223267555237,-0.840853095054626,-0.235753208398819,0.906045615673065,0.173330470919609,0.386054217815399,0.708375990390778,0.086579293012619,-0.700505137443542,-0.487223267555237,-0.840853095054626,-0.235753208398819,-0.188865199685097,0.91284841299057,-0.361991614103317,0.708375990390778,0.086579293012619,-0.700505137443542,0.906045615673065,0.173330470919609,0.386054217815399,-0.487223267555237,-0.840853095054626,-0.235753208398819,-0.794758379459381,0.590167105197906,-0.141640096902847,-0.323386490345001,-0.339161425828934,0.883397221565247,-0.80577677488327,0.584583163261414,-0.0947972759604454,-0.80577677488327,0.584583163261414,-0.0947972759604454,-0.323386490345001,-0.339161425828934,0.883397221565247,-0.955306172370911,0.165796935558319,-0.24474786221981,-0.323386490345001,-0.339161425828934,0.883397221565247,-0.794758379459381,0.590167105197906,-0.141640096902847,
- 0.180688336491585,-0.840593576431274,0.510640919208527,-0.0708266273140907,-0.558743417263031,0.826310694217682,-0.955306172370911,0.165796935558319,-0.24474786221981,-0.323386490345001,-0.339161425828934,0.883397221565247,-0.955306172370911,0.165796935558319,-0.24474786221981,-0.0708266273140907,-0.558743417263031,0.826310694217682,-0.973995566368103,-0.125676840543747,-0.18851526081562,-0.990989983081818,-0.00786499958485365,-0.133704990148544,-0.973995566368103,-0.125676840543747,-0.18851526081562,-0.0708266273140907,-0.558743417263031,0.826310694217682,-0.0708266273140907,-0.558743417263031,0.826310694217682,-0.118048042058945,-0.472192168235779,0.873555481433868,-0.990989983081818,-0.00786499958485365,-0.133704990148544,-0.118048042058945,-0.472192168235779,0.873555481433868,-0.918841898441315,0.0392667464911938,-0.392667472362518,-0.990989983081818,-0.00786499958485365,-0.133704990148544,-0.118048042058945,-0.472192168235779,0.873555481433868,0.362204760313034,-0.141732290387154,0.921259939670563,-0.918841898441315,0.0392667464911938,-0.392667472362518,-0.323386490345001,-0.339161425828934,0.883397221565247,0.989186525344849,0.141312345862389,0.0392534323036671,-0.0708266273140907,-0.558743417263031,0.826310694217682,-0.118048042058945,-0.472192168235779,0.873555481433868,-0.0708266273140907,-0.558743417263031,0.826310694217682,0.989186525344849,0.141312345862389,0.0392534323036671,0.362204760313034,-0.141732290387154,0.921259939670563,-0.118048042058945,-0.472192168235779,0.873555481433868,0.961823344230652,-0.0551865845918655,0.268049120903015,0.989186525344849,0.141312345862389,0.0392534323036671,0.961823344230652,-0.0551865845918655,0.268049120903015,-0.118048042058945,-0.472192168235779,0.873555481433868,0.961823344230652,-0.0551865845918655,0.268049120903015,0.569405734539032,0.110717788338661,-0.814566552639008,0.362204760313034,-0.141732290387154,0.921259939670563,0.569405734539032,0.110717788338661,-0.814566552639008,0.961823344230652,-0.0551865845918655,0.268049120903015,0.18120913207531,0.464840799570084,-0.866652369499207,
- 0.18120913207531,0.464840799570084,-0.866652369499207,0.961823344230652,-0.0551865845918655,0.268049120903015,0.989186525344849,0.141312345862389,0.0392534323036671,0.18120913207531,0.464840799570084,-0.866652369499207,-0.918841898441315,0.0392667464911938,-0.392667472362518,0.569405734539032,0.110717788338661,-0.814566552639008,-0.918841898441315,0.0392667464911938,-0.392667472362518,0.18120913207531,0.464840799570084,-0.866652369499207,-0.991757094860077,-0.0236132647842169,-0.125937417149544,0.211890205740929,0.486562669277191,-0.847560822963715,-0.991757094860077,-0.0236132647842169,-0.125937417149544,0.18120913207531,0.464840799570084,-0.866652369499207,0.211890205740929,0.486562669277191,-0.847560822963715,0.18120913207531,0.464840799570084,-0.866652369499207,0.989186525344849,0.141312345862389,0.0392534323036671,-0.991757094860077,-0.0236132647842169,-0.125937417149544,0.211890205740929,0.486562669277191,-0.847560822963715,-0.962931215763092,-0.0947145447134972,-0.252572119235992,0.211890205740929,0.486562669277191,-0.847560822963715,-0.954503297805786,0.181434512138367,-0.236653715372086,-0.962931215763092,-0.0947145447134972,-0.252572119235992,0.211890205740929,0.486562669277191,-0.847560822963715,0.989186525344849,0.141312345862389,0.0392534323036671,0.898390054702759,-0.0709255263209343,-0.433433800935745,0.898390054702759,-0.0709255263209343,-0.433433800935745,-0.954503297805786,0.181434512138367,-0.236653715372086,0.211890205740929,0.486562669277191,-0.847560822963715,0.989186525344849,0.141312345862389,0.0392534323036671,-0.323386490345001,-0.339161425828934,0.883397221565247,0.898390054702759,-0.0709255263209343,-0.433433800935745,0.180688336491585,-0.840593576431274,0.510640919208527,0.898390054702759,-0.0709255263209343,-0.433433800935745,-0.323386490345001,-0.339161425828934,0.883397221565247,-0.954503297805786,0.181434512138367,-0.236653715372086,0.898390054702759,-0.0709255263209343,-0.433433800935745,-0.80577677488327,0.584583163261414,-0.0947972759604454,0.315420538187027,0.402161180973053,-0.859520971775055,
- 0.898390054702759,-0.0709255263209343,-0.433433800935745,0.180688336491585,-0.840593576431274,0.510640919208527,0.315420538187027,0.402161180973053,-0.859520971775055,-0.80577677488327,0.584583163261414,-0.0947972759604454,0.898390054702759,-0.0709255263209343,-0.433433800935745,0.315420538187027,0.402161180973053,-0.859520971775055,0.180688336491585,-0.840593576431274,0.510640919208527,-0.794758379459381,0.590167105197906,-0.141640096902847,-0.80577677488327,0.584583163261414,-0.0947972759604454,0.315420538187027,0.402161180973053,-0.859520971775055,-0.794758379459381,0.590167105197906,-0.141640096902847,0.394349217414856,0.709828615188599,-0.583636879920959,-0.385337322950363,0.880771040916443,-0.275240927934647,-0.858880341053009,0.307305812835693,0.409741044044495,-0.858880341053009,0.307305812835693,0.409741044044495,-0.385337322950363,0.880771040916443,-0.275240927934647,-0.701745271682739,-0.0630782321095467,0.709630072116852,-0.385337322950363,0.880771040916443,-0.275240927934647,0.394349217414856,0.709828615188599,-0.583636879920959,0.763590157032013,0.0157441273331642,-0.645509243011475,0.196643248200417,-0.920290350914001,0.33822637796402,0.763590157032013,0.0157441273331642,-0.645509243011475,0.394349217414856,0.709828615188599,-0.583636879920959,-0.701745271682739,-0.0630782321095467,0.709630072116852,-0.385337322950363,0.880771040916443,-0.275240927934647,-0.21206659078598,0.353444337844849,-0.911100924015045,0.763590157032013,0.0157441273331642,-0.645509243011475,-0.21206659078598,0.353444337844849,-0.911100924015045,-0.385337322950363,0.880771040916443,-0.275240927934647,-0.362801313400269,-0.0473219081759453,0.93066418170929,-0.701745271682739,-0.0630782321095467,0.709630072116852,-0.21206659078598,0.353444337844849,-0.911100924015045,-0.21206659078598,0.353444337844849,-0.911100924015045,0.0942431092262268,-0.863895177841187,0.494776338338852,-0.362801313400269,-0.0473219081759453,0.93066418170929,0.763590157032013,0.0157441273331642,-0.645509243011475,0.196643248200417,-0.920290350914001,0.33822637796402,
- 0.456466615200043,-0.857842445373535,0.236103430390358,0.456466615200043,-0.857842445373535,0.236103430390358,-0.21206659078598,0.353444337844849,-0.911100924015045,0.763590157032013,0.0157441273331642,-0.645509243011475,-0.858880341053009,0.307305812835693,0.409741044044495,0.456466615200043,-0.857842445373535,0.236103430390358,0.196643248200417,-0.920290350914001,0.33822637796402,0.456466615200043,-0.857842445373535,0.236103430390358,-0.858880341053009,0.307305812835693,0.409741044044495,-0.689671277999878,-0.125394776463509,0.713182806968689,0.0942431092262268,-0.863895177841187,0.494776338338852,-0.21206659078598,0.353444337844849,-0.911100924015045,0.636769592761993,-0.73896723985672,0.220117896795273,-0.21206659078598,0.353444337844849,-0.911100924015045,0.456466615200043,-0.857842445373535,0.236103430390358,0.636769592761993,-0.73896723985672,0.220117896795273,-0.689671277999878,-0.125394776463509,0.713182806968689,0.636769592761993,-0.73896723985672,0.220117896795273,0.456466615200043,-0.857842445373535,0.236103430390358,-0.362801313400269,-0.0473219081759453,0.93066418170929,0.0942431092262268,-0.863895177841187,0.494776338338852,0.636769592761993,-0.73896723985672,0.220117896795273,0.636769592761993,-0.73896723985672,0.220117896795273,-0.689671277999878,-0.125394776463509,0.713182806968689,-0.362801313400269,-0.0473219081759453,0.93066418170929
- }
- NormalsW: *2637 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *7911 {
- a: -0.01038708537817,0.828436374664307,0.55998682975769,0.847922921180725,0.325940042734146,0.418078780174255,0.185051143169403,0.792581260204315,0.581008613109589,0.881260275840759,0.352119147777557,0.315265595912933,-0.00920621678233147,0.820406377315521,0.571706891059875,0.941010355949402,0.238103583455086,0.240429267287254,0.943003952503204,0.222185015678406,0.247744545340538,0.599697709083557,-0.741325497627258,-0.301329076290131,0.883218228816986,0.353816866874695,0.307797491550446,0.94797682762146,0.0822304114699364,0.307535797357559,0.609556913375854,-0.689108431339264,-0.391880095005035,0.536406397819519,-0.722127079963684,-0.436807513237,0.58021080493927,-0.639754772186279,-0.504052817821503,0.948187172412872,0.0875171571969986,0.30542066693306,0.958949625492096,0.0572532266378403,0.277736634016037,0.918028235435486,-0.324570745229721,0.227767869830132,0.626546621322632,-0.721722662448883,-0.294203788042068,0.921380698680878,-0.239828899502754,0.305842667818069,0.499890089035034,-0.672224879264832,0.546098589897156,0.813946843147278,-0.536603808403015,0.22259159386158,0.700131416320801,-0.610809624195099,0.369767069816589,0.72066205739975,-0.662843644618988,0.203186169266701,0.789623737335205,0.399367541074753,-0.465832591056824,0.707466423511505,-0.673715591430664,0.213538452982903,0.788120746612549,0.39902400970459,-0.468663811683655,0.718571841716766,-0.665245890617371,0.202737465500832,0.632762312889099,0.56705516576767,-0.527314305305481,0.929273664951324,-0.295735955238342,0.221338406205177,0.393612176179886,-0.774423778057098,-0.495315492153168,0.622811257839203,-0.714049577713013,-0.319749116897583,0.366575092077255,-0.896974444389343,-0.247102528810501,0.684350192546844,-0.66908472776413,0.28981140255928,0.706008672714233,-0.610894560813904,0.358273148536682,0.36703360080719,-0.922107458114624,0.122491635382175,0.63884699344635,-0.754147708415985,-0.152104601264,0.163159370422363,-0.944807052612305,0.284110307693481,0.566139876842499,-0.710618197917938,0.417740911245346,0.550885677337646,-0.718849956989288,0.424004554748535,
- 0.135177791118622,-0.838567733764648,0.52776050567627,0.94894403219223,-0.197951704263687,0.245602205395699,0.593703031539917,-0.687739968299866,-0.41776841878891,-0.0468344241380692,-0.690532743930817,-0.72178328037262,0.911479949951172,0.126055687665939,0.391553670167923,0.609896838665009,-0.73777824640274,-0.289325445890427,0.962224066257477,-0.116052955389023,0.246285825967789,0.163291051983833,-0.83121246099472,-0.531433761119843,0.374722689390183,-0.876716315746307,-0.301581889390945,0.705788671970367,-0.61113315820694,0.358299642801285,0.503110587596893,-0.78239107131958,0.367074966430664,0.443370074033737,-0.864397168159485,0.237150907516479,0.0928182676434517,-0.940974116325378,-0.325503528118134,0.191281497478485,-0.898337483406067,0.395475894212723,0.267661035060883,-0.898158431053162,0.348810821771622,0.292304128408432,-0.896528542041779,0.332858622074127,0.378716766834259,-0.864069402217865,-0.331598728895187,0.057488027960062,-0.973545908927917,-0.221141383051872,-0.458616971969604,-0.888586282730103,0.00921726133674383,0.610090017318726,-0.790408909320831,-0.0551716014742851,0.822315037250519,-0.342734694480896,0.454236686229706,0.518674910068512,-0.838202953338623,-0.168500453233719,0.819826602935791,-0.335007756948471,0.464385688304901,0.51826000213623,-0.839171350002289,-0.164918273687363,0.819758117198944,-0.348637670278549,0.454366028308868,0.767726957798004,-0.564574539661407,0.303069114685059,0.614579796791077,-0.622164368629456,0.484977543354034,0.373774021863937,-0.641627430915833,0.669781446456909,0.61309152841568,-0.753839254379272,-0.236315995454788,0.518532335758209,-0.838538825511932,-0.167262881994247,0.0336495228111744,-0.989459156990051,0.140849009156227,0.488615125417709,-0.872365236282349,0.0153048411011696,0.275975793600082,-0.913853883743286,0.297839611768723,0.339623391628265,-0.914009809494019,0.221905767917633,0.785312294960022,-0.555675864219666,0.272963613271713,0.335218578577042,-0.816758871078491,0.46960985660553,0.630221545696259,-0.685323596000671,0.364900708198547,-0.273954093456268,-0.757463097572327,0.592620313167572,
- 0.325598359107971,-0.875719428062439,0.356512665748596,0.403863966464996,-0.861434102058411,0.30793696641922,0.451536953449249,-0.87715208530426,0.163458213210106,0.535796821117401,-0.726431608200073,0.43037074804306,-0.0124195516109467,-0.788191616535187,-0.615304529666901,-0.476627886295319,-0.862751662731171,0.168776363134384,-0.182437226176262,-0.983129799365997,-0.013134965673089,-0.395325630903244,-0.911096513271332,0.116708360612392,-0.734455704689026,-0.678392946720123,0.0189168527722359,-0.105889499187469,-0.940545260906219,-0.322741568088531,-0.600484251976013,-0.795853793621063,-0.0776884257793427,-0.147701501846313,-0.975420475006104,-0.163521707057953,0.395643591880798,-0.830827057361603,0.391398429870605,0.055018063634634,-0.997581124305725,0.0424860641360283,0.0616501793265343,-0.970407426357269,-0.233470916748047,-0.384389698505402,-0.922107636928558,-0.0442953817546368,-0.473544001579285,-0.880770206451416,0.000332847266690806,-0.435339033603668,-0.892705380916595,0.116435319185257,-0.210767462849617,-0.976287543773651,-0.0493935905396938,-0.167698755860329,-0.982642412185669,-0.0793158859014511,-0.169727817177773,-0.982971251010895,-0.0704276114702225,-0.122597403824329,-0.992422461509705,0.00821882113814354,-0.455498486757278,-0.65383505821228,-0.60416966676712,-0.15768164396286,-0.986460387706757,-0.0450820624828339,-0.395078241825104,-0.876063704490662,0.276452124118805,-0.154450565576553,-0.986776292324066,-0.0491686835885048,-0.372820109128952,-0.907520055770874,0.193423494696617,-0.281597554683685,-0.958845913410187,-0.0362951904535294,-0.397847563028336,-0.87777042388916,0.266901582479477,-0.273060083389282,-0.961753308773041,-0.0216514263302088,0.0664944872260094,-0.966524124145508,-0.247809663414955,-0.342054516077042,-0.939237415790558,0.028843330219388,0.460631370544434,-0.855087339878082,0.238000750541687,-0.162773817777634,-0.642106473445892,-0.749135494232178,0.12243477255106,-0.902719676494598,-0.412440299987793,-0.322030901908875,-0.932716429233551,-0.162284165620804,0.0290997363626957,-0.980220496654511,0.195757627487183,
- -0.208948686718941,-0.977022469043732,-0.0420414619147778,-0.4773910343647,-0.859907507896423,-0.180712670087814,-0.173672407865524,-0.984801888465881,-0.00183143862523139,-0.142702534794807,-0.989641785621643,0.0156579483300447,-0.342901557683945,-0.938477098941803,0.0409791246056557,-0.324141591787338,-0.945670008659363,0.0253122933208942,-0.268021941184998,-0.963191747665405,-0.0206380747258663,-0.300971657037735,-0.937481284141541,0.174770846962929,-0.362922191619873,-0.852204144001007,0.37687611579895,-0.403615444898605,-0.733248949050903,0.547211647033691,-0.658164381980896,-0.752297520637512,-0.0294636785984039,-0.44363808631897,-0.893028616905212,0.07540013641119,-0.529967546463013,-0.847258448600769,0.0358821377158165,-0.508538842201233,-0.700103461742401,0.501241981983185,-0.374305009841919,-0.906827688217163,0.193802326917648,-0.480787575244904,-0.765549421310425,0.427524834871292,-0.50238025188446,-0.0164035763591528,0.86449122428894,-0.62566351890564,-0.509461224079132,0.590757489204407,-0.576532900333405,-0.783275425434113,0.232571810483933,-0.155045658349991,-0.987274408340454,-0.035359364002943,-0.542492687702179,-0.665017664432526,-0.513277053833008,-0.31329083442688,-0.923567235469818,-0.221071049571037,-0.591533958911896,-0.80533903837204,0.0389454886317253,-0.291460514068604,-0.893795132637024,-0.340853661298752,-0.515103161334991,-0.85370671749115,-0.0765098184347153,-0.316581845283508,-0.813785076141357,0.487370252609253,-0.845220625400543,-0.521762490272522,-0.115611545741558,-0.773771286010742,-0.63287353515625,0.0273690223693848,-0.611019194126129,-0.751079380512238,0.250070780515671,-0.303529620170593,-0.804034352302551,0.511271476745605,-0.77552717924118,-0.63070809841156,0.0276597999036312,-0.39251434803009,-0.859373331069946,0.327734977006912,-0.533840835094452,-0.812926948070526,0.232731103897095,-0.747616052627563,-0.662849128246307,0.0412473864853382,-0.42919185757637,-0.902689337730408,0.0307640340179205,-0.477269113063812,-0.874742567539215,0.0839022472500801,-0.625943839550018,-0.731616199016571,0.270059436559677,
- -0.771533191204071,-0.635817348957062,-0.0217491555958986,-0.232246309518814,-0.960005044937134,0.156371250748634,-0.124088302254677,-0.975512027740479,0.181600019335747,-0.348030239343643,-0.84800136089325,0.399710714817047,-0.302999824285507,-0.95268326997757,0.0242022201418877,-0.350077480077744,-0.733165264129639,0.583021879196167,-0.613228619098663,-0.788891434669495,0.0400117449462414,-0.131503224372864,-0.954407453536987,0.267980337142944,-0.646771728992462,-0.762441754341125,0.0192077159881592,-0.975809812545776,-0.211609229445457,-0.0549265146255493,-0.723381340503693,-0.683692812919617,0.0963512063026428,-0.179004848003387,-0.956877708435059,0.228784769773483,-0.486113846302032,-0.644307434558868,0.590390861034393,-0.475758701562881,-0.743635416030884,0.469744682312012,-0.474861443042755,-0.748512744903564,0.462855637073517,-0.749037265777588,0.0999931544065475,0.654938638210297,-0.479554116725922,-0.253558218479156,0.840081036090851,0.0845713093876839,-0.642146289348602,0.761902809143066,0.00472272234037519,-0.563125431537628,0.826358079910278,0.150972798466682,-0.626728355884552,0.764472961425781,-0.484053015708923,-0.223743632435799,0.84595000743866,-0.0114672835916281,-0.993234932422638,0.115554541349411,-0.663828015327454,-0.745721697807312,-0.0568466633558273,0.0706230103969574,-0.988597393035889,0.132995098829269,-0.405496209859848,-0.805546879768372,0.432049691677094,-0.246657848358154,-0.673480689525604,0.696838319301605,-0.133728742599487,-0.553057610988617,0.822340548038483,0.319280177354813,-0.573320209980011,0.754562258720398,-0.00268189585767686,-0.377792924642563,0.925886213779449,0.60520327091217,-0.673744916915894,0.424024701118469,-0.107159212231636,-0.732101261615753,0.672714412212372,-0.0638038590550423,-0.665611743927002,0.743565857410431,-0.0707469284534454,-0.676689624786377,0.732861638069153,-0.0124041913077235,-0.103445790708065,0.994557797908783,0.383711367845535,-0.754874169826508,0.531912386417389,0.362891912460327,-0.724412739276886,0.58611923456192,-0.0622591525316238,-0.490584552288055,0.869166672229767,
- -0.148784354329109,-0.399364858865738,0.904638588428497,0.119076550006866,-0.651631414890289,0.74913102388382,0.423978179693222,0.0590332746505737,0.903746426105499,0.0453465469181538,-0.66682767868042,0.743831098079681,-0.201506435871124,-0.893119931221008,0.402159184217453,-0.27026778459549,-0.813246130943298,0.515350580215454,-0.127518534660339,-0.687439858913422,0.714958429336548,0.00361756654456258,-0.536730706691742,0.843745887279511,-0.173867002129555,-0.689349174499512,0.703255355358124,0.544646561145782,0.324903339147568,0.773174107074738,0.00298960600048304,-0.521533012390137,0.853225886821747,-0.149087607860565,-0.395552694797516,0.906262099742889,0.733312547206879,-0.648484647274017,0.204255774617195,0.266014218330383,-0.609555244445801,0.746779084205627,0.506984889507294,-0.42479333281517,0.750011265277863,0.19101682305336,-0.633041083812714,0.750180959701538,0.0330324172973633,-0.69992595911026,0.713451206684113,0.57055926322937,-0.127200767397881,0.811345994472504,-0.126858949661255,-0.607600629329681,0.784046113491058,-0.198642879724503,-0.634467124938965,0.746988952159882,0.241199418902397,-0.743423163890839,0.623814761638641,-0.150435671210289,0.463198870420456,0.873393356800079,0.269500643014908,-0.830574452877045,0.487355500459671,0.241456985473633,-0.726560950279236,0.643279016017914,0.32914337515831,-0.825417280197144,0.458640515804291,0.182340994477272,-0.648567259311676,0.738994121551514,0.208653688430786,-0.666785478591919,0.715444505214691,0.487893611192703,-0.460800588130951,0.741365432739258,0.114616274833679,-0.715472638607025,0.689175009727478,0.240502670407295,-0.687709331512451,0.68499231338501,0.0417695119976997,-0.996665477752686,0.0700953975319862,0.0562520734965801,-0.991896510124207,0.113916993141174,0.312377542257309,-0.928565323352814,0.200466275215149,0.24044805765152,-0.743334710597992,0.624210178852081,0.272039473056793,-0.827876925468445,0.490524739027023,0.304338335990906,-0.791156053543091,0.53051894903183,0.395197361707687,-0.769153833389282,0.502216637134552,0.727191746234894,-0.599535405635834,0.334289580583572,
- 0.15845699608326,-0.677416801452637,0.718329966068268,0.498858481645584,-0.452118039131165,0.739411592483521,0.0784125924110413,-0.712558031082153,0.697217702865601,0.242853432893753,-0.743616282939911,0.622942328453064,0.0266998428851366,-0.995143711566925,0.094742625951767,0.245715409517288,-0.73683750629425,0.629836916923523,0.312131345272064,-0.816975474357605,0.484897017478943,0.375577181577683,-0.802688896656036,0.463284313678741,0.707557916641235,-0.642828226089478,0.29348561167717,0.250275284051895,-0.950519561767578,0.184051722288132,0.398743391036987,-0.639835238456726,0.656973838806152,0.368661880493164,-0.757885336875916,0.538236200809479,0.349310785531998,-0.748888969421387,0.563158392906189,0.45511868596077,-0.709679245948792,0.537794053554535,0.819323599338531,-0.448309659957886,0.357389718294144,0.530358910560608,-0.794762313365936,0.295080244541168,0.512063324451447,-0.814992785453796,0.271252304315567,0.216870814561844,-0.974016904830933,-0.0652545467019081,0.317331969738007,-0.925383746623993,-0.207281023263931,0.544307827949524,-0.808110654354095,0.225135788321495,0.41340634226799,-0.90921676158905,-0.0491930395364761,-0.0580485351383686,-0.9951291680336,-0.0796767622232437,0.247091382741928,-0.73768550157547,0.628304064273834,0.0133875319734216,-0.995886385440826,0.0896160155534744,0.455685257911682,-0.7103630900383,0.536409616470337,0.986437320709229,-0.0832183808088303,-0.141478687524796,0.751778721809387,-0.56445974111557,0.340901881456375,0.425041079521179,-0.791647613048553,0.43890106678009,0.678532242774963,-0.677025854587555,0.285008996725082,0.377204805612564,-0.803309261798859,0.460880398750305,0.543726086616516,-0.825519680976868,0.151259154081345,0.262929320335388,-0.95732307434082,-0.120002821087837,0.431029379367828,-0.901684403419495,0.0343377403914928,0.246862336993217,-0.958056151866913,0.14555861055851,0.423724800348282,-0.904788196086884,-0.0426104925572872,0.428245157003403,-0.902396082878113,-0.0478273406624794,0.43799501657486,-0.873309731483459,0.213284850120544,0.814940810203552,-0.459181219339371,-0.353587538003922,
- 0.646819055080414,-0.762248039245605,-0.024561483412981,0.475513100624084,-0.863646507263184,0.167338609695435,0.753275573253632,-0.638292551040649,-0.158615216612816,0.563622772693634,-0.822023808956146,0.081278420984745,0.563615918159485,-0.822021186351776,0.0813529193401337,0.0738129988312721,-0.989973306655884,-0.120434671640396,0.430822968482971,-0.902180314064026,0.0215009599924088,0.0463140681385994,-0.975194096565247,-0.216452091932297,0.433160006999969,-0.899042129516602,0.0639970824122429,0.199273720383644,-0.973434388637543,-0.112763449549675,0.731989443302155,-0.246171221137047,-0.635288298130035,0.625820279121399,-0.764928579330444,-0.152425274252892,0.45994633436203,-0.880792140960693,0.112492442131042,0.579495429992676,-0.814406752586365,0.0304456241428852,0.736873269081116,-0.586784362792969,-0.335711240768433,0.43786895275116,-0.868092954158783,0.233849182724953,0.420388400554657,-0.904566287994385,-0.0709464699029922,-0.106210395693779,-0.989683151245117,-0.0961599349975586,0.528105139732361,-0.846911132335663,-0.0620201826095581,0.541199624538422,-0.792803645133972,-0.280295133590698,0.52841192483902,-0.846757471561432,-0.0615028738975525,0.502366423606873,-0.617811799049377,-0.604926943778992,0.475034177303314,-0.867680072784424,-0.146539926528931,0.350756883621216,-0.240465521812439,-0.905066907405853,0.479234397411346,-0.657729923725128,-0.581141889095306,0.682646334171295,-0.717384099960327,0.139118894934654,0.431876599788666,-0.901597559452057,0.0245851874351501,0.0653974413871765,-0.990939140319824,-0.117315381765366,0.477922290563583,-0.860519647598267,0.176341444253922,0.527300238609314,-0.84154224395752,-0.117308378219604,0.512044370174408,-0.671167075634003,-0.536046028137207,0.556595504283905,-0.827289462089539,-0.0761156380176544,0.045492559671402,-0.992900192737579,-0.109907358884811,0.0449389964342117,-0.992923378944397,-0.109926447272301,0.144685983657837,-0.837379276752472,-0.52712607383728,0.141499742865562,-0.832485318183899,-0.535673439502716,0.0622312873601913,-0.691494941711426,-0.719695746898651,
- 0.0837264508008957,-0.697704553604126,-0.71147608757019,-0.112901203334332,-0.198376804590225,-0.973601520061493,0.152149543166161,-0.825883984565735,-0.54292368888855,0.952217578887939,-0.305363446474075,-0.00592249725013971,0.559331178665161,-0.825798988342285,-0.0721441656351089,0.0400463901460171,-0.993724465370178,-0.104440823197365,0.494923025369644,-0.682024598121643,-0.538417816162109,0.496136516332626,-0.690225720405579,-0.52672290802002,0.488815039396286,-0.856035768985748,-0.168115139007568,0.368182241916656,-0.706570386886597,-0.604318022727966,0.517677485942841,-0.589027047157288,-0.620529770851135,0.15595269203186,-0.819846451282501,-0.550936043262482,-0.0707814320921898,-0.892319023609161,-0.445821702480316,0.385847210884094,-0.704108834266663,-0.596114635467529,0.148035734891891,-0.832277357578278,-0.534228205680847,-0.146171703934669,-0.984493970870972,-0.0969824269413948,0.528105139732361,-0.846911132335663,-0.0620201826095581,-0.106210395693779,-0.989683151245117,-0.0961599349975586,0.216243356466293,-0.914381146430969,-0.342266172170639,0.0814077854156494,-0.709685206413269,-0.699799776077271,0.119250096380711,-0.778145670890808,-0.616659343242645,0.158866837620735,-0.839404225349426,-0.519771039485931,0.039295632392168,-0.878151297569275,-0.476766586303711,0.352557808160782,-0.741320610046387,-0.57109260559082,-0.597420036792755,-0.498261868953705,-0.628350675106049,-0.573317289352417,-0.473360240459442,-0.668758153915405,-0.111059978604317,-0.028648778796196,-0.993400752544403,0.0423456504940987,-0.544453263282776,-0.837721586227417,0.135777533054352,-0.753156244754791,-0.643677055835724,0.11610996723175,-0.712737739086151,-0.69175386428833,-0.608888745307922,-0.49455538392067,-0.620217263698578,-0.111200556159019,-0.0356910414993763,-0.993156909942627,-0.611325204372406,-0.496957331895828,-0.615885436534882,0.590019822120667,-0.549943506717682,-0.591133594512939,0.364954352378845,-0.741672813892365,-0.562787652015686,0.025905966758728,-0.891680598258972,-0.451923251152039,-0.799561321735382,-0.035168781876564,-0.599553942680359,
- -0.682185828685761,-0.339413076639175,-0.647627472877502,-0.0706400126218796,-0.893042147159576,-0.444393962621689,-0.62245237827301,-0.457028776407242,-0.635356366634369,-0.0728705525398254,-0.881252288818359,-0.46699520945549,-0.708848834037781,-0.320138096809387,-0.628525972366333,0.118409469723701,-0.779375314712524,-0.615266919136047,-0.620354652404785,-0.490701287984848,-0.611859738826752,-0.43415492773056,-0.616300225257874,-0.657026290893555,-0.564689815044403,-0.412085711956024,-0.71506005525589,0.429052352905273,0.357250928878784,-0.829629957675934,-0.475836187601089,-0.340543478727341,-0.81093156337738,-0.711335718631744,-0.318277448415756,-0.62665855884552,-0.551122784614563,-0.517647266387939,-0.654450118541718,-0.628923177719116,-0.430825293064117,-0.647182583808899,-0.673136711120605,-0.345689117908478,-0.653747737407684,-0.463698476552963,0.0203481614589691,-0.88575941324234,-0.712846577167511,-0.465857833623886,-0.524238884449005,-0.498341619968414,-0.528456091880798,-0.687306225299835,-0.894948065280914,0.242505446076393,-0.37451183795929,-0.639498293399811,-0.38113009929657,-0.66766893863678,-0.622787773609161,-0.439873993396759,-0.647028803825378,-0.400900661945343,-0.720682978630066,-0.565592348575592,-0.584154963493347,-0.50236964225769,-0.637485504150391,-0.821913182735443,-0.420019835233688,-0.384762436151505,-0.816426575183868,-0.394028544425964,-0.422124683856964,-0.662684798240662,-0.086847648024559,-0.743845701217651,-0.966314673423767,-0.0201496705412865,0.256573557853699,-0.901491105556488,-0.414887189865112,0.123216703534126,-0.600013315677643,-0.796861529350281,-0.0706804841756821,-0.902290225028992,-0.410269916057587,0.132480263710022,-0.907618343830109,-0.396368235349655,0.138280257582664,-0.602198481559753,-0.795110106468201,-0.0718129202723503,-0.66281533241272,-0.156481012701988,-0.732249677181244,-0.835334300994873,-0.511716604232788,-0.200904697179794,-0.820810794830322,-0.420323014259338,-0.386779308319092,-0.273429274559021,-0.350271344184875,-0.895849585533142,-0.474897444248199,-0.100258506834507,-0.874311566352844,
- -0.237526476383209,-0.387996852397919,-0.890527725219727,-0.853009581565857,-0.5057412981987,-0.128842547535896,-0.642463743686676,0.12385381013155,-0.756241142749786,-0.869110643863678,-0.433662384748459,-0.237873360514641,-0.897698163986206,-0.384298831224442,-0.215528279542923,-0.880704998970032,-0.360426336526871,-0.307329714298248,-0.472735047340393,-0.0699600502848625,-0.878423154354095,-0.266077309846878,-0.93020224571228,-0.252837687730789,-0.875544369220734,-0.481654673814774,0.0378269590437412,-0.640324354171753,-0.760200500488281,-0.109908379614353,-0.857976257801056,-0.380213439464569,-0.345419406890869,-0.849307239055634,-0.491601467132568,-0.192367449402809,-0.839612483978271,-0.524934411048889,-0.139623656868935,-0.879294514656067,-0.407507181167603,-0.246534198522568,-0.817030787467957,-0.573492765426636,0.0597230270504951,-0.860626935958862,-0.501323819160461,-0.0894190296530724,-0.81848806142807,-0.574515640735626,0.00300694350153208,-0.634910404682159,-0.765004634857178,-0.107966400682926,-0.876206755638123,-0.479325264692307,0.0500899031758308,-0.80626255273819,-0.565934360027313,0.172217711806297,-0.940414130687714,-0.0473595000803471,-0.336717069149017,-0.814607977867126,-0.557169437408447,0.161170944571495,-0.792300999164581,-0.587362289428711,0.165120333433151,-0.622799098491669,-0.704088270664215,0.341146737337112,-0.810311794281006,-0.568776547908783,0.141025066375732,-0.700906872749329,-0.679550647735596,0.216657519340515,-0.836873710155487,-0.527355790138245,-0.14675909280777,-0.843618988990784,-0.50227016210556,-0.189820259809494,-0.808146357536316,-0.562538146972656,-0.174500450491905,-0.805509448051453,-0.565405666828156,-0.177400633692741,-0.971719801425934,-0.170420035719872,0.163455456495285,-0.638016998767853,-0.447838872671127,0.626398205757141,-0.931088209152222,0.0104050636291504,0.364645957946777,-0.293371289968491,-0.675412058830261,0.676573634147644,-0.933173298835754,-0.343666970729828,0.105264566838741,-0.951743900775909,-0.251978546380997,0.175186887383461,-0.814771771430969,-0.571907103061676,-0.0952325016260147,
- -0.293371289968491,-0.675412058830261,0.676573634147644,-0.931088209152222,0.0104050636291504,0.364645957946777,-0.686170339584351,0.671218276023865,-0.280421704053879,-0.877321243286133,-0.47951927781105,-0.0192017089575529,-0.709968566894531,-0.670211732387543,0.216242954134941,-0.765403628349304,-0.625081837177277,0.153068572282791,-0.90795361995697,-0.395637929439545,0.138170033693314,-0.901401996612549,-0.415367156267166,0.122247867286205,-0.746202945709229,-0.657239854335785,-0.105910390615463,-0.751436769962311,-0.655674159526825,-0.0737172663211823,-0.923486173152924,-0.0833205208182335,0.374474316835403,-0.894747734069824,-0.423291057348251,0.142307385802269,-0.524891912937164,-0.491027861833572,0.695255398750305,-0.910501778125763,-0.367275029420853,0.189988553524017,-0.942122578620911,-0.325191587209702,0.0815823301672935,-0.709968566894531,-0.670211732387543,0.216242954134941,-0.7136150598526,-0.667575299739838,0.212360233068466,-0.765403628349304,-0.625081837177277,0.153068572282791,0.702933967113495,-0.161216244101524,0.692743182182312,-0.545297861099243,-0.510117292404175,0.665154635906219,-0.949422359466553,-0.308199495077133,0.0600852891802788,-0.501826345920563,-0.808334350585938,0.307840704917908,-0.607763111591339,-0.389359414577484,0.692115128040314,-0.594037115573883,-0.555712103843689,0.581639111042023,0.0340837687253952,-0.810524582862854,-0.584712088108063,-0.485537946224213,-0.820014178752899,0.303033977746964,-0.566669225692749,-0.530109882354736,0.630768954753876,-0.34876361489296,-0.881869494915009,-0.317285925149918,-0.733990490436554,-0.584333658218384,-0.346139073371887,-0.853809118270874,-0.400880992412567,-0.332121342420578,0.669747591018677,0.517928302288055,0.532154560089111,-0.733792126178741,-0.562619745731354,-0.380799293518066,-0.689588844776154,-0.531921863555908,-0.491453379392624,-0.0172835290431976,-0.935576915740967,-0.352699756622314,-0.693626999855042,-0.546774387359619,-0.468955636024475,0.643635451793671,0.603467166423798,0.470702618360519,-0.601018309593201,-0.440894961357117,-0.666624784469604,
- -0.578585982322693,-0.422158539295197,-0.697868525981903,-0.760634481906891,-0.580454766750336,-0.290701627731323,0.00968101620674133,-0.891752004623413,0.452421009540558,0.126484632492065,-0.982574284076691,0.136196911334991,0.124250896275043,-0.981917381286621,0.142828896641731,0.0339630171656609,-0.988592863082886,0.146733969449997,0.218319594860077,-0.931721270084381,0.29022753238678,0.256837278604507,-0.912190020084381,0.319286644458771,0.322145402431488,-0.926107943058014,0.196332827210426,-0.133351027965546,-0.912657797336578,0.386358976364136,0.248206898570061,-0.940250992774963,0.233069747686386,-0.225574120879173,0.931920528411865,-0.28397262096405,0.393717080354691,-0.880836009979248,0.26289701461792,0.213211089372635,-0.934469401836395,0.285145461559296,0.246004402637482,-0.945439279079437,0.213603645563126,0.216256245970726,-0.934104382991791,0.284046173095703,0.179909139871597,-0.913818955421448,0.364098489284515,0.488609194755554,-0.798883199691772,0.350780099630356,0.21987546980381,-0.921078681945801,0.321355074644089,0.145036429166794,-0.940014898777008,0.308766037225723,0.352201402187347,-0.908442795276642,0.225135177373886,0.491847813129425,-0.86324942111969,0.113517299294472,0.230141460895538,-0.922441601753235,0.31005871295929,0.184673398733139,-0.976911962032318,0.107418917119503,-0.148226723074913,-0.91000509262085,0.387194722890854,0.0595364384353161,-0.973954439163208,0.218788132071495,0.0338038243353367,-0.803784668445587,-0.593959391117096,-0.086638942360878,-0.777735829353333,-0.622591912746429,-0.951932013034821,0.208935379981995,-0.22398978471756,-0.379726618528366,-0.923848569393158,-0.0480778813362122,-0.469660818576813,-0.877342522144318,0.0984320119023323,-0.163253948092461,-0.927502930164337,-0.336283296346664,0.0686023011803627,-0.973017334938049,0.220297560095787,-0.169012904167175,-0.96822863817215,-0.184304594993591,0.0116641186177731,-0.992026031017303,0.125492125749588,-0.0277978926897049,-0.963689506053925,-0.26557457447052,-0.208782657980919,-0.972992897033691,-0.0984619408845901,
- 0.691495597362518,0.532567620277405,-0.488063097000122,-0.936907768249512,-0.202680885791779,0.284823566675186,0.0210723597556353,-0.996194660663605,0.0845714509487152,-0.757843852043152,-0.594174146652222,0.269499242305756,0.143888741731644,-0.863725423812866,-0.482984870672226,-0.946540474891663,0.310826003551483,-0.0863040834665298,-0.96493524312973,0.033120583742857,-0.260390251874924,-0.141001418232918,-0.655901849269867,0.741560161113739,0.127862259745598,-0.974048435688019,0.1867645829916,0.137508273124695,-0.977115154266357,0.162288442254066,-0.254124075174332,-0.924398899078369,0.284442812204361,-0.409071207046509,-0.911831259727478,0.0349960066378117,-0.00401371298357844,-0.809134721755981,0.587609589099884,-0.146697878837585,-0.971393048763275,0.186749294400215,-0.020152984187007,-0.949990630149841,0.311627417802811,-0.239017203450203,-0.966962397098541,0.0886259078979492,-0.0351674817502499,-0.988667547702789,0.145944833755493,-0.207971170544624,-0.972651124000549,-0.103430323302746,-0.113305017352104,-0.992927134037018,0.0354643389582634,0.489506125450134,-0.754622936248779,0.436953037977219,0.344410687685013,-0.82664680480957,0.445012718439102,0.482736587524414,-0.758591532707214,0.437612026929855,0.490773260593414,-0.746387958526611,0.449496150016785,0.346924632787704,-0.826542019844055,0.443251192569733,0.413157552480698,-0.793082118034363,0.447573304176331,0.414379090070724,-0.820651173591614,0.393474102020264,0.000225052237510681,-0.912694573402405,0.40864235162735,0.36967745423317,-0.839154183864594,0.398947447538376,0.477805376052856,-0.765823721885681,0.430367469787598,0.456356137990952,-0.738740742206573,0.495985180139542,0.474668860435486,-0.761921644210815,0.440641433000565,-0.0331898480653763,-0.902606666088104,0.429184913635254,-0.0446207821369171,-0.903006970882416,0.427302539348602,0.419713288545609,-0.785426497459412,0.454913228750229,-0.0311268121004105,-0.903272926807404,0.42793607711792,0.307207942008972,-0.832953751087189,0.460229694843292,-0.0461126714944839,-0.903877198696136,0.425299495458603,
- 0.256311476230621,-0.872262001037598,0.416489362716675,0.185754954814911,-0.735938251018524,0.651068389415741,0.281473249197006,-0.911284446716309,0.300555348396301,0.20201575756073,-0.802585005760193,0.561290442943573,-0.23130889236927,-0.754552245140076,0.614123046398163,0.0840500295162201,-0.804992437362671,0.58730137348175,0.0939637124538422,-0.755226850509644,0.6486936211586,-0.255222499370575,-0.767140030860901,0.588521540164948,-0.266000479459763,-0.765914857387543,0.585335910320282,0.230469465255737,-0.920377135276794,0.315895050764084,0.244359254837036,-0.934389293193817,0.259239792823792,0.127486690878868,-0.761483073234558,0.635523915290833,0.285443335771561,-0.908576250076294,0.304977625608444,0.298145979642868,-0.925862669944763,0.232136636972427,0.263187289237976,-0.872617244720459,0.411426544189453,0.123148187994957,-0.891755938529968,0.435437619686127,0.180060863494873,-0.70132452249527,0.689726114273071,0.212608635425568,-0.492490589618683,0.843949437141418,0.387360394001007,-0.816095352172852,0.428882539272308,0.483563184738159,-0.761072397232056,0.432360261678696,0.25616991519928,-0.872254133224487,0.416593223810196,0.493606388568878,-0.759967565536499,0.422849863767624,0.388178884983063,-0.815005540847778,0.43021285533905,0.453865885734558,-0.782427549362183,0.426395386457443,0.0303116738796234,-0.849296569824219,0.527045249938965,0.0117165297269821,-0.852911949157715,0.521923303604126,0.0706347450613976,-0.840323090553284,0.537464439868927,0.295184701681137,-0.873432159423828,0.38727542757988,-0.114880301058292,-0.922239184379578,0.369157820940018,0.359398365020752,-0.850583672523499,0.383849412202835,0.313907265663147,-0.91745138168335,0.244428411126137,0.304024904966354,-0.905277013778687,0.29671972990036,0.253044724464417,-0.825300335884094,0.504824459552765,0.460679352283478,-0.77332603931427,0.435593068599701,0.48848882317543,-0.806670546531677,0.33265808224678,0.449883192777634,-0.759751081466675,0.469450145959854,0.178120210766792,-0.703332543373108,0.688183486461639,0.243051469326019,-0.824570417404175,0.510890960693359,
- 0.299561023712158,-0.90899920463562,0.289799332618713,0.0141078066080809,-0.77925968170166,0.626542389392853,0.0327839553356171,-0.837686777114868,0.54516613483429,0.0498939827084541,-0.884336352348328,0.464176535606384,0.0531703159213066,-0.885072469711304,0.462406367063522,0.0490340366959572,-0.825225949287415,0.562670409679413,0.0424393713474274,-0.727328181266785,0.68497633934021,0.0952732264995575,-0.786314010620117,0.610436975955963,0.214138731360435,-0.940673291683197,0.263207793235779,0.0711603984236717,-0.743292808532715,0.665170729160309,0.00330060720443726,-0.83400821685791,0.551742255687714,-0.22349289059639,-0.854122996330261,0.46960061788559,0.0511966124176979,-0.823520243167877,0.564971923828125,-0.334923028945923,-0.548207581043243,0.766351819038391,-0.146568313241005,-0.933481097221375,0.327308535575867,-0.225443661212921,-0.829802989959717,0.510492026805878,-0.227763891220093,-0.69316828250885,0.683843195438385,-0.215304434299469,-0.661041736602783,0.718796133995056,-0.255040764808655,-0.762484312057495,0.594619154930115,-0.295868545770645,-0.664263427257538,0.686451733112335,-0.322086274623871,-0.56544953584671,0.759294033050537,-0.224811613559723,-0.838626563549042,0.496150374412537,-0.512591958045959,-0.241088479757309,0.824090898036957,-0.665401041507721,-0.71488755941391,0.214888960123062,-0.647837340831757,-0.543353021144867,0.5339235663414,-0.628893136978149,-0.723494529724121,0.284691154956818,-0.0042526563629508,0.607066810131073,0.794639408588409,-0.642029166221619,-0.553157269954681,0.530863225460052,-0.381489157676697,-0.910924434661865,0.157107979059219,-0.731569111347198,-0.679566621780396,0.0547348484396935,-0.20010207593441,-0.960399150848389,0.193888232111931,-0.908759593963623,0.317106068134308,-0.271292954683304,-0.672012448310852,-0.712693572044373,0.201164424419403,-0.509609997272491,-0.816993474960327,0.269850671291351,-0.302415400743485,-0.776221930980682,0.553194761276245,-0.403010189533234,-0.89819347858429,0.175588831305504,-0.226693272590637,-0.655919432640076,0.719986081123352,
- -0.0580177158117294,-0.583118915557861,-0.810312569141388,-0.524870038032532,-0.80248486995697,0.283777207136154,-0.526396334171295,-0.795159220695496,0.301046073436737,-0.614033102989197,-0.698200404644012,0.368075489997864,-0.605944335460663,-0.774570226669312,0.18130749464035,-0.604848265647888,-0.777677774429321,0.17139396071434,0.908888101577759,-0.34189173579216,0.238814830780029,-0.600282073020935,-0.779327273368835,0.179751247167587,-0.235474810004234,-0.930577993392944,0.280314445495605,-0.282384842634201,-0.739515721797943,0.611044466495514,-0.249881908297539,-0.746571779251099,0.616595208644867,-0.223208174109459,-0.751689910888672,0.620596826076508,-0.642269015312195,-0.760209739208221,0.0978348702192307,0.11896675825119,-0.969795703887939,0.212939649820328,-0.107602290809155,-0.975318908691406,0.192807823419571,-0.684453725814819,0.104796901345253,0.721485137939453,-0.664353907108307,0.0979270339012146,0.740975201129913,-0.530548095703125,0.0545080453157425,0.845900475978851,-0.950198829174042,0.301697015762329,-0.0781097188591957,-0.474719047546387,0.269205451011658,0.837956011295319,-0.761141180992126,0.325881242752075,0.560772359371185,-0.81023496389389,0.11184786260128,0.575334072113037,-0.716785430908203,0.0389733165502548,0.696203827857971,0.692116856575012,-0.0218683183193207,-0.72145414352417,0.700763821601868,-0.0266086906194687,-0.712896943092346,-0.707207560539246,0.0311267226934433,0.706320524215698,-0.81028014421463,0.111807748675346,0.575278222560883,-0.698843955993652,0.0471420437097549,0.713719069957733,-0.700250685214996,0.0263256579637527,0.713411509990692,-0.691473245620728,0.120220109820366,0.712328553199768,-0.470373928546906,0.290311634540558,0.833347320556641,-0.749079704284668,0.0543247610330582,0.660248816013336,-0.298957109451294,0.392599165439606,0.869764685630798,-0.752267599105835,-0.024793952703476,0.658391118049622,-0.953829646110535,0.295944213867188,-0.0512460768222809,-0.753181099891663,-0.0241512469947338,0.657369673252106,-0.752785921096802,-0.0241703391075134,0.657821655273438,
- -0.957100868225098,0.200387805700302,0.209290862083435,-0.953315258026123,0.296850144863129,-0.0554095022380352,-0.781721115112305,0.0122248381376266,0.623508334159851,-0.849393486976624,-0.245109528303146,0.467388600111008,0.559755623340607,-0.370971739292145,-0.740981578826904,-0.726010978221893,-0.055271290242672,0.685458362102509,-0.812695324420929,-0.119180828332901,0.570370316505432,-0.66292130947113,-0.0147748216986656,0.748543262481689,-0.992279291152954,0.0932985916733742,0.0817148610949516,-0.855295717716217,-0.17505832016468,0.487672060728073,0.0321701914072037,0.51853734254837,-0.85444962978363,0.539370238780975,-0.350754976272583,0.765539586544037,0.662306606769562,-0.392204493284225,0.63837730884552,0.535882949829102,-0.349503636360168,0.768554985523224,0.622569143772125,-0.416672885417938,0.66241329908371,0.561322569847107,-0.423501938581467,0.711029708385468,0.715881705284119,-0.399629443883896,0.572546601295471,0.637840867042542,-0.407528877258301,0.653512954711914,0.705020546913147,-0.396503776311874,0.58798885345459,0.810249447822571,0.0501195192337036,-0.583938241004944,0.531761050224304,-0.339524567127228,0.77585643529892,0.533099293708801,-0.331953287124634,0.778210878372192,0.543415904045105,-0.264186769723892,0.796809077262878,0.399695813655853,-0.290065079927444,0.869543313980103,0.460902780294418,-0.361366480588913,0.810544788837433,-0.422332584857941,0.537176370620728,0.73012113571167,0.204290598630905,-0.210534229874611,0.956002473831177,0.467689961194992,-0.405632704496384,0.785320580005646,0.4763223528862,-0.411869585514069,0.776840209960938,0.47043764591217,-0.392056494951248,0.790556848049164,0.380846560001373,-0.527576088905334,0.759354591369629,-0.54593425989151,-0.81443727016449,-0.19659024477005,0.417587369680405,-0.41274231672287,0.8094841837883,0.462960541248322,-0.367856442928314,0.806442320346832,0.5264772772789,-0.2988560795784,0.795931458473206,0.469009518623352,-0.387354791164398,0.793716788291931,0.46945059299469,-0.386554628610611,0.793846130371094,0.382308661937714,-0.527064502239227,0.758975088596344,
- -0.447421610355377,-0.758594393730164,0.473654448986053,-0.594796359539032,-0.732151985168457,0.331919878721237,-0.49037092924118,-0.754483819007874,0.436223268508911,-0.0189359690994024,-0.99451470375061,0.102868974208832,0.266489923000336,-0.961346209049225,0.0692576393485069,-0.624324500560761,-0.767772614955902,0.144027888774872,-0.561451852321625,-0.777287483215332,0.283894211053848,0.0260540805757046,-0.946578979492188,0.321417689323425,-0.563466012477875,-0.77596777677536,0.283513814210892,0.0312187969684601,-0.948097288608551,0.316444396972656,0.176445052027702,-0.935730457305908,0.305410593748093,-0.561463117599487,-0.776175141334534,0.286899566650391,-0.31776374578476,-0.838398218154907,0.442848354578018,-0.123272731900215,-0.586067080497742,0.800830364227295,-0.182405471801758,-0.673051595687866,0.716749489307404,-0.653128087520599,-0.754525363445282,0.0641501545906067,-0.65608274936676,-0.341965168714523,0.672766923904419,0.115273386240005,0.652848958969116,0.748665690422058,-0.563833832740784,-0.656070232391357,0.501660645008087,-0.394123494625092,-0.758860945701599,0.518456101417542,0.0262319445610046,-0.875308096408844,0.482853651046753,-0.369998037815094,-0.752052962779999,0.545451879501343,-0.378826439380646,-0.722819328308105,0.577947020530701,-0.346595078706741,-0.81429797410965,0.465608060359955,0.0731287896633148,-0.899550676345825,0.430651515722275,0.0907388031482697,-0.900186598300934,0.425946623086929,-0.584340751171112,-0.646105468273163,0.491012871265411,0.0442654378712177,-0.922843515872955,0.382623255252838,0.105051189661026,-0.913308322429657,0.393487274646759,-0.026531171053648,-0.929394006729126,0.368134289979935,-0.0210035163909197,-0.947462916374207,0.319175511598587,0.0277240350842476,-0.940343618392944,0.339094996452332,0.914063513278961,0.0508229807019234,0.402374088764191,-0.200339660048485,-0.885307371616364,0.419636607170105,-0.183123469352722,-0.971841812133789,0.148287892341614,0.0602687671780586,-0.303607285022736,-0.95088928937912,-0.197340220212936,-0.886995673179626,0.41748708486557,
- -0.217509031295776,-0.753242790699005,0.620737671852112,-0.162507921457291,-0.971757829189301,0.171108514070511,-0.25052273273468,-0.903000354766846,0.349039673805237,0.0883396863937378,-0.977170705795288,0.193218991160393,-0.890504479408264,0.201675564050674,0.407834142446518,0.278435975313187,-0.71578848361969,0.640406310558319,-0.230982631444931,-0.867105662822723,0.441333204507828,-0.513734638690948,-0.822213113307953,0.245035484433174,-0.0992603749036789,-0.933424353599548,0.344770014286041,-0.17029382288456,-0.914160847663879,0.367844969034195,-0.393999487161636,-0.813618838787079,0.427538067102432,-0.503786683082581,-0.823060214519501,0.26224210858345,-0.287268757820129,-0.861644268035889,0.418384999036789,0.247060865163803,-0.723942339420319,0.644102871417999,-0.227868035435677,-0.66004079580307,0.715836822986603,-0.222584143280983,-0.750487267971039,0.622274279594421,-0.195359408855438,-0.911369144916534,0.362271934747696,-0.178748458623886,-0.84531581401825,0.503478050231934,-0.212859392166138,-0.745548069477081,0.631544947624207,-0.236011371016502,-0.650615453720093,0.721802115440369,-0.104820236563683,-0.958617091178894,0.26470011472702,-0.533932566642761,-0.819380342960358,0.208643198013306,-0.663491070270538,-0.726812779903412,0.177546992897987,-0.385074377059937,-0.811601996421814,0.43934029340744,-0.542300760746002,-0.411086142063141,0.732746958732605,-0.44000306725502,-0.72196227312088,0.53401106595993,-0.537815451622009,-0.810119569301605,0.233368515968323,-0.00654885917901993,-0.984139323234558,0.177276402711868,-0.636047959327698,-0.734676778316498,0.235993728041649,-0.337698489427567,-0.706097543239594,0.622403502464294,-0.427846521139145,-0.813256740570068,0.394412338733673,-0.317833036184311,-0.680022776126862,0.66072028875351,-0.512004852294922,-0.855005741119385,0.0825602784752846,-0.633749663829803,-0.735168874263763,0.240599513053894,-0.719754219055176,-0.579145491123199,0.382811367511749,-0.687179505825043,-0.464624464511871,0.558487713336945,-0.68286520242691,-0.630972683429718,0.368196457624435,
- -0.650179266929626,-0.731112658977509,0.206739485263824,0.885892748832703,-0.437389075756073,-0.154546931385994,0.988153278827667,0.0382734760642052,-0.148621052503586,0.986266553401947,-0.0624866336584091,-0.152885183691978,0.866069555282593,-0.450595945119858,-0.216533541679382,0.980147361755371,-0.051049005240202,-0.191586405038834,0.782376050949097,-0.584064304828644,-0.216233193874359,0.783640801906586,-0.580111801624298,-0.222210288047791,-0.230179890990257,-0.972138464450836,-0.0443176850676537,0.862412452697754,-0.452594459056854,-0.226722747087479,-0.21262714266777,-0.969448328018188,-0.122309505939484,-0.25054606795311,-0.958660781383514,-0.134893119335175,0.619684875011444,-0.764845371246338,0.17607519030571,-0.432152926921844,-0.901375651359558,0.027673751115799,-0.21295453608036,-0.976707100868225,0.0263402294367552,-0.382158190011978,-0.923687875270844,0.0274920165538788,-0.558687686920166,-0.694278538227081,0.453702002763748,-0.0525709763169289,-0.844881534576416,0.532364010810852,-0.724954009056091,-0.572759866714478,0.382606595754623,-0.296589136123657,-0.945198893547058,-0.136506050825119,0.24262472987175,-0.41329288482666,-0.877680063247681,-0.264781177043915,-0.942460298538208,-0.20410692691803,-0.364407360553741,-0.926222085952759,-0.0965405628085136,-0.388693600893021,-0.188818976283073,-0.901811897754669,-0.380414068698883,-0.155788585543633,-0.911600232124329,-0.14824216067791,-0.954775214195251,0.257737755775452,-0.345588803291321,-0.913151264190674,0.216155558824539,-0.427926659584045,-0.882543325424194,0.194925829768181,0.111529409885406,-0.942640662193298,0.314626574516296,-0.423931807279587,-0.878835141658783,0.218930661678314,-0.363057911396027,-0.901707053184509,0.234762340784073,-0.567538678646088,-0.813939452171326,0.124106384813786,-0.224450439214706,-0.974274456501007,-0.0202788319438696,-0.444325953722,-0.893129706382751,0.069956049323082,-0.193375527858734,-0.961829841136932,-0.19362136721611,-0.240722641348839,-0.966400504112244,-0.0901259332895279,-0.359159737825394,-0.908373534679413,0.214153692126274,
- -0.304213017225266,-0.713767051696777,0.630865395069122,-0.158941701054573,-0.747297406196594,0.645200788974762,-0.312730461359024,-0.711240768432617,0.629552483558655,-0.452521771192551,-0.891095280647278,-0.0342527404427528,-0.721770405769348,-0.670247316360474,0.172673225402832,-0.62821352481842,-0.772455215454102,0.0930635780096054,-0.142684206366539,-0.764757037162781,0.628321468830109,-0.0590553432703018,-0.785612285137177,0.615894317626953,-0.299802005290985,-0.708578824996948,0.638776063919067,-0.0112035274505615,-0.757020115852356,0.653295516967773,-0.164965808391571,-0.740627408027649,0.651350498199463,0.0549111217260361,-0.758511245250702,0.649342358112335,-0.278129905462265,-0.778774499893188,0.562275826931,-0.274848371744156,-0.929801523685455,0.244800984859467,-0.271073997020721,-0.70207279920578,0.658492743968964,0.00755105912685394,-0.744892835617065,0.667141437530518,0.0445823222398758,-0.744424521923065,0.666216611862183,0.52287882566452,-0.638459861278534,0.564771413803101,0.23243772983551,-0.710583209991455,0.664111614227295,0.313668787479401,-0.748814404010773,0.583856821060181,-0.128248631954193,-0.44916620850563,0.884195744991302,0.248554766178131,-0.600614249706268,0.759923040866852,0.471132934093475,-0.628318667411804,0.619071424007416,0.538812518119812,-0.627760708332062,0.561780869960785,-0.191839128732681,-0.680105090141296,0.707569718360901,-0.179231569170952,-0.842187404632568,0.508524000644684,-0.189289003610611,-0.404779404401779,0.894607841968536,-0.302779227495193,-0.748953342437744,0.589401185512543,-0.288370192050934,-0.706086397171021,0.646749317646027,-0.183887705206871,-0.409550458192825,0.893562436103821,-0.140353098511696,-0.839203655719757,0.52539336681366,-0.387452334165573,-0.206708773970604,0.898416519165039,-0.147619143128395,-0.829475462436676,0.538682758808136,-0.343452095985413,-0.913018047809601,0.220088422298431,-0.225974202156067,-0.83415687084198,0.503108561038971,-0.353790760040283,-0.91600638628006,0.18911549448967,-0.348157614469528,-0.919426918029785,0.182867407798767,
- -0.427614092826843,-0.902139902114868,-0.0573563203215599,-0.331637144088745,-0.916310131549835,0.224482908844948,-0.31000480055809,-0.753710210323334,0.579497992992401,-0.594427347183228,-0.646514475345612,0.478200078010559,-0.29657855629921,-0.756691098213196,0.582631826400757,0.309213846921921,-0.724059641361237,0.616542339324951,-0.313172936439514,-0.756713688373566,0.573852896690369,-0.293407917022705,-0.760585367679596,0.579156100749969,-0.279238998889923,-0.928619682788849,0.244317531585693,-0.684941172599792,-0.717180132865906,0.128484606742859,-0.382723748683929,-0.89692223072052,0.221479296684265,-0.383961737155914,-0.896047055721283,0.222874641418457,-0.466295748949051,-0.861401200294495,0.20138581097126,-0.278436571359634,-0.928234934806824,0.2466841340065,-0.573815822601318,-0.812254786491394,-0.104774236679077,-0.99035108089447,-0.109371170401573,-0.0851039811968803,-0.363811284303665,-0.926418781280518,-0.0969008877873421,-0.327850371599197,-0.937288999557495,-0.118337266147137,-0.377024859189987,-0.918263256549835,-0.12101673334837,-0.590819239616394,-0.796428680419922,-0.128972828388214,-0.464992493391037,-0.884630084037781,0.0348114110529423,-0.957996129989624,0.0377071984112263,0.284291446208954,-0.960235357284546,-0.0459170565009117,0.275390118360519,-0.428264319896698,-0.90034019947052,0.077313095331192,-0.382311433553696,-0.60470849275589,0.698688507080078,-0.256854087114334,-0.260470807552338,0.930688500404358,-0.327665388584137,-0.926539063453674,0.184826463460922,-0.336737453937531,-0.936872065067291,-0.0942266881465912,-0.247997209429741,-0.728167057037354,0.638960301876068,0.0380188077688217,-0.997509360313416,-0.0594113543629646,-0.133208870887756,-0.922026634216309,0.36348631978035,-0.183815628290176,-0.853917479515076,0.48686420917511,-0.259322285652161,-0.719080924987793,0.644728302955627,-0.283479928970337,-0.954758048057556,-0.0898674950003624,-0.285925030708313,-0.956398248672485,-0.0595762804150581,-0.446264386177063,-0.889013051986694,-0.102488428354263,-0.432192921638489,-0.901355385780334,0.0277133919298649,
- -0.426109731197357,-0.902014017105103,0.0692921206355095,-0.361123234033585,-0.927547931671143,-0.0961506813764572,-0.255460739135742,-0.959103465080261,0.121903397142887,-0.343562096357346,-0.937397122383118,-0.0570233389735222,-0.416161119937897,-0.861096680164337,0.292100220918655,-0.517351627349854,-0.84902149438858,-0.107283666729927,-0.416593492031097,-0.861289441585541,0.290912866592407,-0.349485367536545,-0.936936855316162,0.00304588675498962,-0.613106250762939,-0.743224322795868,0.26780292391777,-0.246354639530182,-0.96529346704483,-0.0867060124874115,-0.41058474779129,-0.864022314548492,0.291351288557053,-0.227539256215096,-0.707747638225555,0.6688192486763,-0.411929428577423,-0.86467707157135,0.287485152482986,-0.40936815738678,-0.852057278156281,-0.326214879751205,-0.728618323802948,-0.416783899068832,0.543513119220734,-0.701097130775452,-0.667616784572601,0.250500798225403,-0.203974261879921,-0.733931422233582,0.647872805595398,-0.40694659948349,-0.865654766559601,0.291609913110733,-0.113694898784161,-0.645032107830048,0.755650043487549,-0.387119710445404,-0.58672022819519,0.711264908313751,-0.179911822080612,-0.8498295545578,0.495400309562683,-0.289063036441803,-0.733288109302521,0.615411400794983,-0.0860301703214645,-0.468479692935944,0.879275679588318,-0.222227334976196,-0.713791370391846,0.664166331291199,-0.176685035228729,-0.6363365650177,0.750904977321625,-0.272406846284866,-0.766387403011322,0.581760108470917,-0.387319564819336,-0.586656808853149,0.711208403110504,-0.293937683105469,-0.738127589225769,0.607262969017029,-0.0526449643075466,-0.650923669338226,0.757315576076508,-0.101699098944664,-0.770059406757355,0.629814088344574,-0.0234304796904325,-0.572122931480408,0.819833099842072,-0.12641766667366,-0.547425210475922,0.827250957489014,0.13970473408699,-0.725773990154266,0.673598349094391,0.151983246207237,-0.732007384300232,0.664128243923187,-0.328306376934052,-0.770728349685669,0.546070337295532,0.368773251771927,-0.744418799877167,0.556639075279236,0.109348736703396,-0.801903128623962,0.587362051010132,
- -0.0174113791435957,-0.708199858665466,0.70579731464386,0.0218759458512068,-0.640264809131622,0.767842710018158,-0.0550677478313446,-0.766903877258301,0.639394998550415,0.21903270483017,-0.774914801120758,0.592901289463043,0.152570962905884,-0.803896903991699,0.574866831302643,0.191155001521111,-0.787664532661438,0.58570009469986,0.109404161572456,-0.801777601242065,0.58752304315567,0.311751127243042,-0.725020468235016,0.614130735397339,0.134035736322403,-0.794560015201569,0.59220689535141,0.233415558934212,-0.691827297210693,0.683295071125031,0.174077644944191,-0.79641592502594,0.57915335893631,0.164083957672119,-0.811415195465088,0.560965061187744,0.329115271568298,-0.810795426368713,0.484039336442947,0.189754217863083,-0.721911668777466,0.665459990501404,0.151567935943604,-0.69162929058075,0.70617002248764,0.141581669449806,-0.72054785490036,0.678797006607056,0.0522370338439941,-0.741010010242462,0.669459104537964,0.527858316898346,-0.550237536430359,0.646996319293976,0.383860498666763,-0.650343120098114,0.65551894903183,0.409741580486298,-0.725021660327911,0.553584098815918,0.435986042022705,-0.815373420715332,0.380896747112274,0.178195029497147,-0.795275330543518,0.579468548297882,0.228816494345665,-0.650177657604218,0.724508166313171,0.169723376631737,-0.814403772354126,0.554923892021179,-0.0689866095781326,-0.641802549362183,0.763760685920715,0.163067772984505,-0.607111930847168,0.777704358100891,0.578964710235596,-0.446092814207077,0.682496309280396,0.202006310224533,-0.790500998497009,0.578188419342041,0.324121683835983,-0.730253219604492,0.601394593715668,0.216805875301361,-0.784093618392944,0.581543147563934,0.327446341514587,-0.734380066394806,0.594529092311859,0.418152332305908,-0.718769311904907,0.555445313453674,0.226134955883026,-0.742976665496826,0.629959344863892,0.432636857032776,-0.847173571586609,0.30841913819313,0.47057056427002,-0.812122762203217,0.344992816448212,0.53923761844635,-0.734235942363739,0.412456631660461,0.282502830028534,-0.851235389709473,0.442256212234497,0.275995969772339,-0.817464053630829,0.505548000335693,
- 0.273610711097717,-0.8057581782341,0.525253236293793,0.318459272384644,-0.723168671131134,0.612870991230011,0.745591878890991,-0.54389089345932,0.385065525770187,0.437115788459778,-0.695717811584473,0.570005714893341,0.513095378875732,-0.746200382709503,0.424167573451996,0.687568604946136,-0.356098979711533,0.632805645465851,0.426507622003555,-0.841974139213562,0.330410033464432,0.0899903252720833,-0.957812011241913,0.272943168878555,0.500420689582825,-0.737756133079529,-0.453094959259033,0.14425927400589,-0.970185279846191,0.194755762815475,0.349799156188965,-0.896640360355377,0.271434515714645,0.670728147029877,-0.732322633266449,-0.117589518427849,0.66779637336731,-0.735748827457428,-0.112791180610657,0.533077836036682,-0.794968724250793,0.289573580026627,0.519578039646149,-0.743321239948273,0.421322017908096,0.477734565734863,-0.633269488811493,0.608883798122406,0.626858472824097,-0.745490372180939,-0.226479023694992,0.992786288261414,-0.0831064358353615,-0.0864223167300224,0.933510482311249,-0.32862651348114,-0.143397375941277,0.690643906593323,-0.547816514968872,-0.472131460905075,0.713077902793884,-0.687176823616028,-0.138953313231468,0.700196504592896,-0.713498413562775,-0.0253944844007492,0.802962005138397,-0.525669813156128,-0.280932992696762,0.582049071788788,-0.748495936393738,-0.317762106657028,0.950364768505096,-0.229167997837067,-0.210449278354645,0.672625601291656,-0.730910778045654,-0.115517012774944,0.598379075527191,-0.54760879278183,-0.584865033626556,0.613410651683807,-0.573382139205933,-0.543102443218231,0.263861954212189,-0.863120496273041,0.430580973625183,0.266097784042358,-0.86406010389328,0.427308052778244,0.586486637592316,-0.745498538017273,-0.316647201776505,0.1579779535532,-0.60359263420105,0.781485080718994,0.746644377708435,-0.26005631685257,0.612285017967224,0.605269849300385,-0.381182014942169,0.698819518089294,0.697654783725739,-0.547310650348663,-0.462308377027512,0.951226532459259,-0.219714760780334,-0.216549277305603,0.55925577878952,-0.639069497585297,-0.528037130832672,0.520754873752594,-0.680634498596191,-0.515316426753998,
- 0.373230218887329,-0.846354961395264,0.379976898431778,0.528178811073303,-0.749143958091736,-0.399763226509094,0.58897864818573,-0.546986699104309,-0.594903171062469,0.491055011749268,-0.437517166137695,-0.753288567066193,0.61286586523056,-0.574693918228149,-0.5423304438591,0.310990631580353,-0.66149228811264,-0.682431519031525,0.521798551082611,-0.741603493690491,-0.421604782342911,0.196111470460892,-0.594897627830505,-0.779510796070099,0.395032793283463,-0.717084169387817,-0.57422947883606,0.698106825351715,-0.547275006771088,-0.461667716503143,0.555660903453827,-0.64313155412674,-0.526899337768555,0.355674892663956,-0.507079243659973,-0.78508985042572,0.321697980165482,-0.596702396869659,-0.735157668590546,0.350195854902267,-0.522722721099854,-0.777254164218903,0.188269972801209,-0.598049640655518,-0.779032111167908,0.212071552872658,-0.611667692661285,-0.762160420417786,0.310997068881989,-0.662551999092102,-0.681399762630463,0.315933674573898,-0.587120890617371,-0.745301961898804,0.326013594865799,-0.561519384384155,-0.760533452033997,0.33800083398819,-0.529180705547333,-0.778282344341278,-0.247161149978638,-0.59270715713501,-0.766557097434998,0.310374855995178,-0.71631795167923,-0.624944865703583,0.00109054148197174,-0.677341103553772,-0.735668301582336,0.356506526470184,-0.654233396053314,-0.666994631290436,0.526403546333313,-0.674794495105743,-0.517254054546356,0.194552719593048,-0.60915195941925,-0.768819332122803,-0.238355994224548,-0.685186266899109,-0.688263177871704,-0.204112112522125,-0.690003991127014,-0.694429874420166,-0.111440695822239,-0.698690354824066,-0.706691443920136,-0.487163811922073,-0.784858286380768,-0.38297376036644,-0.0976573452353477,-0.863147974014282,-0.495417803525925,-0.391436874866486,-0.819037735462189,-0.419469177722931,-0.329260319471359,-0.771475255489349,-0.54443895816803,-0.795050144195557,-0.595221281051636,-0.11664891242981,-0.537916779518127,-0.742191195487976,-0.399747222661972,0.236587449908257,-0.453994929790497,-0.859019815921783,-0.142620742321014,-0.852424681186676,-0.503022432327271,
- 0.082168772816658,-0.656100273132324,-0.75018709897995,-0.134746134281158,-0.460829585790634,-0.87719988822937,0.354942828416824,-0.651662290096283,-0.670337200164795,0.195187583565712,-0.608851253986359,-0.768896639347076,-0.198970824480057,-0.643042862415314,-0.739531278610229,-0.179779395461082,-0.706971645355225,-0.684010565280914,-0.0628876239061356,-0.943067252635956,-0.326602965593338,-0.142039030790329,-0.863405168056488,-0.48410376906395,-0.186023369431496,-0.911166727542877,-0.367655724287033,-0.0248832255601883,-0.683109223842621,-0.729892253875732,-0.381902933120728,-0.918079972267151,-0.106204211711884,-0.549215316772461,-0.813792407512665,0.190011709928513,-0.445116758346558,-0.895454823970795,-0.00564081175252795,-0.437617063522339,-0.898648679256439,0.0303638465702534,-0.442804038524628,-0.89579164981842,0.0384958535432816,-0.345648378133774,-0.932562053203583,-0.10418850928545,0.0160713996738195,-0.995084881782532,-0.097713865339756,-0.179302096366882,-0.621065735816956,-0.762973189353943,-0.0461312718689442,-0.946091771125793,-0.32059708237648,-0.494946718215942,-0.860162436962128,-0.123078562319279,-0.401140213012695,-0.915410339832306,-0.0333243310451508,-0.460147559642792,-0.883374810218811,-0.088955745100975,-0.434245377779007,-0.899636149406433,0.0456697419285774,-0.315071731805801,-0.932594656944275,-0.176059707999229,-0.430024802684784,-0.902063727378845,0.036874957382679,-0.273104906082153,-0.961974918842316,0.00424577295780182,-0.270788341760635,-0.962489545345306,0.0169590935111046,-0.299267739057541,-0.940171957015991,-0.162836119532585,-0.403241962194443,-0.914499938488007,-0.0329510904848576,-0.209385573863983,-0.969296813011169,0.128924399614334,-0.459352761507034,-0.884268403053284,-0.0840496346354485,-0.328074902296066,-0.925963580608368,-0.186971813440323,-0.469529032707214,-0.869482815265656,-0.153434380888939,0.142594218254089,-0.95533549785614,-0.258845597505569,-0.463431119918823,-0.83290046453476,-0.30250358581543,-0.461219966411591,-0.872302949428558,-0.162369281053543,-0.424421846866608,-0.894121646881104,0.14287269115448,
- 0.145271390676498,-0.954158782958984,-0.261681646108627,-0.43559330701828,-0.889512717723846,-0.137933522462845,-0.310569018125534,-0.934806823730469,-0.172287851572037,-0.266498863697052,-0.96383398771286,-0.00155605375766754,-0.231410816311836,-0.971864819526672,0.0439066141843796,-0.118774682283401,-0.975989818572998,0.182582959532738,0.165635257959366,-0.922609448432922,0.348362922668457,0.393369168043137,-0.692469596862793,-0.604769885540009,0.389618247747421,-0.742482304573059,-0.544901549816132,0.0436362251639366,-0.964337229728699,0.261054933071136,0.122833244502544,-0.957265853881836,-0.261828392744064,0.124991469085217,-0.952162027359009,-0.278863102197647,-0.205457583069801,-0.977606594562531,0.0455251820385456,-0.208444729447365,-0.975992977619171,0.0631545856595039,-0.249868541955948,-0.894289493560791,0.371230453252792,0.248675614595413,0.89946848154068,-0.359328627586365,-0.205457583069801,-0.977606594562531,0.0455251820385456,-0.249868541955948,-0.894289493560791,0.371230453252792,0.0892623066902161,-0.995352149009705,0.0361460000276566,-0.342601358890533,-0.935447096824646,0.0869666114449501,-0.198886811733246,-0.977439880371094,0.0711014792323112,-0.0224742777645588,-0.990223944187164,0.137664273381233,0.5344517827034,-0.154166176915169,0.831019997596741,-0.429171591997147,-0.740130841732025,-0.517704606056213,-0.233234614133835,-0.971497058868408,0.0423687100410461,-0.11376366019249,-0.993293523788452,0.0206369794905186,0.159502163529396,-0.986769556999207,-0.0290668532252312,-0.0986597836017609,-0.848382234573364,0.520109593868256,-0.0662785172462463,-0.982025146484375,0.176730647683144,-0.0819598138332367,-0.939033269882202,0.333914875984192,-0.643948793411255,-0.691428124904633,-0.32750141620636,-0.641239702701569,-0.694145679473877,-0.327067911624908,-0.131013110280037,-0.969787120819092,-0.205787867307663,-0.289983451366425,-0.916102290153503,0.276886969804764,-0.47071373462677,-0.823042631149292,0.317851215600967,-0.176289841532707,-0.952894806861877,0.246806591749191,-0.167800068855286,-0.953038454055786,0.252112954854965,
- -0.262805312871933,-0.934896111488342,0.238543033599854,-0.171213537454605,-0.952548086643219,0.251670658588409,-0.0893503800034523,-0.976295292377472,0.197140112519264,-0.075925275683403,-0.996400892734528,0.0376916490495205,-0.0983031168580055,-0.942537784576416,0.319310158491135,-0.545936048030853,-0.818739295005798,-0.177819386124611,-0.490447819232941,-0.843684077262878,-0.218307375907898,0.414454519748688,-0.700593233108521,-0.580858528614044,-0.336225420236588,-0.934067726135254,-0.120291903614998,-0.255811423063278,-0.904660105705261,0.340808928012848,-0.28481051325798,-0.933911979198456,0.216082140803337,-0.130272522568703,-0.974029421806335,-0.185191184282303,0.17805527150631,-0.954153776168823,-0.240597173571587,-0.354100853204727,-0.925921678543091,-0.131460174918175,-0.247000992298126,-0.95359468460083,0.172185212373734,-0.220943793654442,-0.926749169826508,0.303841918706894,-0.283744215965271,-0.954875707626343,-0.0877591595053673,-0.529935717582703,-0.846528351306915,-0.0505762696266174,-0.126216024160385,-0.972950220108032,-0.193487450480461,-0.341358512639999,-0.931785225868225,-0.123494297266006,-0.515540778636932,-0.856317162513733,-0.030638262629509,-0.599635124206543,-0.520320415496826,0.608033239841461,-0.522341907024384,-0.852667510509491,-0.0108175938948989,-0.513477802276611,-0.858011305332184,-0.0125361140817404,-0.323196560144424,-0.854501962661743,-0.406657576560974,-0.509783983230591,-0.860000371932983,-0.0227958112955093,-0.483154505491257,-0.874775409698486,0.0364646911621094,-0.222080737352371,-0.974929451942444,0.0138824507594109,-0.465757966041565,-0.884221911430359,0.034946009516716,-0.26906144618988,-0.954897463321686,0.125605911016464,-0.362928926944733,-0.918710589408875,-0.155735656619072,-0.307100415229797,-0.951435208320618,0.0214574281126261,-0.353525936603546,-0.935027956962585,0.0272447038441896,-0.45235002040863,-0.891683459281921,-0.0167369693517685,-0.65498960018158,-0.746613204479218,-0.116436637938023,-0.609784603118896,-0.730474829673767,0.307521224021912,-0.657740354537964,-0.615303456783295,-0.434487581253052,
- -0.686319887638092,-0.717845499515533,-0.11688868701458,-0.329509228467941,-0.719658553600311,-0.611159026622772,-0.682235836982727,-0.663875639438629,-0.306306302547455,-0.543525993824005,-0.707618176937103,-0.451504230499268,-0.471188545227051,-0.881587266921997,0.0280235111713409,-0.551816940307617,-0.833432078361511,0.0298159383237362,-0.478487998247147,-0.877641439437866,0.0281919986009598,-0.228220865130425,-0.914613842964172,-0.333761632442474,-0.344561040401459,-0.733678221702576,-0.585656940937042,-0.198371350765228,-0.941753327846527,-0.271568536758423,-0.521510303020477,-0.726037263870239,-0.448215276002884,-0.143753200769424,-0.82392555475235,-0.548162221908569,-0.39338418841362,-0.775778114795685,-0.493373245000839,-0.332856625318527,-0.722814500331879,-0.605595350265503,-0.308578103780746,-0.776785135269165,-0.548984885215759,-0.180680692195892,-0.947444081306458,-0.26401561498642,-0.218936920166016,-0.605025887489319,-0.765513062477112,-0.143985435366631,-0.678111016750336,-0.720717549324036,-0.010192483663559,-0.783497273921967,-0.621311724185944,-0.0880024582147598,-0.854633450508118,-0.511719882488251,-0.165749281644821,-0.951934099197388,-0.257582545280457,-0.0498153306543827,-0.786871731281281,-0.615102648735046,-0.00695578753948212,-0.783165574073792,-0.621774315834045,-0.144123241305351,-0.684913456439972,-0.714228332042694,-0.107340887188911,-0.714158296585083,-0.691705167293549,-0.107195049524307,-0.78950172662735,-0.604314744472504,0.257279098033905,-0.438590317964554,-0.861072659492493,-0.133558258414268,-0.805877804756165,-0.576821625232697,0.321527987718582,-0.622029602527618,-0.713932037353516,0.249460831284523,-0.72962498664856,-0.636723399162292,0.385511934757233,-0.501926422119141,-0.774241745471954,0.399252325296402,-0.492804408073425,-0.773137331008911,0.399984568357468,-0.491337686777115,-0.773692190647125,0.323167026042938,-0.626982092857361,-0.708841741085052,0.650298774242401,-0.53641265630722,-0.537934064865112,0.62309205532074,-0.309521108865738,-0.718298733234406,0.650179922580719,-0.521356701850891,-0.552678287029266,
- 0.618710875511169,-0.560331046581268,-0.550659656524658,0.357175141572952,-0.735298156738281,-0.575988352298737,0.645419239997864,-0.536101222038269,-0.544085919857025,0.635951995849609,-0.541942715644836,-0.549420714378357,0.592973530292511,-0.744560062885284,-0.306614965200424,0.636225461959839,-0.535432875156403,-0.555453717708588,0.665621399879456,-0.537185847759247,-0.518053591251373,0.839803457260132,-0.331356436014175,-0.430038452148438,0.607762455940247,-0.586729943752289,-0.535138130187988,0.854780852794647,-0.43009752035141,-0.290457963943481,0.792301774024963,-0.526831269264221,-0.307744801044464,0.575670182704926,-0.746805369853973,-0.332995057106018,0.0760748088359833,-0.993931233882904,0.0794571489095688,0.176346436142921,-0.612360239028931,0.770659983158112,0.0884696468710899,-0.984438180923462,0.151837408542633,0.674933433532715,-0.720051407814026,-0.161217078566551,0.706083059310913,-0.69062077999115,-0.156491905450821,0.842369854450226,-0.523391962051392,-0.128350794315338,0.38329204916954,-0.923157930374146,0.0294412411749363,0.635689556598663,-0.682921707630157,0.359884291887283,0.647396326065063,-0.661183476448059,0.379096925258636,0.509086191654205,-0.706189811229706,0.49206417798996,0.517163515090942,-0.690140604972839,0.506209373474121,0.476091980934143,-0.763599634170532,0.436178952455521,0.854235410690308,-0.459472358226776,-0.243242710828781,0.946869254112244,-0.253225237131119,0.198281899094582,0.901765584945679,-0.116755269467831,0.416157603263855,0.468561589717865,-0.761620998382568,0.447642207145691,0.528882503509521,-0.634472250938416,0.563673913478851,0.494865030050278,-0.713220655918121,0.496412009000778,0.586980521678925,-0.399136453866959,0.70437490940094,0.742541253566742,-0.534496545791626,0.403665661811829,0.748017191886902,-0.539673328399658,0.386293858289719,0.6213099360466,-0.640746712684631,0.451018512248993,0.585717976093292,-0.593995034694672,0.551456689834595,0.530667424201965,-0.524975538253784,0.665426790714264,0.402086913585663,-0.749833941459656,-0.525428533554077,
- 0.39346918463707,-0.835379481315613,-0.383826941251755,0.401952266693115,-0.688111424446106,-0.604100227355957,0.157715901732445,-0.552706182003021,-0.818316340446472,-0.294863641262054,-0.896124958992004,-0.331685900688171,-0.26302906870842,-0.886732280254364,-0.380159914493561,0.612661898136139,-0.560862064361572,-0.556847631931305,0.439033567905426,-0.867895126342773,-0.232395529747009,0.546524584293365,-0.727000117301941,-0.415670186281204,0.57152783870697,-0.604443252086639,-0.554981291294098,0.573671638965607,-0.59854531288147,-0.559146106243134,0.530247867107391,-0.69916170835495,-0.47959378361702,0.733964443206787,-0.417077749967575,-0.536043405532837,0.619908213615417,-0.717644035816193,-0.317333996295929,0.250562131404877,-0.960604846477509,0.120237872004509,0.627118825912476,-0.769151210784912,-0.122998282313347,0.299371212720871,-0.933580279350281,0.196989238262177,0.366278946399689,-0.919820308685303,0.140607699751854,0.186249136924744,-0.845880389213562,-0.499797821044922,0.559769928455353,-0.75068861246109,-0.350890666246414,0.37389862537384,-0.817728579044342,-0.437629818916321,0.466572880744934,-0.683193027973175,-0.561744630336761,0.20955428481102,-0.624554336071014,-0.752342283725739,0.71713662147522,-0.654190301895142,-0.240312457084656,0.625004708766937,-0.777073442935944,-0.0743372887372971,0.583950281143188,-0.803303360939026,-0.117071956396103,0.790308952331543,-0.595400810241699,0.144601672887802,-0.296279907226563,-0.91018533706665,-0.28944918513298,-0.0810225233435631,-0.989631593227386,0.118594095110893,0.34537211060524,-0.542793691158295,0.765567183494568,0.879277944564819,-0.318102121353149,0.354515641927719,0.451711803674698,-0.695194780826569,0.559160828590393,0.593558371067047,-0.612877070903778,0.521603465080261,0.80640584230423,-0.573748230934143,0.143257409334183,0.850649893283844,-0.45539653301239,0.262695461511612,0.627256810665131,-0.768175542354584,-0.1282779276371,0.730717182159424,-0.548684120178223,0.406199753284454,0.199283123016357,-0.839585185050964,0.505354523658752,0.835931003093719,-0.424160569906235,0.348291873931885,
- -0.76038670539856,-0.645713925361633,0.0697539448738098,-0.2307198792696,-0.731667578220367,-0.641428887844086,0.168594509363174,-0.520916879177094,-0.836792409420013,0.671689331531525,-0.418980866670609,-0.610973358154297,0.264108598232269,-0.630727589130402,-0.729677677154541,-0.323492765426636,-0.692390739917755,-0.64493989944458,0.443194359540939,-0.79813027381897,-0.408126056194305,0.307018369436264,-0.821319699287415,-0.480805337429047,0.141631454229355,-0.823254942893982,-0.549719870090485,0.292013764381409,-0.823988199234009,-0.485563009977341,0.444412589073181,-0.798998713493347,-0.405090808868408,0.138160541653633,-0.824530959129334,-0.548689782619476,0.410357385873795,-0.724676012992859,-0.553580641746521,0.395592510700226,-0.760455131530762,-0.514989912509918,0.441645562648773,-0.626667857170105,-0.642056524753571,0.515574634075165,-0.836408674716949,-0.186019733548164,0.129294976592064,-0.881333887577057,-0.454459369182587,0.642978012561798,-0.763361096382141,-0.0621228739619255,0.785054326057434,-0.602214515209198,0.14500817656517,0.769684553146362,-0.332780480384827,-0.54483288526535,0.597941339015961,-0.611569106578827,0.518121182918549,0.557480156421661,-0.820145070552826,-0.128755286335945,0.645847320556641,-0.76253867149353,-0.0376303754746914,0.115997135639191,-0.884779572486877,-0.451342225074768,0.62339723110199,-0.760705769062042,-0.180838689208031,0.559853434562683,-0.822172105312347,-0.102942034602165,0.313750892877579,-0.938132524490356,0.146518886089325,0.157836675643921,-0.873322248458862,-0.460864245891571,0.781279265880585,-0.598250091075897,0.178044006228447,0.557086110115051,-0.819788098335266,-0.132674321532249,0.845610737800598,-0.403107047080994,0.349924832582474,0.552088856697083,-0.814925968647003,-0.176333531737328,0.792880058288574,-0.582869708538055,0.177776038646698,0.77553117275238,-0.528504073619843,-0.345303982496262,0.351110190153122,-0.924554526805878,0.148056209087372,0.563242375850677,-0.824454605579376,-0.055069025605917,0.511710464954376,-0.358323961496353,0.780869007110596,
- 0.479607433080673,-0.66780412197113,0.569222629070282,0.353630185127258,-0.910363435745239,0.214905276894569,0.812080860137939,-0.565816521644592,0.142745673656464,0.817011713981628,-0.561486482620239,0.131243467330933,0.461107611656189,-0.649780571460724,0.604288876056671,0.415951073169708,-0.878497779369354,0.235002726316452,0.52036452293396,-0.590102791786194,0.617251515388489,0.525063753128052,-0.367355078458786,0.767696797847748,0.572956323623657,-0.706128537654877,0.416057169437408,0.202389717102051,-0.673778712749481,0.710676252841949,0.824729323387146,-0.5655277967453,-8.87645874172449e-005,0.548020541667938,-0.382868319749832,0.743697047233582,0.455275774002075,-0.652304112911224,0.605989575386047,0.57120817899704,-0.254722595214844,0.780280470848084,0.310965418815613,-0.298324257135391,0.90238755941391,0.505311548709869,-0.639664113521576,0.579215049743652,0.556269407272339,-0.754807949066162,0.347605049610138,0.53339946269989,-0.589470863342285,0.606637537479401,0.103569947183132,-0.669333159923553,0.735708117485046,0.741502583026886,-0.481635987758636,0.467119723558426,0.418119132518768,-0.684031128883362,0.597727298736572,0.303325742483139,-0.844527125358582,0.441324651241302,0.565463781356812,-0.226969122886658,0.792928576469421,0.262299001216888,-0.824517607688904,0.501368165016174,0.271250754594803,-0.786965847015381,0.554173290729523,0.29819992184639,-0.547730803489685,0.781708240509033,0.240244358778,-0.812183082103729,0.531640291213989,0.274846762418747,-0.568273365497589,0.775580167770386,-0.102107174694538,-0.697330355644226,-0.70943957567215,0.550745904445648,-0.767715036869049,0.327555269002914,0.431539475917816,-0.525904357433319,0.732938170433044,0.291150391101837,-0.288486301898956,0.912144303321838,-0.0523446798324585,-0.511309921741486,0.857800781726837,0.58624279499054,-0.647822141647339,0.486462593078613,-0.127773642539978,-0.475450873374939,0.870413899421692,0.741502583026886,-0.481635987758636,0.467119723558426,0.881188035011292,-0.354630559682846,0.312641680240631,0.53339946269989,-0.589470863342285,0.606637537479401,
- -0.402943938970566,-0.418980926275253,0.813689827919006,-0.0195911526679993,-0.598239660263062,0.801077723503113,-0.915241062641144,0.175674244761467,0.362591445446014,0.135176688432693,-0.675228357315063,0.725116491317749,0.61852765083313,-0.488321155309677,0.615602254867554,0.616160094738007,-0.489841759204865,0.616767287254334,0.0184816997498274,-0.745436370372772,0.666320621967316,0.63862282037735,-0.483190059661865,0.598905861377716,0.971260070800781,0.232058584690094,0.0529415011405945,-0.673144698143005,0.637769520282745,-0.374334424734116,-0.441930681467056,-0.595406770706177,-0.670960545539856,-0.695962965488434,0.583173990249634,-0.418979406356812,-0.4679134786129,-0.658860445022583,-0.589033007621765,-0.697521328926086,0.642607152462006,-0.317049026489258,-0.342347741127014,-0.77449095249176,-0.531941533088684,-0.459295570850372,-0.637181043624878,-0.618908643722534,-0.249872714281082,-0.791168868541718,-0.558225274085999,0.396281480789185,-0.898712515830994,-0.187821060419083,-0.338934570550919,-0.938827812671661,0.0610376745462418,0.0815173387527466,-0.790536344051361,-0.606965601444244,-0.233020395040512,-0.961975395679474,-0.14249512553215,-0.259155422449112,-0.945801854133606,-0.19569693505764,0.194841280579567,-0.769615530967712,-0.608053505420685,0.331258207559586,-0.640313565731049,-0.693012654781342,0.608583211898804,-0.792661845684052,0.0362446568906307,-0.485951721668243,-0.390674918889999,-0.781808197498322,0.41759204864502,-0.880855262279511,-0.222959414124489,-0.368603587150574,-0.821238100528717,-0.435545206069946,0.638510942459106,-0.76906555891037,0.0290160365402699,0.282710701227188,-0.941014051437378,-0.185922563076019,0.270583629608154,-0.94565886259079,-0.180316254496574,-0.622644186019897,-0.603856563568115,-0.497666120529175,-0.373207062482834,-0.813261985778809,-0.446454465389252,-0.340937465429306,-0.938054621219635,0.0617671087384224,-0.228272810578346,-0.964475393295288,-0.132962077856064,-0.334337472915649,-0.941149592399597,0.0495579540729523,-0.518933713436127,-0.816176533699036,-0.254093617200851,
- 0.455155193805695,-0.850268423557281,-0.26434338092804,0.179389521479607,-0.939391613006592,-0.29216942191124,-0.282813131809235,-0.889776170253754,-0.358211010694504,-0.501007318496704,-0.753503680229187,-0.425704210996628,0.232617244124413,-0.963061153888702,-0.135656118392944,-0.515912175178528,-0.843083322048187,-0.151806026697159,-0.280059576034546,-0.89479672908783,-0.347714573144913,-0.758275508880615,-0.636081695556641,0.142892450094223,-0.404702544212341,-0.903827250003815,0.138968348503113,-0.236085757613182,-0.952673494815826,-0.191511616110802,-0.409613192081451,-0.899798989295959,0.1502625644207,-0.238156616687775,-0.950732707977295,-0.19846573472023,-0.522151291370392,-0.755763649940491,0.395195662975311,-0.430990129709244,-0.887840390205383,0.161205381155014,-0.410617798566818,-0.856918215751648,0.311583340167999,-0.380622804164886,-0.921578347682953,0.0762873739004135,-0.366614550352097,-0.930370450019836,0.00214974582195282,0.228948041796684,-0.964107036590576,-0.134463489055634,0.253532320261002,-0.959581911563873,-0.122163690626621,-0.28034371137619,-0.894287943840027,-0.348792999982834,-0.393062978982925,-0.883003830909729,0.256526440382004,-0.273918092250824,-0.905297994613647,-0.324660390615463,-0.362577736377716,-0.931340456008911,0.0337992608547211,-0.538256347179413,-0.807566285133362,-0.241074785590172,-0.26065456867218,-0.925025165081024,-0.2763831615448,0.4491246342659,-0.855943918228149,-0.256217002868652,-0.29771962761879,-0.947068691253662,0.120100662112236,-0.334159374237061,-0.865903615951538,0.372221112251282,-0.306030541658401,-0.937233209609985,0.167150646448135,-0.333245396614075,-0.94145268201828,0.0511303097009659,-0.390462547540665,-0.820065915584564,0.418366879224777,-0.376381009817123,-0.879888594150543,0.290057629346848,0.116721644997597,-0.964667677879334,-0.236204281449318,-0.860617756843567,-0.476653158664703,-0.179273575544357,-0.513297557830811,-0.823009014129639,-0.243273258209229,-0.427291184663773,-0.815611600875854,0.390128135681152,-0.522038280963898,-0.755907297134399,0.395070016384125,
- -0.340011805295944,-0.859436213970184,0.381787061691284,-0.554230988025665,-0.78406947851181,0.279397755861282,-0.263333857059479,-0.92941677570343,0.25853368639946,-0.303155690431595,-0.915973782539368,0.262847572565079,0.357867270708084,-0.913559675216675,-0.193234965205193,0.198750138282776,-0.956537127494812,-0.213389575481415,-0.530071616172791,-0.817194402217865,-0.226312726736069,-0.479145914316177,-0.684018611907959,0.550034284591675,-0.524275839328766,-0.761000871658325,0.382116138935089,-0.539708316326141,-0.789121747016907,0.293260723352432,-0.374870181083679,-0.81632798910141,0.439409732818604,-0.455235183238983,-0.884530067443848,-0.101820796728134,-0.367161810398102,-0.805412232875824,0.465299367904663,-0.608483612537384,-0.746357262134552,0.26962685585022,-0.206227540969849,-0.950517416000366,0.23235085606575,-0.193810746073723,-0.953565657138824,0.230542704463005,-0.428633630275726,-0.405778706073761,0.807228028774261,-0.49923387169838,-0.562473595142365,0.659082055091858,-0.559839189052582,-0.76608681678772,0.315739035606384,-0.535497784614563,-0.790509164333344,0.29721599817276,-0.342446476221085,-0.550976455211639,0.761022627353668,-0.464164584875107,-0.707157254219055,0.533366560935974,-0.205495283007622,-0.947832942008972,0.243689075112343,-0.284175932407379,-0.922200262546539,0.262280285358429,-0.560782968997955,-0.765748977661133,0.314882665872574,-0.314447313547134,-0.901860475540161,0.296260982751846,-0.861521482467651,-0.186567932367325,0.472200304269791,-0.464543491601944,-0.809111475944519,0.359913885593414,-0.330652385950089,-0.357412070035934,0.873456239700317,-0.794011950492859,-0.607313811779022,-0.0267368070781231,-0.48937726020813,-0.46352481842041,0.738684475421906,-0.360980331897736,-0.517448484897614,0.775848090648651,-0.428640156984329,-0.404139667749405,0.808046221733093,-0.277826458215714,-0.632340312004089,0.723158597946167,-0.422579407691956,-0.542410731315613,0.726097345352173,-0.619091033935547,-0.741381466388702,0.258997619152069,-0.370731115341187,-0.486077666282654,0.791383028030396,
- -0.249688774347305,-0.806052446365356,0.53659576177597,-0.335828006267548,-0.728966116905212,0.596513211727142,-0.558034777641296,-0.423625826835632,0.713539302349091,-0.283341646194458,-0.477544665336609,0.831666171550751,-0.421566247940063,-0.553455114364624,0.718310058116913,-0.319668173789978,-0.498652756214142,0.805703282356262,-0.265284478664398,-0.510212481021881,0.818112075328827,0.0663080811500549,-0.247160166501999,0.966703295707703,-0.296487182378769,-0.531547009944916,0.793443977832794,-0.261794447898865,-0.56469851732254,0.782674431800842,-0.490375161170959,-0.0146398395299912,0.871388554573059,-0.272532135248184,-0.547036170959473,0.791503369808197,-0.169079557061195,-0.220956563949585,0.960515677928925,-0.330191940069199,-0.352810561656952,0.875498831272125,-0.477549374103546,-0.469093084335327,0.74289858341217,0.327787071466446,-0.45209327340126,0.829558491706848,0.0101911723613739,0.322583913803101,0.946485996246338,0.173395529389381,-0.0397991575300694,0.984047770500183,-0.109641835093498,-0.877632856369019,0.466625392436981,-0.464126855134964,-0.458395808935165,0.757931053638458,-0.341305285692215,-0.653483033180237,0.67562609910965,-0.337649703025818,-0.710068166255951,0.617896318435669,0.345736980438232,-0.458444118499756,0.818715453147888,-0.00890637934207916,-0.635817289352417,0.77178829908371,-0.276861310005188,-0.776235818862915,0.566397190093994,0.715983867645264,-0.410823881626129,0.56443864107132,0.741778194904327,-0.383987635374069,0.54983514547348,0.0788227990269661,-0.346213966608047,0.9348384141922,0.00765122100710869,-0.179509073495865,0.983726561069489,0.166012316942215,-0.542075574398041,0.823768138885498,0.372199088335037,-0.300756454467773,0.878073692321777,0.426796823740005,-0.260924220085144,0.865888595581055,-0.118444412946701,-0.559230864048004,0.820507049560547,0.336264312267303,0.325324058532715,0.883793294429779,0.623835265636444,-0.454811960458755,0.635590791702271,0.627460896968842,-0.53197169303894,0.568593859672546,0.501709043979645,-0.351820051670074,0.790259897708893,
- -0.0100721707567573,-0.639180481433868,0.768990814685822,0.352411299943924,-0.460764050483704,0.814556777477264,0.769443690776825,-0.587654292583466,0.250237494707108,0.439232707023621,0.62490850687027,0.6454176902771,0.554539620876312,0.501221776008606,0.66427606344223,0.78021365404129,-0.599669694900513,0.177940592169762,0.555112600326538,0.493906736373901,0.669257998466492,0.861864387989044,-0.224189877510071,0.45489439368248,0.804960787296295,-0.389876365661621,0.447252184152603,0.257671177387238,0.760634481906891,0.595852911472321,0.535228967666626,0.496199786663055,0.683605015277863,0.0625335872173309,-0.405627220869064,0.911896944046021,0.377760320901871,-0.250078469514847,0.891491889953613,0.445907711982727,-0.20852592587471,0.870450019836426,0.536159932613373,0.486110836267471,0.690093398094177,0.79807984828949,-0.505906701087952,0.327302813529968,0.823104560375214,-0.390572667121887,0.412252306938171,0.447869479656219,-0.202424019575119,0.870883166790009,0.361847579479218,-0.237162843346596,0.901565432548523,0.930213809013367,0.123763807117939,0.345521330833435,0.414782762527466,-0.291110843420029,0.862096130847931,0.386590510606766,-0.304912269115448,0.870388627052307,0.438860923051834,-0.278902232646942,0.854174852371216,0.842114925384521,-0.535175800323486,0.0665545612573624,0.905636608600616,-0.381539165973663,0.185068428516388,0.928289830684662,-0.10614662617445,0.356385916471481,0.366261720657349,-0.400500953197479,0.83991152048111,0.542502522468567,-0.344767898321152,0.766045749187469,0.878452777862549,-0.149451822042465,0.453855603933334,0.740780234336853,-0.470776170492172,0.479181051254272,0.989334642887115,-0.0886784493923187,0.115556448698044,0.785645425319672,-0.432005107402802,0.442869186401367,0.784673869609833,-0.434005469083786,0.442635536193848,0.737581610679626,-0.150066956877708,0.658371806144714,0.763469278812408,-0.581449925899506,0.281123995780945,0.856155753135681,-0.386250913143158,0.34323126077652,0.711704075336456,-0.532203435897827,0.458515912294388,0.885905265808105,-0.344880282878876,0.310208708047867,
- 0.844379305839539,-0.497829139232636,-0.197964459657669,0.881354868412018,0.239814311265945,0.407066166400909,0.981949746608734,-0.147445783019066,0.118467159569263,0.889124810695648,-0.457462042570114,-0.0136226397007704,0.949192225933075,-0.289308249950409,0.123834580183029,0.868943512439728,-0.492849349975586,-0.0451313070952892,0.92221599817276,-0.150201961398125,0.356310367584229,0.804883241653442,-0.592419028282166,-0.0346800871193409,0.843674182891846,-0.536166667938232,0.0271891243755817,0.900455296039581,-0.400217205286026,0.170313000679016,0.956222474575043,-0.290577173233032,-0.0346932597458363,0.815659880638123,-0.473563641309738,0.332320004701614,0.745469152927399,-0.473756015300751,0.468861401081085,0.956654131412506,-0.281777918338776,0.0735814943909645,0.942657291889191,-0.309711188077927,0.124403908848763,0.747757375240326,-0.475210249423981,-0.463717758655548,0.99833744764328,0.0487994030117989,-0.0306752063333988,0.843425393104553,-0.375184178352356,-0.384539604187012,0.958856999874115,0.269434630870819,0.0894327089190483,0.69509482383728,-0.0171019285917282,0.718714654445648,0.928612291812897,0.338467538356781,-0.152049586176872,0.956557810306549,-0.284357964992523,0.0643261298537254,0.940674602985382,0.0417886786162853,-0.336726814508438,0.982236385345459,-0.159582301974297,-0.0987185016274452,0.50093811750412,-0.864383518695831,0.0436134487390518,0.794090569019318,0.261689484119415,0.548578977584839,0.857573449611664,-0.291553437709808,0.423750460147858,0.926319777965546,-0.359184980392456,-0.113657161593437,0.901036083698273,-0.432314604520798,-0.035187192261219,0.889914333820343,-0.456051588058472,-0.00833195447921753,0.264716356992722,-0.678341269493103,-0.685403823852539,0.823316156864166,0.543372452259064,-0.164002642035484,0.867548882961273,0.39080935716629,-0.307614922523499,0.835090756416321,-0.476243913173676,-0.275345414876938,0.235284328460693,-0.967527091503143,-0.0923729315400124,0.0236775521188974,-0.999399185180664,-0.0253104902803898,0.995665013790131,-0.0870630145072937,-0.0327306017279625,
- 0.822582364082336,-0.500568211078644,-0.269795775413513,0.922591388225555,-0.34206810593605,-0.178366184234619,0.998347520828247,0.0485921241343021,-0.0306787844747305,0.975365161895752,-0.0987589508295059,0.197255045175552,0.864983677864075,0.288995802402496,-0.410225242376328,-0.272317379713058,-0.926740288734436,0.258835136890411,-0.145809769630432,-0.937173247337341,0.316931933164597,0.884548425674438,-0.155713900923729,0.43968990445137,0.57699191570282,0.0799202099442482,-0.812830328941345,0.89502340555191,-0.298037797212601,-0.331823021173477,0.909456431865692,-0.387407243251801,-0.151012301445007,0.707496583461761,-0.69399082660675,-0.133511602878571,0.731810450553894,-0.626834094524384,-0.267455667257309,0.715920448303223,-0.389780104160309,-0.579249024391174,0.363924264907837,-0.815870463848114,-0.449349015951157,0.767063796520233,-0.386920362710953,-0.511767268180847,0.399650782346725,-0.792994260787964,-0.459825426340103,0.673688471317291,-0.696442306041718,-0.247208684682846,0.678009271621704,-0.715229392051697,-0.16955953836441,0.584434986114502,-0.532233595848084,-0.612505674362183,0.61621218919754,-0.750845015048981,-0.237727493047714,0.452198475599289,-0.457880973815918,-0.765416026115417,0.547873139381409,-0.610811233520508,-0.571615874767303,0.0837439447641373,-0.992458283901215,-0.0895193964242935,0.855921864509583,-0.515739560127258,-0.0375576019287109,0.959437489509583,-0.281518250703812,-0.0150710176676512,0.248520776629448,-0.678767621517181,-0.691022455692291,0.331414461135864,-0.84803581237793,-0.413521200418472,0.34048518538475,-0.864935040473938,-0.368723750114441,0.0176486000418663,-0.854090750217438,-0.519824624061584,0.67008650302887,-0.194677263498306,-0.716299414634705,0.405503064393997,-0.58022528886795,-0.706332802772522,0.368964433670044,-0.833017945289612,-0.412245601415634,0.0451961755752563,-0.938701808452606,-0.341754615306854,0.408505529165268,-0.811493039131165,-0.417854428291321,0.807883262634277,-0.581810474395752,-0.0939215570688248,0.239026084542274,0.0684612691402435,-0.968596756458282,
- 0.580506920814514,-0.236025393009186,-0.779296934604645,0.510657906532288,-0.224525183439255,-0.829950034618378,0.815899848937988,-0.577362298965454,0.0309890508651733,0.808174848556519,-0.581742167472839,0.0918123126029968,-0.40229269862175,-0.851682484149933,-0.335853546857834,-0.0611976757645607,-0.749081254005432,-0.65964549779892,0.168575584888458,-0.590126693248749,-0.789514303207397,-0.358359068632126,-0.873891830444336,-0.328468859195709,-0.0862006917595863,-0.988835453987122,0.121547855436802,-0.119169011712074,-0.990331768989563,0.0710063204169273,0.183190405368805,-0.900579214096069,-0.394206017255783,-0.142105460166931,-0.966917216777802,-0.211842149496078,0.274323701858521,-0.856429159641266,-0.437350630760193,-0.11008021235466,-0.949742555618286,0.293038457632065,-0.544520497322083,-0.623101949691772,-0.561463713645935,-0.439968824386597,-0.852838337421417,-0.281237334012985,0.118041425943375,-0.983553171157837,-0.136709362268448,-0.0360346958041191,-0.997508406639099,-0.0606522783637047,0.114480182528496,-0.9842129945755,-0.134978041052818,-0.00278984755277634,-0.901289522647858,-0.433208227157593,-0.226167395710945,-0.925931036472321,-0.302489757537842,0.0800276845693588,-0.87675154209137,-0.474238723516464,-0.689100682735443,-0.649952411651611,-0.320471823215485,-0.174366146326065,-0.311061829328537,0.934257507324219,-0.234482154250145,-0.366886109113693,0.900229215621948,-0.436503171920776,-0.895321369171143,0.0886839777231216,-0.221550360321999,-0.768822908401489,0.599855601787567,-0.508764505386353,-0.786198496818542,-0.350785732269287,0.165781810879707,-0.966383576393127,-0.196518212556839,-0.0756912231445313,-0.996809422969818,-0.0253345873206854,-0.295125961303711,-0.945653140544891,0.136531099677086,-0.0810862854123116,-0.970586061477661,0.226688578724861,-0.106019824743271,-0.976355910301209,0.188385486602783,-0.103094100952148,-0.97578376531601,0.192918717861176,0.00794128328561783,-0.977291762828827,0.211749449372292,-0.00819520279765129,-0.974904596805573,0.222472295165062,0.369595915079117,-0.927765429019928,-0.0514801666140556,
- -0.0956043154001236,-0.990132093429565,0.102460935711861,-0.303987294435501,-0.918748736381531,-0.251977205276489,-0.0198431387543678,-0.975137293338776,0.220711693167686,-0.369888484477997,-0.916437566280365,0.152724355459213,0.151026606559753,-0.953164398670197,-0.262046992778778,0.0528172701597214,-0.980553448200226,-0.189011365175247,0.051333274692297,-0.981503903865814,-0.184431567788124,-0.139077454805374,-0.988474130630493,-0.0598028898239136,-0.420643985271454,-0.89632660150528,0.140204176306725,-0.107299946248531,-0.945097088813782,0.308671712875366,-0.191618293523788,-0.966972589492798,0.168067425489426,-0.134213715791702,-0.954796552658081,0.265236228704453,-0.0682205408811569,-0.995127499103546,-0.0711853951215744,-0.439432740211487,-0.884023785591125,0.159376353025436,-0.367545545101166,-0.923144638538361,0.112758278846741,-0.198535650968552,-0.945458710193634,0.258246719837189,-0.131819412112236,-0.913217008113861,0.385562390089035,-0.205836266279221,-0.947822630405426,0.243441730737686,-0.245236545801163,-0.94161331653595,0.230701938271523,-0.207158118486404,-0.921654880046844,0.328081846237183,-0.208514407277107,-0.922519683837891,0.324775785207748,-0.0554909408092499,-0.975007593631744,0.215130209922791,-0.15299254655838,-0.987166881561279,0.0457708090543747,-0.100872404873371,-0.985310554504395,0.137797221541405,-0.205748751759529,-0.947834432125092,0.243469387292862,-0.106815405189991,-0.978118062019348,0.178537234663963,-0.230202242732048,-0.93797093629837,0.259263634681702,-0.374988287687302,-0.914566218852997,0.151500627398491,-0.0219099298119545,-0.869367241859436,-0.493680566549301,-0.287048399448395,-0.956983923912048,-0.0422508083283901,0.0851984843611717,-0.853754162788391,-0.513658463954926,0.119004935026169,-0.963532686233521,0.239672213792801,0.117925420403481,-0.988181352615356,0.0979350954294205,-0.407793194055557,-0.908986330032349,-0.086305133998394,-0.121819093823433,-0.98368638753891,-0.132367625832558,0.202259689569473,-0.964631795883179,-0.169045925140381,-0.24062143266201,-0.650999009609222,0.719931781291962,
- 0.659988522529602,-0.689541339874268,0.298241466283798,0.684461951255798,-0.67589008808136,0.273284703493118,0.216672897338867,-0.975219964981079,-0.0447082929313183,-0.205748751759529,-0.947834432125092,0.243469387292862,-0.230202242732048,-0.93797093629837,0.259263634681702,-0.00986549165099859,-0.951971411705017,-0.306027829647064,0.280598282814026,-0.947847366333008,0.151162162423134,0.209785908460617,-0.977254688739777,0.0310352239757776,-0.878879189491272,-0.387916058301926,-0.277655273675919,-0.74848860502243,-0.0966932475566864,-0.656060397624969,0.0189598947763443,-0.477489620447159,0.878432810306549,0.378780215978622,-0.847590506076813,0.371639490127563,-0.176102057099342,0.411282986402512,0.894334614276886,0.393784314393997,-0.891044139862061,-0.225774720311165,0.130581334233284,-0.165230333805084,-0.977572202682495,0.597244918346405,-0.772364735603333,0.216220200061798,0.176911234855652,-0.225154250860214,-0.958127379417419,-0.625490307807922,-0.44761073589325,0.639066934585571,0.193015187978745,-0.515345215797424,-0.834963798522949,-0.397337138652802,-0.897305428981781,-0.192266076803207,0.821529507637024,-0.517497897148132,0.23934331536293,0.110826656222343,-0.781731843948364,0.613687872886658,-0.943731546401978,-0.119694843888283,0.308292031288147,0.207322597503662,-0.882078886032104,0.423030018806458,-0.0625131279230118,-0.976931095123291,0.204200565814972,-0.491770356893539,-0.842450976371765,-0.220086857676506,0.243925511837006,-0.921863734722137,0.301110923290253,-0.239109337329865,-0.960297167301178,-0.143722921609879,0.706262171268463,0.325860232114792,0.628497362136841,0.391720473766327,-0.351062387228012,-0.850476503372192,0.402920246124268,-0.371070981025696,-0.836637139320374,0.343959122896194,-0.674209892749786,0.653554260730743,0.417071670293808,-0.284499317407608,-0.863198459148407,0.446615397930145,-0.375806987285614,-0.811975240707397,0.411161005496979,-0.267510861158371,-0.871426701545715,0.176601678133011,-0.832364141941071,-0.525339663028717,-0.225123882293701,-0.470255672931671,-0.853334009647369,
- -0.337414294481277,-0.31189826130867,-0.888184189796448,-0.218364626169205,-0.437144339084625,-0.87248021364212,-0.219633787870407,-0.434683442115784,-0.873390734195709,-0.276239186525345,-0.31691238284111,-0.907335877418518,-0.0689312666654587,0.16272808611393,-0.984260141849518,0.637622654438019,-0.526420295238495,-0.562422454357147,0.53253448009491,-0.412378519773483,-0.7391557097435,-0.478857040405273,-0.402509927749634,-0.78018057346344,-0.247837662696838,-0.590370655059814,-0.768140077590942,-0.57370799779892,-0.300905138254166,-0.761784195899963,-0.273698687553406,-0.763945639133453,-0.584359586238861,0.313568860292435,-0.588181614875793,-0.745464265346527,0.720809042453766,-0.248840227723122,-0.646925806999207,0.721064388751984,-0.248864591121674,-0.64663177728653,0.320675164461136,-0.570786833763123,-0.755890071392059,0.801744222640991,0.578225553035736,0.151200667023659,0.443412065505981,-0.420740485191345,-0.791431128978729,-0.665901005268097,0.0663814023137093,-0.743081092834473,-0.780405104160309,0.155434608459473,-0.605646729469299,-0.507844269275665,-0.430279731750488,-0.746293306350708,-0.176280483603477,-0.247523352503777,-0.952710509300232,-0.262553751468658,-0.297741800546646,-0.917831897735596,-0.0272470060735941,-0.114677034318447,-0.993029177188873,-0.258307218551636,-0.298784345388412,-0.918697595596313,-0.172468215227127,-0.231421411037445,-0.95744389295578,-0.643870890140533,-0.169117256999016,-0.746210217475891,-0.612376093864441,-0.403174728155136,-0.680033564567566,-0.645724475383759,-0.10758313536644,-0.755953550338745,-0.179640740156174,-0.0682854130864143,-0.981359422206879,-0.157835409045219,-0.0827854573726654,-0.983989119529724,0.454135894775391,-0.437055647373199,-0.776365220546722,-0.636840283870697,0.056377150118351,-0.768931865692139,-0.286820620298386,-0.452112019062042,-0.844587981700897,-0.463987022638321,-0.239382892847061,-0.852884531021118,-0.52862811088562,-0.0224670171737671,-0.848556160926819,-0.414553582668304,-0.255427241325378,-0.873442888259888,-0.286744475364685,-0.451791912317276,-0.84478497505188,
- 0.174867928028107,-0.0454142242670059,-0.983543992042542,-0.140584617853165,-0.323250532150269,-0.935812532901764,-0.282996833324432,-0.436166763305664,-0.854208052158356,-0.240906536579132,-0.274511009454727,-0.930917680263519,-0.473697990179062,-0.295321851968765,-0.829695880413055,-0.689890801906586,-0.296283632516861,-0.660504937171936,-0.578199684619904,-0.193171337246895,-0.792697906494141,-0.109284788370132,0.142177939414978,-0.98378974199295,-0.693494319915771,-0.294523954391479,-0.657511472702026,-0.646802484989166,-0.316163837909698,-0.694036722183228,-0.63774585723877,-0.313485562801361,-0.703567385673523,-0.59992641210556,-0.302071869373322,-0.74083799123764,0.161651477217674,-0.964278936386108,0.209845185279846,0.197775900363922,-0.959456562995911,0.200817763805389,0.115483619272709,-0.968441009521484,0.220874518156052,0.300563216209412,-0.917598426342011,0.260144054889679,0.0441477000713348,-0.940587043762207,0.336670428514481,0.430666893720627,-0.877547264099121,0.21080094575882,0.420906722545624,-0.879213094711304,0.22320818901062,0.583973944187164,-0.790602803230286,0.184178411960602,0.280282318592072,-0.927181422710419,0.24854876101017,0.414232313632965,-0.903646051883698,-0.108791083097458,0.440171152353287,-0.869017660617828,0.22595950961113,0.439926832914352,-0.875741481781006,0.198849886655808,0.124871850013733,-0.986197888851166,0.108723104000092,0.10204254090786,-0.993493258953094,-0.0505813583731651,0.140706852078438,-0.962165653705597,0.233321577310562,0.251120507717133,-0.949495315551758,0.18814118206501,0.359540522098541,-0.919780015945435,0.157274827361107,0.216975763440132,-0.956061482429504,0.197150066494942,0.493805378675461,-0.854804456233978,0.159579411149025,0.535004198551178,-0.832901120185852,0.141585156321526,0.458549410104752,-0.871415674686432,0.174261808395386,0.54148256778717,-0.827740967273712,0.147111028432846,0.485164105892181,-0.855333089828491,0.181717306375504,0.649431943893433,-0.75691694021225,0.0729048252105713,0.39209708571434,-0.90117883682251,0.184761539101601,
- 0.226443529129028,-0.944387018680573,0.238446056842804,0.372232556343079,-0.908117115497589,0.191745147109032,0.262803375720978,-0.916999280452728,0.300077825784683,0.269602090120316,-0.888995170593262,0.37013828754425,0.24968945980072,-0.949277818202972,0.191119819879532,0.411181718111038,-0.904501080513,0.113170370459557,0.416008174419403,-0.827623605728149,0.376797437667847,0.417573690414429,-0.848199725151062,0.325867205858231,0.428087532520294,-0.903017282485962,-0.0360686182975769,0.443294614553452,-0.875028967857361,0.194458916783333,0.443507313728333,-0.866562247276306,0.228847563266754,0.507380485534668,-0.855190753936768,0.105895802378654,0.462240755558014,-0.886280179023743,-0.0290027819573879,0.510152995586395,-0.852319180965424,0.115307681262493,0.387412130832672,-0.907565116882324,0.16197957098484,0.582565367221832,-0.80504298210144,0.111908040940762,0.369777590036392,-0.914192080497742,0.165883779525757,0.417812168598175,-0.848031640052795,0.325998961925507,0.410706132650375,-0.788115620613098,0.458469361066818,0.411647468805313,-0.904411971569061,0.112184815108776,0.601050972938538,-0.797114133834839,0.0578524693846703,0.656496644020081,-0.754173398017883,0.0153200775384903,0.398306548595428,-0.897349715232849,0.190040588378906,0.587556064128876,-0.803240060806274,0.0978952124714851,0.585893929004669,-0.695464551448822,0.416001677513123,0.591764450073242,-0.792128503322601,0.14949007332325,0.43034815788269,-0.899306833744049,-0.0777668654918671,0.545552611351013,-0.812467098236084,0.205595895648003,0.501666605472565,-0.861044764518738,0.0832618623971939,0.366867363452911,-0.923902571201324,-0.108685329556465,0.37474912405014,-0.924661993980408,-0.0675525292754173,0.413892537355423,-0.789299488067627,0.453540980815887,0.249139845371246,-0.965605437755585,-0.0744012296199799,0.385829389095306,-0.778119027614594,0.495647549629211,0.259026795625687,-0.964863538742065,-0.0440864525735378,0.634799480438232,-0.770160615444183,-0.0623084604740143,0.477919787168503,-0.856347739696503,-0.195604801177979,0.0970690101385117,-0.898025155067444,-0.429102182388306,
- 0.619824469089508,-0.784727573394775,-0.00450363755226135,0.539111435413361,-0.838862776756287,0.0752860382199287,0.611392676830292,-0.791315674781799,0.00430433452129364,0.267187416553497,-0.926405191421509,-0.265300422906876,0.55452162027359,-0.797598958015442,-0.237364068627357,0.018062150105834,-0.963072061538696,-0.268637210130692,0.0675181448459625,-0.888127028942108,-0.454611599445343,0.358201026916504,-0.832549691200256,-0.42255562543869,0.225352004170418,-0.868050456047058,-0.44238555431366,0.42946395277977,-0.783560574054718,-0.448991656303406,0.342535823583603,-0.785302042961121,-0.515722751617432,0.0107042789459229,-0.717103600502014,-0.696884393692017,0.0919215679168701,-0.743644773960114,-0.662225782871246,0.0107042789459229,-0.717103600502014,-0.696884393692017,0.342535823583603,-0.785302042961121,-0.515722751617432,0.239195451140404,-0.946362495422363,-0.217218011617661,0.247753009200096,-0.96625030040741,-0.0705615654587746,0.231628775596619,-0.924721717834473,-0.30205637216568,0.299934595823288,-0.895461797714233,-0.328918695449829,0.288053214550018,-0.927664518356323,-0.237621366977692,0.28872549533844,-0.926235735416412,-0.242332383990288,-0.0973017364740372,-0.723580539226532,-0.683347404003143,0.24570919573307,-0.877010047435761,-0.412892699241638,-0.0315920263528824,-0.76611328125,-0.641928672790527,0.221567630767822,-0.8243128657341,-0.520976006984711,-0.0980234667658806,-0.719155192375183,-0.687900602817535,-0.0025293231010437,-0.761935234069824,-0.647648274898529,0.481104969978333,-0.820279538631439,-0.309321373701096,-0.0978484004735947,-0.720233678817749,-0.686796367168427,0.220578238368034,-0.824623644351959,-0.520904183387756,0.237492188811302,-0.945483088493347,-0.222843557596207,0.0064951223321259,0.99541187286377,0.0954630151391029,0.354810565710068,-0.891670346260071,-0.281129091978073,0.0125971287488937,-0.744397222995758,-0.667618215084076,0.0259913504123688,-0.730988919734955,-0.681894183158875,-0.0780938565731049,-0.823952734470367,-0.561251521110535,-0.36777651309967,-0.927665591239929,0.0646304711699486,
- 0.052775576710701,-0.75420355796814,-0.654516458511353,0.0675014555454254,-0.737498462200165,-0.671966969966888,-0.077284574508667,-0.827532351016998,-0.556073069572449,0.61899322271347,-0.718680918216705,-0.316772997379303,-0.979342341423035,0.138835072517395,-0.147014930844307,0.881004691123962,-0.323641061782837,-0.34509015083313,0.83966076374054,-0.386118650436401,-0.381945312023163,-0.797291159629822,-0.544785797595978,-0.2598757147789,0.21502123773098,-0.813369333744049,-0.540551841259003,-0.0217458549886942,-0.980400919914246,-0.19580939412117,-0.012251416221261,-0.977510452270508,-0.210531160235405,0.363037467002869,-0.659167230129242,-0.658560872077942,-0.0245262309908867,-0.976516306400299,-0.214043244719505,0.253660976886749,-0.798633754253387,-0.545747458934784,0.470726519823074,-0.876376807689667,-0.101883694529533,-0.43113499879837,0.892175436019897,0.134706243872643,-0.118233524262905,-0.870064198970795,-0.478549182415009,-0.0975223854184151,-0.919939935207367,-0.379736840724945,-0.231492444872856,-0.87755674123764,-0.419887453317642,0.548594892024994,-0.832397997379303,-0.0784693285822868,-0.0324551276862621,0.974676609039307,-0.22125144302845,-0.014100193977356,-0.995370388031006,0.0950735881924629,-0.0910375416278839,-0.988717555999756,-0.118953056633472,-0.118635803461075,-0.868944823741913,-0.480479568243027,-0.608066260814667,-0.789322972297668,0.0849986299872398,-0.58076024055481,-0.813090682029724,0.040013924241066,0.00857723504304886,-0.86690628528595,-0.498397469520569,-0.1453847438097,-0.778956174850464,-0.609992384910584,-0.115618601441383,-0.798955857753754,-0.590171039104462,0.0150810852646828,-0.982329785823822,-0.186549738049507,-0.0146883046254516,-0.989931166172028,-0.14078563451767,-0.0386019125580788,-0.993863046169281,-0.103663355112076,-0.0918964445590973,-0.868887364864349,-0.486404955387115,-0.338045626878738,-0.732997953891754,-0.590287387371063,-0.0711663216352463,-0.876637995243073,-0.475858360528946,-0.0655232593417168,-0.926885962486267,-0.369579821825027,-0.287257492542267,-0.95431262254715,-0.0822843387722969,
- 0.0216040816158056,-0.884168148040771,-0.46666893362999,-0.0658070892095566,-0.926360607147217,-0.370844423770905,-0.0293934568762779,-0.888511538505554,-0.457911908626556,0.0650738626718521,-0.749579310417175,-0.658708095550537,-0.165080145001411,-0.575741648674011,-0.800793409347534,-0.072249561548233,-0.623534321784973,-0.7784503698349,0.180354028940201,-0.71601802110672,-0.674381732940674,0.333431541919708,-0.662779867649078,-0.670482218265533,0.0974673256278038,-0.870901465415955,-0.481695771217346,-0.0568380542099476,-0.941984057426453,-0.330810606479645,0.47363942861557,-0.823824763298035,-0.311414003372192,0.082452803850174,-0.735220551490784,-0.672794461250305,-0.0524470955133438,-0.659326493740082,-0.750025272369385,0.0802700966596603,-0.852027893066406,-0.517305672168732,0.245693057775497,-0.698092401027679,-0.672533929347992,0.0930517762899399,-0.842582702636719,-0.530467569828033,0.0810398012399673,-0.843927443027496,-0.530300855636597,0.0795440524816513,-0.84499728679657,-0.528821766376495,0.0762122720479965,-0.847362101078033,-0.52551805973053,0.366288989782333,-0.907042801380157,-0.207619294524193,0.232720971107483,-0.948597073554993,-0.214486718177795,0.209082454442978,-0.953913986682892,-0.215250253677368,0.241546630859375,-0.900185942649841,-0.362381875514984,0.246913209557533,-0.814099609851837,-0.525619328022003,0.236569821834564,-0.928418934345245,-0.286483883857727,0.240862995386124,-0.945777833461761,-0.217920422554016,0.363647848367691,-0.907282710075378,-0.211183473467827,0.271794974803925,-0.93766713142395,-0.216582417488098,0.276350915431976,-0.909321188926697,-0.311071276664734,0.261870145797729,-0.936958432197571,-0.231371730566025,0.277868956327438,-0.905757784843445,-0.319987148046494,0.49555104970932,-0.847894132137299,0.188427120447159,0.0151407737284899,-0.993924558162689,-0.10901814699173,0.00525603070855141,-0.9933842420578,-0.114717952907085,0.399151802062988,-0.916861474514008,-0.00656503532081842,0.436132431030273,-0.803159117698669,-0.405861854553223,0.422395139932632,-0.891128063201904,-0.165750026702881,
- 0.492449969053268,-0.870047509670258,-0.0225929245352745,-0.543111085891724,0.781779825687408,-0.306350618600845,0.517357885837555,-0.850517749786377,0.0946592390537262,0.300818204879761,-0.938012599945068,-0.172165170311928,0.278439581394196,-0.956258058547974,-0.0896770507097244,0.265641242265701,-0.963001251220703,-0.0454242378473282,0.491823554039001,-0.851888298988342,0.179988741874695,0.65131413936615,-0.755207240581512,0.0738377347588539,0.484000533819199,-0.855366766452789,0.18463796377182,0.226795971393585,-0.968299925327301,-0.104685351252556,0.249972581863403,-0.935729920864105,-0.248843982815742,0.213932037353516,-0.976222217082977,-0.0349766276776791,0.34993126988411,-0.423067092895508,-0.835800528526306,0.565259277820587,-0.743505418300629,-0.357325851917267,0.58777928352356,-0.783391296863556,-0.202023640275002,0.490864753723145,-0.820494174957275,-0.292986571788788,0.530749440193176,-0.416130244731903,-0.738336503505707,0.489309787750244,-0.194218531250954,-0.850208878517151,0.841650187969208,-0.339834660291672,-0.419687449932098,0.705260396003723,-0.458482533693314,-0.540741801261902,0.670033752918243,-0.482160329818726,-0.564425647258759,0.502480804920197,-0.745630025863647,-0.437663078308105,0.464769035577774,-0.842983841896057,-0.270865142345428,0.46725469827652,-0.165026605129242,-0.86858469247818,0.448319971561432,-0.856123924255371,-0.257023751735687,0.377499401569366,-0.731598019599915,-0.567678272724152,0.358076095581055,-0.696498274803162,-0.621829330921173,0.68925267457962,-0.525483012199402,-0.498797059059143,0.656993508338928,-0.507605373859406,-0.557401418685913,0.661919295787811,-0.510378241539001,-0.5489781498909,0.806176006793976,-0.238097012042999,-0.541655004024506,0.671885132789612,-0.50828492641449,-0.538717746734619,0.699886918067932,-0.46425187587738,-0.542796909809113,0.698255658149719,-0.50206047296524,-0.510268867015839,0.781733512878418,-0.41234415769577,-0.467830061912537,0.71943473815918,-0.481226742267609,-0.500833749771118,0.329265058040619,-0.742410063743591,-0.583448231220245,
- 0.700815260410309,-0.501400113105774,-0.50740110874176,0.718335628509521,-0.484019160270691,-0.499719321727753,0.68842488527298,-0.504501938819885,-0.521103739738464,0.593411922454834,-0.455669343471527,-0.663496613502502,0.678048074245453,-0.499423742294312,-0.539283573627472,0.80428808927536,-0.172123372554779,-0.568765640258789,0.631733000278473,-0.515928566455841,-0.578559577465057,0.228030040860176,-0.866363644599915,-0.444315671920776,0.177056416869164,-0.669663429260254,-0.721250295639038,0.678939759731293,-0.501406848430634,-0.536313414573669,0.382012635469437,-0.629540145397186,-0.676568984985352,0.228030040860176,-0.866363644599915,-0.444315671920776,0.575802147388458,-0.587978184223175,-0.568096578121185,0.80428808927536,-0.172123372554779,-0.568765640258789,-0.191446498036385,-0.457505017518997,-0.868353366851807,0.499257415533066,-0.343829870223999,-0.795313239097595,0.125673830509186,-0.434070527553558,-0.89206999540329,0.124631740152836,-0.436483085155487,-0.891038417816162,-0.0640767216682434,-0.476636797189713,-0.876761972904205,-0.120551519095898,-0.485256791114807,-0.866021454334259,-0.0504382885992527,-0.67876672744751,-0.73261970281601,0.177056416869164,-0.669663429260254,-0.721250295639038,0.382012635469437,-0.629540145397186,-0.676568984985352,-0.178520277142525,-0.857779979705811,-0.482020914554596,-0.192478612065315,-0.835644662380219,-0.514441668987274,-0.344600230455399,-0.386498898267746,-0.855493605136871,0.150010406970978,-0.658245086669922,-0.737706065177917,0.130761712789536,-0.632005453109741,-0.763852477073669,0.278795182704926,-0.810695290565491,-0.514826476573944,-0.0978305488824844,-0.52342414855957,-0.846437454223633,0.0553708523511887,-0.482826709747314,-0.873963713645935,-0.0825201496481895,-0.519950270652771,-0.85020124912262,-0.240983709692955,-0.953608810901642,-0.180435925722122,-0.0890186578035355,-0.995808720588684,0.0209929756820202,-0.615774989128113,-0.0469767823815346,-0.78652036190033,-0.721825361251831,0.109497398138046,-0.683358311653137,-0.321217983961105,-0.902920782566071,-0.285574972629547,
- -0.23386162519455,-0.951012969017029,-0.202195763587952,0.0495449490845203,-0.494693130254745,-0.867654383182526,-0.125050991773605,-0.537031292915344,-0.834241986274719,-0.0724620372056961,-0.526073932647705,-0.847346127033234,-0.244354411959648,-0.804238200187683,-0.541748881340027,-0.296048760414124,-0.369309693574905,-0.880889117717743,-0.28472712635994,-0.0600363910198212,-0.956726789474487,-0.121149234473705,-0.786181688308716,-0.606004476547241,-0.301017761230469,-0.408325284719467,-0.861776530742645,0.354549497365952,-0.802307188510895,0.480206042528152,-0.141398131847382,-0.498604565858841,-0.855219304561615,-0.0418817959725857,-0.863120555877686,-0.503258109092712,-0.122333779931068,-0.592523813247681,-0.796209812164307,-0.113834381103516,-0.576133131980896,-0.809390187263489,-0.219524875283241,-0.635028541088104,-0.740639984607697,-0.0236821323633194,-0.518268764019012,-0.854889869689941,-0.169524610042572,-0.466417372226715,-0.868168294429779,0.491176813840866,-0.712413907051086,-0.501210331916809,-0.149309515953064,-0.47934353351593,-0.864833176136017,0.0139527171850204,-0.706003069877625,-0.708071351051331,-0.220898926258087,-0.767544388771057,-0.601730227470398,0.0809905007481575,-0.679292857646942,-0.729384541511536,0.0167489740997553,-0.704969465732574,-0.709039926528931,0.0139527171850204,-0.706003069877625,-0.708071351051331,0.0809905007481575,-0.679292857646942,-0.729384541511536,0.090010978281498,-0.719942450523376,-0.688172161579132,0.0119878742843866,-0.8615762591362,-0.507486701011658,-0.0779960379004478,-0.96122407913208,-0.264509111642838,0.399698913097382,-0.7276251912117,-0.557496666908264,0.354582220315933,-0.7105553150177,-0.607768595218658,-0.208923742175102,-0.31856244802475,-0.924591183662415,0.171104252338409,-0.861492693424225,-0.478072941303253,0.00441473769024014,-0.982370853424072,-0.186890557408333,0.288489669561386,0.877807974815369,-0.382396221160889,-0.114070266485214,-0.561843991279602,-0.819340825080872,-0.130580261349678,-0.93363493680954,-0.333578497171402,-0.130086168646812,-0.943822860717773,-0.303769528865814,
- 0.176382809877396,-0.940772116184235,-0.28954616189003,0.152380436658859,-0.947221875190735,-0.282047688961029,-0.185056149959564,-0.969547033309937,-0.160414665937424,0.126449897885323,-0.887683510780334,-0.442750930786133,-0.793117046356201,-0.602698862552643,0.0878604203462601,-0.156084328889847,-0.928895652294159,-0.335843235254288,0.013501014560461,-0.991430282592773,0.129938095808029,-0.232242405414581,-0.972320377826691,-0.0256232209503651,-0.658356726169586,-0.67777007818222,-0.327405244112015,0.44543394446373,-0.729557454586029,0.518974423408508,0.0914053246378899,-0.982540249824524,-0.162048891186714,-0.00840948522090912,-0.947465419769287,-0.319747805595398,0.457477062940598,-0.150005698204041,0.876477658748627,-0.380745738744736,-0.923243045806885,0.0515279993414879,-0.343242585659027,-0.931501686573029,0.120370626449585,-0.436437994241714,-0.894422709941864,0.0976214706897736,-0.179724454879761,-0.981564402580261,0.0650423169136047,-0.465684860944748,-0.879154801368713,0.101116821169853,-0.309887081384659,-0.935452103614807,0.169998064637184,-0.389367967844009,-0.906305730342865,0.164325207471848,-0.501624286174774,-0.85130774974823,0.153779998421669,-0.436429262161255,-0.892381012439728,0.114829391241074,-0.497246026992798,-0.547342002391815,-0.673173904418945,-0.354182004928589,-0.870022892951965,0.342950940132141,-0.324616521596909,-0.93686580657959,0.130025401711464,-0.327900648117065,-0.917547166347504,-0.224918633699417,0.307479292154312,0.90195894241333,-0.303194046020508,-0.3874631524086,-0.907301425933838,0.163329154253006,-0.0494989082217216,-0.96282160282135,0.265564441680908,-0.625141263008118,-0.77777624130249,0.0652883350849152,-0.615293622016907,-0.783698678016663,0.0850306451320648,-0.281322062015533,-0.937644720077515,0.204157814383507,-0.396659284830093,-0.902435779571533,0.16814012825489,-0.0969702750444412,-0.994383454322815,0.0424062423408031,-0.601511597633362,-0.791034460067749,0.111571699380875,-0.633330702781677,-0.765203654766083,0.11556725949049,-0.387123227119446,-0.8852658867836,0.257759898900986,
- -0.312544971704483,-0.944439888000488,0.101730674505234,-0.323465347290039,-0.938148856163025,0.123478688299656,-0.329106688499451,-0.937654614448547,0.111771196126938,-0.256260961294174,-0.908423781394959,0.330297619104385,-0.291671723127365,-0.928080916404724,0.231502681970596,-0.318166017532349,-0.942187547683716,0.105134315788746,-0.385920405387878,-0.890341997146606,0.241570919752121,-0.321240127086639,-0.940465271472931,0.111040033400059,-0.359237730503082,-0.843517780303955,0.399281919002533,-0.205888614058495,-0.851926326751709,0.481488823890686,-0.906422317028046,-0.374707907438278,-0.194917291402817,-0.529728055000305,-0.847967624664307,-0.0184200275689363,-0.560469686985016,-0.787429630756378,0.256570249795914,-0.556520164012909,-0.810455739498138,0.182884648442268,-0.545592546463013,-0.819840908050537,0.173751920461655,-0.558016061782837,-0.766990125179291,0.316771477460861,-0.5166335105896,-0.856156229972839,0.00930443499237299,-0.564350128173828,-0.783989548683167,0.258591175079346,-0.867528021335602,-0.473289012908936,-0.152946308255196,-0.161301359534264,-0.831856727600098,0.531033217906952,-0.560712933540344,-0.795041620731354,0.231322050094604,-0.479624152183533,-0.873602867126465,0.0823333859443665,-0.614717483520508,-0.705447256565094,0.352798283100128,-0.632974743843079,-0.772615730762482,0.0490702986717224,-0.635699331760406,-0.771835505962372,0.0125011187046766,-0.573657870292664,-0.735492885112762,0.360509186983109,-0.570251941680908,-0.759193062782288,0.313749462366104,-0.610478281974792,-0.782273650169373,0.123952209949493,-0.615936875343323,-0.783329963684082,0.0837618112564087,-0.762858867645264,-0.643673717975616,0.0610792189836502,-0.563261568546295,-0.787533700466156,0.250054091215134,-0.0673921257257462,-0.848461270332336,0.524949371814728,-0.612123548984528,-0.708522021770477,0.351142972707748,-0.433718293905258,-0.900976121425629,0.0114225298166275,-0.561532199382782,-0.792736649513245,0.237171217799187,-0.518820583820343,-0.83931177854538,-0.162422344088554,-0.586357057094574,-0.737654983997345,0.334739506244659,
- -0.576610445976257,-0.667801916599274,0.470702618360519,0.227930426597595,-0.973630309104919,-0.0095791220664978,0.216458708047867,-0.90839695930481,-0.357715725898743,0.22753718495369,-0.967098116874695,-0.113789580762386,0.176481798291206,-0.95065176486969,-0.25517725944519,0.173851698637009,-0.930097222328186,-0.323565900325775,0.178975835442543,-0.982613563537598,-0.049378976225853,0.149067789316177,-0.900586187839508,0.408317923545837,0.174202471971512,-0.951553463935852,-0.253376185894012,0.174892470240593,-0.98317813873291,-0.0526632741093636,0.0989270955324173,-0.984164476394653,-0.147084355354309,-0.0488860420882702,-0.989600002765656,-0.135284811258316,0.0362714231014252,-0.989135980606079,-0.142458572983742,0.108857668936253,-0.956607758998871,-0.270280569791794,-0.00714750587940216,-0.966936111450195,-0.254918813705444,0.137633413076401,-0.951962828636169,-0.273539632558823,0.0588739067316055,-0.96009087562561,0.273421764373779,0.0789895951747894,-0.980998516082764,-0.17720764875412,0.0564250871539116,-0.948386788368225,0.312055617570877,0.0533414334058762,-0.758412718772888,0.649588286876678,0.0709759071469307,-0.961795330047607,0.264409154653549,0.0691910982131958,-0.942964911460876,0.32562243938446,0.167162239551544,-0.825433731079102,0.539180874824524,0.304819524288177,-0.949439585208893,0.075164370238781,0.0986241102218628,-0.715556025505066,0.691558301448822,0.0330640636384487,-0.989622592926025,-0.139835447072983,-0.3432896733284,-0.932072162628174,-0.115731187164783,0.103678837418556,-0.984405100345612,-0.142117902636528,-0.111690267920494,-0.96428370475769,0.240171313285828,-0.369785368442535,-0.905981421470642,0.206049710512161,0.0842404589056969,-0.9634108543396,0.254446566104889,-0.144027680158615,-0.974671483039856,0.171089336276054,0.0565515905618668,-0.939937293529511,-0.336630046367645,0.0139707401394844,-0.972158193588257,-0.233908653259277,0.0513904802501202,-0.99821412563324,-0.0304557457566261,0.00243062525987625,-0.969414353370667,-0.245417773723602,0.175778165459633,-0.78743851184845,0.590798377990723,
- 0.0297406502068043,-0.933782994747162,-0.356601983308792,0.0449069552123547,-0.998709142208099,-0.0237399376928806,0.0333640612661839,-0.957314848899841,-0.287115126848221,0.331218510866165,-0.886781215667725,-0.322355926036835,0.0199099630117416,-0.956457018852234,-0.291193544864655,0.0380899906158447,-0.955098748207092,-0.293829262256622,0.0760202333331108,-0.988517880439758,-0.130588710308075,0.235626116394997,-0.966002821922302,-0.106391094624996,0.139076247811317,-0.982802271842957,-0.12148106098175,0.453550517559052,-0.8717200756073,0.185461699962616,-0.169444739818573,-0.965615749359131,0.197167068719864,-0.0857186317443848,-0.975970506668091,0.200334534049034,-0.0284796208143234,-0.998233795166016,0.0521376505494118,-0.34565469622612,-0.938234567642212,0.0154487174004316,-0.23568993806839,-0.971399962902069,0.0288516581058502,0.671809554100037,-0.740636825561523,0.0113613158464432,-0.28144833445549,-0.951179265975952,0.126668989658356,-0.086148202419281,-0.990013837814331,0.111585386097431,-0.192259073257446,-0.973365306854248,0.124886535108089,-0.315107315778732,-0.629461348056793,0.710271716117859,-0.226571530103683,-0.939843475818634,0.255655646324158,-0.101916022598743,-0.913917303085327,0.39289727807045,0.26177453994751,-0.865507125854492,0.427049785852432,0.0423486828804016,-0.909684121608734,0.413136094808578,0.261492341756821,-0.86548900604248,0.427259624004364,0.260426938533783,-0.865814983844757,0.427249848842621,0.0439394116401672,-0.908836603164673,0.414831846952438,0.080736443400383,-0.833429038524628,0.54669713973999,0.0932364165782928,-0.861134767532349,0.499753952026367,0.121200986206532,-0.915170073509216,0.38441413640976,0.140387699007988,-0.967289090156555,0.211289420723915,0.0070890337228775,-0.978225469589233,0.207423806190491,-0.141273364424706,-0.969811975955963,0.198763236403465,0.257453382015228,-0.868336200714111,0.423922419548035,0.266060292720795,-0.865771055221558,0.423854380846024,0.436421155929565,-0.798322021961212,0.414992183446884,0.188862144947052,-0.85409277677536,0.484620273113251,
- -0.18366077542305,-0.87969958782196,0.438631296157837,0.1961639970541,-0.852317810058594,0.484844446182251,0.364634126424789,-0.867977738380432,0.337130039930344,0.397993922233582,-0.917340993881226,-0.00929822027683258,0.285352259874344,-0.70955502986908,0.644287049770355,0.121596075594425,-0.914867162704468,0.385010004043579,0.151287481188774,-0.960550844669342,0.233354702591896,0.08414526283741,-0.834393501281738,0.54470831155777,0.480718731880188,-0.79239559173584,0.375524759292603,0.494944989681244,-0.83962881565094,0.22372505068779,0.439763635396957,-0.691347002983093,0.573277771472931,0.196322500705719,-0.852351784706116,0.484720677137375,0.390580534934998,-0.783921718597412,0.482611328363419,0.188705146312714,-0.854256868362427,0.48439222574234,0.302306175231934,-0.689618349075317,0.658055901527405,0.336293578147888,-0.775492310523987,0.534339129924774,0.371508955955505,-0.867667555809021,0.330354630947113,0.438697248697281,-0.787740409374237,0.432446271181107,0.325628489255905,-0.836499929428101,0.440719872713089,0.159098386764526,-0.88329005241394,0.4410060942173,0.657864689826965,-0.741956651210785,0.129284307360649,0.505821466445923,-0.355574518442154,0.785946190357208,0.546440124511719,-0.423787236213684,0.722362577915192,0.487964779138565,-0.813977181911469,0.31516906619072,0.480718731880188,-0.79239559173584,0.375524759292603,0.439763635396957,-0.691347002983093,0.573277771472931,0.440236985683441,-0.787800908088684,0.430768042802811,0.582885324954987,-0.703283429145813,0.406985521316528,0.32557812333107,-0.836550712585449,0.440660715103149,0.450196623802185,-0.796803295612335,0.40302300453186,0.0965127795934677,-0.904827117919922,0.414696455001831,0.251068621873856,-0.873653829097748,0.416765809059143,0.419601798057556,-0.799798488616943,0.429251611232758,0.432901978492737,-0.861994862556458,0.263743489980698,0.431800097227097,-0.899081707000732,0.0721160769462585,0.0701784864068031,-0.975624799728394,0.207921743392944,0.337476938962936,-0.923670530319214,0.181499466300011,0.309021145105362,-0.932867109775543,0.185108438134193,
- 0.543242692947388,-0.432596415281296,0.719546854496002,0.625081777572632,-0.744475245475769,-0.234583720564842,0.678965628147125,-0.72868013381958,0.0896154642105103,0.296351224184036,-0.944712519645691,0.140336200594902,0.683377027511597,-0.725566864013672,0.0809232443571091,0.379090160131454,-0.916086137294769,0.130678683519363,0.56329333782196,-0.816628754138947,-0.125770941376686,0.50718891620636,-0.521107316017151,0.686444878578186,0.56024968624115,-0.636850476264954,0.529662013053894,0.515306174755096,-0.83841347694397,0.17754565179348,0.54226154088974,-0.835125207901001,-0.0922950729727745,0.461932718753815,-0.792087018489838,0.399019211530685,0.577512979507446,-0.783143401145935,0.230575919151306,0.382368713617325,-0.897990584373474,-0.217731416225433,0.487801969051361,-0.872877597808838,-0.0115714957937598,0.360948473215103,-0.920032739639282,0.152499616146088,0.320141345262527,-0.934888601303101,0.153273493051529,0.311079293489456,-0.937921524047852,0.153405025601387,0.391249746084213,-0.855867385864258,-0.338252335786819,0.490157425403595,-0.85741800069809,0.156781151890755,0.178211271762848,0.0310823544859886,0.983501195907593,0.347647398710251,-0.487584471702576,-0.800876140594482,-0.0546935237944126,-0.985633254051209,0.159798890352249,0.0454423129558563,-0.996146202087402,-0.0750183686614037,0.274252593517303,-0.942184269428253,-0.192546933889389,0.382520198822021,-0.67029595375061,-0.635910093784332,0.314632683992386,0.168996691703796,-0.934048414230347,0.407914221286774,-0.880705833435059,0.240755572915077,0.392304599285126,-0.86017894744873,-0.325866907835007,0.417164415121078,-0.904371500015259,0.0899235382676125,-0.0656181126832962,-0.983068585395813,0.171086013317108,0.340037941932678,-0.913309216499329,0.224144160747528,0.301209211349487,-0.927715063095093,0.220494404435158,0.0270776748657227,-0.956768155097961,-0.289588630199432,0.362141072750092,-0.885417342185974,-0.291358947753906,-0.924780130386353,-0.377288043498993,-0.0493498668074608,0.0729743391275406,-0.99271422624588,-0.0958813428878784,
- 0.250096708536148,-0.953921318054199,-0.165788605809212,0.174342215061188,-0.97521984577179,-0.136202573776245,0.213453561067581,-0.274683922529221,0.937542676925659,0.173606291413307,-0.390841633081436,0.903937935829163,0.262251794338226,-0.108915768563747,0.958833336830139,-0.0300726927816868,-0.0106749357655644,0.999490737915039,-0.321496397256851,-0.533027708530426,0.782637536525726,-0.321134090423584,-0.532364308834076,0.78323757648468,-0.0857361629605293,0.0955175459384918,0.991728663444519,-0.165756747126579,-0.450351744890213,0.877330005168915,-0.162652313709259,-0.423403263092041,0.891220450401306,0.0431971661746502,-0.373468518257141,0.926636576652527,-0.0375690422952175,-0.334825038909912,0.941531181335449,-0.00457367254421115,-0.350963711738586,0.936377882957459,-0.0728082805871964,-0.249350547790527,0.965672433376312,0.267263829708099,-0.240114569664001,0.933228254318237,0.349056750535965,-0.233293354511261,0.907597780227661,0.244071483612061,0.00918785389512777,0.969713687896729,0.0642565339803696,-0.71028196811676,0.700978457927704,0.208565637469292,-0.198458775877953,0.957660973072052,-0.506519436836243,0.330707669258118,0.796285510063171,-0.642556428909302,-0.652746915817261,0.401301383972168,-0.691468298435211,-0.362998276948929,0.624582946300507,-0.0585825741291046,-0.284325271844864,0.956936478614807,-0.724388241767883,0.0998179391026497,0.682127594947815,0.0370808504521847,-0.323057621717453,0.945652604103088,-0.560908973217011,-0.613534271717072,0.555838823318481,-0.548687160015106,-0.620763123035431,0.559996128082275,-0.368035495281219,-0.706356942653656,0.60465669631958,-0.162295341491699,-0.0905105620622635,0.98258239030838,-0.278447598218918,-0.468735218048096,0.838304340839386,-0.148811489343643,-0.0509599782526493,0.987551689147949,0.36668673157692,-0.390970468521118,0.844205558300018,0.234674632549286,-0.294120252132416,0.926510155200958,0.0547190308570862,-0.156130164861679,0.986219704151154,0.0857570171356201,-0.35712057352066,0.930113255977631,0.381868809461594,-0.4387586414814,0.813429176807404,
- 0.169861108064651,-0.383979260921478,0.907583177089691,-0.0791448503732681,-0.233563095331192,0.969115257263184,-0.100549511611462,-0.421791970729828,0.901100039482117,-0.104341045022011,-0.457377672195435,0.883129954338074,0.184026554226875,-0.409906089305878,0.893370747566223,0.0789719521999359,-0.380582928657532,0.921368598937988,0.0485862120985985,-0.371260792016983,0.92725658416748,-0.0159154236316681,-0.941479802131653,0.336693584918976,0.147823259234428,-0.720686197280884,0.677318096160889,0.309180587530136,-0.259269058704376,0.914979219436646,-0.193082824349403,-0.48833966255188,0.851024925708771,0.292005121707916,-0.604559481143951,0.741107881069183,-0.0920440927147865,-0.524612963199615,0.846350431442261,-0.114078000187874,-0.494241654872894,0.861807107925415,-0.14273589849472,-0.484615713357925,0.863003015518188,-0.161856845021248,-0.477920532226563,0.863362193107605,-0.678943336009979,-0.564030647277832,0.470005810260773,-0.653925001621246,-0.655621230602264,0.377548605203629,-0.670564353466034,-0.172096759080887,0.721613585948944,0.0668252259492874,-0.712902307510376,0.698072195053101,-0.495969891548157,-0.614162445068359,0.613855421543121,-0.469349771738052,-0.624937832355499,0.623829782009125,-0.490052789449692,-0.859603703022003,-0.144671142101288,-0.642852783203125,-0.254739433526993,0.722390592098236,-0.670982718467712,-0.655147314071655,0.347223550081253,-0.993572115898132,-0.101104885339737,0.0509146898984909,-0.511780261993408,-0.585632085800171,0.62858247756958,-0.453248858451843,-0.605222702026367,0.654424130916595,-0.420859754085541,-0.589179754257202,0.689742267131805,-0.37934747338295,-0.594641387462616,0.708870410919189,-0.536675035953522,-0.566136658191681,0.625674962997437,-0.918600559234619,-0.39485839009285,-0.0161202680319548,-0.822543025016785,-0.492479622364044,-0.28440597653389,-0.833776295185089,-0.485823720693588,-0.262283265590668,-0.136957392096519,-0.882982492446899,0.448981702327728,-0.702021360397339,-0.698817193508148,0.137188151478767,-0.805456101894379,-0.591407597064972,0.0384393632411957,
- -0.782477200031281,-0.610397517681122,0.123062163591385,-0.747018575668335,-0.647133231163025,0.152256324887276,-0.960130035877228,-0.254306852817535,-0.116097345948219,-0.67075389623642,-0.722394585609436,-0.168033540248871,-0.822577595710754,-0.433667421340942,-0.3678297996521,-0.738976061344147,-0.627465188503265,-0.245360791683197,-0.503109991550446,-0.852439701557159,-0.142221316695213,-0.77067244052887,-0.617047429084778,0.159111708402634,-0.651906669139862,-0.758281171321869,0.00524253398180008,-0.633828997612,-0.758594751358032,-0.150980249047279,-0.671704649925232,-0.715493381023407,-0.192047148942947,-0.721754431724548,-0.644940614700317,-0.251241236925125,-0.233047276735306,-0.945156276226044,-0.228842064738274,0.64024943113327,-0.495306313037872,0.587156236171722,-0.393877953290939,-0.838482022285461,-0.376574158668518,-0.388394892215729,-0.815113544464111,-0.429813146591187,-0.600223183631897,-0.484399974346161,-0.636465907096863,-0.193519085645676,-0.952847421169281,-0.233735322952271,-0.660888731479645,-0.632102191448212,-0.404565215110779,-0.329463094472885,-0.622349441051483,-0.710024893283844,-0.688302040100098,-0.625609815120697,-0.367222905158997,-0.572799324989319,-0.809611141681671,-0.128183037042618,-0.641875505447388,-0.764540195465088,0.0589429959654808,-0.413778394460678,-0.810987412929535,-0.413626402616501,-0.396191030740738,-0.849467396736145,-0.348479270935059,0.633281350135803,-0.0596102327108383,-0.771622538566589,-0.331332802772522,-0.845730602741241,-0.418280482292175,-0.297504037618637,-0.857763886451721,-0.419204503297806,-0.64714503288269,0.49601474404335,-0.578940987586975,-0.546896994113922,-0.555214405059814,-0.626610517501831,-0.591911375522614,-0.734396874904633,-0.332117706537247,-0.290355533361435,-0.940567791461945,-0.176141619682312,-0.670783400535584,-0.641595900058746,-0.372027337551117,-0.579031527042389,-0.810830891132355,-0.0852983146905899,-0.73051530122757,0.139256030321121,0.668547093868256,-0.486786365509033,-0.853400528430939,-0.186404407024384,-0.527891993522644,-0.506152451038361,-0.682011604309082,
- -0.980002641677856,-0.197956368327141,0.0202066618949175,-0.957388997077942,-0.267515778541565,-0.108819976449013,-0.827385306358337,-0.558724582195282,-0.057099774479866,-0.539584398269653,-0.833117842674255,0.121505051851273,-0.737525045871735,-0.67525839805603,0.00911702215671539,-0.739634692668915,-0.672439575195313,-0.0276714563369751,-0.591065585613251,-0.724464893341064,-0.354672014713287,-0.626740396022797,-0.721795439720154,-0.293611705303192,-0.756732821464539,-0.642384886741638,-0.121232211589813,-0.724510729312897,-0.683272421360016,-0.0906813442707062,-0.740759253501892,-0.66338437795639,-0.10581548511982,-0.294483780860901,-0.885220289230347,-0.360089600086212,-0.800783276557922,-0.574025630950928,0.170998841524124,-0.732845187187195,-0.677663803100586,0.0609082095324993,-0.654708027839661,-0.648497462272644,0.388340801000595,-0.659815788269043,-0.41960421204567,0.623358249664307,-0.652908802032471,-0.656779825687408,0.377293556928635,-0.805129945278168,-0.0565027371048927,0.590400993824005,-0.697478830814362,-0.583871185779572,-0.41547292470932,-0.919281780719757,-0.327820658683777,0.217841044068336,-0.383166551589966,-0.797438502311707,0.466127842664719,-0.485304117202759,-0.830751955509186,0.272637277841568,-0.622789859771729,-0.756833910942078,-0.198331341147423,-0.736165761947632,-0.640614867210388,0.218340665102005,-0.842885673046112,-0.536675572395325,0.0390264987945557,-0.537918329238892,-0.723259031772614,0.433059185743332,-0.712249934673309,-0.698292016983032,0.0713325291872025,-0.636747896671295,-0.740983366966248,0.213297292590141,-0.814460933208466,-0.477140963077545,-0.330136239528656,-0.832765817642212,-0.547678589820862,0.0809279158711433,-0.703664362430573,-0.709659934043884,0.0352035313844681,-0.662621855735779,-0.748620569705963,0.0223518162965775,-0.778230547904968,-0.623350441455841,-0.0761017054319382,-0.780752778053284,-0.624740898609161,0.0111318230628967,-0.740140199661255,-0.589996933937073,0.322639286518097,-0.744812846183777,-0.638582229614258,0.193563207983971,-0.735899567604065,-0.641804873943329,0.215727508068085,
- -0.821324527263641,-0.459299921989441,-0.33833372592926,-0.673722863197327,-0.737812042236328,0.0416045188903809,-0.644174039363861,-0.764020562171936,0.036226361989975,-0.70677250623703,-0.705825507640839,0.0477820783853531,-0.572131395339966,-0.811512470245361,-0.118798986077309,-0.571794450283051,-0.812509775161743,-0.113485306501389,-0.553315937519073,-0.682989478111267,-0.476830005645752,-0.797927737236023,-0.597784221172333,0.077236145734787,-0.850859582424164,-0.502005279064178,-0.155011862516403,-0.769074440002441,-0.62070107460022,0.152494877576828,-0.779116034507751,-0.59888756275177,0.185234770178795,-0.900740265846252,-0.35666435956955,0.247906610369682,-0.818925023078918,-0.53639680147171,0.204059600830078,-0.998517394065857,-0.000815278035588562,0.054429292678833,-0.351243138313293,-0.809310615062714,-0.470791608095169,-0.979035615921021,-0.193578347563744,-0.0633779615163803,-0.68788069486618,-0.72482967376709,-0.0379753112792969,-0.475930750370026,-0.878361105918884,-0.0444045513868332,-0.955666363239288,-0.293873339891434,-0.0184517819434404,-0.764427781105042,-0.629652857780457,0.138518735766411,-0.25583416223526,-0.961648762226105,-0.098896436393261,-0.443595588207245,-0.89595091342926,-0.0222482830286026,-0.64438784122467,-0.0376569665968418,-0.763771057128906,-0.768680095672607,-0.621485769748688,0.151283040642738,-0.845593512058258,-0.512753665447235,-0.148510381579399,-0.930304169654846,-0.193316280841827,-0.31170979142189,-0.3354352414608,-0.85827362537384,-0.388393610715866,-0.471015334129334,-0.786764025688171,-0.398932069540024,-0.530914962291718,-0.721090972423553,-0.445148646831512,-0.385793209075928,-0.811974406242371,-0.438019543886185,-0.237687319517136,-0.876144528388977,-0.41937518119812,-0.590632319450378,-0.782479882240295,-0.197176724672318,-0.555624485015869,-0.639678776264191,-0.5311239361763,-0.589178383350372,-0.794718146324158,-0.145917877554893,-0.244963213801384,-0.876274585723877,-0.414892762899399,-0.32998251914978,-0.841207027435303,-0.428348481655121,-0.531310260295868,-0.720458805561066,-0.445700198411942,
- -0.343709737062454,-0.858519554138184,-0.38053622841835,-0.251165688037872,-0.896062612533569,-0.366043239831924,-0.467916458845139,-0.79091203212738,-0.394350528717041,-0.467846244573593,-0.457123219966888,-0.756411492824554,-0.589015007019043,-0.794809460639954,-0.146079778671265,-0.554661989212036,-0.641842484474182,-0.529517233371735,-0.568934619426727,-0.753203094005585,-0.330149501562119,-0.570879220962524,-0.812137365341187,-0.120539799332619,-0.550591349601746,-0.687887609004974,-0.47292697429657,-0.365994721651077,-0.736864984035492,-0.568399488925934,-0.203592598438263,-0.84052437543869,-0.502064645290375,-0.255412191152573,-0.811802685260773,-0.525110423564911,-0.22972309589386,-0.811621427536011,-0.53712010383606,-0.353145003318787,-0.910532236099243,-0.214987874031067,-0.309267640113831,-0.885248124599457,-0.347403734922409,-0.320304334163666,-0.873765826225281,-0.36597615480423,-0.292116105556488,-0.850436925888062,-0.437521696090698,-0.24129293859005,-0.799719095230103,-0.549751937389374,-0.364109933376312,-0.722887873649597,-0.587245404720306,-0.123422227799892,-0.866025269031525,-0.484527945518494,-0.252917230129242,-0.799609541893005,-0.544662773609161,-0.268506109714508,-0.811642527580261,-0.518787920475006,0.00155251077376306,-0.925246357917786,-0.379363536834717,-0.358909159898758,-0.749910235404968,-0.555714726448059,-0.0864174738526344,-0.577597260475159,-0.811734795570374,-0.287247866392136,-0.798522651195526,-0.529008686542511,-0.314352303743362,-0.820983350276947,-0.476622611284256,-0.15901505947113,-0.670290052890778,-0.724862456321716,-0.297337979078293,-0.810674905776978,-0.504377126693726,-0.33150190114975,-0.837386667728424,-0.434614926576614,-0.103141948580742,-0.470166444778442,-0.876530349254608,0.271767556667328,-0.686283648014069,-0.674653351306915,0.137635603547096,-0.623584508895874,-0.76954460144043,-0.193179294466972,-0.671739220619202,-0.715156078338623,-0.35221141576767,-0.7738276720047,-0.526438891887665,-0.0874407887458801,-0.58426308631897,-0.806839942932129,-0.653762757778168,-0.404862344264984,-0.639281451702118,
- -0.36167985200882,-0.734556496143341,-0.5741206407547,-0.270076841115952,-0.79921019077301,-0.536955893039703,-0.308430254459381,-0.79727041721344,-0.51887458562851,-0.088846743106842,-0.563087403774261,-0.82160747051239,-0.0891427844762802,-0.563462197780609,-0.821318447589874,-0.380472600460052,-0.27016407251358,-0.884450137615204,0.10825901478529,-0.570079147815704,-0.814426064491272,-0.131422773003578,-0.445375800132751,-0.885645866394043,0.210597664117813,-0.564628422260284,-0.798024594783783,0.396476924419403,-0.666620075702667,-0.63120824098587,-0.11820711940527,-0.3152836561203,-0.941606819629669,-0.232050329446793,-0.672356188297272,-0.702915191650391,-0.0901572108268738,-0.565700471401215,-0.819667398929596,0.148715689778328,-0.337786346673965,-0.929399847984314,-0.11836114525795,-0.387099206447601,-0.914409518241882,-0.113748885691166,-0.391418218612671,-0.913155615329742,0.166257411241531,-0.615856289863586,-0.770116627216339,0.357847660779953,0.173147976398468,-0.917586445808411,0.368070691823959,-0.275948017835617,-0.887905776500702,0.0479671955108643,-0.998844921588898,0.0028220780659467,-0.451043963432312,-0.707855105400085,-0.543599605560303,0.861833930015564,-0.0226167272776365,-0.506685972213745,0.420129954814911,-0.477763921022415,-0.771513104438782,-0.099898487329483,-0.492464393377304,-0.86458033323288,0.357468485832214,0.054274395108223,-0.932346820831299,-0.166084557771683,-0.554809272289276,-0.815231621265411,-0.162665963172913,0.407778948545456,-0.898474454879761,0.901710867881775,0.015222130343318,-0.432071626186371,-0.303955495357513,0.416370958089828,-0.856881737709045,0.883669495582581,-0.299846470355988,-0.359472453594208,0.869482040405273,-0.441951781511307,-0.220634698867798,0.184429436922073,0.659339010715485,-0.728874325752258,0.656340777873993,-0.445887863636017,0.608605682849884,-0.24281033873558,0.3897585272789,-0.888330698013306,0.786913275718689,-0.079831562936306,-0.611877799034119,-0.486962765455246,0.778375625610352,-0.396230518817902,0.216191083192825,0.59464967250824,-0.774372816085815,
- 0.865190625190735,-0.428133994340897,-0.261049300432205,-0.17168316245079,-0.442449510097504,-0.880206406116486,-0.676451325416565,0.735664188861847,0.0348129756748676,-0.199022278189659,-0.418060392141342,-0.886349618434906,-0.586772978305817,-0.80973094701767,-0.00577063346281648,-0.137575760483742,-0.906789302825928,-0.398504912853241,-0.034706499427557,-0.885095477104187,-0.464113563299179,-0.49132639169693,-0.737672567367554,-0.463074147701263,-0.455062419176102,-0.733860790729523,-0.504347622394562,0.0836028307676315,-0.504180908203125,-0.859541833400726,0.860954523086548,-0.452576696872711,-0.232231959700584,-0.13522832095623,-0.981307148933411,-0.13692981004715,0.361904352903366,-0.906915307044983,-0.215707838535309,-0.0321145355701447,-0.881223559379578,-0.471607595682144,0.0707152485847473,-0.829119443893433,-0.554581344127655,0.22017477452755,-0.721283257007599,-0.656714260578156,0.079766184091568,-0.836586117744446,-0.541997313499451,0.218515619635582,-0.740918397903442,-0.635051846504211,0.0937095433473587,-0.828454494476318,-0.552160859107971,0.364674776792526,-0.785550057888031,-0.499923586845398,0.247743159532547,-0.865893185138702,-0.434571623802185,0.0491777285933495,-0.949914455413818,-0.308616429567337,0.234869122505188,-0.868022620677948,-0.437462329864502,0.118786543607712,-0.921367406845093,-0.370097249746323,0.0517970509827137,-0.943106770515442,-0.328430742025375,0.325768828392029,-0.84943550825119,-0.415131509304047,-0.0677067637443542,-0.989761352539063,-0.125651210546494,0.051721666008234,-0.974470794200897,-0.21847577393055,0.299845635890961,-0.922180473804474,-0.244286507368088,0.143997430801392,-0.884982347488403,-0.442799240350723,0.036488201469183,-0.829287946224213,-0.55762904882431,-0.0565859004855156,-0.875078320503235,-0.480662047863007,-0.174478054046631,-0.808680295944214,-0.561777174472809,0.146454960107803,-0.937499642372131,-0.315666764974594,0.356363385915756,-0.892226874828339,-0.27737432718277,0.250403821468353,-0.865432798862457,-0.433963179588318,0.119319029152393,-0.79689884185791,-0.59221214056015,
- 0.137629956007004,-0.801920413970947,-0.581361889839172,0.121282681822777,-0.79206770658493,-0.598263621330261,0.266947865486145,-0.86241340637207,-0.430095374584198,0.0268109180033207,-0.955744206905365,-0.292974770069122,-0.239204317331314,-0.925695776939392,-0.293033510446548,0.325534969568253,-0.906898498535156,-0.267510950565338,-0.0652616545557976,-0.981672883033752,-0.179051071405411,0.00899157300591469,-0.972555816173553,-0.232495948672295,0.276398807764053,-0.869793593883514,-0.408733129501343,0.300748854875565,-0.865216374397278,-0.40118670463562,-0.0138169713318348,-0.988000214099884,-0.153833255171776,0.146634295582771,-0.947625875473022,-0.283731520175934,0.194444417953491,-0.88077986240387,-0.431761711835861,0.173628896474838,-0.853322327136993,-0.491623878479004,0.320300847291946,-0.942459583282471,0.0957983210682869,0.191295146942139,-0.825991809368134,-0.530229806900024,0.265548318624496,-0.871635496616364,-0.411989808082581,0.100703738629818,-0.75136137008667,-0.652161657810211,0.241581127047539,-0.866416096687317,-0.436991721391678,0.100626088678837,-0.752007186412811,-0.651429057121277,0.253612279891968,-0.873522937297821,-0.415497928857803,-0.06813944876194,-0.857787430286407,-0.50946831703186,-0.111835561692715,-0.865785002708435,-0.487759351730347,0.136837929487228,-0.792938709259033,-0.593737065792084,0.0772132351994514,-0.894507825374603,-0.440334022045136,0.0443623550236225,-0.871147811412811,-0.489012748003006,0.169151663780212,-0.941380858421326,-0.291872948408127,-0.00532747060060501,-0.866665124893188,-0.498861849308014,-0.0300899818539619,-0.848156571388245,-0.528890430927277,0.163867443799973,-0.949150741100311,-0.268813073635101,0.165647625923157,-0.872585415840149,-0.459516733884811,0.143685057759285,-0.880087316036224,-0.452549517154694,-0.219644844532013,-0.927154183387756,-0.303547739982605,0.209615439176559,-0.797981739044189,0.565054476261139,-0.0552653968334198,-0.887488543987274,-0.457504153251648,-0.0714581832289696,-0.857218205928802,-0.509971261024475,0.142313420772552,-0.989530980587006,-0.0239868499338627,
- -0.263400971889496,-0.864399552345276,-0.428291231393814,-0.281868577003479,-0.849932789802551,-0.445156782865524,-0.523635745048523,-0.521705031394959,-0.673520267009735,-0.282539963722229,-0.848889350891113,-0.446719139814377,-0.264678448438644,-0.863876938819885,-0.428558230400085,-0.237322479486465,-0.942714154720306,0.234453111886978,-0.224725425243378,-0.922137141227722,-0.314899325370789,-0.0395541451871395,-0.212837353348732,-0.976286709308624,-0.437919169664383,-0.741858243942261,-0.507812201976776,-0.330945938825607,-0.758113980293274,-0.561905682086945,-0.932607293128967,0.0184795260429382,0.360419660806656,-0.615371227264404,-0.602811992168427,-0.507873952388763,-0.52470725774765,-0.778935790061951,-0.343426167964935,-0.164165899157524,0.861112594604492,-0.481180489063263,-0.488913774490356,-0.707419633865356,-0.510412395000458,0.549423515796661,0.51689213514328,0.656472623348236,-0.470179051160812,-0.746261477470398,-0.471195816993713,-0.475823253393173,-0.734359741210938,-0.484053730964661,-0.487511277198792,-0.70842033624649,-0.510365962982178,-0.470078021287918,-0.746180415153503,-0.471424877643585,0.168090894818306,-0.680107116699219,-0.713582336902618,-0.024813387542963,-0.308057188987732,-0.951044321060181,-0.292782455682755,0.361817240715027,-0.885080099105835,-0.487294614315033,-0.736611247062683,-0.468986123800278,-0.815179407596588,-0.464689373970032,-0.34575480222702,-0.417674362659454,-0.770508706569672,-0.481523185968399,-0.63090842962265,-0.469133377075195,-0.617955088615417,-0.58832323551178,-0.292880743741989,-0.753721952438354,-0.602671504020691,-0.341457813978195,-0.721244513988495,-0.0213303361088037,-0.348895490169525,-0.936918973922729,-0.643863201141357,-0.0568117275834084,-0.763028681278229,-0.901985228061676,0.177469611167908,-0.393608033657074,-0.483532577753067,-0.689351499080658,-0.539435684680939,-0.747888088226318,-0.47281152009964,-0.465953528881073,0.409367740154266,-0.814437508583069,-0.411229461431503,-0.56847083568573,-0.457712113857269,-0.683623075485229,-0.591360747814178,-0.788649797439575,-0.168297439813614,
- -0.569708526134491,-0.461713582277298,-0.679891705513,-0.929751217365265,0.085635170340538,-0.358091115951538,-0.698554992675781,-0.134690403938293,-0.702765703201294,0.852181911468506,-0.389461100101471,-0.34943675994873,-0.973965108394623,-1.5944242477417e-006,0.226698145270348,0.974585056304932,-0.0213961731642485,-0.222993642091751,0.346153974533081,-0.934093594551086,0.0874450951814651,-0.367812961339951,-0.811048924922943,-0.454877495765686,-0.875433623790741,-0.320142358541489,-0.362111955881119,-0.749629616737366,-0.513735890388489,-0.417289912700653,-0.675615608692169,-0.506856322288513,-0.535387992858887,-0.314021646976471,0.858217716217041,0.406020551919937,-0.465124189853668,-0.680003643035889,-0.566793262958527,-0.489275574684143,-0.728829681873322,-0.47897469997406,0.0277496613562107,-0.251506865024567,-0.96745765209198,-0.0689374506473541,-0.357085347175598,-0.931524395942688,-0.6948521733284,-0.50944197177887,-0.507591724395752,-0.206303998827934,0.524657249450684,-0.825937986373901,-0.664840936660767,-0.280633807182312,-0.692265331745148,-0.802660465240479,0.228071421384811,0.55110764503479,0.587494671344757,-0.698918342590332,-0.40787661075592,-0.726329326629639,-0.479058861732483,0.492897987365723,-0.965286731719971,0.0697055459022522,0.251719743013382,0.217369362711906,-0.149801418185234,-0.964525878429413,0.163526952266693,-0.149554863572121,-0.975137114524841,-0.642712354660034,-0.347703754901886,-0.682658731937408,-0.692441642284393,-0.673632919788361,-0.258347243070602,-0.689424991607666,-0.508761346340179,-0.515611350536346,-0.658437609672546,-0.69370299577713,-0.291952133178711,-0.694290578365326,-0.413218230009079,-0.589246392250061,-0.666966378688812,-0.671129167079926,-0.323637992143631,-0.698985576629639,-0.673740327358246,-0.239777520298958,-0.691326439380646,-0.179025828838348,-0.700012505054474,-0.717588782310486,-0.622966766357422,-0.311414301395416
- }
- BinormalsW: *2637 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementBinormal: 1 {
- Version: 102
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *7911 {
- a: -0.00998611748218536,0.825727045536041,0.563981533050537,0.845955669879913,0.324507027864456,0.42314800620079,0.181488364934921,0.790370464324951,0.585129618644714,0.878820955753326,0.350038290023804,0.324263721704483,-0.00859714578837156,0.816204428672791,0.577699244022369,0.942117810249329,0.229560494422913,0.244368717074394,0.944769382476807,0.20552533864975,0.255284756422043,0.603201150894165,-0.741966187953949,-0.292633891105652,0.879740953445435,0.350818783044815,0.320908308029175,0.947236299514771,0.0676248446106911,0.313321679830551,0.612842261791229,-0.695051729679108,-0.375935524702072,0.546025037765503,-0.725812435150146,-0.41839337348938,0.581766486167908,-0.642253637313843,-0.499057114124298,0.947994768619537,0.082655631005764,0.307366043329239,0.959053575992584,0.0510118901729584,0.278592854738235,0.914642930030823,-0.332758456468582,0.22956494987011,0.627735435962677,-0.724260330200195,-0.285298705101013,0.918674290180206,-0.249426990747452,0.306306630373001,0.505830109119415,-0.677858650684357,0.533519983291626,0.807687282562256,-0.546490550041199,0.221335500478745,0.701345920562744,-0.616013824939728,0.358665376901627,0.720198333263397,-0.663377940654755,0.203086674213409,0.789288759231567,0.399291157722473,-0.466465353965759,0.707458674907684,-0.673865914344788,0.213089227676392,0.789736926555634,0.399393290281296,-0.465618520975113,0.720804691314697,-0.662679135799408,0.203216761350632,0.63281774520874,0.568877160549164,-0.525281369686127,0.927353322505951,-0.300854980945587,0.222491145133972,0.393418788909912,-0.77686220407486,-0.491636723279953,0.623711824417114,-0.715863168239594,-0.313884675502777,0.369209736585617,-0.891086280345917,-0.263911724090576,0.698048412799835,-0.655558288097382,0.288048356771469,0.718882620334625,-0.596671462059021,0.356638580560684,0.362837880849838,-0.923898458480835,0.121492423117161,0.638649106025696,-0.753292858600616,-0.157089814543724,0.1595788449049,-0.945843577384949,0.282691925764084,0.567771255970001,-0.709074318408966,0.418150097131729,
- 0.550422608852386,-0.718447804450989,0.425285428762436,0.134678959846497,-0.837962985038757,0.528847455978394,0.94894403219223,-0.197951704263687,0.245602205395699,0.593703031539917,-0.687739968299866,-0.41776841878891,-0.0468344241380692,-0.690532743930817,-0.72178328037262,0.911775410175323,0.116703845560551,0.393758594989777,0.610603451728821,-0.740805923938751,-0.279946506023407,0.960326850414276,-0.130822852253914,0.246287986636162,0.167495578527451,-0.822456002235413,-0.543609499931335,0.377347141504288,-0.868660509586334,-0.320995450019836,0.717461407184601,-0.598267078399658,0.356827199459076,0.500623524188995,-0.784007370471954,0.367026478052139,0.440629184246063,-0.865836560726166,0.237008392810822,0.091985397040844,-0.941900610923767,-0.32305121421814,0.186986327171326,-0.894378125667572,0.406354486942291,0.276244014501572,-0.894366979598999,0.351847887039185,0.300734370946884,-0.892608344554901,0.335870742797852,0.379118084907532,-0.862667858600616,-0.334774017333984,0.0589092075824738,-0.972494721412659,-0.225352346897125,-0.461927533149719,-0.886888027191162,0.00725565850734711,0.609233796596527,-0.791764974594116,-0.0440729632973671,0.817598283290863,-0.353552877902985,0.454459547996521,0.517580509185791,-0.84069812297821,-0.159176290035248,0.817754447460175,-0.339734524488449,0.464605331420898,0.517580509185791,-0.84069812297821,-0.159176290035248,0.817598283290863,-0.353552877902985,0.454459547996521,0.766461908817291,-0.566365480422974,0.302929550409317,0.612712025642395,-0.623922884464264,0.485081732273102,0.375310450792313,-0.643132925033569,0.667474389076233,0.612443327903748,-0.74989116191864,-0.250152885913849,0.520274519920349,-0.834178447723389,-0.182922929525375,0.0198492016643286,-0.990390658378601,0.136866301298141,0.497117340564728,-0.867260158061981,-0.0270968377590179,0.258057624101639,-0.919429779052734,0.296740859746933,0.323753356933594,-0.920669078826904,0.218064665794373,0.775275707244873,-0.568569481372833,0.275093585252762,0.338304817676544,-0.819160938262939,0.4631687104702,0.617323577404022,-0.696606636047363,0.365582972764969,
- -0.274146497249603,-0.755189299583435,0.595426619052887,0.330542981624603,-0.873672246932983,0.356984823942184,0.402198076248169,-0.860606253147125,0.312399625778198,0.450015217065811,-0.876944005489349,0.16868756711483,0.532496452331543,-0.729330539703369,0.429563164710999,-0.0132003556936979,-0.789835453033447,-0.613176763057709,-0.482547104358673,-0.859898269176483,0.166503071784973,-0.180826783180237,-0.983300089836121,-0.0205568391829729,-0.402617692947388,-0.90811562538147,0.115000322461128,-0.736424505710602,-0.676274955272675,0.0181994661688805,-0.105177387595177,-0.939749777317047,-0.32528156042099,-0.603877305984497,-0.793261289596558,-0.0779023468494415,-0.148933127522469,-0.976061403751373,-0.158502638339996,0.389179587364197,-0.834812462329865,0.389393627643585,0.0476130843162537,-0.998020827770233,0.0410783812403679,0.0633247122168541,-0.969093203544617,-0.238428816199303,-0.39152204990387,-0.919030070304871,-0.0457632727921009,-0.477947533130646,-0.878385484218597,-0.0023078175727278,-0.435433506965637,-0.892717301845551,0.1159892603755,-0.211409762501717,-0.976146042346954,-0.0494451709091663,-0.167564183473587,-0.982617855072021,-0.0799029469490051,-0.169793426990509,-0.98298054933548,-0.0701390281319618,-0.122864127159119,-0.992389917373657,0.00816656649112701,-0.455554783344269,-0.654051423072815,-0.603892982006073,-0.13696525990963,-0.989625811576843,-0.0433739759027958,-0.389229238033295,-0.872254848480225,0.296094566583633,-0.130548924207687,-0.990105211734772,-0.0514666922390461,-0.343704521656036,-0.920485615730286,0.185939699411392,-0.254059642553329,-0.966394782066345,-0.0391785874962807,-0.385343194007874,-0.869580507278442,0.308772444725037,-0.28139540553093,-0.959308266639709,-0.0233300440013409,0.0693884864449501,-0.964084982872009,-0.256369680166245,-0.341456234455109,-0.939670205116272,0.0206795986741781,0.4581338763237,-0.856460750102997,0.237882941961288,-0.163657531142235,-0.64407080411911,-0.747254312038422,0.121347807347775,-0.904312789440155,-0.409259080886841,-0.325077742338181,-0.935333728790283,-0.139554500579834,
- -0.00121963780838996,-0.981525361537933,0.191328749060631,-0.237387016415596,-0.970346927642822,-0.0455467142164707,-0.478615045547485,-0.855090498924255,-0.199368730187416,-0.129516080021858,-0.991553604602814,0.00686262920498848,-0.116543054580688,-0.993083477020264,0.0142431873828173,-0.342283934354782,-0.939049482345581,0.032060295343399,-0.334874719381332,-0.941907346248627,0.0258742533624172,-0.276155143976212,-0.960854947566986,-0.0222744289785624,-0.313710749149323,-0.932661652565002,0.178122848272324,-0.369160443544388,-0.857344925403595,0.358720511198044,-0.411640852689743,-0.737145125865936,0.535881519317627,-0.660364210605621,-0.749890387058258,-0.0397941134870052,-0.445519089698792,-0.89287281036377,0.0655061081051826,-0.512468099594116,-0.857992649078369,0.0350021235644817,-0.514791190624237,-0.691941499710083,0.506168901920319,-0.379907459020615,-0.904187917709351,0.195229217410088,-0.48357617855072,-0.766474008560181,0.42269566655159,-0.501622915267944,-0.0352543592453003,0.864367783069611,-0.616595685482025,-0.527865409851074,0.584095776081085,-0.569963753223419,-0.783229529857636,0.248380556702614,-0.18851001560688,-0.981276035308838,-0.0395135916769505,-0.544942557811737,-0.686563551425934,-0.481319129467011,-0.317966520786285,-0.92873078584671,-0.190673559904099,-0.58246260881424,-0.811945378780365,0.0384975112974644,-0.294224590063095,-0.897964358329773,-0.327248990535736,-0.513053357601166,-0.855813205242157,-0.0660318657755852,-0.32886677980423,-0.822507977485657,0.464033663272858,-0.833271622657776,-0.54089879989624,-0.114397965371609,-0.760577738285065,-0.64875727891922,0.0252087153494358,-0.592635869979858,-0.766970813274384,0.246046021580696,-0.319404363632202,-0.815829217433929,0.482082545757294,-0.760147571563721,-0.649263978004456,0.0251389853656292,-0.390933334827423,-0.858655095100403,0.331485748291016,-0.536952495574951,-0.810667991638184,0.233451545238495,-0.745050609111786,-0.665319323539734,0.0474322363734245,-0.428171426057816,-0.903175532817841,0.030711617320776,-0.477039575576782,-0.874788522720337,0.0847245007753372,
- -0.625538408756256,-0.731735408306122,0.270675301551819,-0.76857990026474,-0.639614343643188,-0.0133582055568695,-0.246650084853172,-0.95576000213623,0.160270765423775,-0.130740389227867,-0.973556101322174,0.18733774125576,-0.348234474658966,-0.847862362861633,0.399827837944031,-0.303192913532257,-0.952621579170227,0.0242123771458864,-0.350271433591843,-0.73320460319519,0.582855820655823,-0.636417031288147,-0.770247161388397,0.0411430411040783,-0.144839406013489,-0.950037479400635,0.276496589183807,-0.64201945066452,-0.765764892101288,0.0376217402517796,-0.975103139877319,-0.216156929731369,-0.0494978800415993,-0.720150530338287,-0.686099648475647,0.103201419115067,-0.184251844882965,-0.954796314239502,0.233270838856697,-0.480910003185272,-0.645499110221863,0.593343496322632,-0.469857543706894,-0.74930465221405,0.466665327548981,-0.470037639141083,-0.748329102993011,0.468047320842743,-0.74927419424057,0.0934962779283524,0.655626893043518,-0.478191196918488,-0.261998891830444,0.838266015052795,0.0761740133166313,-0.643877565860748,0.76132732629776,0.00503951124846935,-0.570608019828796,0.821207106113434,0.140191465616226,-0.629441857337952,0.764296591281891,-0.482798367738724,-0.232391119003296,0.844334125518799,-0.0139655936509371,-0.99137145280838,0.130336701869965,-0.660325109958649,-0.749934673309326,-0.0396072566509247,0.0541835352778435,-0.988037288188934,0.144383460283279,-0.398116558790207,-0.811385571956635,0.427968144416809,-0.232871815562248,-0.673729598522186,0.701326727867126,-0.132185369729996,-0.565958201885223,0.813768029212952,0.307257980108261,-0.577853620052338,0.756093740463257,-0.00220279954373837,-0.390385538339615,0.920648813247681,0.592572927474976,-0.678306341171265,0.434462785720825,-0.108036920428276,-0.727347135543823,0.677712500095367,-0.0681421831250191,-0.666070699691772,0.742769479751587,-0.0741987898945808,-0.675717830657959,0.733416736125946,-0.0121913868933916,-0.109859615564346,0.993872344493866,0.381093412637711,-0.758656024932861,0.528402388095856,0.357904613018036,-0.724766850471497,0.588742196559906,
- -0.0732967108488083,-0.50033837556839,0.862721920013428,-0.146806076169014,-0.423325777053833,0.894004046916962,0.101475492119789,-0.655610024929047,0.748250126838684,0.434585630893707,0.0743643864989281,0.897555112838745,0.0628024190664291,-0.663577675819397,0.745466709136963,-0.194295316934586,-0.899998486042023,0.390194952487946,-0.267937272787094,-0.816414892673492,0.511543095111847,-0.121287494897842,-0.687064647674561,0.716401875019073,0.00387621112167835,-0.542948305606842,0.839757144451141,-0.17402158677578,-0.689352869987488,0.703213453292847,0.544635415077209,0.324966490268707,0.773155391216278,0.00298398081213236,-0.521396160125732,0.853309512138367,-0.146960660815239,-0.421507000923157,0.894837617874146,0.682985305786133,-0.679064512252808,0.269077360630035,0.230415195226669,-0.621238708496094,0.748980283737183,0.506158113479614,-0.427665740251541,0.748936653137207,0.200296700000763,-0.630366146564484,0.750013113021851,0.0357447266578674,-0.700729131698608,0.712531507015228,0.572246253490448,-0.114758491516113,0.812012732028961,-0.128029629588127,-0.598804652690887,0.790595650672913,-0.210560381412506,-0.629867970943451,0.747616767883301,0.241172879934311,-0.74342006444931,0.623828709125519,-0.150437474250793,0.463176101446152,0.87340521812439,0.269482553005219,-0.830593705177307,0.487332880496979,0.233753904700279,-0.726261913776398,0.646453976631165,0.32541960477829,-0.829650223255157,0.453632652759552,0.167809471487999,-0.638156592845917,0.751396179199219,0.206875860691071,-0.665580630302429,0.717080771923065,0.489314556121826,-0.456934094429016,0.742820680141449,0.111205689609051,-0.71499764919281,0.690225899219513,0.242322564125061,-0.688866436481476,0.683185815811157,0.0459162592887878,-0.996070861816406,0.0757270529866219,0.0589010342955589,-0.991629004478455,0.114902257919312,0.312109798192978,-0.928675830364227,0.200371265411377,0.240115791559219,-0.74329537153244,0.624384880065918,0.271808803081512,-0.828123092651367,0.490236908197403,0.309457421302795,-0.784908890724182,0.536799967288971,0.387652218341827,-0.766080856323242,0.512685000896454,
- 0.735140919685364,-0.588528335094452,0.336455672979355,0.158909812569618,-0.677752614021301,0.717913091182709,0.498574733734131,-0.453037738800049,0.739040017127991,0.0791961327195168,-0.712761104106903,0.696921586990356,0.234289407730103,-0.742589473724365,0.62743079662323,0.0157435834407806,-0.995769798755646,0.0905246064066887,0.238582640886307,-0.732395350933075,0.63771116733551,0.310372531414032,-0.81909453868866,0.482444852590561,0.378316521644592,-0.803729653358459,0.459233403205872,0.704514384269714,-0.646561503410339,0.292605429887772,0.253598421812058,-0.949411928653717,0.185215786099434,0.400614231824875,-0.642201542854309,0.653517723083496,0.370723128318787,-0.758805990219116,0.535516560077667,0.34584903717041,-0.747213900089264,0.567503273487091,0.453385204076767,-0.70758444070816,0.542001903057098,0.822557508945465,-0.44177582859993,0.35809662938118,0.52855396270752,-0.7929368019104,0.303120374679565,0.501388967037201,-0.822701990604401,0.267900258302689,0.207716271281242,-0.975965678691864,-0.0659177973866463,0.306738317012787,-0.929752111434937,-0.203648298978806,0.540989458560944,-0.805079817771912,0.243262842297554,0.400333732366562,-0.914983689785004,-0.0503769814968109,-0.0673700124025345,-0.994645714759827,-0.0783665031194687,0.240476593375206,-0.733582377433777,0.635632038116455,0.000830817851237953,-0.996400713920593,0.0847646221518517,0.455077439546585,-0.709629416465759,0.537894606590271,0.986573338508606,-0.0817772522568703,-0.141370370984077,0.752929925918579,-0.562739610671997,0.341204881668091,0.425379037857056,-0.793052852153778,0.43602728843689,0.675690054893494,-0.680213809013367,0.284169465303421,0.379741191864014,-0.80426436662674,0.457116484642029,0.54291820526123,-0.825694024562836,0.153196662664413,0.260400831699371,-0.958049058914185,-0.119722835719585,0.431256711483002,-0.901459276676178,0.0372661612927914,0.271245956420898,-0.950125992298126,0.153903022408485,0.42707821726799,-0.904152989387512,-0.0105647081509233,0.456980377435684,-0.888331949710846,-0.0451147332787514,0.437959313392639,-0.870863974094391,0.223131343722343,
- 0.819780468940735,-0.44972562789917,-0.354551732540131,0.654521346092224,-0.755674779415131,-0.0236118957400322,0.475378930568695,-0.863816499710083,0.166841730475426,0.752801060676575,-0.638855695724487,-0.158600255846977,0.563689410686493,-0.822049558162689,0.0805526003241539,0.562441825866699,-0.82151871919632,0.0936276093125343,0.0581380352377892,-0.991706907749176,-0.114618539810181,0.435932189226151,-0.899235606193542,0.0365861877799034,0.0440984219312668,-0.97567218542099,-0.214753806591034,0.433387070894241,-0.898675799369812,0.0675102174282074,0.195267423987389,-0.974300026893616,-0.112294770777225,0.731477856636047,-0.247920781373978,-0.635197162628174,0.624271988868713,-0.766211926937103,-0.152327641844749,0.459466695785522,-0.881246447563171,0.110882893204689,0.578033566474915,-0.81554502248764,0.0276321023702621,0.734420299530029,-0.590202152729034,-0.335094422101974,0.43791139125824,-0.86920964717865,0.229582607746124,0.423328131437302,-0.904800653457642,-0.0461408086121082,-0.133914560079575,-0.988258600234985,-0.073565348982811,0.542717218399048,-0.839102149009705,-0.0369573421776295,0.532313168048859,-0.799754023551941,-0.277554124593735,0.52073723077774,-0.85047447681427,-0.0743370205163956,0.496445298194885,-0.628416180610657,-0.598861694335938,0.468601882457733,-0.869493961334229,-0.156181052327156,0.348479896783829,-0.25381326675415,-0.902297496795654,0.472532749176025,-0.668578803539276,-0.574208378791809,0.690086603164673,-0.706954479217529,0.154906436800957,0.437297642230988,-0.898396611213684,0.0406743288040161,0.0463851764798164,-0.992821991443634,-0.1102404743433,0.480457305908203,-0.85707026720047,0.18598735332489,0.531818807125092,-0.839538097381592,-0.111106649041176,0.515992105007172,-0.666295170783997,-0.538333535194397,0.551962852478027,-0.829748630523682,-0.0827902555465698,0.0619433969259262,-0.991311967372894,-0.116032920777798,0.0507381334900856,-0.991902709007263,-0.116424232721329,0.129204988479614,-0.859775364398956,-0.49405699968338,0.0996105223894119,-0.813899338245392,-0.572403371334076,
- 0.028538916260004,-0.680994272232056,-0.731732487678528,0.0442243032157421,-0.685999095439911,-0.72625720500946,-0.112577095627785,-0.282262444496155,-0.952709019184113,0.1344083994627,-0.852461457252502,-0.505216598510742,0.95115602016449,-0.30856329202652,-0.00953754782676697,0.55571460723877,-0.827763378620148,-0.0773897171020508,0.0441151149570942,-0.993062019348145,-0.10900292545557,0.498870670795441,-0.680985689163208,-0.536084473133087,0.499635279178619,-0.686110973358154,-0.528787553310394,0.492021769285202,-0.854994058609009,-0.164011538028717,0.394176155328751,-0.702846169471741,-0.592142283916473,0.502212107181549,-0.618091702461243,-0.604769170284271,0.145869925618172,-0.835586786270142,-0.529638469219208,-0.0686275660991669,-0.902987599372864,-0.424150735139847,0.415563344955444,-0.699296712875366,-0.581628024578094,0.135605171322823,-0.850749015808105,-0.507776975631714,-0.15342453122139,-0.984878420829773,-0.0804701298475266,0.539821982383728,-0.840731143951416,-0.0419933795928955,-0.126433715224266,-0.988769054412842,-0.0796895921230316,0.200824797153473,-0.921932816505432,-0.331223964691162,0.0598298385739326,-0.707335948944092,-0.704341113567352,0.107769310474396,-0.794599175453186,-0.59749311208725,0.160566747188568,-0.840056240558624,-0.518192887306213,0.037819117307663,-0.879687309265137,-0.474046409130096,0.35489347577095,-0.74139940738678,-0.569541573524475,-0.585479557514191,-0.501967966556549,-0.63658618927002,-0.563714623451233,-0.479838728904724,-0.672295033931732,-0.111369751393795,-0.0445574559271336,-0.992779731750488,0.0167622119188309,-0.547427237033844,-0.836685478687286,0.12046279758215,-0.776364803314209,-0.618664979934692,0.0876722633838654,-0.710302650928497,-0.698415160179138,-0.595045030117035,-0.499011218547821,-0.630007386207581,-0.111481845378876,-0.0507002398371696,-0.992472290992737,-0.607097029685974,-0.510784566402435,-0.608713746070862,0.591968715190887,-0.54932314157486,-0.58976024389267,0.366963505744934,-0.741714417934418,-0.561424612998962,0.0244670063257217,-0.893081188201904,-0.449229836463928,
- -0.801246643066406,-0.0322074927389622,-0.597466945648193,-0.684765934944153,-0.337599754333496,-0.645849823951721,-0.0703413337469101,-0.894558668136597,-0.44138091802597,-0.620316386222839,-0.465147316455841,-0.631542205810547,-0.0724426954984665,-0.883578360080719,-0.462646007537842,-0.714448809623718,-0.315932482481003,-0.624299347400665,0.103852048516274,-0.800046980381012,-0.590880393981934,-0.671825468540192,-0.471418738365173,-0.571327328681946,-0.425753563642502,-0.646736025810242,-0.632824182510376,-0.590837121009827,-0.397423774003983,-0.70211535692215,0.429031878709793,0.374821364879608,-0.821851968765259,-0.477621167898178,-0.304661244153976,-0.824050724506378,-0.704693675041199,-0.323222249746323,-0.631612360477448,-0.545669734477997,-0.518882274627686,-0.658031702041626,-0.630447149276733,-0.424252778291702,-0.650035440921783,-0.673136711120605,-0.345689117908478,-0.653747737407684,-0.463698476552963,0.0203481614589691,-0.88575941324234,-0.712846577167511,-0.465857833623886,-0.524238884449005,-0.486138164997101,-0.530607402324677,-0.694352567195892,-0.892032623291016,0.251968532800674,-0.375219732522964,-0.641978979110718,-0.367769837379456,-0.672761797904968,-0.63302093744278,-0.440008878707886,-0.636927545070648,-0.394235402345657,-0.73745983839035,-0.548389971256256,-0.597471535205841,-0.498245477676392,-0.628314554691315,-0.826245129108429,-0.41879415512085,-0.376736640930176,-0.820661425590515,-0.391039997339249,-0.416656255722046,-0.662351965904236,-0.075498029589653,-0.745379090309143,-0.965593576431274,-0.0182162299752235,0.259417176246643,-0.901840507984161,-0.412942230701447,0.127131402492523,-0.596685886383057,-0.799506425857544,-0.0689602494239807,-0.90285861492157,-0.406549513339996,0.139870405197144,-0.902818560600281,-0.40665340423584,0.139827162027359,-0.596469402313232,-0.799677491188049,-0.0688485354185104,-0.662969708442688,-0.148436576128006,-0.73378324508667,-0.838531017303467,-0.510936200618744,-0.189235672354698,-0.825458467006683,-0.41902095079422,-0.378206372261047,-0.28454402089119,-0.355290502309799,-0.890395045280457,
- -0.476030141115189,-0.119288444519043,-0.871301114559174,-0.250579208135605,-0.390912234783173,-0.885662317276001,-0.849734783172607,-0.507210075855255,-0.143836572766304,-0.644494652748108,0.111352682113647,-0.756457030773163,-0.862880825996399,-0.448613226413727,-0.232772529125214,-0.894802749156952,-0.3918077647686,-0.214044317603111,-0.875495314598084,-0.365202605724335,-0.316441357135773,-0.473324120044708,-0.0776318609714508,-0.877460896968842,-0.265141546726227,-0.93100917339325,-0.2508425116539,-0.875729441642761,-0.481057286262512,0.0410104990005493,-0.636972606182098,-0.763183534145355,-0.108705326914787,-0.869032263755798,-0.370920062065125,-0.327416151762009,-0.86248791217804,-0.465571641921997,-0.198387712240219,-0.847729086875916,-0.517244160175323,-0.117532402276993,-0.871670782566071,-0.427299529314041,-0.24001070857048,-0.818161249160767,-0.574286222457886,0.0284198224544525,-0.856350481510162,-0.504002273082733,-0.112452879548073,-0.818479537963867,-0.574509680271149,0.00546226464211941,-0.632334172725677,-0.767264664173126,-0.107044667005539,-0.87633204460144,-0.478811472654343,0.052741926163435,-0.808025717735291,-0.567171931266785,0.159406691789627,-0.940529644489288,-0.0622963160276413,-0.333950906991959,-0.805417120456696,-0.569897294044495,0.162851125001907,-0.786494731903076,-0.594847559928894,0.166079565882683,-0.617601752281189,-0.709291279315948,0.339814871549606,-0.811205089092255,-0.56940358877182,0.133138433098793,-0.717954158782959,-0.661781072616577,0.215841978788376,-0.845472395420074,-0.519464671611786,-0.123825803399086,-0.856352150440216,-0.477928757667542,-0.195563554763794,-0.782225012779236,-0.601076662540436,-0.163801670074463,-0.811397552490234,-0.569538712501526,-0.131375566124916,-0.960944414138794,-0.218038529157639,0.170426622033119,-0.643921971321106,-0.451983690261841,0.617312908172607,-0.930234909057617,-0.00831548497080803,0.366870552301407,-0.311623066663742,-0.674177348613739,0.669608771800995,-0.925753116607666,-0.357492864131927,0.123207420110703,-0.941991806030273,-0.283626139163971,0.179464802145958,
- -0.816740036010742,-0.573288679122925,-0.065389521420002,-0.317290902137756,-0.673739492893219,0.667384147644043,-0.930048704147339,-0.0116399750113487,0.367251962423325,-0.685941934585571,0.671725213527679,-0.279765784740448,-0.884225904941559,-0.466937243938446,0.0106825651600957,-0.743076682090759,-0.633949398994446,0.214348316192627,-0.763797044754028,-0.616671442985535,0.190605446696281,-0.930873513221741,-0.341484934091568,0.129856109619141,-0.888896346092224,-0.456862032413483,0.0337698273360729,-0.734255254268646,-0.658285975456238,-0.165918186306953,-0.745218396186829,-0.657439291477203,-0.111459195613861,-0.927471995353699,-0.0464385189116001,0.370997697114944,-0.910770118236542,-0.389441817998886,0.137232735753059,-0.535269618034363,-0.500735998153687,0.680257201194763,-0.905006051063538,-0.379872620105743,0.191470175981522,-0.930089712142944,-0.349557220935822,0.112885117530823,-0.733633995056152,-0.644652247428894,0.214952647686005,-0.708596050739288,-0.662880122661591,0.24182978272438,-0.764396548271179,-0.619284093379974,0.179402142763138,0.703330397605896,-0.162825912237167,0.691963911056519,-0.557260751724243,-0.521308422088623,0.646295607089996,-0.936055958271027,-0.337954819202423,0.0979073047637939,-0.488259494304657,-0.818097114562988,0.303841799497604,-0.599395930767059,-0.379877179861069,0.704569280147552,-0.586626172065735,-0.548779249191284,0.595576286315918,0.03472600877285,-0.810853004455566,-0.584218740463257,-0.470295459032059,-0.830502569675446,0.298475503921509,-0.555224776268005,-0.519403755664825,0.64957320690155,-0.353686213493347,-0.878910005092621,-0.3200364112854,-0.734012961387634,-0.583069801330566,-0.348216325044632,-0.852236151695251,-0.402350306510925,-0.334376841783524,0.675298690795898,0.524499356746674,0.518528819084167,-0.733880519866943,-0.565266191959381,-0.37668764591217,-0.688487708568573,-0.533788442611694,-0.490973174571991,0.0195759981870651,-0.946582198143005,-0.321867942810059,-0.700076997280121,-0.554873168468475,-0.449453115463257,0.599919378757477,0.661612987518311,0.449849992990494,
- -0.630650579929352,-0.473300993442535,-0.615033388137817,-0.575898468494415,-0.427075028419495,-0.697099685668945,-0.754900276660919,-0.583074748516083,-0.300248891115189,-0.000834658741950989,-0.888059258460999,0.459728360176086,0.118150845170021,-0.983471751213074,0.137200027704239,0.116701260209084,-0.983035027980804,0.141502872109413,0.0221925266087055,-0.988741278648376,0.147980660200119,0.211659640073776,-0.931463897228241,0.295931279659271,0.25783908367157,-0.907823026180267,0.330721229314804,0.313800573348999,-0.927261650562286,0.204242572188377,-0.101678684353828,-0.919776380062103,0.379042267799377,0.248585388064384,-0.939294219017029,0.236498758196831,-0.231816068291664,0.932023704051971,-0.278555452823639,0.388879358768463,-0.884286344051361,0.25847727060318,0.23111566901207,-0.932176351547241,0.278626471757889,0.247032657265663,-0.943094789981842,0.222591683268547,0.221852004528046,-0.933407008647919,0.282016038894653,0.18914994597435,-0.91576874256134,0.354386925697327,0.475759238004684,-0.811734676361084,0.3387331366539,0.229140251874924,-0.922317981719971,0.311166286468506,0.167571097612381,-0.938732624053955,0.301166146993637,0.358113914728165,-0.904780924320221,0.230490580201149,0.508504450321198,-0.854139447212219,0.108944565057755,0.209412604570389,-0.919475555419922,0.332732737064362,0.444539248943329,-0.0957456156611443,-0.89062762260437,0.166556313633919,-0.0738410726189613,-0.983263194561005,-0.975792407989502,0.0840971246361732,-0.201883181929588,0.168623998761177,-0.0523924306035042,-0.984287023544312,0.136307835578918,-0.0423617549240589,-0.989760398864746,-0.927997469902039,0.288038820028305,-0.236335664987564,-0.801090776920319,0.252855122089386,0.542510747909546,-0.926435768604279,0.292493253946304,-0.236990541219711,0.136181801557541,-0.0429069325327873,-0.989754319190979,-0.934739530086517,0.267987847328186,-0.233333542943001,-0.770522356033325,0.32793003320694,0.546586930751801,-0.223398745059967,0.2099848985672,0.951839983463287,-0.795661270618439,0.267319917678833,0.543565273284912,
- 0.263005048036575,0.789016425609589,-0.555231094360352,-0.324707508087158,-0.742226660251617,0.586229205131531,0.953997135162354,-0.291281044483185,0.0710278451442719,-0.223373621702194,0.212678864598274,0.95124763250351,-0.771509945392609,0.325716644525528,0.546517252922058,-0.223560377955437,0.161187916994095,0.961269557476044,0.942943692207336,-0.319634944200516,0.0932238325476646,0.912259221076965,-0.292129307985306,0.287130206823349,-0.22024142742157,-0.000505709962453693,0.975445210933685,0.966543197631836,-0.00531168235465884,0.256448805332184,0.707473337650299,-0.00240332609973848,-0.706735968589783,0.0958942025899887,-0.207950055599213,-0.973427534103394,0.900442719459534,-0.324946671724319,0.289158314466476,0.923297941684723,-0.36242538690567,0.127156943082809,0.187922045588493,-0.304812431335449,-0.933688759803772,0.722290873527527,-0.165788352489471,-0.671423971652985,0.959509432315826,0.16578397154808,0.227722376585007,0.901428401470184,-0.322336316108704,0.289009094238281,0.0991289094090462,-0.195326894521713,-0.975715637207031,0.199820011854172,-0.23266164958477,-0.951809108257294,0.5058434009552,-0.751857399940491,0.422886431217194,0.36241814494133,-0.825719356536865,0.432250827550888,0.474788546562195,-0.770156025886536,0.425952464342117,0.482347548007965,-0.759168982505798,0.437039256095886,0.362863153219223,-0.825691103935242,0.431931138038635,0.401408076286316,-0.806317090988159,0.434424072504044,0.430400490760803,-0.818333446979523,0.380901634693146,0.015797346830368,-0.916884541511536,0.398839831352234,0.361085027456284,-0.847363829612732,0.389348655939102,0.473685026168823,-0.771723747253418,0.424340635538101,0.452096968889236,-0.744529485702515,0.491206914186478,0.466358453035355,-0.762608110904694,0.448261857032776,-0.0423124432563782,-0.899592101573944,0.434676647186279,-0.0386491157114506,-0.899462342262268,0.435286074876785,0.425308227539063,-0.778734087944031,0.461179316043854,-0.0402254909276962,-0.900291621685028,0.433424711227417,0.301288247108459,-0.831696629524231,0.46637549996376,
- -0.0400177240371704,-0.900283336639404,0.433461129665375,0.250795692205429,-0.871932029724121,0.420519083738327,0.180159747600555,-0.734561264514923,0.654188215732574,0.277792423963547,-0.91375344991684,0.29645574092865,0.195242837071419,-0.800076961517334,0.567236363887787,-0.226072922348976,-0.752711057662964,0.618318021297455,0.0872654467821121,-0.80195677280426,0.590973913669586,0.0954640954732895,-0.755988836288452,0.647585928440094,-0.254178941249847,-0.768160700798035,0.58764123916626,-0.268122345209122,-0.76656186580658,0.583518087863922,0.185728892683983,-0.911249279975891,0.367599785327911,0.219813868403435,-0.947568297386169,0.231940433382988,0.106815040111542,-0.782867312431335,0.612951338291168,0.281971991062164,-0.910946846008301,0.301110833883286,0.292869180440903,-0.925820112228394,0.238924100995064,0.258137375116348,-0.872362494468689,0.415149301290512,0.106482461094856,-0.885301768779755,0.452661454677582,0.152170524001122,-0.734292507171631,0.661557793617249,0.190259113907814,-0.510760486125946,0.838406383991241,0.374626874923706,-0.832444429397583,0.408278107643127,0.503878831863403,-0.758672952651978,0.41294252872467,0.279004871845245,-0.873194098472595,0.399610251188278,0.520978033542633,-0.756135106086731,0.396032452583313,0.373680025339127,-0.833616018295288,0.406752645969391,0.436878204345703,-0.803878366947174,0.403629809617996,0.0382823757827282,-0.853557467460632,0.519590318202972,0.000260993838310242,-0.860751509666443,0.50902533531189,0.0822065323591232,-0.843517541885376,0.530773282051086,0.31741800904274,-0.873163938522339,0.369906157255173,-0.128449887037277,-0.9273641705513,0.351420640945435,0.349579155445099,-0.861518383026123,0.368212670087814,0.321185082197189,-0.912422895431519,0.253623396158218,0.310908019542694,-0.899349749088287,0.307418972253799,0.264242738485336,-0.825985968112946,0.497918665409088,0.467558771371841,-0.763828635215759,0.444921016693115,0.500572919845581,-0.803556799888611,0.322060942649841,0.463138997554779,-0.758275866508484,0.458824634552002,0.183754086494446,-0.697040200233459,0.693086862564087,
- 0.253182858228683,-0.825309634208679,0.504739999771118,0.305803060531616,-0.903767704963684,0.299480408430099,-0.00418514013290405,-0.773374915122986,0.633935153484344,0.0189759563654661,-0.847783923149109,0.530002176761627,0.0304686389863491,-0.879713654518127,0.474526554346085,0.0405548550188541,-0.882169008255005,0.469183474779129,0.036980152130127,-0.834529042243958,0.549721598625183,0.0290071330964565,-0.719507157802582,0.693878948688507,0.104570060968399,-0.777864336967468,0.619670987129211,0.229479670524597,-0.942308783531189,0.243707224726677,0.0911354720592499,-0.753782510757446,0.650773644447327,0.0138685833662748,-0.840145647525787,0.542183578014374,-0.222815930843353,-0.860973477363586,0.457250356674194,0.0356492400169373,-0.835535049438477,0.548279404640198,-0.366726458072662,-0.503195941448212,0.782499611377716,-0.160338953137398,-0.937564730644226,0.308648377656937,-0.222291976213455,-0.865879952907562,0.448149710893631,-0.226755514740944,-0.657661199569702,0.718375742435455,-0.224477469921112,-0.651751697063446,0.724451303482056,-0.269328743219376,-0.766927123069763,0.582481563091278,-0.314308166503906,-0.671531856060028,0.671010732650757,-0.348966479301453,-0.528746843338013,0.773724377155304,-0.220253080129623,-0.882449865341187,0.415657013654709,-0.506016969680786,-0.255590826272964,0.823784053325653,-0.653045654296875,-0.718424797058105,0.239577323198318,-0.636865615844727,-0.561685800552368,0.528120458126068,-0.614946961402893,-0.725462079048157,0.309103637933731,-0.00326317478902638,0.606708526611328,0.794917702674866,-0.626142799854279,-0.578863680362701,0.522362112998962,-0.362170040607452,-0.921438574790955,0.140655145049095,-0.73911851644516,-0.672822833061218,0.0318326056003571,-0.197849541902542,-0.96460896730423,0.174313023686409,-0.908624887466431,0.313694685697556,-0.275674492120743,-0.682104229927063,-0.708895146846771,0.179448127746582,-0.4969382584095,-0.828428030014038,0.258378267288208,-0.322554081678391,-0.781174778938293,0.534532308578491,-0.41404914855957,-0.891228914260864,0.185133501887321,
- -0.225578635931015,-0.628756284713745,0.744163870811462,-0.0558763071894646,-0.583989679813385,-0.80983567237854,-0.507170617580414,-0.819236874580383,0.267635881900787,-0.511937260627747,-0.796286821365356,0.322253882884979,-0.600373208522797,-0.716717064380646,0.354779839515686,-0.593610167503357,-0.779070317745209,0.201683640480042,-0.592779755592346,-0.78184050321579,0.193229660391808,0.908938765525818,-0.339679211378098,0.241761013865471,-0.613585233688354,-0.774254322052002,0.155059933662415,-0.214730054140091,-0.939658403396606,0.266332626342773,-0.283319890499115,-0.738527655601501,0.611806154251099,-0.248578146100044,-0.746068179607391,0.617730796337128,-0.221790552139282,-0.75118100643158,0.621720254421234,-0.655347406864166,-0.752116441726685,0.069574736058712,0.137070342898369,-0.971794664859772,0.191903308033943,-0.0772299468517303,-0.982139229774475,0.171575367450714,-0.679885745048523,0.0950280129909515,0.727134823799133,-0.670170426368713,0.091716468334198,0.736518681049347,-0.540334045886993,0.0496283546090126,0.839985728263855,-0.957294881343842,0.288546055555344,-0.0181039124727249,-0.506015658378601,0.244325906038284,0.827195942401886,-0.753250002861023,0.293201267719269,0.588767826557159,-0.816796779632568,0.105961233377457,0.567111253738403,-0.722729623317719,0.0318183042109013,0.690398156642914,0.769931256771088,-0.0670312792062759,-0.634596586227417,0.769931256771088,-0.0670312792062759,-0.634596586227417,-0.712073266506195,0.0242993086576462,0.701684594154358,-0.816796779632568,0.105961233377457,0.567111253738403,-0.708845615386963,0.0347953587770462,0.70450496673584,-0.709072053432465,0.0312218964099884,0.704444468021393,-0.698571920394897,0.136376455426216,0.702423453330994,-0.444926768541336,0.312449306249619,0.839294672012329,-0.753906905651093,0.0572220534086227,0.654484629631042,-0.30739414691925,0.392431318759918,0.866894781589508,-0.726562678813934,-0.0546520203351974,0.68492329120636,-0.940553486347198,0.312690556049347,-0.132603913545609,-0.759028196334839,-0.0325345508754253,0.650244295597076,
- -0.725691676139832,-0.0556293725967407,0.685767412185669,-0.96149617433548,0.19464385509491,0.194007992744446,-0.938500940799713,0.314562320709229,-0.142360717058182,-0.79184490442276,0.0257886946201324,0.610177516937256,-0.866365075111389,-0.317920863628387,0.385146617889404,0.576513826847076,-0.368229627609253,-0.729409873485565,-0.727203488349915,-0.0539315491914749,0.684300005435944,-0.810539960861206,-0.115264713764191,0.574229121208191,-0.665523827075958,-0.0142504666000605,0.746240615844727,-0.989737868309021,0.0897621437907219,0.111183024942875,-0.850510358810425,-0.164666950702667,0.499516785144806,0.0667538717389107,0.504657745361328,-0.860734879970551,0.532826364040375,-0.331150442361832,0.778739750385284,0.679405808448792,-0.38096696138382,0.627114057540894,0.55388468503952,-0.338716328144073,0.760580718517303,0.620041191577911,-0.418156653642654,0.663847863674164,0.561632633209229,-0.424631267786026,0.710110604763031,0.717981934547424,-0.40022549033165,0.569492280483246,0.634923756122589,-0.409299820661545,0.655244648456573,0.707764863967896,-0.397300183773041,0.584141671657562,0.810234069824219,0.0500700399279594,-0.583963871002197,0.53876918554306,-0.342029124498367,0.769898533821106,0.537961304187775,-0.346468865871429,0.768477022647858,0.553461194038391,-0.24260388314724,0.796758413314819,0.394935697317123,-0.288210600614548,0.872330486774445,0.462837815284729,-0.367467403411865,0.806690037250519,-0.422271877527237,0.537231147289276,0.73011589050293,0.18995988368988,-0.204448997974396,0.960268616676331,0.465631484985352,-0.409051418304443,0.784770250320435,0.478115379810333,-0.418058514595032,0.772420167922974,0.471738338470459,-0.39637354016304,0.787623643875122,0.386461555957794,-0.525602281093597,0.757885038852692,-0.545530378818512,-0.814602851867676,-0.197025328874588,0.438680082559586,-0.402363568544388,0.803531885147095,0.465410053730011,-0.37567412853241,0.80141282081604,0.513079464435577,-0.324906826019287,0.794471502304077,0.47038060426712,-0.391867935657501,0.790684282779694,0.474897146224976,-0.383670806884766,0.792003393173218,
- 0.387558579444885,-0.525213718414307,0.757594168186188,-0.448868840932846,-0.7590252161026,0.471590220928192,-0.594161689281464,-0.7327880859375,0.331652730703354,-0.489808440208435,-0.755063652992249,0.435851693153381,-0.0253118239343166,-0.993871092796326,0.107609294354916,0.263195127248764,-0.961975336074829,0.0730199590325356,-0.622582018375397,-0.768344640731812,0.14845235645771,-0.54707670211792,-0.776980996131897,0.311460644006729,0.00117327272891998,-0.938559353351593,0.345116049051285,-0.546527624130249,-0.777326762676239,0.311561971902847,0.00481781363487244,-0.939807116985321,0.341671645641327,0.157101839780808,-0.930827021598816,0.329969882965088,-0.545601427555084,-0.777376055717468,0.313058614730835,-0.319128483533859,-0.837305128574371,0.443933993577957,-0.126914650201797,-0.588675081729889,0.798344731330872,-0.18576680123806,-0.674826622009277,0.714212656021118,-0.653678715229034,-0.754189014434814,0.0624753683805466,-0.656616866588593,-0.340467035770416,0.6730055809021,0.114336594939232,0.651818513870239,0.749706506729126,-0.590214312076569,-0.643141329288483,0.487869143486023,-0.402984380722046,-0.761136412620544,0.508207678794861,0.0374793261289597,-0.881555140018463,0.4705910384655,-0.376502901315689,-0.753974735736847,0.538300752639771,-0.386717557907104,-0.720722258090973,0.575333833694458,-0.357514053583145,-0.804602861404419,0.474128812551498,0.0877920091152191,-0.90614926815033,0.413746386766434,0.0797993987798691,-0.90590763092041,0.415888845920563,-0.60702645778656,-0.634375274181366,0.478630274534225,0.128041118383408,-0.878856182098389,0.45958399772644,0.0575373470783234,-0.892019152641296,0.448320627212524,-0.113052845001221,-0.904339671134949,0.411568701267242,0.148727715015411,-0.865791797637939,0.477791637182236,-0.0824312195181847,-0.914281606674194,0.396603405475616,0.918839633464813,0.0471103861927986,0.391809284687042,-0.254666268825531,-0.851819396018982,0.457765281200409,-0.237505853176117,-0.967531502246857,0.0864506959915161,0.0426364839076996,-0.302554786205292,-0.952177941799164,
- -0.25405615568161,-0.852226734161377,0.457345724105835,-0.266207575798035,-0.746455252170563,0.6098672747612,-0.206203699111938,-0.970831155776978,0.122339680790901,-0.295619904994965,-0.893813967704773,0.33720263838768,0.180038243532181,-0.977122783660889,0.113213367760181,-0.889741361141205,0.202073037624359,0.409300625324249,0.286932021379471,-0.713435113430023,0.639281213283539,-0.228131294250488,-0.868873417377472,0.439334809780121,-0.517575621604919,-0.821792602539063,0.238269597291946,-0.052349366247654,-0.949820876121521,0.308382868766785,-0.207556813955307,-0.909784317016602,0.359461575746536,-0.40567934513092,-0.816009640693665,0.411767691373825,-0.50713062286377,-0.822813510894775,0.256508052349091,-0.285240143537521,-0.863112151622772,0.416743934154511,0.25354790687561,-0.722325086593628,0.643397152423859,-0.194419890642166,-0.69694983959198,0.690262198448181,-0.191537588834763,-0.734267115592957,0.65127968788147,-0.161351040005684,-0.915006756782532,0.369768023490906,-0.140462651848793,-0.870476305484772,0.471742928028107,-0.187020540237427,-0.731798827648163,0.655357837677002,-0.19603730738163,-0.69523024559021,0.691537618637085,-0.101645462214947,-0.959720730781555,0.26192432641983,-0.535736739635468,-0.819049537181854,0.205290645360947,-0.664911031723022,-0.726293921470642,0.174328655004501,-0.383270889520645,-0.811174988746643,0.441699683666229,-0.538705348968506,-0.418042868375778,0.731462121009827,-0.438037633895874,-0.721444427967072,0.536321699619293,-0.537109076976776,-0.8121337890625,0.227931588888168,-0.000503018498420715,-0.985132217407227,0.171797543764114,-0.638684034347534,-0.734083414077759,0.230660527944565,-0.331902265548706,-0.712273120880127,0.618472337722778,-0.421580761671066,-0.818557977676392,0.39016991853714,-0.30267333984375,-0.673581540584564,0.674297332763672,-0.512040376663208,-0.8549684882164,0.0827268958091736,-0.633708775043488,-0.735177457332611,0.240681260824203,-0.71965092420578,-0.579300463199615,0.382771074771881,-0.68989098072052,-0.458743929862976,0.560004115104675,
- -0.686620593070984,-0.625996887683868,0.369702726602554,-0.652638852596283,-0.730391323566437,0.201472610235214,-0.885944843292236,0.437347799539566,0.154365405440331,-0.988179922103882,-0.0383062362670898,0.148436203598976,-0.986291646957397,0.0625408664345741,0.152700215578079,-0.866192400455475,0.450526833534241,0.216185718774796,-0.980207860469818,0.0511494018137455,0.191249266266823,-0.782303929328918,0.584284961223602,0.21589782834053,-0.783533930778503,0.580452144145966,0.221697986125946,0.230071634054184,0.972185015678406,0.0438580922782421,-0.862574219703674,0.452508300542831,0.226278424263,0.213449060916901,0.969354271888733,0.121621824800968,0.250326484441757,0.958861827850342,0.133868008852005,-0.619325518608093,0.765000998973846,-0.176661789417267,0.432088136672974,0.901408672332764,-0.0276094228029251,0.212970271706581,0.976705312728882,-0.02627775631845,0.38208931684494,0.923718333244324,-0.0274275839328766,0.560366451740265,0.691612601280212,-0.455698847770691,0.051600806415081,0.84338915348053,-0.534819662570953,0.726038336753845,0.570171773433685,-0.384411752223969,0.296101361513138,0.945311427116394,0.136786222457886,-0.242751747369766,0.413329422473907,0.877627670764923,0.264676541090012,0.94260448217392,0.203576356172562,0.360543668270111,0.927487134933472,0.098873145878315,0.382730484008789,0.188679277896881,0.904387950897217,0.375259608030319,0.158597484230995,0.913250803947449,0.143859013915062,0.951520502567291,-0.271870076656342,0.35625958442688,0.906266927719116,-0.2275071144104,0.425516396760941,0.880340933799744,-0.20960807800293,-0.105428159236908,0.940428853034973,-0.323231607675552,0.421922981739044,0.876866042613983,-0.230406552553177,0.371308177709579,0.895987272262573,-0.243591904640198,0.568000912666321,0.813651561737061,-0.123879596590996,0.224545031785965,0.97424453496933,0.0206710435450077,0.444369226694107,0.893141210079193,-0.069532722234726,0.192717030644417,0.961891412734985,0.193972289562225,0.240556597709656,0.966510534286499,0.0893872901797295,0.358758330345154,0.908496141433716,-0.214306712150574,
- 0.30478248000145,0.714668571949005,-0.629568517208099,0.157839566469193,0.748506009578705,-0.64406955242157,0.314873665571213,0.711665749549866,-0.628001987934113,0.452708154916763,0.890861868858337,0.0376894995570183,0.723223984241486,0.66934871673584,-0.170057192444801,0.631098628044128,0.77028501033783,-0.091519333422184,0.141046941280365,0.766472101211548,-0.626598954200745,0.0606376752257347,0.786499798297882,-0.614606440067291,0.301766216754913,0.708994030952454,-0.637388944625854,0.00871898140758276,0.755443215370178,-0.655156075954437,0.166730493307114,0.73865270614624,-0.653141021728516,-0.0536608695983887,0.756827533245087,-0.651408195495605,0.280489176511765,0.776026844978333,-0.564896583557129,0.277225941419601,0.929312288761139,-0.243976414203644,0.273684144020081,0.702697038650513,-0.656744956970215,-0.0106968134641647,0.742807984352112,-0.669419050216675,-0.0431108623743057,0.742385029792786,-0.668585121631622,-0.530864059925079,0.633144617080688,-0.56330394744873,-0.231370359659195,0.716379761695862,-0.658230841159821,-0.306528627872467,0.75171172618866,-0.583926022052765,0.12202437967062,0.461826264858246,-0.878536641597748,-0.247633755207062,0.608457803726196,-0.753960609436035,-0.466388821601868,0.635606288909912,-0.615212321281433,-0.527635276317596,0.635304987430573,-0.563904762268066,0.190164297819138,0.679579436779022,-0.708526253700256,0.177803531289101,0.841647565364838,-0.509916841983795,0.18758986890316,0.406283497810364,-0.894283890724182,0.303599953651428,0.74791693687439,-0.590294301509857,0.289654076099396,0.706372737884521,-0.645862281322479,0.184787914156914,0.408757358789444,-0.893739819526672,0.140314564108849,0.839203715324402,-0.525403499603271,0.387419879436493,0.20674529671669,-0.898422122001648,0.147589936852455,0.829462945461273,-0.538709938526154,0.346647083759308,0.912098169326782,-0.218889817595482,0.227827042341232,0.832357108592987,-0.505248963832855,0.355815827846527,0.914753675460815,-0.191365748643875,0.350155025720596,0.918224692344666,-0.185080945491791,0.429947435855865,0.901123642921448,0.055871270596981,
- 0.334999650716782,0.915390610694885,-0.223238229751587,0.311263024806976,0.754905879497528,-0.577262878417969,0.593375504016876,0.648520767688751,-0.476787537336349,0.295120656490326,0.758486866950989,-0.581034898757935,-0.311082065105438,0.724767863750458,-0.614767849445343,0.314227700233459,0.757708370685577,-0.571960628032684,0.292223393917084,0.762029469013214,-0.577855169773102,0.280603259801865,0.929262220859528,-0.240278095006943,0.682041108608246,0.720367848873138,-0.126056164503098,0.379946976900101,0.89886736869812,-0.218352854251862,0.381483018398285,0.897794365882874,-0.220081806182861,0.467362254858017,0.861680567264557,-0.197684571146965,0.279659152030945,0.928819119930267,-0.243075624108315,0.57382595539093,0.812245726585388,0.104788437485695,0.990350544452667,0.109372101724148,0.0851098150014877,0.36378875374794,0.92642617225647,0.0969144999980927,0.326874256134033,0.937557220458984,0.118911027908325,0.377150893211365,0.918127417564392,0.121652342379093,0.591241538524628,0.796015977859497,0.129584237933159,0.460421562194824,0.886789321899414,-0.0402087718248367,0.956319212913513,-0.0356299765408039,-0.290145009756088,0.95839524269104,0.0446413308382034,-0.281932234764099,0.436844915151596,0.896996557712555,-0.0675563812255859,0.389740347862244,0.596788585186005,-0.701388597488403,0.263520002365112,0.259111642837524,-0.929203033447266,0.330281525850296,0.926134824752808,-0.182177022099495,0.339116156101227,0.935994625091553,0.0944164022803307,0.249709397554398,0.726807832717896,-0.639840364456177,-0.0347132310271263,0.997609078884125,0.0597587376832962,0.135630175471306,0.922468066215515,-0.361465394496918,0.185406520962715,0.855563461780548,-0.483358681201935,0.254472434520721,0.722999751567841,-0.642273545265198,0.277051389217377,0.956693947315216,0.0893271341919899,0.27895724773407,0.958055853843689,0.0656657293438911,0.43779981136322,0.893280804157257,0.101886063814163,0.42481604218483,0.905049562454224,-0.0204121321439743,0.418867588043213,0.905907154083252,-0.0623072758316994,0.349181205034256,0.932205379009247,0.095214270055294,
- 0.247621566057205,0.962146401405334,-0.113832697272301,0.335346192121506,0.939879536628723,0.0645709931850433,0.413926303386688,0.862995386123657,-0.289661884307861,0.514362096786499,0.850860178470612,0.107091963291168,0.413386315107346,0.862753987312317,-0.291148662567139,0.348825067281723,0.937170445919037,-0.00573273794725537,0.610500633716583,0.745209753513336,-0.268237739801407,0.242980897426605,0.966174423694611,0.0864138603210449,0.407870799303055,0.865241646766663,-0.291544705629349,0.22577728331089,0.709761619567871,-0.667280375957489,0.410011380910873,0.866279244422913,-0.285396099090576,0.409083962440491,0.853134989738464,0.323745369911194,0.726705491542816,0.418197244405746,-0.544986486434937,0.698880553245544,0.669747710227966,-0.251005858182907,0.203262835741043,0.734697043895721,-0.647228360176086,0.405810832977295,0.866160869598389,-0.291689604520798,0.112446382641792,0.645177364349365,-0.755712807178497,0.388565242290497,0.586260735988617,-0.710855424404144,0.180526033043861,0.850477397441864,-0.494063526391983,0.289777964353561,0.734001040458679,-0.614224076271057,0.085451565682888,0.46948915719986,-0.878793478012085,0.221582978963852,0.714518845081329,-0.663599133491516,0.175671353936195,0.636497855186462,-0.751006007194519,0.273828864097595,0.766252100467682,-0.581270575523376,0.388833940029144,0.586175203323364,-0.710779070854187,0.294697433710098,0.738877356052399,-0.605981647968292,0.0543400272727013,0.650793373584747,-0.757307767868042,0.103451758623123,0.770144164562225,-0.629425048828125,0.0245443247258663,0.570375621318817,-0.821017146110535,0.12257781624794,0.542543292045593,-0.831036448478699,-0.141702443361282,0.720209419727325,-0.679130911827087,-0.160582140088081,0.729812800884247,-0.664519906044006,0.327548235654831,0.770039677619934,-0.547495305538177,-0.367370307445526,0.743994116783142,-0.558132529258728,-0.109790362417698,0.800902247428894,-0.588644087314606,0.0194123666733503,0.707214534282684,-0.706732511520386,-0.0204608589410782,0.638223052024841,-0.769579648971558,0.0578750669956207,0.76714289188385,-0.638860046863556,
- -0.217648416757584,0.7806636095047,-0.585827231407166,-0.155962184071541,0.807446956634521,-0.56895112991333,-0.198259919881821,0.789536833763123,-0.580796539783478,-0.109404161572456,0.801777601242065,-0.58752304315567,-0.311751127243042,0.725020468235016,-0.614130735397339,-0.134035736322403,0.794560015201569,-0.59220689535141,-0.240823015570641,0.695266962051392,-0.677206158638,-0.185247838497162,0.793285310268402,-0.579984188079834,-0.170776933431625,0.814955949783325,-0.553788959980011,-0.334413915872574,0.805803418159485,-0.488720953464508,-0.19879013299942,0.719320178031921,-0.665628254413605,-0.154122829437256,0.683918535709381,-0.713092982769012,-0.143197104334831,0.715997993946075,-0.68325799703598,-0.0478843450546265,0.737854719161987,-0.673258900642395,-0.531462132930756,0.543629825115204,-0.649626553058624,-0.374105185270309,0.654783189296722,-0.656737625598907,-0.401606678962708,0.734699547290802,-0.546743750572205,-0.425418555736542,0.815950989723206,-0.391462862491608,-0.188561588525772,0.792334496974945,-0.580215930938721,-0.236299946904182,0.654788136482239,-0.717923998832703,-0.177094042301178,0.818225026130676,-0.546941936016083,0.0735330805182457,0.637623012065887,-0.766830921173096,-0.157864391803741,0.603513777256012,-0.781568944454193,-0.581592619419098,0.44002491235733,-0.684198915958405,-0.210070967674255,0.79252153635025,-0.572520554065704,-0.32739594578743,0.734317660331726,-0.594633936882019,-0.215253904461861,0.790279686450958,-0.573693156242371,-0.330437779426575,0.738071978092194,-0.588269233703613,-0.414050042629242,0.723580837249756,-0.552262127399445,-0.225243762135506,0.747227191925049,-0.625233352184296,-0.430473864078522,0.845368921756744,-0.31629666686058,-0.465663969516754,0.812715649604797,-0.350214719772339,-0.532389998435974,0.737461745738983,-0.415585368871689,-0.277918100357056,0.854890584945679,-0.438090920448303,-0.270864397287369,0.818357348442078,-0.506876587867737,-0.268090069293976,0.804801821708679,-0.529548585414886,-0.321796119213104,0.727352023124695,-0.606140553951263,
- -0.746096611022949,0.547964155673981,-0.378252863883972,-0.432036906480789,0.702025055885315,-0.566131591796875,-0.505341172218323,0.749570190906525,-0.427521795034409,-0.684209704399109,0.348699152469635,-0.64052015542984,-0.423985451459885,0.839760720729828,-0.339172869920731,-0.0891161859035492,0.958125352859497,-0.272128880023956,-0.499906599521637,0.7376389503479,0.453852653503418,-0.143129304051399,0.970441222190857,-0.194313764572144,-0.349729686975479,0.896674931049347,-0.271409928798676,-0.670701086521149,0.732335329055786,0.11766529083252,-0.667683959007263,0.735860466957092,0.112727895379066,-0.521961033344269,0.799742579460144,-0.296594828367233,-0.508120238780975,0.748371660709381,-0.426325798034668,-0.46941003203392,0.6456578373909,-0.602312505245209,-0.63271689414978,0.744433999061584,0.213278010487556,-0.992368817329407,0.0953197181224823,0.078220508992672,-0.930029273033142,0.342275649309158,0.133764520287514,-0.695109844207764,0.547504365444183,0.465898513793945,-0.716478049755096,0.683216571807861,0.140976667404175,-0.702235758304596,0.711714565753937,0.0180959701538086,-0.814799904823303,0.520804524421692,0.25468385219574,-0.594623506069183,0.74845165014267,0.293671846389771,-0.947371125221252,0.255012482404709,0.193537056446075,-0.683824360370636,0.719392895698547,0.121894285082817,-0.616287350654602,0.548519492149353,0.565080761909485,-0.620526313781738,0.555734992027283,0.553268194198608,-0.267499834299088,0.86277437210083,-0.429027110338211,-0.267683476209641,0.862851083278656,-0.428758203983307,-0.587816119194031,0.745315849781036,0.314605325460434,-0.153117284178734,0.600207507610321,-0.785051584243774,-0.744828164577484,0.255666553974152,-0.616332530975342,-0.60835874080658,0.372873216867447,-0.700617849826813,-0.676830947399139,0.548566877841949,0.490891337394714,-0.952494561672211,0.202267050743103,0.227689012885094,-0.583266317844391,0.610901832580566,0.535349786281586,-0.520992875099182,0.680390238761902,0.515398502349854,-0.373467445373535,0.846303761005402,-0.379857987165451,-0.528440773487091,0.749144792556763,0.399415135383606,
- -0.61367791891098,0.548409998416901,0.568019330501556,-0.506042897701263,0.427180618047714,0.749291300773621,-0.620327472686768,0.556241631507874,0.552981972694397,-0.310989916324615,0.661385059356689,0.682535767555237,-0.521849513053894,0.741531133651733,0.421668946743011,-0.196218326687813,0.594854354858398,0.779516935348511,-0.387648463249207,0.705120146274567,0.593745946884155,-0.676596999168396,0.548576891422272,0.491202592849731,-0.581891477108002,0.612565219402313,0.534945011138916,-0.365925967693329,0.509645342826843,0.778691112995148,-0.328343510627747,0.607730865478516,0.723086297512054,-0.363982975482941,0.515256762504578,0.775903940200806,-0.188000068068504,0.598157286643982,0.779014706611633,-0.211799025535584,0.611774682998657,0.762150228023529,-0.310998439788818,0.662788391113281,0.681169271469116,-0.32163405418396,0.596596300601959,0.735271751880646,-0.337727218866348,0.55572772026062,0.759675621986389,-0.349636882543564,0.523021697998047,0.777304649353027,0.25514754652977,0.57241952419281,0.779253244400024,-0.310743182897568,0.701506614685059,0.641347944736481,-0.0357958115637302,0.668849885463715,0.742535173892975,-0.337386876344681,0.622706294059753,0.705979526042938,-0.548138022422791,0.651507019996643,0.524483919143677,-0.228971689939499,0.592339158058167,0.77246767282486,0.218803197145462,0.664584696292877,0.714459478855133,0.216015458106995,0.66497266292572,0.714946627616882,0.00371493399143219,0.678446114063263,0.734640777111053,0.450532108545303,0.812361836433411,0.370255440473557,0.0853912755846977,0.878025770187378,0.470934212207794,0.405613750219345,0.828124642372131,0.386894166469574,0.351917296648026,0.790097534656525,0.501896500587463,0.768078327178955,0.629572927951813,0.117020562291145,0.508984804153442,0.767196655273438,0.390312373638153,-0.230604007840157,0.443875670433044,0.865907728672028,0.143093541264534,0.84201180934906,0.520135164260864,-0.0625912621617317,0.661679327487946,0.747169852256775,0.132940232753754,0.43178129196167,0.892127692699432,-0.337386876344681,0.622706294059753,0.705979526042938,
- -0.228971689939499,0.592339158058167,0.77246767282486,0.190175756812096,0.633289456367493,0.750185072422028,0.168330729007721,0.705836534500122,0.688084006309509,0.0485725402832031,0.945670425891876,0.321478247642517,0.143014386296272,0.843871474266052,0.517134308815002,0.19870787858963,0.906891047954559,0.371569454669952,0.0418000444769859,0.686595737934113,0.72583681344986,0.343906968832016,0.93321681022644,0.104088447988033,0.554327428340912,0.785709977149963,-0.274555921554565,0.435161143541336,0.899392783641815,-0.0415614172816277,0.435720145702362,0.899235308170319,-0.0390361063182354,0.434719920158386,0.899785995483398,-0.0374700538814068,0.338176518678665,0.935345470905304,0.103757113218308,-0.0283347703516483,0.994650065898895,0.0993399322032928,0.170581609010696,0.611133098602295,0.772928357124329,0.0311869904398918,0.948526978492737,0.315157145261765,0.496113300323486,0.860123455524445,0.118571765720844,0.406041949987412,0.913278043270111,0.0324529893696308,0.459076553583145,0.884570717811584,0.0823609158396721,0.436079323291779,0.899130463600159,-0.0374062806367874,0.319039195775986,0.930609822273254,0.179386034607887,0.436200141906738,0.899061441421509,-0.0376577712595463,0.266222685575485,0.963909983634949,0.0017982276622206,0.262985289096832,0.964667320251465,-0.015995591878891,0.290547043085098,0.94413161277771,0.155557200312614,0.407865971326828,0.912476420402527,0.0321279689669609,0.211825892329216,0.968390464782715,-0.131719067692757,0.45838737487793,0.885307133197784,0.0781823098659515,0.345121026039124,0.916712045669556,0.201321870088577,0.471704244613647,0.865071654319763,0.170722231268883,-0.158998817205429,0.947858333587646,0.27619543671608,0.457464039325714,0.838047683238983,0.297326028347015,0.454507380723953,0.876989245414734,0.155926749110222,0.418831586837769,0.89758825302124,-0.13753354549408,-0.162821829319,0.94602370262146,0.28022900223732,0.448035448789597,0.881385922431946,0.149743765592575,0.325343787670136,0.927386522293091,0.184677436947823,0.271954506635666,0.962304711341858,-0.00323404418304563,
- 0.258271515369415,0.96584165096283,-0.0211140811443329,0.123036414384842,0.974310159683228,-0.188631474971771,-0.170493304729462,0.920447587966919,-0.351722151041031,-0.396531343460083,0.687484085559845,0.608381867408752,-0.393448233604431,0.73635059595108,0.550441980361938,-0.049394004046917,0.962899804115295,-0.265300273895264,-0.128823697566986,0.955005645751953,0.267149358987808,-0.131216287612915,0.948974251747131,0.286758035421371,0.205457583069801,0.977606594562531,-0.0455251820385456,0.208444729447365,0.975992977619171,-0.0631545856595039,0.249868541955948,0.894289493560791,-0.371230453252792,-0.248675614595413,-0.89946848154068,0.359328627586365,0.205457583069801,0.977606594562531,-0.0455251820385456,0.249868541955948,0.894289493560791,-0.371230453252792,-0.142633318901062,0.989686250686646,0.0133041087538004,0.355239629745483,0.934003114700317,-0.0379866100847721,0.251037180423737,0.967592895030975,-0.0272830203175545,0.0224742777645588,0.990223944187164,-0.137664273381233,-0.5344517827034,0.154166176915169,-0.831019997596741,0.429171591997147,0.740130841732025,0.517704606056213,0.292956441640854,0.956085562705994,0.00878199934959412,0.0442261770367622,0.99741131067276,0.0566992983222008,-0.241355940699577,0.964574575424194,0.106504663825035,0.128788620233536,0.861951410770416,-0.490360498428345,0.102851048111916,0.972485840320587,-0.209028854966164,0.112687639892101,0.945245146751404,-0.306289166212082,0.633832991123199,0.714455544948578,0.296325981616974,0.621971905231476,0.725722312927246,0.294071614742279,0.151977896690369,0.972217321395874,0.178034409880638,0.279605865478516,0.92361718416214,-0.262205749750137,0.463586032390594,0.832088768482208,-0.304493576288223,0.185904175043106,0.953423082828522,-0.237537488341331,0.171266436576843,0.951107740402222,-0.257024884223938,0.266209810972214,0.932697117328644,-0.24332782626152,0.164709746837616,0.952035963535309,-0.257872551679611,0.131085053086281,0.963417053222656,-0.233761474490166,0.113484933972359,0.993420481681824,-0.0153921842575073,0.134467661380768,0.948665320873261,-0.286273628473282,
- 0.520902872085571,0.841553568840027,0.142996624112129,0.449844092130661,0.872200191020966,0.192112103104591,-0.386930793523788,0.746717751026154,0.541014909744263,0.346891611814499,0.929273784160614,0.126950442790985,0.264146566390991,0.899579644203186,-0.347826182842255,0.293110609054565,0.929037630558014,-0.225777179002762,0.14740726351738,0.977679848670959,0.149711087346077,-0.153426647186279,0.966589868068695,0.205339461565018,0.319736123085022,0.941096305847168,0.110029779374599,0.249096095561981,0.952608942985535,-0.174606502056122,0.224080935120583,0.926977217197418,-0.300833851099014,0.286402076482773,0.953929781913757,0.0893978476524353,0.510716795921326,0.859412252902985,0.0240616947412491,0.145127654075623,0.977280020713806,0.154472604393959,0.305843383073807,0.946665346622467,0.101412728428841,0.498611330986023,0.86679083108902,0.00777797400951386,0.585999011993408,0.556345880031586,-0.589138746261597,0.495825856924057,0.868276000022888,0.0159221943467855,0.483881562948227,0.874944508075714,0.0181867908686399,0.297729581594467,0.866814315319061,0.399987637996674,0.491254806518555,0.871013700962067,-0.0019698292016983,0.480257332324982,0.87656831741333,-0.0313191711902618,0.219813913106918,0.975503206253052,-0.00868061184883118,0.469364315271378,0.882482767105103,-0.0303548276424408,0.232875317335129,0.971729159355164,-0.0388785377144814,0.317001670598984,0.922535479068756,0.220086887478828,0.241988480091095,0.970186471939087,-0.0134083675220609,0.339474648237228,0.940269768238068,-0.0254887323826551,0.448625087738037,0.893425166606903,0.0229581892490387,0.639713048934937,0.759787321090698,0.116148538887501,0.622703611850739,0.702593982219696,-0.344386279582977,0.682936191558838,0.582586824893951,0.440670877695084,0.715117037296295,0.68912261724472,0.117123119533062,0.34040442109108,0.729851186275482,0.592825591564178,0.677429795265198,0.673342823982239,0.296139270067215,0.530115008354187,0.718953490257263,0.449537456035614,0.475757598876953,0.879297316074371,-0.0221577435731888,0.550930857658386,0.834212481975555,-0.0237651113420725,
- 0.475046455860138,0.879682064056396,-0.0221420805901289,0.234997615218163,0.915861964225769,0.325535148382187,0.350316494703293,0.738919317722321,0.575566470623016,0.211769759654999,0.937172532081604,0.277238577604294,0.50166243314743,0.741833329200745,0.444992303848267,0.143515601754189,0.831070125102997,0.537332057952881,0.399680435657501,0.780777037143707,0.480253010988235,0.340255916118622,0.729713797569275,0.593079924583435,0.319762498140335,0.775018095970154,0.545067727565765,0.196504414081573,0.942373037338257,0.270775020122528,0.222134083509445,0.608590126037598,0.761757493019104,0.144114017486572,0.684439778327942,0.714684128761292,0.0173096340149641,0.784196734428406,0.620270788669586,0.0869385674595833,0.855674505233765,0.510159850120544,0.164331644773483,0.952345550060272,0.256969004869461,0.0481276102364063,0.78675389289856,0.615387737751007,0.0124273989349604,0.783721387386322,0.620988368988037,0.144208922982216,0.68946385383606,0.709819257259369,0.111834794282913,0.715157747268677,0.689958333969116,0.0956632643938065,0.789188742637634,0.606654405593872,-0.259941816329956,0.445877760648727,0.856518089771271,0.129692018032074,0.810339391231537,0.571428239345551,-0.315870136022568,0.605071246623993,0.730831682682037,-0.22793036699295,0.736252844333649,0.637165248394012,-0.36389097571373,0.515867590904236,0.775541067123413,-0.372917503118515,0.510107755661011,0.775063037872314,-0.384597063064575,0.487083077430725,0.784114301204681,-0.317080318927765,0.608681380748749,0.727301299571991,-0.652587473392487,0.536548137664795,0.53501945734024,-0.625157356262207,0.307452738285065,0.717391908168793,-0.652438461780548,0.518001616001129,0.553171277046204,-0.6352259516716,0.515821039676666,0.574818909168243,-0.35058781504631,0.713256239891052,0.606921672821045,-0.615679025650024,0.533575177192688,0.579859375953674,-0.635546684265137,0.542515814304352,0.549324154853821,-0.592662155628204,0.744607865810394,0.307100564241409,-0.635846376419067,0.53540313243866,0.555916368961334,-0.629666388034821,0.534893155097961,0.563391149044037,
- -0.831572949886322,0.303177267313004,0.465370833873749,-0.627859473228455,0.536459743976593,0.563917934894562,-0.854696989059448,0.42729127407074,0.294813811779022,-0.789935529232025,0.527424573898315,0.312770187854767,-0.572539627552032,0.747125744819641,0.337641209363937,-0.064967580139637,0.993737518787384,-0.0909122154116631,-0.172762617468834,0.610986828804016,-0.772559642791748,-0.076655738055706,0.984725058078766,-0.156334191560745,-0.675053060054779,0.719993829727173,0.160972684621811,-0.706049144268036,0.6907057762146,0.156269699335098,-0.842334389686584,0.523501455783844,0.128136813640594,-0.375357031822205,0.92629212141037,-0.0330146700143814,-0.630358338356018,0.683849096298218,-0.367421805858612,-0.635437786579132,0.674609065055847,-0.375661492347717,-0.51366001367569,0.703873097896576,-0.490628272294998,-0.5204998254776,0.690264046192169,-0.502608776092529,-0.478912472724915,0.76430881023407,-0.431827396154404,-0.854285597801209,0.458686113357544,0.244546949863434,-0.947358012199402,0.252020001411438,-0.197480902075768,-0.902029752731323,0.115104198455811,-0.416045039892197,-0.471171766519547,0.762320697307587,-0.443694055080414,-0.532943248748779,0.631745338439941,-0.562911570072174,-0.498891890048981,0.711256086826324,-0.495198637247086,-0.580361843109131,0.415908813476563,-0.700142860412598,-0.732783496379852,0.549446821212769,-0.401418298482895,-0.735137939453125,0.551649570465088,-0.394024163484573,-0.614069223403931,0.645557403564453,-0.454064607620239,-0.57872200012207,0.599256753921509,-0.553147673606873,-0.526319205760956,0.533378124237061,-0.66219025850296,0.395221173763275,-0.755582690238953,-0.522393524646759,0.387989521026611,-0.830613970756531,-0.399430364370346,0.39536464214325,-0.692584753036499,-0.603335082530975,0.147581547498703,-0.538195669651031,-0.82979828119278,-0.315136611461639,-0.893034219741821,-0.321214884519577,-0.286324024200439,-0.884955763816834,-0.367249071598053,0.617085874080658,-0.556365549564362,-0.556473195552826,0.440424591302872,-0.868625342845917,-0.226971998810768,
- 0.547996044158936,-0.729575335979462,-0.409170120954514,0.574131011962891,-0.609568357467651,-0.546625971794128,0.58036857843399,-0.592311024665833,-0.558873772621155,0.532691180706024,-0.703276515007019,-0.470789074897766,0.741783618927002,-0.406006395816803,-0.533775150775909,0.621607065200806,-0.723547875881195,-0.300138652324677,0.263326376676559,-0.956892251968384,0.122541844844818,0.626713216304779,-0.77140474319458,-0.110296562314034,0.308384388685226,-0.930001437664032,0.199991002678871,0.376666605472565,-0.915342152118683,0.142376974225044,0.166352480649948,-0.853642046451569,-0.493581086397171,0.562169849872589,-0.755135238170624,-0.337247371673584,0.379299700260162,-0.822769641876221,-0.423298865556717,0.462585598230362,-0.68630588054657,-0.561247527599335,0.213561430573463,-0.629933595657349,-0.746709585189819,0.710806727409363,-0.658897280693054,-0.246187269687653,0.626200020313263,-0.773541748523712,-0.0975027084350586,0.58301305770874,-0.799994707107544,-0.14178954064846,0.805664241313934,-0.574772775173187,0.143322795629501,-0.304337441921234,-0.908979892730713,-0.284840852022171,-0.0941996946930885,-0.988617062568665,0.117314882576466,0.341097265481949,-0.537310779094696,0.771329879760742,0.877024173736572,-0.324526071548462,0.354276090860367,0.453409612178802,-0.696652829647064,0.555962800979614,0.601175665855408,-0.610103785991669,0.516102075576782,0.820263385772705,-0.554086983203888,0.141970545053482,0.859031975269318,-0.446657598018646,0.25012218952179,0.627629697322845,-0.764015674591064,-0.149536073207855,0.733251631259918,-0.547160267829895,0.403680235147476,0.19686359167099,-0.840766549110413,0.504337668418884,0.834334909915924,-0.427519530057907,0.348012208938599,-0.760215282440186,-0.645936608314514,0.0695611983537674,-0.230097323656082,-0.73190301656723,-0.641383826732636,0.168910369277,-0.521297097206116,-0.836491823196411,0.671811282634735,-0.418761491775513,-0.610989689826965,0.264024406671524,-0.630635738372803,-0.729787528514862,-0.323719531297684,-0.692284286022186,-0.644940435886383,
- 0.445274263620377,-0.79960960149765,-0.402933359146118,0.303065419197083,-0.823934555053711,-0.47883552312851,0.136071369051933,-0.825292706489563,-0.548066139221191,0.286724269390106,-0.826312243938446,-0.4847651720047,0.446176767349243,-0.800246477127075,-0.400664329528809,0.133477434515953,-0.826232075691223,-0.547288119792938,0.409620076417923,-0.725186944007874,-0.553457617759705,0.395207762718201,-0.760124742984772,-0.515772461891174,0.441195160150528,-0.626261115074158,-0.642762660980225,0.518380403518677,-0.837080836296082,-0.174864202737808,0.11920990049839,-0.883963704109192,-0.452103018760681,0.644186973571777,-0.763084053993225,-0.0522103235125542,0.780638635158539,-0.607848823070526,0.145338147878647,0.766570448875427,-0.338203340768814,-0.545882999897003,0.601015627384186,-0.616863429546356,0.508192718029022,0.559398829936981,-0.821802735328674,-0.108227461576462,0.648106276988983,-0.761393547058105,-0.0154334269464016,0.0995238870382309,-0.888797104358673,-0.447364389896393,0.618364632129669,-0.758839845657349,-0.20441922545433,0.557456076145172,-0.820123314857483,-0.128997594118118,0.288512498140335,-0.946377456188202,0.145362511277199,0.157635152339935,-0.873381793498993,-0.460820376873016,0.781130015850067,-0.598444104194641,0.178046971559525,0.557113587856293,-0.819813191890717,-0.132403895258904,0.845802485942841,-0.402677416801453,0.349956005811691,0.552037298679352,-0.814873337745667,-0.176738321781158,0.79313200712204,-0.582528650760651,0.177769392728806,0.771381974220276,-0.525529742240906,-0.358870953321457,0.331473171710968,-0.931899070739746,0.147274509072304,0.562108337879181,-0.823811888694763,-0.0732685402035713,0.514857292175293,-0.360452711582184,0.77781480550766,0.481980323791504,-0.671627938747406,0.562681972980499,0.358631730079651,-0.908016920089722,0.216537654399872,0.813487648963928,-0.563825011253357,0.142615586519241,0.816511690616608,-0.561184823513031,0.135574668645859,0.467181205749512,-0.648509562015533,0.6009801030159,0.418554395437241,-0.877038419246674,0.235830396413803,
- 0.522903323173523,-0.587488532066345,0.617599606513977,0.527527689933777,-0.369020909070969,0.765204668045044,0.573316872119904,-0.70485532283783,0.417716324329376,0.20719276368618,-0.673816323280334,0.70925509929657,0.824707925319672,-0.56554788351059,0.00356466043740511,0.548020541667938,-0.382868319749832,0.743697047233582,0.455275774002075,-0.652304112911224,0.605989575386047,0.57120817899704,-0.254722595214844,0.780280470848084,0.309259086847305,-0.297480404376984,0.903252124786377,0.504238069057465,-0.639934182167053,0.579851984977722,0.555708229541779,-0.756176948547363,0.345521092414856,0.517375648021698,-0.606277585029602,0.603945374488831,0.194355353713036,-0.6736781001091,0.713010489940643,0.752467155456543,-0.484898000955582,0.445721089839935,0.41837802529335,-0.683818757534027,0.59778904914856,0.303420871496201,-0.844568848609924,0.441179394721985,0.565539360046387,-0.227319106459618,0.792774438858032,0.261462450027466,-0.824069082736969,0.502541124820709,0.270130634307861,-0.78762686252594,0.553780972957611,0.29714035987854,-0.548680603504181,0.781445622444153,0.239369615912437,-0.811672270298004,0.532813549041748,0.273768365383148,-0.569202542304993,0.775280237197876,-0.102123528718948,-0.69733077287674,-0.709436774253845,0.55002748966217,-0.769306719303131,0.325018376111984,0.430074095726013,-0.52607786655426,0.733674645423889,0.289010316133499,-0.287418723106384,0.913161396980286,-0.0463703721761703,-0.51228278875351,0.857564091682434,0.586447477340698,-0.646656811237335,0.487764596939087,-0.130109310150146,-0.472579479217529,0.871630847454071,0.751555681228638,-0.484632760286331,0.447543442249298,0.904662549495697,-0.331643491983414,0.267578512430191,0.515810549259186,-0.607885837554932,0.603667378425598,-0.389370530843735,-0.423959821462631,0.817709386348724,-0.0239871591329575,-0.593631267547607,0.804379642009735,-0.914799213409424,0.176458060741425,0.36332494020462,0.150336846709251,-0.664866507053375,0.731677174568176,0.629185736179352,-0.474012941122055,0.615984737873077,0.595111489295959,-0.495562613010406,0.632661104202271,
- 0.0401280224323273,-0.733670771121979,0.678319215774536,0.623336970806122,-0.487779706716537,0.611164510250092,0.971732795238495,0.230468094348907,0.0511854887008667,-0.671927511692047,0.637479364871979,-0.377005934715271,-0.441221505403519,-0.593745112419128,-0.672896981239319,-0.693853557109833,0.58482950925827,-0.420168787240982,-0.470535129308701,-0.665613353252411,-0.579271554946899,-0.702279806137085,0.64330267906189,-0.304901301860809,-0.353704333305359,-0.771881699562073,-0.528291523456573,-0.463277161121368,-0.647104859352112,-0.605499565601349,-0.277094781398773,-0.787082612514496,-0.5511075258255,0.379663676023483,-0.906920433044434,-0.182622119784355,-0.341381728649139,-0.937882363796234,0.0619289353489876,0.0792052075266838,-0.79085236787796,-0.606860041618347,-0.234061241149902,-0.961409986019135,-0.14459028840065,-0.255622297525406,-0.948235869407654,-0.18843050301075,0.206527158617973,-0.766841351985931,-0.607701480388641,0.33332496881485,-0.645452618598938,-0.687230229377747,0.606054306030273,-0.794569551944733,0.0368430688977242,-0.485647261142731,-0.394389867782593,-0.780130505561829,0.417855769395828,-0.882004141807556,-0.217864990234375,-0.373147428035736,-0.813367187976837,-0.446312516927719,0.64930534362793,-0.760071575641632,0.0263392217457294,0.295183807611465,-0.936016201972961,-0.191677242517471,0.280273199081421,-0.941964507102966,-0.18479660153389,-0.624854922294617,-0.59563010931015,-0.504758477210999,-0.377425253391266,-0.805685818195343,-0.4565309882164,-0.345304280519485,-0.936349749565125,0.0633585453033447,-0.229888588190079,-0.9636390209198,-0.136202186346054,-0.336314678192139,-0.940590739250183,0.0467059537768364,-0.524271130561829,-0.809439063072205,-0.264477610588074,0.473254263401031,-0.837746858596802,-0.272416353225708,0.19260410964489,-0.933051824569702,-0.303838908672333,-0.284862697124481,-0.885906338691711,-0.366091936826706,-0.500137865543365,-0.75058525800705,-0.431837737560272,0.241073399782181,-0.960587739944458,-0.138401016592979,-0.516233861446381,-0.83964878320694,-0.168797940015793,
- -0.283467143774033,-0.888553857803345,-0.360719293355942,-0.769289135932922,-0.622814059257507,0.142467185854912,-0.408549070358276,-0.902068734169006,0.139139294624329,-0.237573236227036,-0.951286256313324,-0.196503251791,-0.414405047893524,-0.897188723087311,0.152711808681488,-0.239473477005959,-0.949464023113251,-0.202905520796776,-0.526658952236176,-0.749972999095917,0.400213629007339,-0.435658782720566,-0.885119318962097,0.163601011037827,-0.396069586277008,-0.866979002952576,0.302450567483902,-0.365371555089951,-0.928173661231995,0.0706918090581894,-0.355631679296494,-0.934443414211273,0.0184892732650042,0.237309902906418,-0.961699366569519,-0.137180015444756,0.259318888187408,-0.957526564598084,-0.126081943511963,-0.282222926616669,-0.89086925983429,-0.355952531099319,-0.388820648193359,-0.886150121688843,0.25210428237915,-0.272252589464188,-0.907988607883453,-0.318488925695419,-0.359435021877289,-0.932390928268433,0.038127139210701,-0.536433160305023,-0.809758424758911,-0.237762480974197,-0.259534537792206,-0.926522552967072,-0.272392719984055,0.444827020168304,-0.859070897102356,-0.253231465816498,-0.294589579105377,-0.947529733181,0.124114625155926,-0.329625248908997,-0.870773434638977,0.364829838275909,-0.301359832286835,-0.939574003219604,0.162428468465805,-0.321830928325653,-0.94439172744751,0.0674475207924843,-0.37688222527504,-0.821242094039917,0.428393810987473,-0.360023200511932,-0.890018343925476,0.279733121395111,0.127247706055641,-0.960964024066925,-0.245675176382065,-0.863057672977448,-0.469181299209595,-0.187083780765533,-0.518963158130646,-0.816140294075012,-0.254150450229645,-0.418229788541794,-0.816883504390717,0.397221684455872,-0.528882205486298,-0.747075021266937,0.402694046497345,-0.345218509435654,-0.853506088256836,0.390322327613831,-0.55443000793457,-0.783997416496277,0.279205441474915,-0.263192981481552,-0.929518640041351,0.258310943841934,-0.303082227706909,-0.91605943441391,0.262633234262466,0.353972613811493,-0.915635526180267,-0.190565124154091,0.195811897516251,-0.957881212234497,-0.210050582885742,
- -0.527858316898346,-0.819706320762634,-0.222367227077484,-0.485959053039551,-0.672990918159485,0.557608306407928,-0.533005237579346,-0.752181172370911,0.387464761734009,-0.551139712333679,-0.7851802110672,0.282377809286118,-0.375345230102539,-0.815681874752045,0.440203338861465,-0.455883324146271,-0.884079217910767,-0.102831989526749,-0.368044555187225,-0.805347919464111,0.464712858200073,-0.610784292221069,-0.745299875736237,0.267340093851089,-0.208154767751694,-0.950647473335266,0.230089038610458,-0.191218137741089,-0.954789280891418,0.227625116705894,-0.428634822368622,-0.405503898859024,0.807365477085114,-0.499296933412552,-0.562275469303131,0.659203290939331,-0.559960842132568,-0.766043424606323,0.31562876701355,-0.54698634147644,-0.786642134189606,0.286356627941132,-0.341960161924362,-0.529877960681915,0.776075065135956,-0.471211314201355,-0.69645756483078,0.541208684444427,-0.202837988734245,-0.94916832447052,0.240699723362923,-0.283651381731033,-0.923078179359436,0.25974714756012,-0.563169419765472,-0.764887154102325,0.312710821628571,-0.312577128410339,-0.904328882694244,0.290662735700607,-0.864224970340729,-0.183249697089195,0.468545615673065,-0.468555629253387,-0.808284759521484,0.356554865837097,-0.329034328460693,-0.341557383537292,0.880383431911469,-0.800019025802612,-0.598782658576965,-0.0378017127513886,-0.502932548522949,-0.456980168819427,0.733640253543854,-0.357670396566391,-0.518660366535187,0.77657163143158,-0.428650766611099,-0.399782508611679,0.810205221176147,-0.277235358953476,-0.629760444164276,0.72563236951828,-0.422175139188766,-0.546931207180023,0.722934603691101,-0.616284012794495,-0.74272346496582,0.261831879615784,-0.36706468462944,-0.487038284540176,0.792500734329224,-0.255888760089874,-0.806393146514893,0.533152043819427,-0.33505842089653,-0.736038565635681,0.588203251361847,-0.564853191375732,-0.420794397592545,0.709840178489685,-0.283771067857742,-0.479261487722397,0.830531418323517,-0.421434551477432,-0.55482417345047,0.717330515384674,-0.317839622497559,-0.499071568250656,0.806167185306549,
- -0.263030260801315,-0.510652363300323,0.818565487861633,0.0641215667128563,-0.25118350982666,0.965813279151917,-0.297039330005646,-0.533887803554535,0.791663765907288,-0.260416984558105,-0.559082090854645,0.787153303623199,-0.485568821430206,-0.0181476175785065,0.87401008605957,-0.266651034355164,-0.548804342746735,0.792282283306122,-0.180395275354385,-0.214520856738091,0.959915816783905,-0.328384578227997,-0.335422694683075,0.882980942726135,-0.489713788032532,-0.463364392518997,0.738561987876892,0.32858744263649,-0.452379882335663,0.829085469245911,0.0104327276349068,0.323255836963654,0.946254134178162,0.173775225877762,-0.0390256270766258,0.984011769294739,-0.112523429095745,-0.882939696311951,0.455802530050278,-0.476841866970062,-0.454121381044388,0.75259256362915,-0.340567141771317,-0.66865873336792,0.660991311073303,-0.338672757148743,-0.697642207145691,0.631344735622406,0.329211264848709,-0.452603042125702,0.828716158866882,-0.00279618031345308,-0.617985427379608,0.786184549331665,-0.276056945323944,-0.775289535522461,0.56808340549469,0.713479101657867,-0.412101715803146,0.5666743516922,0.740768909454346,-0.383859485387802,0.551283478736877,0.0761993005871773,-0.355969309806824,0.931385815143585,-0.000289592891931534,-0.176556140184402,0.984290540218353,0.159421652555466,-0.542361855506897,0.82488077878952,0.363029718399048,-0.298080325126648,0.882812321186066,0.431767106056213,-0.248003780841827,0.867220520973206,-0.112076967954636,-0.549434185028076,0.827986121177673,0.336204707622528,0.325174361467361,0.883871018886566,0.623701274394989,-0.454696774482727,0.63580459356308,0.627348124980927,-0.531955242156982,0.568733692169189,0.486851185560226,-0.339503645896912,0.804806351661682,-0.00279618031345308,-0.617985427379608,0.786184549331665,0.329211264848709,-0.452603042125702,0.828716158866882,0.770026385784149,-0.588271975517273,0.246972694993019,0.439663469791412,0.626487612724304,0.643591046333313,0.554293036460876,0.504197955131531,0.662226378917694,0.781132280826569,-0.600784718990326,0.169970884919167,
- 0.554839193820953,0.497471749782562,0.666839897632599,0.86457347869873,-0.213472113013268,0.454909086227417,0.803253412246704,-0.38978323340416,0.450392127037048,0.257664203643799,0.758944630622864,0.598006844520569,0.535608172416687,0.492199420928955,0.686195015907288,0.0670671761035919,-0.389365494251251,0.918638408184052,0.366442233324051,-0.240889072418213,0.898717164993286,0.452236890792847,-0.188596844673157,0.871729969978333,0.536421418190002,0.483101785182953,0.692000567913055,0.794304966926575,-0.512511432170868,0.326208353042603,0.821040630340576,-0.390522390604019,0.416394799947739,0.453202724456787,-0.185492143034935,0.871894478797913,0.350102931261063,-0.227648913860321,0.908627510070801,0.928747951984406,0.13748437166214,0.344275236129761,0.420116364955902,-0.277885377407074,0.863876104354858,0.373100608587265,-0.301018387079239,0.877601206302643,0.429623365402222,-0.273031651973724,0.860742449760437,0.842749297618866,-0.535578966140747,0.0541172511875629,0.908331751823425,-0.380518525838852,0.173606544733047,0.930502414703369,-0.0854506865143776,0.356179147958755,0.356320679187775,-0.420834571123123,0.834226548671722,0.560847222805023,-0.356426239013672,0.747268915176392,0.874125421047211,-0.171443492174149,0.454435735940933,0.743689358234406,-0.472624957561493,0.472812652587891,0.988553047180176,-0.0965119451284409,0.115966968238354,0.781883955001831,-0.439694315195084,0.441957741975784,0.781500399112701,-0.440469801425934,0.441863715648651,0.732427895069122,-0.145102098584175,0.665202856063843,0.761668801307678,-0.579618752002716,0.289659708738327,0.853303909301758,-0.393148839473724,0.342500627040863,0.713567852973938,-0.533902049064636,0.453618168830872,0.886720597743988,-0.346862137317657,0.305635750293732,0.844420969486237,-0.497807770967484,-0.197840064764023,0.881368219852448,0.239738017320633,0.407082229852676,0.981932699680328,-0.147555187344551,0.118472211062908,0.890034019947052,-0.455832213163376,-0.00751367956399918,0.947499811649323,-0.294737964868546,0.123991280794144,0.866506457328796,-0.497194826602936,-0.044317401945591,
- 0.924876153469086,-0.132533550262451,0.35642546415329,0.814873039722443,-0.578595280647278,-0.0347770303487778,0.84393048286438,-0.536329567432404,0.0114886248484254,0.900662243366241,-0.403049260377884,0.162354171276093,0.954112589359283,-0.297426789999008,-0.0347346775233746,0.812532544136047,-0.479520678520203,0.331437736749649,0.749992847442627,-0.476630926132202,0.458621561527252,0.956546008586884,-0.284567475318909,0.0635699108242989,0.939815759658813,-0.318143486976624,0.12462355941534,0.746419131755829,-0.474359780550003,-0.466734647750854,0.998105823993683,0.0533744543790817,-0.030595863237977,0.841206729412079,-0.37570333480835,-0.388867884874344,0.956193208694458,0.279029756784439,0.0885275155305862,0.68766576051712,-0.0127214044332504,0.725916028022766,0.925412118434906,0.346848666667938,-0.152671307325363,0.956638753414154,-0.282408028841019,0.071330301463604,0.940391361713409,0.0488595888018608,-0.336566388607025,0.983432531356812,-0.151291459798813,-0.099856935441494,0.488081574440002,-0.871583938598633,0.0460202805697918,0.785811841487885,0.270640462636948,0.556105732917786,0.853135228157043,-0.284700304269791,0.437156796455383,0.925343930721283,-0.360955208539963,-0.115974269807339,0.899191856384277,-0.436137288808823,-0.0351893082261086,0.88942539691925,-0.456932485103607,-0.0116300359368324,0.261328935623169,-0.678447127342224,-0.686597943305969,0.821266651153564,0.546428978443146,-0.164123475551605,0.865479171276093,0.395981162786484,-0.306830167770386,0.833050966262817,-0.478168368339539,-0.278174757957459,0.311517298221588,-0.942698657512665,-0.119482845067978,0.0270843114703894,-0.999213874340057,-0.0289521981030703,0.995827078819275,-0.0851981490850449,-0.0327063351869583,0.823101758956909,-0.499505937099457,-0.270180016756058,0.92227578163147,-0.342301398515701,-0.179547280073166,0.99817019701004,0.0521442368626595,-0.0306172631680965,0.975112438201904,-0.0966978818178177,0.199512451887131,0.863928318023682,0.292087882757187,-0.410259246826172,-0.275464117527008,-0.925491631031036,0.259970635175705,
- -0.147742733359337,-0.936004519462585,0.319480270147324,0.882529735565186,-0.153742864727974,0.444414734840393,0.577041506767273,0.079445868730545,-0.812841594219208,0.894885063171387,-0.298618078231812,-0.331674546003342,0.909266114234924,-0.387700378894806,-0.151405110955238,0.721603751182556,-0.68264102935791,-0.115279495716095,0.750562071800232,-0.601332783699036,-0.273962497711182,0.736362755298615,-0.389003604650497,-0.553575694561005,0.348793029785156,-0.816787540912628,-0.4595667719841,0.757168173789978,-0.387722611427307,-0.525706708431244,0.411353528499603,-0.775968670845032,-0.478184998035431,0.67701917886734,-0.692789018154144,-0.248371735215187,0.681528210639954,-0.712856829166412,-0.165392071008682,0.586523354053497,-0.527205407619476,-0.614853620529175,0.620211124420166,-0.748852908611298,-0.233575597405434,0.453919023275375,-0.45264732837677,-0.767507612705231,0.550414323806763,-0.605851054191589,-0.574446380138397,0.0861452147364616,-0.99201774597168,-0.0920862779021263,0.853918254375458,-0.518857598304749,-0.0401314049959183,0.958945631980896,-0.283080250024796,-0.0169985126703978,0.240457430481911,-0.678905010223389,-0.693735003471375,0.323519051074982,-0.849406599998474,-0.416945964097977,0.334961235523224,-0.870604515075684,-0.360345453023911,0.00932824518531561,-0.85297954082489,-0.521860897541046,0.671578884124756,-0.183327153325081,-0.717894792556763,0.410945236682892,-0.567599415779114,-0.713410794734955,0.377477705478668,-0.822539508342743,-0.425369501113892,0.0486302673816681,-0.933606266975403,-0.354985147714615,0.394783973693848,-0.813113927841187,-0.427774995565414,0.805975675582886,-0.584118068218231,-0.0959652364253998,0.238968968391418,0.0659092888236046,-0.968787908554077,0.580154061317444,-0.240121886134148,-0.778307616710663,0.513166844844818,-0.210034221410751,-0.83219313621521,0.822063028812408,-0.567786872386932,0.0427843183279037,0.814733743667603,-0.571784317493439,0.0962894111871719,-0.409281611442566,-0.847904741764069,-0.336966097354889,-0.069136381149292,-0.746151566505432,-0.662176847457886,
- 0.170724734663963,-0.579874336719513,-0.796617150306702,-0.345317929983139,-0.879989385604858,-0.326150923967361,-0.0823683813214302,-0.990654051303864,0.108720242977142,-0.113080203533173,-0.99169534444809,0.061264980584383,0.187770068645477,-0.896650075912476,-0.400949984788895,-0.147348955273628,-0.965827941894531,-0.213224560022354,0.269238412380219,-0.85700911283493,-0.439370036125183,-0.110341340303421,-0.949361503124237,0.294172585010529,-0.545294880867004,-0.622519373893738,-0.561358332633972,-0.441104799509048,-0.852176904678345,-0.281462371349335,0.124550551176071,-0.983032286167145,-0.134665474295616,-0.0408088155090809,-0.997751355171204,-0.0531686395406723,0.112700261175632,-0.985231459140778,-0.128909453749657,-0.00150755047798157,-0.898163318634033,-0.43965944647789,-0.233555555343628,-0.923572540283203,-0.304081559181213,0.0816972553730011,-0.873186767101288,-0.480489879846573,-0.690664112567902,-0.648209631443024,-0.320635914802551,-0.174329981207848,-0.309674650430679,0.934724986553192,-0.234566390514374,-0.365355461835861,0.900829613208771,-0.423507869243622,-0.90107136964798,0.0933348685503006,-0.218112453818321,-0.779775559902191,0.586836576461792,-0.499217987060547,-0.792803764343262,-0.349633455276489,0.171490550041199,-0.965761780738831,-0.194666832685471,-0.0768167078495026,-0.996876657009125,-0.0183338969945908,-0.289477348327637,-0.947137475013733,0.138324290513992,-0.0755277797579765,-0.974923431873322,0.20933173596859,-0.10070775449276,-0.980217337608337,0.170387431979179,-0.0826478824019432,-0.976632118225098,0.198391526937485,0.00448166951537132,-0.974925220012665,0.222487658262253,0.0021794366184622,-0.974583506584167,0.224014326930046,0.376880824565887,-0.924975037574768,-0.048806369304657,-0.0952290147542953,-0.990422964096069,0.0999697893857956,-0.302031010389328,-0.919517636299133,-0.251524895429611,-0.0176877249032259,-0.975104451179504,0.221039831638336,-0.368681579828262,-0.916875660419464,0.153012856841087,0.150569677352905,-0.953680455684662,-0.260427206754684,0.0522417277097702,-0.980925023555756,-0.187235251069069,
- 0.0510218255221844,-0.981700360774994,-0.18347030878067,-0.13931468129158,-0.988502085208893,-0.0587797537446022,-0.419713079929352,-0.896726012229919,0.140440806746483,-0.099402591586113,-0.953672707080841,0.283949762582779,-0.164328441023827,-0.970589697360992,0.175931170582771,-0.105963319540024,-0.956057250499725,0.273361504077911,-0.0695308372378349,-0.995574593544006,-0.0632195174694061,-0.43203267455101,-0.887119472026825,0.162379309535027,-0.359531968832016,-0.925961792469025,0.115462310612202,-0.19490659236908,-0.952184081077576,0.235280483961105,-0.126242309808731,-0.92119425535202,0.36805447936058,-0.188156336545944,-0.950055122375488,0.248983263969421,-0.227947235107422,-0.944549918174744,0.23635932803154,-0.195944845676422,-0.92738288640976,0.318695396184921,-0.204497009515762,-0.932615399360657,0.297337591648102,-0.0534060522913933,-0.975050151348114,0.215464666485786,-0.152253210544586,-0.98736971616745,0.043819785118103,-0.100492358207703,-0.985705673694611,0.135224372148514,-0.228924214839935,-0.944392740726471,0.236042410135269,-0.103254482150078,-0.982659220695496,0.15401092171669,-0.220214366912842,-0.947844803333282,0.230425328016281,-0.365045309066772,-0.918184697628021,0.153879597783089,-0.0292489528656006,-0.882128119468689,-0.470100492238998,-0.277704983949661,-0.959878921508789,-0.0388896018266678,0.0796229988336563,-0.861162960529327,-0.502054333686829,0.109705902636051,-0.964915871620178,0.238541439175606,0.108674801886082,-0.989541590213776,0.0948538109660149,-0.393441051244736,-0.91577410697937,-0.0810055360198021,-0.12396539747715,-0.984566569328308,-0.123536422848701,0.198624312877655,-0.966867446899414,-0.160361215472221,-0.244658678770065,-0.642304360866547,0.726352155208588,0.665149211883545,-0.681364715099335,0.305481225252151,0.693839609622955,-0.66519570350647,0.2758649289608,0.218381837010384,-0.973633229732513,-0.0659377425909042,-0.225040525197983,-0.945010781288147,0.237300038337708,-0.221891283988953,-0.946270167827606,0.235238194465637,-0.00712626334279776,-0.949958443641663,-0.312294870615005,
- 0.288526296615601,-0.945053696632385,0.153707936406136,0.210741132497787,-0.977310061454773,0.0212892405688763,-0.877049326896667,-0.392673522233963,-0.276752531528473,-0.748162746429443,-0.0979520380496979,-0.656245350837708,0.0200905054807663,-0.481658130884171,0.876128911972046,0.388656884431839,-0.842610061168671,0.372765749692917,-0.173075139522552,0.393600553274155,0.902842044830322,0.403024405241013,-0.884446740150452,-0.235213130712509,0.130720168352127,-0.16592875123024,-0.97743546962738,0.595901072025299,-0.77386349439621,0.214562982320786,0.176413923501968,-0.225279152393341,-0.95818966627121,-0.623401761054993,-0.452231168746948,0.637853622436523,0.195927411317825,-0.534383356571198,-0.822220683097839,-0.38136824965477,-0.905214488506317,-0.187470391392708,0.825854122638702,-0.509642243385315,0.241308555006981,0.109182447195053,-0.776979565620422,0.619985461235046,-0.944194614887238,-0.120245203375816,0.306655585765839,0.212000176310539,-0.887790739536285,0.408513844013214,-0.0513695552945137,-0.979573726654053,0.194413393735886,-0.472337484359741,-0.85493403673172,-0.214441433548927,0.247124120593071,-0.924743831157684,0.289445281028748,-0.220764517784119,-0.965521156787872,-0.137956246733665,0.706831455230713,0.325814068317413,0.627881050109863,0.392055988311768,-0.349745392799377,-0.850864350795746,0.404081761837006,-0.371207505464554,-0.836016178131104,0.344121396541595,-0.674095630645752,0.653586685657501,0.420066595077515,-0.283985674381256,-0.861914217472076,0.449781149625778,-0.376117318868637,-0.810081958770752,0.412348985671997,-0.261837989091873,-0.872587621212006,0.17502261698246,-0.834396481513977,-0.522637069225311,-0.226006835699081,-0.474653661251068,-0.850661516189575,-0.341574460268021,-0.311505615711212,-0.886730551719666,-0.219320118427277,-0.441767990589142,-0.869907915592194,-0.223267838358879,-0.434127271175385,-0.872745752334595,-0.27962988615036,-0.316670954227448,-0.906381130218506,-0.0688759759068489,0.162920638918877,-0.984232187271118,0.637677609920502,-0.52640300989151,-0.562376439571381,
- 0.532638013362885,-0.412353724241257,-0.739094853401184,-0.45940500497818,-0.411733031272888,-0.787034273147583,-0.246632054448128,-0.583544909954071,-0.773723483085632,-0.583646953105927,-0.278373003005981,-0.762800633907318,-0.275691121816635,-0.782182693481445,-0.558734834194183,0.294980138540268,-0.630895674228668,-0.717605352401733,0.749711394309998,-0.251413315534592,-0.612147212028503,0.752495229244232,-0.251640498638153,-0.608627915382385,0.30500203371048,-0.608346939086914,-0.732726275920868,0.804799199104309,0.572440624237061,0.156875669956207,0.442114293575287,-0.418776363134384,-0.7931969165802,-0.665872871875763,0.0663715973496437,-0.743107080459595,-0.780543327331543,0.155135437846184,-0.605545461177826,-0.519173324108124,-0.410082876682281,-0.749860763549805,-0.169256180524826,-0.217966958880425,-0.961167395114899,-0.294473439455032,-0.289672523736954,-0.910700500011444,-0.0540455654263496,-0.108312048017979,-0.992646813392639,-0.282909542322159,-0.292643666267395,-0.91341233253479,-0.164442792534828,-0.197989508509636,-0.966311931610107,-0.636963605880737,-0.17222648859024,-0.751408934593201,-0.610332489013672,-0.38097482919693,-0.694516062736511,-0.638632476329803,-0.13072070479393,-0.758327662944794,-0.179188549518585,-0.0668540671467781,-0.981540620326996,-0.153561800718308,-0.0838643535971642,-0.984573781490326,0.452640354633331,-0.434770941734314,-0.778518557548523,-0.613904297351837,0.0486588180065155,-0.787879407405853,-0.279949009418488,-0.423643231391907,-0.861484169960022,-0.426392287015915,-0.251695036888123,-0.868814945220947,-0.519257962703705,0.00418882071971893,-0.854607284069061,-0.386826694011688,-0.263907581567764,-0.883582413196564,-0.280833542346954,-0.427261531352997,-0.859406888484955,0.19260960817337,-0.0687727704644203,-0.978862524032593,-0.0984157770872116,-0.323948830366135,-0.94094181060791,-0.291589021682739,-0.472392290830612,-0.831757962703705,-0.245776772499084,-0.292168796062469,-0.924246370792389,-0.388635337352753,-0.306586176156998,-0.86888861656189,-0.653785049915314,-0.313080728054047,-0.688872754573822,
- -0.574230015277863,-0.176740080118179,-0.799389064311981,-0.104988053441048,0.154313877224922,-0.982428014278412,-0.702975630760193,-0.289817065000534,-0.649485468864441,-0.630015969276428,-0.323371380567551,-0.706053078174591,-0.624769747257233,-0.321807473897934,-0.711409032344818,-0.601940035820007,-0.314912259578705,-0.733824610710144,-0.161966353654861,0.964303493499756,-0.20948925614357,-0.19744299352169,0.959565877914429,-0.20062343776226,-0.115130700170994,0.968527615070343,-0.220679014921188,-0.303244948387146,0.916280388832092,-0.261673033237457,-0.0410922020673752,0.939594864845276,-0.339813143014908,-0.427851676940918,0.878052353858948,-0.214399293065071,-0.420005768537521,0.87935483455658,-0.224343925714493,-0.584802567958832,0.789817631244659,-0.184916526079178,-0.281535267829895,0.926608860492706,-0.249266728758812,-0.410152673721313,0.906181693077087,0.103002563118935,-0.435035556554794,0.872738480567932,-0.221521407365799,-0.434892922639847,0.876750707626343,-0.20536869764328,-0.133366733789444,0.984151661396027,-0.116870880126953,-0.11021263897419,0.992924094200134,0.0442163906991482,-0.147257387638092,0.96292781829834,-0.226020991802216,-0.256359666585922,0.950205743312836,-0.177169159054756,-0.351168930530548,0.924177050590515,-0.150257080793381,-0.209149211645126,0.95932149887085,-0.18962836265564,-0.496037036180496,0.854584693908691,-0.153728067874908,-0.53119421005249,0.835878074169159,-0.138349801301956,-0.463729798793793,0.870040535926819,-0.167284935712814,-0.549978196620941,0.820781886577606,-0.154405683279037,-0.478583961725235,0.85541307926178,-0.198055773973465,-0.659883737564087,0.747296869754791,-0.0781086906790733,-0.392470866441727,0.900950849056244,-0.185078978538513,-0.226177632808685,0.944316685199738,-0.238976150751114,-0.371946752071381,0.908117771148682,-0.192295864224434,-0.255652725696564,0.920227825641632,-0.296348571777344,-0.263738453388214,0.88688451051712,-0.379312425851822,-0.244355067610741,0.948379755020142,-0.202155023813248,-0.407020747661591,0.905245304107666,-0.121922440826893,
- -0.411385416984558,0.830934822559357,-0.374579191207886,-0.412853598594666,0.851502358913422,-0.323257923126221,-0.422468364238739,0.905613481998444,0.0372135080397129,-0.437845408916473,0.876166880130768,-0.201551720499992,-0.437984943389893,0.870610296726227,-0.224069118499756,-0.514361083507538,0.852227449417114,-0.0956092476844788,-0.473280549049377,0.880507707595825,0.0266782082617283,-0.515604913234711,0.85099995136261,-0.0997536405920982,-0.386859476566315,0.90760350227356,-0.163081586360931,-0.582156777381897,0.805180668830872,-0.113038040697575,-0.370694875717163,0.913679897785187,-0.166656702756882,-0.413107097148895,0.85132622718811,-0.323398172855377,-0.405354976654053,0.786076903343201,-0.466658800840378,-0.407509416341782,0.905162751674652,-0.120899446308613,-0.598448872566223,0.798450946807861,-0.0658412948250771,-0.662361741065979,0.748996019363403,-0.016791433095932,-0.402221083641052,0.894887983798981,-0.193374812602997,-0.58862429857254,0.802823841571808,-0.0948437601327896,-0.587105214595795,0.694068193435669,-0.416625559329987,-0.593202114105225,0.790843963623047,-0.150589272379875,-0.43090432882309,0.899064481258392,0.0774887800216675,-0.545772314071655,0.812448859214783,-0.205084174871445,-0.50222909450531,0.860678195953369,-0.0836607366800308,-0.353667914867401,0.92828506231308,0.114916935563087,-0.363284796476364,0.929392516613007,0.0652218237519264,-0.403748422861099,0.785452663898468,-0.469096422195435,-0.280700534582138,0.955485224723816,0.0908585786819458,-0.410234957933426,0.787938714027405,-0.459194898605347,-0.293695360422134,0.954532086849213,0.0511028170585632,-0.635738968849182,0.769054532051086,0.0662656128406525,-0.481437265872955,0.853937447071075,0.197507068514824,-0.0878928378224373,0.89510190486908,0.43711245059967,-0.619371652603149,0.785092651844025,0.00288540101610124,-0.539560914039612,0.838512182235718,-0.0759710296988487,-0.612284481525421,0.790624678134918,-0.00451727956533432,-0.260903149843216,0.92628288269043,0.271900057792664,-0.563004910945892,0.790217995643616,0.242035120725632,
- -0.0304831266403198,0.960968673229218,0.274972975254059,-0.0526168569922447,0.88260555267334,0.467160701751709,-0.379042148590088,0.819128274917603,0.430530071258545,-0.216002359986305,0.863588988780975,0.455584526062012,-0.42946395277977,0.783560574054718,0.448991656303406,-0.342535823583603,0.785302042961121,0.515722751617432,-0.0107042789459229,0.717103600502014,0.696884393692017,-0.0919215679168701,0.743644773960114,0.662225782871246,-0.0107042789459229,0.717103600502014,0.696884393692017,-0.342535823583603,0.785302042961121,0.515722751617432,-0.244090169668198,0.94463586807251,0.219278663396835,-0.252825647592545,0.965001583099365,0.0696506649255753,-0.237217009067535,0.925143718719482,0.296373307704926,-0.304468095302582,0.896620333194733,0.32151398062706,-0.293715119361877,0.925283670425415,0.239961639046669,-0.293337255716324,0.926078677177429,0.237342849373817,0.099716953933239,0.708556234836578,0.698573291301727,-0.210007593035698,0.860616445541382,0.463935524225235,0.0147515404969454,0.763775408267975,0.645313620567322,-0.212640851736069,0.827081263065338,0.520307958126068,0.097018837928772,0.725300490856171,0.681561887264252,0.0121079757809639,0.763387620449066,0.645827293395996,-0.475929141044617,0.823692679405212,0.30825611948967,0.097018837928772,0.725300490856171,0.681561887264252,-0.212640851736069,0.827081263065338,0.520307958126068,-0.134394630789757,0.972106516361237,0.192215979099274,-0.00965307559818029,-0.993168711662292,-0.116287164390087,-0.266966462135315,0.92822277545929,0.259097427129745,-0.0309919603168964,0.742341935634613,0.669304072856903,-0.0346541255712509,0.73865270614624,0.673194885253906,0.0754748061299324,0.835368633270264,0.54448390007019,0.35086852312088,0.934746623039246,-0.0560376271605492,-0.0635500773787498,0.763140022754669,0.64310097694397,-0.0887707322835922,0.734206318855286,0.673097968101501,0.0770885273814201,0.828392565250397,0.554818212985992,-0.617613434791565,0.719984352588654,0.316506326198578,0.979301333427429,-0.139218300580978,0.146925866603851,-0.878352165222168,0.330603629350662,0.345251679420471,
- -0.8378666639328,0.391313195228577,0.380596518516541,0.794137001037598,0.549197614192963,0.260247111320496,-0.211053788661957,0.814794778823853,0.539968371391296,0.0224900636821985,0.979396224021912,0.200691789388657,0.0157554727047682,0.977332055568695,0.211125016212463,-0.359855026006699,0.660410165786743,0.659062147140503,0.0250393524765968,0.975759983062744,0.217406213283539,-0.249545231461525,0.800277650356293,0.545236527919769,-0.44403612613678,0.889298915863037,0.109450601041317,0.420190155506134,-0.898256778717041,-0.128744080662727,0.115162581205368,0.878408670425415,0.46382749080658,0.0922576412558556,0.930385172367096,0.354784339666367,0.264615416526794,0.874505221843719,0.406471848487854,-0.48256641626358,0.870308220386505,0.0984553247690201,0.0509331673383713,-0.951190114021301,0.304373800754547,0.0262899734079838,0.994534909725189,-0.101040601730347,0.104708030819893,0.987920165061951,0.114237330853939,0.123566403985024,0.854713916778564,0.504177987575531,0.634419441223145,0.766846358776093,-0.0972566828131676,0.609773874282837,0.790757596492767,-0.05365139991045,-0.0223372057080269,0.864615559577942,0.50193727016449,0.148375734686852,0.766689598560333,0.624637424945831,0.119190737605095,0.786737382411957,0.605671346187592,-0.0105305602774024,0.982659637928009,0.18511937558651,0.0156054263934493,0.989315688610077,0.144951999187469,0.0395095869898796,0.993379950523376,0.107867740094662,0.0941963717341423,0.862897038459778,0.496523857116699,0.326342731714249,0.735024631023407,0.594339311122894,0.0601446107029915,0.875653684139252,0.479179710149765,0.064487099647522,0.928786396980286,0.364961981773376,0.280922681093216,0.955988168716431,0.084670215845108,-0.027442779392004,0.883518397808075,0.467591851949692,0.0644632279872894,0.928829908370972,0.36485555768013,0.0251677744090557,0.888242483139038,0.458684980869293,-0.069409616291523,0.748660624027252,0.659309983253479,0.166039794683456,0.569894790649414,0.804767489433289,0.0759982317686081,0.616546809673309,0.783641695976257,-0.189637288451195,0.713804662227631,0.674181520938873,
- -0.332962095737457,0.662988066673279,0.67050963640213,-0.097331628203392,0.870758295059204,0.481981873512268,0.0569140389561653,0.94186007976532,0.331150352954865,-0.48039236664772,0.818928837776184,0.313972771167755,-0.0942275673151016,0.733305633068085,0.673337996006012,0.0595233961939812,0.646751046180725,0.760374903678894,-0.092459537088871,0.865557253360748,0.492201060056686,-0.285303860902786,0.683033347129822,0.67235940694809,-0.129976898431778,0.837664842605591,0.530493795871735,-0.118413552641869,0.839332580566406,0.530564844608307,-0.0985698252916336,0.853873133659363,0.511062324047089,-0.0883104503154755,0.861034631729126,0.500820100307465,-0.367830842733383,0.906894207000732,0.205532178282738,-0.228341728448868,0.950076997280121,0.21263575553894,-0.209830582141876,0.954204261302948,0.213226169347763,-0.234325766563416,0.898759245872498,0.370571732521057,-0.239263638854027,0.816022634506226,0.526174902915955,-0.228618949651718,0.931920528411865,0.281527251005173,-0.236979007720947,0.947133839130402,0.216283708810806,-0.365052819252014,0.907157421112061,0.209289222955704,-0.273028135299683,0.937734603881836,0.214730933308601,-0.270271360874176,0.912412941455841,0.307337015867233,-0.257580518722534,0.936562597751617,0.237703129649162,-0.273357808589935,0.905214846134186,0.325363785028458,-0.496372818946838,0.846994578838348,-0.190300285816193,-0.0122147705405951,0.993916034698486,0.109461948275566,-0.00405213981866837,0.993452966213226,0.114170879125595,-0.390020728111267,0.920516610145569,0.0230870991945267,-0.424774885177612,0.81245219707489,0.399359136819839,-0.409599155187607,0.898317873477936,0.158913671970367,-0.504706025123596,0.863060832023621,0.0199474990367889,0.553139746189117,-0.762983798980713,0.334502875804901,-0.524400770664215,0.848275899887085,-0.0737009271979332,-0.300969779491425,0.938007473945618,0.171928495168686,-0.278691232204437,0.956172466278076,0.0898085236549377,-0.265869468450546,0.962936103343964,0.0454703979194164,-0.49608513712883,0.847310423851013,-0.18964384496212,-0.66148316860199,0.745797097682953,-0.0789101645350456,
- -0.477559417486191,0.855401754379272,-0.20056140422821,-0.230462163686752,0.967577338218689,0.103350237011909,-0.253106117248535,0.936092972755432,0.244268923997879,-0.21801446378231,0.975288689136505,0.0358005836606026,0.341527432203293,-0.422960430383682,-0.839323341846466,0.560373306274414,-0.749232172966003,-0.353033900260925,0.582823991775513,-0.788449287414551,-0.196631371974945,0.485148072242737,-0.825600802898407,-0.288122713565826,0.526421964168549,-0.416525155305862,-0.741206288337708,0.483014285564423,-0.185807690024376,-0.855670928955078,0.838211357593536,-0.341513276100159,-0.425170987844467,0.710391402244568,-0.452897012233734,-0.538728475570679,0.669334769248962,-0.48069766163826,-0.566498756408691,0.497804433107376,-0.745537459850311,-0.44313046336174,0.457560122013092,-0.848837494850159,-0.264789640903473,0.460012078285217,-0.155601441860199,-0.874172270298004,0.441326797008514,-0.861480355262756,-0.251161992549896,0.366024971008301,-0.729242384433746,-0.578127503395081,0.352838307619095,-0.705268025398254,-0.6149001121521,0.688802778720856,-0.524381935596466,-0.500574171543121,0.657566130161285,-0.507056176662445,-0.557226121425629,0.663056313991547,-0.510146200656891,-0.547820389270782,0.805362820625305,-0.251449912786484,-0.536808788776398,0.677132666110992,-0.507127404212952,-0.533210217952728,0.712227284908295,-0.45088005065918,-0.5379958152771,0.680146932601929,-0.506444752216339,-0.530013084411621,0.785932600498199,-0.393364906311035,-0.477047264575958,0.727552831172943,-0.45982813835144,-0.509141445159912,0.340366572141647,-0.725377678871155,-0.598312497138977,0.680146932601929,-0.506444752216339,-0.530013084411621,0.727552831172943,-0.45982813835144,-0.509141445159912,0.688615500926971,-0.504455924034119,-0.520896255970001,0.593499958515167,-0.455580323934555,-0.663478970527649,0.677967607975006,-0.499245524406433,-0.539549708366394,0.80428808927536,-0.172123372554779,-0.568765640258789,0.631733000278473,-0.515928566455841,-0.578559577465057,0.228030040860176,-0.866363644599915,-0.444315671920776,
- 0.177056416869164,-0.669663429260254,-0.721250295639038,0.678939759731293,-0.501406848430634,-0.536313414573669,0.382012635469437,-0.629540145397186,-0.676568984985352,0.228030040860176,-0.866363644599915,-0.444315671920776,0.575802147388458,-0.587978184223175,-0.568096578121185,0.80428808927536,-0.172123372554779,-0.568765640258789,-0.170649215579033,-0.46596747636795,-0.868189573287964,0.49673792719841,-0.353578120470047,-0.792612075805664,0.121402353048325,-0.443922817707062,-0.88780289888382,0.120137296617031,-0.446822226047516,-0.886519551277161,-0.0690178945660591,-0.48677870631218,-0.870794475078583,-0.102198533713818,-0.491941541433334,-0.864609122276306,-0.0504382885992527,-0.67876672744751,-0.73261970281601,0.177056416869164,-0.669663429260254,-0.721250295639038,0.382012635469437,-0.629540145397186,-0.676568984985352,-0.18861697614193,-0.868736028671265,-0.45795339345932,-0.209601014852524,-0.836754202842712,-0.50587522983551,-0.363518536090851,-0.376596629619598,-0.852073550224304,0.122403368353844,-0.645901560783386,-0.7535440325737,0.103790119290352,-0.61990886926651,-0.777779221534729,0.26992729306221,-0.821293711662292,-0.502609193325043,-0.137443959712982,-0.49688521027565,-0.856863141059875,0.0764410421252251,-0.438833564519882,-0.895311117172241,-0.123855978250504,-0.493899434804916,-0.860652685165405,-0.235616728663445,-0.951695144176483,-0.196878492832184,-0.0818783864378929,-0.996591329574585,0.0100911231711507,-0.60847795009613,-0.0563298240303993,-0.791568994522095,-0.711886942386627,0.092677615582943,-0.696152150630951,-0.316306829452515,-0.898014485836029,-0.305810511112213,-0.22811096906662,-0.948588967323303,-0.21941813826561,0.0678337886929512,-0.45701014995575,-0.886871039867401,-0.137493371963501,-0.507949233055115,-0.850342988967896,-0.110449448227882,-0.502505242824554,-0.857490181922913,-0.246236622333527,-0.807078838348389,-0.536648273468018,-0.299029737710953,-0.366908669471741,-0.880885422229767,-0.28670859336853,-0.0520872175693512,-0.956600844860077,-0.129889070987701,-0.798048257827759,-0.588428199291229,
- -0.322169929742813,-0.397900819778442,-0.859000265598297,0.352553188800812,-0.81110543012619,0.466705709695816,-0.197310894727707,-0.352250665426254,-0.91487044095993,-0.0620547086000443,-0.885499835014343,-0.460477381944656,-0.145352244377136,-0.635969221591949,-0.757902324199677,-0.122282318770885,-0.592425107955933,-0.796291172504425,-0.207995027303696,-0.639558970928192,-0.740069150924683,-0.0116264214739203,-0.521987676620483,-0.852873742580414,-0.183314204216003,-0.460846185684204,-0.868341326713562,0.484051614999771,-0.713943600654602,-0.505943357944489,-0.147443830966949,-0.48392578959465,-0.862598478794098,-0.0302249789237976,-0.695851027965546,-0.717549920082092,-0.206119805574417,-0.743298709392548,-0.636413097381592,0.100081235170364,-0.643245697021484,-0.759090721607208,0.0172842480242252,-0.681407809257507,-0.731699764728546,-0.0258333049714565,-0.696927726268768,-0.716675937175751,0.0974851101636887,-0.64827287197113,-0.75514167547226,0.124778129160404,-0.724810540676117,-0.677554547786713,0.00942379049956799,-0.916928470134735,-0.398940414190292,-0.0213718116283417,-0.948337852954865,-0.31654167175293,0.400706112384796,-0.727507352828979,-0.556927025318146,0.354920625686646,-0.710203886032104,-0.60798180103302,-0.209167569875717,-0.317841440439224,-0.924784183502197,0.223502591252327,-0.82581615447998,-0.517758965492249,0.00305864866822958,-0.991576969623566,-0.129482790827751,0.269275724887848,0.880740880966187,-0.389597654342651,-0.144040450453758,-0.492220848798752,-0.858470141887665,-0.168419197201729,-0.926369547843933,-0.336859911680222,-0.164276793599129,-0.962226092815399,-0.217104285955429,0.198360458016396,-0.937718868255615,-0.285195529460907,0.156109035015106,-0.949540078639984,-0.272036105394363,-0.20344577729702,-0.968770980834961,-0.141748487949371,0.105529233813286,-0.898668646812439,-0.425744533538818,-0.789068460464478,-0.607441663742065,0.0915727093815804,-0.135225623846054,-0.932820081710815,-0.334007292985916,0.0131718702614307,-0.991276741027832,0.131136983633041,-0.232646301388741,-0.972255408763886,-0.0243947021663189,
- -0.659739077091217,-0.676525771617889,-0.327196061611176,0.453325599431992,-0.724824607372284,0.518772840499878,0.0949669405817986,-0.979831635951996,-0.175816476345062,0.00458648055791855,-0.948083102703094,-0.317989647388458,-0.457832276821136,0.148550823330879,-0.876539945602417,0.382858037948608,0.922271311283112,-0.0532477051019669,0.345534771680832,0.930472135543823,-0.121767655014992,0.433326721191406,0.896215677261353,-0.0950033813714981,0.180888250470161,0.981488108634949,-0.0629327073693275,0.469426572322845,0.877366185188293,-0.0993345901370049,0.314437866210938,0.934271812438965,-0.168122082948685,0.386653155088425,0.907723009586334,-0.162905648350716,0.499911814928055,0.85258537530899,-0.152270585298538,0.439225256443024,0.891173839569092,-0.113535545766354,0.497970193624496,0.542932093143463,0.676202952861786,0.354630023241043,0.868059813976288,-0.347433090209961,0.321140289306641,0.940564393997192,-0.11048811674118,0.323738068342209,0.921145975589752,0.216064766049385,-0.302533358335495,-0.902723908424377,0.305880963802338,0.386508494615555,0.907798230648041,-0.162830024957657,0.0588639751076698,0.963132917881012,-0.262507081031799,0.625709116458893,0.777415990829468,-0.0641284435987473,0.615764558315277,0.783429026603699,-0.0841020122170448,0.280684471130371,0.937958478927612,-0.203593477606773,0.395778775215149,0.902907967567444,-0.167679280042648,0.0984866172075272,0.994177222251892,-0.0437258370220661,0.6009281873703,0.791322290897369,-0.11266927421093,0.630994141101837,0.76699960231781,-0.116438820958138,0.395248889923096,0.883078575134277,-0.25288462638855,0.328021049499512,0.938113212585449,-0.111111894249916,0.317360460758209,0.944026052951813,-0.0899845808744431,0.319752752780914,0.941542267799377,-0.106095850467682,0.242633730173111,0.90961217880249,-0.337245494127274,0.282686978578568,0.932372808456421,-0.225319907069206,0.333637833595276,0.935718894004822,-0.114524677395821,0.391789764165878,0.890206456184387,-0.232450693845749,0.315390944480896,0.945619285106659,-0.0795790404081345,0.35906508564949,0.844624221324921,-0.397092193365097,
- 0.209077477455139,0.853218913078308,-0.477811872959137,0.905089557170868,0.378753930330276,0.193283289670944,0.526736080646515,0.849944472312927,0.0119863171130419,0.556502401828766,0.791068315505981,-0.254000335931778,0.552239239215851,0.81417715549469,-0.179297089576721,0.541266918182373,0.823453724384308,-0.170159190893173,0.554147243499756,0.770792543888092,-0.314324200153351,0.513990700244904,0.85766875743866,-0.0147688258439302,0.564103007316589,0.784814119338989,-0.256621509790421,0.865417122840881,0.477782875299454,0.150919437408447,0.163790822029114,0.833073496818542,-0.528357088565826,0.560656666755676,0.79519647359848,-0.230925917625427,0.479692101478577,0.873577654361725,-0.0822057202458382,0.614890456199646,0.70524126291275,-0.352908700704575,0.631268620491028,0.773775577545166,-0.0526435971260071,0.634271144866943,0.772995889186859,-0.0133214276283979,0.573422372341156,0.737653732299805,-0.356446087360382,0.569976687431335,0.760657787322998,-0.310686886310577,0.609287738800049,0.783133506774902,-0.124380737543106,0.614451706409454,0.784177601337433,-0.0866871774196625,0.763363897800446,0.643097460269928,-0.0608379989862442,0.563304901123047,0.787396907806396,-0.250387221574783,0.0669328793883324,0.848192095756531,-0.525443017482758,0.612266004085541,0.708353817462921,-0.351233899593353,0.433772802352905,0.900951147079468,-0.0113218873739243,0.561487257480621,0.792865574359894,-0.236846253275871,0.518868088722229,0.839261293411255,0.16253125667572,0.586433231830597,0.737572491168976,-0.334787875413895,0.576675236225128,0.667703628540039,-0.470762759447098,0.228782773017883,-0.973437011241913,-0.00887908786535263,0.217290356755257,-0.907938122749329,-0.358375906944275,0.228426814079285,-0.966983616352081,-0.112977810204029,0.183112278580666,-0.947974860668182,-0.260410487651825,0.180391579866409,-0.926993727684021,-0.328848779201508,0.185565963387489,-0.981643199920654,-0.0440670885145664,0.15558522939682,-0.896468639373779,0.414894282817841,0.181433990597725,-0.948660016059875,-0.259086757898331,0.182498693466187,-0.982103943824768,-0.0465411767363548,
- 0.10264091193676,-0.98435640335083,-0.14320370554924,-0.0540484599769115,-0.989943206310272,-0.130733639001846,0.0306923724710941,-0.989971280097961,-0.137894511222839,0.0897813215851784,-0.962928831577301,-0.254376798868179,0.00480625778436661,-0.970000803470612,-0.243054062128067,0.152447819709778,-0.953069984912872,-0.261566996574402,0.0511839315295219,-0.958893895149231,0.279110670089722,0.0714394599199295,-0.982661843299866,-0.171091511845589,0.0496098101139069,-0.951131761074066,0.304774075746536,0.0450133271515369,-0.765799641609192,0.64150208234787,0.0620966628193855,-0.960566163063049,0.271028876304626,0.0606727823615074,-0.94662344455719,0.316580325365067,0.155739024281502,-0.834682643413544,0.528252124786377,0.287551164627075,-0.953509271144867,0.0901917293667793,0.0879523903131485,-0.726069092750549,0.68197375535965,0.0280523188412189,-0.990348339080811,-0.135732680559158,-0.341134816408157,-0.933315634727478,-0.112023115158081,0.10725674778223,-0.984555602073669,-0.138370469212532,-0.110182426869869,-0.96393609046936,0.242254197597504,-0.371527910232544,-0.904907941818237,0.207626536488533,0.0818778574466705,-0.963142514228821,0.256227523088455,-0.13673235476017,-0.977005660533905,0.163598358631134,0.0605906844139099,-0.940771460533142,-0.333583265542984,0.0177095085382462,-0.972990393638611,-0.230165392160416,0.0502131953835487,-0.998310565948486,-0.0292361304163933,0.000590279698371887,-0.968952298164368,-0.247246950864792,0.174400717020035,-0.788830876350403,0.589347362518311,0.0194355249404907,-0.931132793426514,-0.364162087440491,0.0355848111212254,-0.99926745891571,-0.0140873063355684,0.0240631476044655,-0.961471140384674,-0.27385076880455,0.33276629447937,-0.885608077049255,-0.323983132839203,0.0181392282247543,-0.956060528755188,-0.29260790348053,0.0394011586904526,-0.954471409320831,-0.295688927173615,0.0753786116838455,-0.9885014295578,-0.131084576249123,0.235094994306564,-0.966078400611877,-0.10687804967165,0.13941678404808,-0.982710123062134,-0.121835298836231,0.456192165613174,-0.869821608066559,0.187880665063858,
- -0.172248244285584,-0.96452784538269,0.200041443109512,-0.0828649401664734,-0.975572466850281,0.203449666500092,-0.0350730642676353,-0.997645139694214,0.0589424893260002,-0.341369926929474,-0.939642667770386,0.0232025608420372,-0.228803604841232,-0.9727663397789,0.0370783396065235,0.673676013946533,-0.738976001739502,0.00866875052452087,-0.283370196819305,-0.951027512550354,0.123483508825302,-0.0825432315468788,-0.990732073783875,0.107873842120171,-0.193807914853096,-0.973349928855896,0.122590430080891,-0.317056983709335,-0.627972006797791,0.710722267627716,-0.22954586148262,-0.938288450241089,0.258696019649506,-0.0971799343824387,-0.911710321903229,0.39917454123497,0.254881769418716,-0.865031898021698,0.432151734828949,0.048057846724987,-0.906615674495697,0.419211566448212,0.254628211259842,-0.865013241767883,0.432338565587997,0.265069901943207,-0.861820816993713,0.432438224554062,0.0492027029395103,-0.905991673469543,0.420426428318024,0.0907739326357841,-0.836230576038361,0.540812790393829,0.0997511297464371,-0.856016457080841,0.507233202457428,0.127497628331184,-0.910269379615784,0.393896102905273,0.138447389006615,-0.967235922813416,0.212807759642601,0.00809548795223236,-0.977876543998718,0.209026262164116,-0.140126377344131,-0.969643890857697,0.200388133525848,0.252019584178925,-0.872869968414307,0.417832732200623,0.274321615695953,-0.866210699081421,0.41764423251152,0.444226264953613,-0.797496378421783,0.408243209123611,0.191581010818481,-0.851234436035156,0.488566100597382,-0.188395157456398,-0.877231478691101,0.441556632518768,0.191392332315445,-0.851280093193054,0.488560318946838,0.372909426689148,-0.867594182491302,0.328966468572617,0.404210865497589,-0.91454029083252,-0.0151535272598267,0.290622711181641,-0.703454971313477,0.64860588312149,0.128212690353394,-0.909702956676483,0.394970893859863,0.158154681324959,-0.957398593425751,0.241609394550323,0.094664990901947,-0.837285339832306,0.538508832454681,0.480718731880188,-0.79239559173584,0.375524759292603,0.494944989681244,-0.83962881565094,0.22372505068779,
- 0.439763635396957,-0.691347002983093,0.573277771472931,0.191629767417908,-0.851332485675812,0.488376021385193,0.386493891477585,-0.783433079719543,0.486677825450897,0.191444337368011,-0.851378798484802,0.488367915153503,0.308513164520264,-0.682087659835815,0.663005292415619,0.346233189105988,-0.777340412139893,0.525228202342987,0.380091786384583,-0.8671635389328,0.321804046630859,0.433544307947159,-0.787509024143219,0.438028454780579,0.329836934804916,-0.832222044467926,0.445661306381226,0.162648230791092,-0.880005061626434,0.446247279644012,0.664711773395538,-0.737923383712769,0.116736859083176,0.510895133018494,-0.343952804803848,0.787834286689758,0.551134049892426,-0.41050910949707,0.726452767848969,0.487964779138565,-0.813977181911469,0.31516906619072,0.480718731880188,-0.79239559173584,0.375524759292603,0.439763635396957,-0.691347002983093,0.573277771472931,0.434706807136536,-0.787565112113953,0.436773687601089,0.587166786193848,-0.697215676307678,0.411248832941055,0.329928934574127,-0.832127809524536,0.445769309997559,0.45859357714653,-0.795736491680145,0.395594775676727,0.103307142853737,-0.906717240810394,0.408890545368195,0.24553008377552,-0.878161787986755,0.410544574260712,0.421789109706879,-0.79962944984436,0.427418738603592,0.434810161590576,-0.860491871833801,0.265507340431213,0.43361222743988,-0.898385286331177,0.0698877274990082,0.070076048374176,-0.975657999515533,0.207800418138504,0.337619513273239,-0.923649191856384,0.181343108415604,0.308921128511429,-0.932924866676331,0.184983521699905,0.547644376754761,-0.420420706272125,0.723416984081268,0.630042850971222,-0.737160325050354,-0.244214311242104,0.686636388301849,-0.723183751106262,0.0744030326604843,0.297836422920227,-0.944048881530762,0.141651690006256,0.682562589645386,-0.726151287555695,0.0825393795967102,0.377720236778259,-0.916412949562073,0.132343366742134,0.558443665504456,-0.821118533611298,-0.117919728159904,0.503077208995819,-0.530146479606628,0.682537913322449,0.555413424968719,-0.646566092967987,0.522942006587982,0.509520053863525,-0.842942118644714,0.172736704349518,
- 0.53537905216217,-0.840656459331512,-0.0816468074917793,0.457430303096771,-0.797557532787323,0.393267750740051,0.588921904563904,-0.77154666185379,0.240596666932106,0.38386008143425,-0.893404185771942,-0.233410269021988,0.49391382932663,-0.869274973869324,-0.0202582497149706,0.360151559114456,-0.920187473297119,0.153447225689888,0.319919019937515,-0.934810161590576,0.154213383793831,0.312117457389832,-0.937424957752228,0.154328271746635,0.391879260540009,-0.84993052482605,-0.352205514907837,0.496045112609863,-0.853124380111694,0.161610990762711,0.178962171077728,0.031396672129631,0.983354866504669,0.349635422229767,-0.496263921260834,-0.794655382633209,-0.0420398712158203,-0.988288462162018,0.14669269323349,0.0508607625961304,-0.996214270591736,-0.0705013945698738,0.281637907028198,-0.938283264636993,-0.200760260224342,0.384150773286819,-0.682086944580078,-0.622242391109467,0.314714044332504,0.169028654694557,-0.934015214443207,0.409583747386932,-0.879510760307312,0.24228523671627,0.393852531909943,-0.858794331550598,-0.327647000551224,0.419109582901001,-0.903702259063721,0.0875759571790695,-0.0653169527649879,-0.983142673969269,0.170775234699249,0.339739620685577,-0.913512945175171,0.223765894770622,0.301517516374588,-0.927692174911499,0.220169425010681,0.0237596333026886,-0.955854415893555,-0.292878568172455,0.365346670150757,-0.882887780666351,-0.295010447502136,-0.924791157245636,-0.377307951450348,-0.048989862203598,0.0695682689547539,-0.992577075958252,-0.0997550711035728,0.257195830345154,-0.950631856918335,-0.173636019229889,0.170843914151192,-0.975298523902893,-0.1400186419487,0.236545413732529,-0.26005619764328,0.936171531677246,0.184520974755287,-0.410809576511383,0.892853677272797,0.273147165775299,-0.135708391666412,0.952351748943329,-0.0254143290221691,-0.0195176545530558,0.999486565589905,-0.311172157526016,-0.529557049274445,0.789139568805695,-0.309655606746674,-0.526816964149475,0.79156631231308,-0.0828373953700066,0.0899629220366478,0.992494165897369,-0.161041900515556,-0.447642832994461,0.879591584205627,
- -0.158901065587997,-0.429070293903351,0.889184594154358,0.0303367525339127,-0.380305051803589,0.924363434314728,-0.0307067446410656,-0.351020634174347,0.935864090919495,-0.0158011019229889,-0.358330696821213,0.93346107006073,-0.0618084594607353,-0.276450514793396,0.959038496017456,0.217375040054321,-0.272221446037292,0.937359929084778,0.434333086013794,-0.252778708934784,0.86455637216568,0.247866421937943,0.012752203270793,0.968710243701935,0.067316085100174,-0.713401436805725,0.697514891624451,0.213033631443977,-0.194995298981667,0.957388877868652,-0.508814573287964,0.339546501636505,0.791085243225098,-0.648235261440277,-0.654994130134583,0.388296186923981,-0.699833333492279,-0.346828639507294,0.624454438686371,-0.0535265356302261,-0.296601712703705,0.953500151634216,-0.723383009433746,0.0896410793066025,0.684603214263916,0.0278693549335003,-0.329306751489639,0.943811655044556,-0.556304633617401,-0.611029982566834,0.563176393508911,-0.542563140392303,-0.619051694869995,0.567802965641022,-0.375603467226028,-0.69826728105545,0.609380841255188,-0.178787991404533,-0.0852237939834595,0.980189681053162,-0.296810448169708,-0.472699493169785,0.829734206199646,-0.158077299594879,-0.0253236833959818,0.987101972103119,0.371717154979706,-0.406516045331955,0.834608316421509,0.224149093031883,-0.298917353153229,0.92758047580719,0.0289498940110207,-0.148716241121292,0.988456070423126,0.0951796695590019,-0.35343736410141,0.930603444576263,0.379693806171417,-0.431745171546936,0.818186223506927,0.165397614240646,-0.375793695449829,0.911823868751526,-0.0836634561419487,-0.222225487232208,0.971399128437042,-0.106729425489903,-0.42367085814476,0.899506509304047,-0.110548801720142,-0.459678024053574,0.881178200244904,0.178961366415024,-0.400644391775131,0.898586094379425,0.0895885974168777,-0.375611364841461,0.922437012195587,0.0605306848883629,-0.366784512996674,0.928334593772888,-0.0174926538020372,-0.940956830978394,0.338074594736099,0.146612614393234,-0.718543112277985,0.679853320121765,0.306881844997406,-0.260628461837769,0.915366768836975,
- -0.192410603165627,-0.488120973110199,0.851302623748779,0.291761070489883,-0.604126572608948,0.741556882858276,-0.0925088226795197,-0.523983478546143,0.846689701080322,-0.114382013678551,-0.493815124034882,0.862011313438416,-0.142363861203194,-0.484413266181946,0.863178074359894,-0.161380022764206,-0.477757394313812,0.863541781902313,-0.677393913269043,-0.564174711704254,0.472064048051834,-0.652592480182648,-0.655624806880951,0.37984111905098,-0.669455885887146,-0.175748601555824,0.721762657165527,0.0681926012039185,-0.714291393756866,0.696518182754517,-0.493783235549927,-0.616606831550598,0.613167405128479,-0.471599906682968,-0.625593483448029,0.621471107006073,-0.488255530595779,-0.860569834709167,-0.145004153251648,-0.642038881778717,-0.256938546895981,0.722335577011108,-0.669783592224121,-0.655207812786102,0.349417597055435,-0.994221985340118,-0.0936098992824554,0.0525333881378174,-0.505583524703979,-0.581944346427917,0.636966407299042,-0.458915412425995,-0.597636342048645,0.657440066337585,-0.427246928215027,-0.591322004795074,0.683957874774933,-0.385578453540802,-0.596976339817047,0.703525841236115,-0.53346312046051,-0.570109248161316,0.624814033508301,-0.914822995662689,-0.40344500541687,-0.0181948691606522,-0.822988450527191,-0.496453046798706,-0.276087582111359,-0.834170639514923,-0.489725768566132,-0.253629773855209,-0.136633008718491,-0.883127868175507,0.448794543743134,-0.701650977134705,-0.699212968349457,0.137066051363945,-0.80559766292572,-0.591254055500031,0.0378306359052658,-0.783574223518372,-0.609695434570313,0.119511187076569,-0.744765996932983,-0.649903357028961,0.151490107178688,-0.959268093109131,-0.257092654705048,-0.117082267999649,-0.670891225337982,-0.721584320068359,-0.170942336320877,-0.822133183479309,-0.432231217622757,-0.37050399184227,-0.737101435661316,-0.62941038608551,-0.246016412973404,-0.505100846290588,-0.851324677467346,-0.141843020915985,-0.771079421043396,-0.616842985153198,0.157928213477135,-0.652130663394928,-0.758096575737,0.00390882790088654,-0.633007645606995,-0.759235024452209,-0.15120692551136,
- -0.671740114688873,-0.715147078037262,-0.193209409713745,-0.72101491689682,-0.645671665668488,-0.251486778259277,-0.233634203672409,-0.945029735565186,-0.228766202926636,0.64015656709671,-0.495296359062195,0.587265849113464,-0.393925487995148,-0.838698983192444,-0.376040816307068,-0.388467669487,-0.815406978130341,-0.429190367460251,-0.600409090518951,-0.484767556190491,-0.636010468006134,-0.194095551967621,-0.95274692773819,-0.233666986227036,-0.66250878572464,-0.6380255818367,-0.39243546128273,-0.33217978477478,-0.630321621894836,-0.701677441596985,-0.679145455360413,-0.634056985378265,-0.369774699211121,-0.57793664932251,-0.806126594543457,-0.127079531550407,-0.643526792526245,-0.76373702287674,0.0507848262786865,-0.419319748878479,-0.808362007141113,-0.413184881210327,-0.396689802408218,-0.851975798606873,-0.341722935438156,0.633395373821259,-0.0596970766782761,-0.771522283554077,-0.32546454668045,-0.847907364368439,-0.418480396270752,-0.304145842790604,-0.855499148368835,-0.419066488742828,-0.646738946437836,0.49597442150116,-0.579429090023041,-0.548054873943329,-0.558382034301758,-0.622772455215454,-0.592112839221954,-0.737598955631256,-0.324577122926712,-0.300770819187164,-0.93754917383194,-0.174752742052078,-0.680686473846436,-0.632649540901184,-0.369351536035538,-0.579801917076111,-0.809620797634125,-0.0913459733128548,-0.730826914310455,0.139532968401909,0.668148696422577,-0.49488365650177,-0.849104404449463,-0.184694215655327,-0.525290787220001,-0.499790132045746,-0.688679575920105,-0.981664061546326,-0.189276561141014,0.0225863866508007,-0.960641622543335,-0.257316172122955,-0.104670986533165,-0.820386409759521,-0.568684935569763,-0.0596962235867977,-0.541603565216064,-0.832945883274078,0.11343164741993,-0.738092362880707,-0.674699306488037,0.000765874865464866,-0.739796221256256,-0.672093331813812,-0.0314992554485798,-0.590933859348297,-0.723185479640961,-0.357491374015808,-0.628623306751251,-0.720389187335968,-0.293039679527283,-0.756810307502747,-0.640309035778046,-0.131310507655144,-0.716210782527924,-0.691654205322266,-0.0930412337183952,
- -0.740576088428497,-0.66195410490036,-0.115602090954781,-0.295099407434464,-0.885044276714325,-0.360018014907837,-0.801197707653046,-0.573402941226959,0.171147167682648,-0.732898592948914,-0.677649736404419,0.0604209490120411,-0.663703560829163,-0.653554975986481,0.36381796002388,-0.669594466686249,-0.402823030948639,0.624000668525696,-0.662100851535797,-0.660109043121338,0.354793846607208,-0.804758191108704,-0.0581370815634727,0.590748906135559,-0.698060870170593,-0.584676027297974,-0.413358211517334,-0.918591022491455,-0.329961657524109,0.217522084712982,0.382544368505478,0.797678649425507,-0.466228306293488,0.484647423028946,0.831061601638794,-0.272861659526825,0.62244176864624,0.756913900375366,0.199117138981819,0.735116958618164,0.64512825012207,-0.208357006311417,0.848557114601135,0.528971970081329,-0.0118104666471481,0.523459076881409,0.731517255306244,-0.436890304088593,0.711927056312561,0.698767066001892,-0.06988924741745,0.635310053825378,0.742031097412109,-0.21394157409668,0.813760340213776,0.478900790214539,0.329314678907394,0.831403791904449,0.548960268497467,-0.0860835462808609,0.705181837081909,0.707823753356934,-0.041280671954155,0.657447397708893,0.753041863441467,-0.0262842178344727,0.768632531166077,0.636176586151123,0.0669575482606888,0.770158886909485,0.637427568435669,0.0232657920569181,0.717124283313751,0.593424260616302,-0.365486681461334,0.743391394615173,0.641337692737579,-0.189882010221481,0.735314309597015,0.644313097000122,-0.210174947977066,0.819416582584381,0.46437332034111,0.336026698350906,0.677554845809937,0.733862817287445,-0.0486292839050293,0.637233197689056,0.769561231136322,-0.0413451492786407,0.708344459533691,0.703771650791168,-0.0543480888009071,0.568903505802155,0.813112258911133,0.123277336359024,0.568111598491669,0.815468668937683,0.110725119709969,0.550792694091797,0.687528192996979,0.473214983940125,0.796974062919617,0.599575102329254,-0.0730897635221481,0.848645865917206,0.506574332714081,0.152258530259132,0.76797753572464,0.622871279716492,-0.149137064814568,0.777620911598206,0.602386176586151,-0.180102378129959,
- 0.90358966588974,0.35135892033577,-0.245097219944,0.818431794643402,0.538924634456635,-0.199323534965515,0.997978389263153,0.0142901968210936,-0.0619266852736473,0.362309128046036,0.810356736183167,0.460493326187134,0.976242780685425,0.209180653095245,0.0565125495195389,0.690102398395538,0.722925126552582,0.0337344594299793,0.470319867134094,0.88156521320343,0.0405222922563553,0.953480958938599,0.301072508096695,0.015152545645833,0.762403011322021,0.633366703987122,-0.132620677351952,0.258845210075378,0.96047431230545,0.102411963045597,0.447982549667358,0.893686413764954,0.0252240300178528,0.644680082798004,0.0414317846298218,0.763328850269318,0.767457485198975,0.623887717723846,-0.147557750344276,0.842921495437622,0.51805317401886,0.145273193717003,0.930521368980408,0.189856603741646,0.313184469938278,0.33269464969635,0.858167946338654,0.390975892543793,0.473034858703613,0.784024119377136,0.401925623416901,0.529624700546265,0.72314453125,0.443350464105606,0.387497067451477,0.812059164047241,0.436355531215668,0.239993870258331,0.876192688941956,0.417958676815033,0.584981083869934,0.784654140472412,0.205219566822052,0.551974892616272,0.647802293300629,0.525048494338989,0.583645761013031,0.797774136066437,0.151373699307442,0.247290730476379,0.876302659511566,0.413450121879578,0.32952219247818,0.842346012592316,0.426460266113281,0.530086159706116,0.722411632537842,0.443993300199509,0.340472161769867,0.858436584472656,0.383621633052826,0.253446578979492,0.893789052963257,0.370008021593094,0.470362424850464,0.787643671035767,0.397965610027313,0.465634107589722,0.466346263885498,0.752134323120117,0.583441257476807,0.797885715961456,0.151574432849884,0.550717055797577,0.650552332401276,0.52296507358551,0.565030634403229,0.754775762557983,0.333247870206833,0.567474186420441,0.813809275627136,0.125250741839409,0.547767221927643,0.692883133888245,0.468896776437759,0.362457096576691,0.74344527721405,0.56206226348877,0.208006322383881,0.841512680053711,0.498587727546692,0.261355608701706,0.811751425266266,0.522257626056671,0.231261074542999,0.811650514602661,0.536415636539459,
- 0.354002386331558,0.909951210021973,0.21603536605835,0.309775114059448,0.884323835372925,0.349300444126129,0.318735986948013,0.873891949653625,0.367042422294617,0.29143613576889,0.851282358169556,0.436329424381256,0.239807650446892,0.799723744392395,0.550394594669342,0.362688362598419,0.72980785369873,0.579515099525452,0.131203204393387,0.867182850837708,0.480395406484604,0.261805593967438,0.799438238143921,0.54069983959198,0.272849828004837,0.811551213264465,0.516660213470459,-0.00231718644499779,0.926994144916534,0.375068694353104,0.356094837188721,0.75494509935379,0.550685465335846,0.0861663371324539,0.579077780246735,0.81070601940155,0.285733163356781,0.798595070838928,0.529719352722168,0.313764691352844,0.821808636188507,0.475586384534836,0.160091757774353,0.670348405838013,0.724571347236633,0.298407822847366,0.81062251329422,0.50382924079895,0.33176201581955,0.83672308921814,0.435693114995956,0.103025555610657,0.470980048179626,0.876107156276703,-0.271192014217377,0.686561584472656,0.674602210521698,-0.136873602867126,0.623782336711884,0.769520044326782,0.180603802204132,0.671303391456604,0.718842148780823,0.350385427474976,0.78048837184906,0.517752945423126,0.0861676260828972,0.592756450176239,0.800758957862854,0.660234808921814,0.401389420032501,0.634804308414459,0.360448062419891,0.740187704563141,0.567626059055328,0.276936024427414,0.798970401287079,0.533809781074524,0.296151369810104,0.798051238059998,0.524793922901154,0.0868668630719185,0.574938952922821,0.81357204914093,0.0785535871982574,0.564383506774902,0.821766793727875,0.380119502544403,0.265808314085007,0.885920524597168,-0.116086378693581,0.569880306720734,0.813486695289612,0.131041303277016,0.44135507941246,0.887712717056274,-0.212185740470886,0.564494431018829,0.797698736190796,-0.396658152341843,0.665729939937592,0.632033169269562,0.118088707327843,0.314189165830612,0.94198739528656,0.222574219107628,0.672308444976807,0.706018447875977,0.0891832411289215,0.572426438331604,0.815091609954834,-0.159315645694733,0.33525937795639,0.928557872772217,
- 0.118483304977417,0.387115448713303,0.914386868476868,0.113730028271675,0.391566812992096,0.913094103336334,-0.166127547621727,0.615892648696899,0.770115435123444,-0.353369891643524,-0.192040890455246,0.915560007095337,-0.365114897489548,0.276922971010208,0.888822138309479,-0.0475652553141117,0.998868227005005,-7.0035457611084e-007,0.451866149902344,0.706791996955872,0.544299602508545,-0.852255284786224,0.0307589583098888,0.522221028804779,-0.420510292053223,0.471077650785446,0.775407612323761,0.0985941588878632,0.501218974590302,0.859685361385345,-0.363681435585022,-0.0500660091638565,0.930176973342896,0.157224863767624,0.555982768535614,0.816188395023346,0.162661924958229,-0.40859666466713,0.898103594779968,-0.902357518672943,-0.0159018766134977,0.430694878101349,0.305621385574341,-0.417074084281921,0.855946719646454,-0.881448328495026,0.302147835493088,0.362981736660004,-0.868734657764435,0.439191937446594,0.228933542966843,-0.186538249254227,-0.655272841453552,0.731997966766357,-0.656343877315521,0.445877224206924,-0.608610033988953,0.242038786411285,-0.389412939548492,0.888692736625671,-0.786671161651611,0.0799964740872383,0.612167477607727,0.487132281064987,-0.778169274330139,0.396427482366562,-0.218823492527008,-0.588940858840942,0.777987778186798,-0.864011466503143,0.424932599067688,0.270030617713928,-0.156515583395958,-0.424774318933487,-0.891666769981384,-0.679909467697144,0.732581555843353,0.0323635526001453,-0.184374392032623,-0.399741977453232,-0.897893309593201,-0.586534440517426,-0.809877514839172,-0.00870243366807699,-0.140201911330223,-0.906083166599274,-0.39919513463974,-0.0336939990520477,-0.883590757846832,-0.467046201229095,-0.49390897154808,-0.735802710056305,-0.463301658630371,-0.451964497566223,-0.73125559091568,-0.510875046253204,0.0782279297709465,-0.505259037017822,-0.859414756298065,0.862763464450836,-0.450070321559906,-0.230382114648819,-0.13602988421917,-0.981600701808929,-0.133999973535538,0.366576880216599,-0.905565083026886,-0.213478967547417,-0.00908809900283813,-0.843998730182648,-0.536268174648285,
- 0.0194885488599539,-0.829008102416992,-0.558896899223328,0.222718387842178,-0.683810293674469,-0.694838166236877,0.0870306417346001,-0.796613693237305,-0.598191022872925,0.22200083732605,-0.695593357086182,-0.683275520801544,0.0318984873592854,-0.829236209392548,-0.557987451553345,0.355393379926682,-0.788164079189301,-0.502486765384674,0.238181501626968,-0.867490172386169,-0.436726927757263,0.0503257811069489,-0.946989774703979,-0.317297607660294,0.223863691091537,-0.869715094566345,-0.439864426851273,0.124326579272747,-0.915560960769653,-0.382480263710022,0.0531386882066727,-0.93943202495575,-0.338590800762177,0.311545699834824,-0.852900743484497,-0.418926656246185,-0.106444679200649,-0.988195240497589,-0.110179990530014,0.0617168396711349,-0.968494415283203,-0.241266831755638,0.334723949432373,-0.914203405380249,-0.228455930948257,0.142955511808395,-0.869208216667175,-0.47332963347435,0.0655112788081169,-0.829208195209503,-0.555087447166443,-0.0163438636809587,-0.878663420677185,-0.477161854505539,-0.137903571128845,-0.814951360225677,-0.562882661819458,0.146159678697586,-0.927675783634186,-0.343591392040253,0.366594046354294,-0.887057900428772,-0.280601412057877,0.266222894191742,-0.862551391124725,-0.430267959833145,0.122866451740265,-0.788120210170746,-0.603133857250214,0.136742204427719,-0.791864812374115,-0.595190465450287,0.124395050108433,-0.784266710281372,-0.607825398445129,0.280422776937485,-0.859752297401428,-0.426836013793945,0.0325601175427437,-0.949424386024475,-0.312303096055985,-0.265677481889725,-0.912927806377411,-0.309803575277328,0.367422193288803,-0.886632800102234,-0.280861616134644,-0.0661449208855629,-0.98150509595871,-0.17964568734169,0.00944459810853004,-0.972180128097534,-0.234044164419174,0.275200515985489,-0.87000298500061,-0.409096002578735,0.300495684146881,-0.865267157554626,-0.401266902685165,-0.0137187913060188,-0.987948358058929,-0.154174879193306,0.146633476018906,-0.947545409202576,-0.284000545740128,0.214669585227966,-0.87868720293045,-0.426410377025604,0.183709874749184,-0.83807772397995,-0.513688921928406,
- 0.339054495096207,-0.934311985969543,0.110015116631985,0.194612756371498,-0.820534229278564,-0.537447273731232,0.275479555130005,-0.869954288005829,-0.409011572599411,0.101624079048634,-0.743591785430908,-0.660866022109985,0.250533670186996,-0.865315675735474,-0.43412184715271,0.101589426398277,-0.743888139724731,-0.660537660121918,0.262258619070053,-0.872170209884644,-0.412964463233948,-0.100825913250446,-0.851741790771484,-0.514169335365295,-0.145331844687462,-0.858908653259277,-0.491074949502945,0.135527387261391,-0.778436779975891,-0.612918019294739,0.0771592259407043,-0.8947434425354,-0.43986451625824,0.0439285226166248,-0.871118426322937,-0.489104330539703,0.169056504964828,-0.941527366638184,-0.291455179452896,-0.00470539182424545,-0.8667351603508,-0.498746514320374,-0.0299305096268654,-0.847888886928558,-0.529328405857086,0.164000540971756,-0.94896399974823,-0.269390553236008,0.141332343220711,-0.873392403125763,-0.466058850288391,0.143199399113655,-0.872769236564636,-0.466655910015106,-0.224891126155853,-0.921970129013062,-0.315270125865936,0.216142013669014,-0.787698864936829,0.576899647712708,-0.05211191624403,-0.882883131504059,-0.466692358255386,-0.0652948319911957,-0.85826712846756,-0.509032607078552,0.143336907029152,-0.98816043138504,-0.0547129660844803,-0.223317086696625,-0.87983638048172,-0.41954430937767,-0.300241351127625,-0.819444358348846,-0.488227516412735,-0.505548298358917,-0.524727344512939,-0.684895753860474,-0.303920894861221,-0.812825560569763,-0.496937304735184,-0.230064213275909,-0.877367377281189,-0.421066343784332,-0.234311252832413,-0.947204411029816,0.218865364789963,-0.220564588904381,-0.926261186599731,-0.305600225925446,-0.0338834784924984,-0.205316513776779,-0.978108882904053,-0.425702929496765,-0.749537765979767,-0.506922364234924,-0.328432887792587,-0.763699769973755,-0.555782794952393,-0.929670929908752,0.023497462272644,0.367640942335129,-0.585135936737061,-0.630648195743561,-0.50980269908905,-0.513822555541992,-0.769686102867126,-0.378905862569809,-0.156970709562302,0.869840145111084,-0.467694938182831,
- -0.446997851133347,-0.736012101173401,-0.508408486843109,0.523155629634857,0.521788895130157,0.673828303813934,-0.450150221586227,-0.729720294475555,-0.514658093452454,-0.455191552639008,-0.713748335838318,-0.53231942653656,-0.444765567779541,-0.737460672855377,-0.508267104625702,-0.44879013299942,-0.728564739227295,-0.517475426197052,0.179265409708023,-0.682324707508087,-0.708729088306427,-0.014681925997138,-0.304089099168777,-0.952530443668365,-0.286949306726456,0.373941004276276,-0.881945729255676,-0.487636268138886,-0.735299825668335,-0.470685750246048,-0.814041674137115,-0.464926958084106,-0.348107933998108,-0.419348686933517,-0.76866340637207,-0.48301488161087,-0.626884400844574,-0.468740880489349,-0.622332692146301,-0.584896504878998,-0.295980542898178,-0.755176663398743,-0.600620150566101,-0.349668920040131,-0.719018161296844,-0.0224318131804466,-0.349094182252884,-0.936819136142731,-0.643831133842468,-0.0574663877487183,-0.763006687164307,-0.901752829551697,0.176571324467659,-0.394543528556824,-0.486066967248917,-0.685839712619781,-0.541629791259766,-0.745814085006714,-0.472908675670624,-0.469168156385422,0.412851512432098,-0.812622964382172,-0.411336421966553,-0.566841006278992,-0.462414056062698,-0.681809723377228,-0.588638544082642,-0.790402889251709,-0.169611111283302,-0.566481292247772,-0.461242318153381,-0.682901561260223,-0.930280745029449,0.0766312479972839,-0.358755320310593,-0.696838915348053,-0.146459713578224,-0.702114820480347,0.852346897125244,-0.389167666435242,-0.349361300468445,-0.973486721515656,0.00539434654638171,0.228680044412613,0.973951995372772,-0.0229521077126265,-0.225589752197266,0.347731202840805,-0.933446645736694,0.0880928412079811,-0.371941268444061,-0.806463003158569,-0.459649115800858,-0.872500240802765,-0.321619659662247,-0.36783704161644,-0.746681034564972,-0.513643682003021,-0.422655433416367,-0.669031500816345,-0.505865097045898,-0.5445157289505,-0.322158336639404,0.854906976222992,0.406630098819733,-0.471604555845261,-0.669243991374969,-0.574196636676788,-0.488041818141937,-0.733727037906647,-0.472715437412262,
- 0.0397625677287579,-0.245428770780563,-0.968598783016205,-0.0603568255901337,-0.355669558048248,-0.932660937309265,-0.70042484998703,-0.51009863615036,-0.499203771352768,-0.197958588600159,0.538653135299683,-0.818941533565521,-0.668548107147217,-0.26812607049942,-0.693651080131531,-0.801589787006378,0.22888645529747,0.552326798439026,0.586721658706665,-0.69953316450119,-0.40793514251709,-0.725601375102997,-0.477729588747025,0.495254576206207,-0.965640127658844,0.067526638507843,0.250956743955612,0.215073108673096,-0.15110881626606,-0.964836657047272,0.161859348416328,-0.151007980108261,-0.975191354751587,-0.645637989044189,-0.339470833539963,-0.684040367603302,-0.696721434593201,-0.673732399940491,-0.246300563216209,-0.695467889308929,-0.509516656398773,-0.50667268037796,-0.660420775413513,-0.691535234451294,-0.292614996433258,-0.695647001266479,-0.412669479846954,-0.588029861450195,-0.668061137199402,-0.671294569969177,-0.321026355028152,-0.701798498630524,-0.673704385757446,-0.231519460678101,-0.692924082279205,-0.171696677803993,-0.700268864631653,-0.722928047180176,-0.615890443325043,-0.313135892152786
- }
- BinormalsW: *2637 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *7911 {
- a: 0.0827609673142433,-0.557383418083191,0.826120018959045,-0.347460031509399,-0.25392273068428,0.902659833431244,-0.605468511581421,-0.373728722333908,0.702662587165833,-0.251161336898804,-0.216161414980888,0.943499982357025,0.0829006507992744,-0.569136798381805,0.818053185939789,0.121368303894997,-0.900756239891052,0.417022734880447,0.104758135974407,-0.904814302921295,0.412718802690506,0.375676900148392,-0.07166638225317,0.92397552728653,-0.244187235832214,-0.213371202349663,0.94596266746521,-0.0396334379911423,-0.928058862686157,0.370318681001663,0.194858968257904,-0.348924309015274,0.916668891906738,0.461561173200607,-0.182296648621559,0.868175804615021,0.269972294569016,-0.432819098234177,0.86010617017746,-0.0342312231659889,-0.927575349807739,0.372065037488937,0.019519267603755,-0.990410447120667,0.136770576238632,-0.370305687189102,-0.907163858413696,0.199818581342697,0.130265176296234,-0.275199949741364,0.952520847320557,-0.266501486301422,-0.9626384973526,0.0480011403560638,-0.399549186229706,0.380436897277832,0.834043323993683,0.527089595794678,0.843245506286621,0.10542106628418,-0.102890439331532,0.426158607006073,0.898778259754181,0.648828983306885,0.748094260692596,0.139197662472725,0.464968949556351,0.105920948088169,0.878967940807343,0.0161778964102268,0.31750100851059,0.948119938373566,0.467512100934982,0.107207871973515,0.877461612224579,0.651143133640289,0.745958864688873,0.139850363135338,0.0211626086384058,0.668061912059784,0.743804693222046,-0.341104716062546,-0.916969239711761,0.206917777657509,-0.0428862534463406,-0.553692817687988,0.831616044044495,0.147091284394264,-0.294536650180817,0.944252371788025,-0.149641096591949,-0.318974435329437,0.935875475406647,-0.715239107608795,-0.693266272544861,0.088402733206749,-0.675473093986511,-0.732872247695923,0.081452302634716,0.897562921047211,0.3856480717659,0.21367359161377,0.0374722145497799,-0.166972488164902,0.985249221324921,0.897445201873779,0.261753559112549,0.355073481798172,0.715202450752258,0.675423622131348,0.17968961596489,
- -0.325660347938538,0.282618790864944,0.902259469032288,-0.372151464223862,0.450679451227188,0.811413168907166,0.199594885110855,0.979705035686493,0.0184441227465868,-0.15825779736042,0.409236341714859,-0.898599088191986,0.631381452083588,0.539465248584747,-0.557076930999756,-0.0351160727441311,0.972257852554321,-0.23126083612442,-0.0745299458503723,0.310070812702179,-0.947787642478943,0.120240524411201,0.992742836475372,-0.00197972310706973,-0.271221160888672,-0.555730044841766,0.785877346992493,-0.12787751853466,-0.371047765016556,0.919766783714294,-0.67570298910141,-0.732673287391663,0.08133564889431,-0.83761078119278,-0.546038568019867,-0.0158137679100037,-0.883715569972992,-0.465795516967773,-0.0456219688057899,-0.302670836448669,-0.338109195232391,0.891107499599457,-0.346671551465988,0.315115094184875,0.883471190929413,0.871604859828949,0.380012184381485,0.309670686721802,0.864052772521973,0.396751642227173,0.309840232133865,-0.115513406693935,-0.399614691734314,0.90937614440918,-0.311320036649704,-0.227943956851959,0.922562420368195,0.788040578365326,-0.401885956525803,0.466347515583038,0.0729315131902695,0.125356733798981,-0.989427447319031,0.394749104976654,0.918535947799683,-0.0215614177286625,0.110136657953262,0.26094576716423,-0.959050178527832,0.399025917053223,0.915897250175476,-0.043712355196476,0.112072564661503,0.257814198732376,-0.959672629833221,0.400031894445419,0.916311681270599,-0.018638301640749,-0.574944138526917,-0.815748929977417,-0.0631899833679199,-0.726697206497192,-0.685721278190613,0.0412020422518253,0.487669795751572,-0.478304117918015,-0.730344653129578,-0.0405904352664948,0.268676549196243,-0.962374866008759,0.110805824398994,0.259864091873169,-0.959266781806946,-0.958557903766632,-0.0718430504202843,-0.275690644979477,0.20593436062336,0.0982633754611015,-0.973619699478149,-0.950652182102203,-0.305226743221283,-0.0556529983878136,-0.897006928920746,-0.385716050863266,-0.215874195098877,-0.602649807929993,-0.787093698978424,0.131516993045807,0.410831183195114,-0.32184100151062,-0.853016018867493,
- -0.746681332588196,-0.663796305656433,0.0429141186177731,0.0536889098584652,-0.62727826833725,-0.776942372322083,-0.921247959136963,-0.378694355487823,-0.088841587305069,0.343580573797226,-0.16913890838623,-0.923766434192657,0.277971357107162,-0.0357895232737064,-0.959922432899475,0.737739205360413,0.650688052177429,0.179849699139595,0.278889000415802,0.588202595710754,-0.759103834629059,-0.85295844078064,0.407373875379562,-0.326356649398804,0.211305528879166,-0.0261574927717447,-0.977070093154907,-0.906227231025696,0.366129875183105,-0.211426287889481,-0.661895036697388,0.709880888462067,-0.240757286548615,0.258303642272949,0.287407457828522,-0.922321081161499,-0.794897794723511,0.604663252830505,-0.0502001196146011,0.236891508102417,0.125632122159004,-0.963378965854645,0.82146430015564,0.510709583759308,0.253716617822647,0.980537950992584,0.0620115548372269,0.186278939247131,-0.310522615909576,-0.240955337882042,0.919519543647766,0.903729200363159,-0.385656505823135,0.185856968164444,0.779161989688873,-0.418738305568695,0.466438412666321,-0.20738297700882,-0.0264147166162729,-0.977903127670288,-0.973663568496704,0.214157551527023,-0.0782036781311035,0.223182633519173,0.0405243895947933,-0.973933935165405,0.221643373370171,0.0315582975745201,-0.974617004394531,0.974398076534271,-0.118789948523045,0.190885722637177,0.158268451690674,0.608375191688538,-0.777708768844604,-0.983656525611877,0.160924538969994,-0.080766037106514,-0.276479601860046,-0.173588812351227,-0.945212244987488,-0.984180510044098,0.149290755391121,0.0953992754220963,-0.883344709873199,0.410940766334534,0.225455194711685,-0.955598771572113,0.276820749044418,0.10100120306015,-0.272479474544525,-0.164741158485413,-0.947953224182129,0.943355679512024,-0.272110223770142,0.189831793308258,-0.309521526098251,-0.25608828663826,0.915759384632111,-0.0715809985995293,0.0566496886312962,0.995824873447418,-0.87484222650528,-0.482673287391663,-0.0409580729901791,-0.309240639209747,-0.687804698944092,0.656730473041534,-0.29194962978363,-0.429938733577728,0.854352414608002,
- -0.135724648833275,-0.124161392450333,0.982935786247253,-0.988272964954376,-0.0575823485851288,-0.141424462199211,-0.969781160354614,0.212553888559341,-0.119772933423519,-0.0680113956332207,0.241204842925072,-0.968088269233704,0.966602087020874,-0.170818120241165,0.191053837537766,0.988234579563141,-0.143343582749367,-0.0533408522605896,-0.0674064308404922,0.0680936798453331,0.995399236679077,0.944406509399414,-0.3250333070755,-0.0494946539402008,0.944799423217773,-0.266973912715912,0.189944624900818,-0.910334289073944,0.337036520242691,0.240203708410263,-0.317514151334763,-0.267149090766907,-0.909844040870667,-0.559442043304443,-0.275467753410339,-0.781755805015564,-0.206641018390656,0.218139633536339,-0.953789591789246,-0.188978791236877,0.0109753329306841,-0.981919944286346,0.846230447292328,-0.531122744083405,-0.0424604378640652,-0.551309883594513,0.711911022663116,0.435017347335815,-0.882716417312622,0.412466257810593,0.225129619240761,-0.494696050882339,-0.165742635726929,-0.853115022182465,-0.0354034602642059,0.999371826648712,-0.00161103601567447,-0.413641750812531,0.858726739883423,0.302471727132797,-0.378801703453064,0.00402618898078799,-0.925469100475311,-0.979844748973846,0.158245205879211,-0.121912881731987,-0.073925293982029,-0.570837736129761,0.817728161811829,-0.154835253953934,-0.179998755455017,0.971404492855072,0.804399788379669,-0.592762470245361,-0.0396696180105209,-0.192810520529747,-0.29411968588829,0.936118423938751,0.185558557510376,-0.198214963078499,0.962433934211731,0.446698009967804,0.325358331203461,0.833428382873535,-0.519362092018127,0.852945506572723,-0.0524119101464748,-0.62749046087265,0.771677672863007,0.103776350617409,-0.738883137702942,0.654480457305908,0.160334631800652,0.455667555332184,0.348759174346924,0.818983614444733,-0.625319063663483,0.773448467254639,0.103699207305908,0.381701052188873,0.171993792057037,0.908142328262329,-0.796433746814728,0.575859844684601,0.184604376554489,0.356794148683548,-0.348486363887787,0.86674976348877,0.901535332202911,-0.430221229791641,-0.0463034100830555,
- 0.268286019563675,-0.0541255995631218,0.961817562580109,0.5426105260849,-0.159841954708099,0.824636042118073,0.3016097843647,-0.395661503076553,0.867458045482636,-0.930244266986847,0.266186237335205,0.252567738294601,-0.739700198173523,0.212928727269173,0.638361215591431,0.746969640254974,-0.508474469184875,-0.428357362747192,0.951400279998779,-0.303863167762756,-0.0500467754900455,0.750784754753113,0.152579143643379,0.642683506011963,0.787986159324646,-0.614482343196869,-0.038593765348196,0.813508272171021,-0.258377909660339,-0.52100396156311,-0.23993156850338,0.179496750235558,-0.95405125617981,0.0958091542124748,-0.639753103256226,0.762585461139679,0.403672218322754,-0.305574476718903,0.862364768981934,-0.728362202644348,0.285214602947235,0.623009741306305,0.851514756679535,-0.197307869791985,0.485790342092514,0.672861337661743,-0.651658654212952,-0.350140869617462,0.678777158260345,0.0232460740953684,0.733976304531097,0.0386978648602962,0.993460416793823,-0.107419371604919,-0.153841286897659,0.966809868812561,0.203989073634148,0.976847946643829,0.204231694340706,0.0637001395225525,-0.03487354144454,0.825771749019623,0.562925219535828,0.968809187412262,0.247535884380341,0.0116078797727823,-0.139039501547813,0.974141597747803,0.178090289235115,0.165463924407959,-0.115853846073151,-0.97938746213913,-0.187651708722115,0.239657431840897,-0.952549815177917,0.821036696434021,-0.0181078277528286,-0.570588171482086,0.717399179935455,-0.573364436626434,-0.395716667175293,0.948969900608063,-0.0220482479780912,0.314594984054565,0.0981143116950989,-0.833105683326721,-0.544342279434204,0.927062153816223,0.354071080684662,-0.123245574533939,-0.0350895412266254,0.925355017185211,0.377474546432495,0.737473011016846,0.273928105831146,-0.617330491542816,0.126596570014954,-0.681150138378143,-0.72111564874649,0.978423774242401,0.1049929484725,0.177942201495171,0.951384484767914,-0.266570955514908,-0.154296875,-0.0329333618283272,0.994136929512024,0.10299126803875,0.45136746764183,0.655822157859802,0.605115413665771,0.88229638338089,0.0647692084312439,-0.466216713190079,
- -0.687025964260101,-0.610625386238098,-0.393868118524551,0.073300912976265,-0.916758239269257,-0.392659574747086,-0.973195314407349,-0.226113855838776,-0.0419928506016731,-0.544172167778015,-0.781057953834534,0.30630886554718,-0.979403972625732,-0.176329106092453,-0.0983671471476555,-0.461556553840637,0.448720306158066,0.765255272388458,-0.424964278936386,0.581071376800537,0.694090366363525,-0.972125232219696,-0.0563690513372421,-0.227585703134537,-0.0350053943693638,0.843166410923004,0.536512136459351,-0.964913725852966,-0.0234259590506554,-0.261519968509674,-0.166553944349289,0.945449948310852,-0.279971659183502,-0.0350646078586578,0.852650344371796,0.52130401134491,0.0726821273565292,-0.918409407138824,-0.388897776603699,-0.5430708527565,-0.377933740615845,0.749826729297638,-0.943676233291626,-0.322789996862412,0.0726760700345039,0.259511709213257,0.904979825019836,0.337142765522003,-0.961665570735931,-0.273879885673523,0.0137528097257018,-0.911911308765411,0.271053493022919,0.30813604593277,-0.137763544917107,-0.988757491111755,-0.0581360459327698,0.106848530471325,-0.794203519821167,-0.598184049129486,0.93310159444809,-0.355556219816208,-0.0538625754415989,-0.880054593086243,0.103384278714657,0.463482022285461,-0.0698491185903549,-0.886219263076782,0.45796999335289,-0.521426916122437,-0.551332473754883,-0.651265442371368,0.922949612140656,-0.0328345932066441,-0.38351783156395,0.492576539516449,0.564467906951904,0.662377774715424,0.665963351726532,-0.471474796533585,-0.578104078769684,0.658194005489349,-0.445336878299713,-0.607005536556244,-0.326307266950607,-0.88401597738266,-0.334722727537155,0.947101235389709,-0.130643784999847,-0.293140739202499,0.647235751152039,-0.412290871143341,-0.641172468662262,0.5909503698349,0.0812137573957443,0.802609503269196,0.933179795742035,0.0927998796105385,0.347222834825516,-0.878246784210205,-0.362726718187332,-0.311627894639969,-0.880260288715363,0.104018881917,0.462949395179749,-0.520106852054596,-0.555374979972839,-0.648881733417511,-0.501891195774078,-0.606542348861694,-0.616613030433655,
- 0.566193282604218,-0.226561769843102,-0.792524397373199,-0.583171904087067,-0.796468138694763,-0.159840673208237,-0.645889282226563,0.479152917861938,0.594339549541473,0.274809509515762,0.891642928123474,0.359795272350311,-0.909134089946747,0.235854610800743,0.343289703130722,-0.879599630832672,0.101986482739449,0.46465390920639,-0.931764006614685,-0.0591038204729557,-0.358221441507339,-0.61798506975174,0.381512254476547,0.68741762638092,0.476396948099136,0.576184809207916,0.664121270179749,-0.548838198184967,0.210170403122902,0.80907666683197,0.619858145713806,0.764016211032867,0.179039970040321,0.900750279426575,0.298300474882126,0.315698832273483,0.408738762140274,-0.517301023006439,-0.751885831356049,0.58381849527359,-0.261796891689301,-0.768516957759857,0.595598638057709,-0.2865189909935,-0.750445961952209,0.344863682985306,-0.416346788406372,-0.841263592243195,-0.444529145956039,-0.890406012535095,-0.0978326126933098,0.211620688438416,-0.212936982512474,-0.953873455524445,0.782163619995117,0.572937309741974,0.244873389601707,0.974632918834686,0.212251871824265,0.0709916800260544,0.879368662834167,0.368965357542038,-0.300957381725311,0.172605887055397,-0.154746383428574,-0.972759366035461,0.908866047859192,0.408759772777557,0.0829338207840919,-0.9892458319664,0.0466049984097481,0.13863867521286,-0.617436170578003,0.379869937896729,0.688818871974945,-0.932050406932831,-0.0448828749358654,-0.35953825712204,0.344114691019058,-0.415178894996643,-0.842146992683411,-0.0944375097751617,-0.992738008499146,-0.0745174661278725,-0.551113426685333,-0.821699142456055,-0.145205125212669,-0.105742104351521,0.438134729862213,0.8926682472229,0.651503026485443,0.733883380889893,0.192247211933136,-0.547720849514008,0.207786589860916,0.810448527336121,-0.382940679788589,-0.0836562141776085,0.919977247714996,-0.955429255962372,-0.275656491518021,0.105680637061596,0.0778141915798187,0.0750558376312256,0.994138717651367,0.907701015472412,0.281206458806992,0.311451107263565,0.110898934304714,0.00513218063861132,0.993818461894989,0.901969194412231,0.423604905605316,0.0837288126349449,
- -0.00129623198881745,0.236638993024826,0.971596777439117,0.458105146884918,0.884094476699829,-0.092285580933094,0.760636210441589,0.642446756362915,0.0932453870773315,-0.247426852583885,-0.313842415809631,-0.916669428348541,-0.643857955932617,-0.764876902103424,0.0202554855495691,0.0916151851415634,-0.0355811007320881,-0.995158612728119,0.0916571244597435,-0.0356428138911724,-0.995152533054352,0.93195515871048,0.111459903419018,-0.345016300678253,-0.318942487239838,-0.174507677555084,-0.931570053100586,-0.782220900058746,-0.170170947909355,0.599309921264648,0.0649134144186974,0.101937294006348,0.992670655250549,-0.970704317092896,-0.211848065257072,0.113373190164566,-0.279653191566467,-0.958833456039429,0.0493225120007992,-0.768326759338379,-0.638230681419373,0.0483281165361404,-0.275285422801971,-0.261891961097717,-0.925003111362457,0.432961016893387,0.339295625686646,0.83511871099472,0.575331747531891,0.805080533027649,-0.144356340169907,-0.0105880154296756,0.255112886428833,0.966853320598602,0.122942723333836,-0.0206831302493811,0.99219822883606,-0.776359379291534,0.0221142135560513,0.629902422428131,0.49434307217598,0.247227177023888,0.833368837833405,0.762293756008148,0.603268444538116,-0.234468370676041,0.494015157222748,0.247752830386162,0.83340722322464,0.432756036520004,0.785338401794434,-0.442680239677429,0.545538902282715,0.159721985459328,0.822724878787994,0.16233104467392,0.967451632022858,-0.194129317998886,0.458240360021591,0.752222955226898,-0.473472952842712,-0.372899740934372,-0.505707025527954,-0.777949988842011,-0.317514300346375,-0.177493751049042,-0.931493759155273,0.932583510875702,0.102519102394581,-0.346089363098145,-0.242740511894226,-0.322316944599152,-0.914980232715607,-0.571851909160614,-0.24937179684639,-0.781536400318146,-0.593148469924927,-0.7276651263237,0.344497531652451,-0.543379843235016,-0.293209224939346,-0.78661721944809,0.933766186237335,0.0813611671328545,-0.348512709140778,0.661536335945129,0.112031780183315,-0.74149751663208,0.358396053314209,0.540908575057983,-0.760900914669037,
- 0.709399700164795,-0.292143672704697,0.641407907009125,0.902591347694397,-0.268773645162582,0.336287975311279,0.900851666927338,-0.252215832471848,0.353346049785614,0.0011319579789415,0.979840278625488,-0.199779257178307,0.355291813611984,0.558302521705627,-0.749710619449615,-0.212383836507797,-0.648093998432159,-0.731346249580383,-0.540563464164734,-0.297381281852722,-0.78699141740799,0.661850571632385,0.104687079787254,-0.742290019989014,-0.84075939655304,-0.219351708889008,-0.494983553886414,-0.606517195701599,-0.709612727165222,0.358590096235275,-0.605078518390656,-0.193861544132233,-0.772203147411346,-0.903474986553192,-0.118452578783035,-0.411949247121811,0.414318531751633,0.807152390480042,-0.420529633760452,0.353638857603073,0.567131280899048,-0.743842482566834,-0.087965652346611,0.45078518986702,-0.888287544250488,-0.896073043346405,-0.132300302386284,-0.423733085393906,0.357025355100632,0.548726260662079,-0.755931437015533,-0.403396964073181,-0.0301960185170174,0.914526700973511,0.49434307217598,0.247227177023888,0.833368837833405,-0.776359379291534,0.0221142135560513,0.629902422428131,-0.753162205219269,-0.379300594329834,0.537473499774933,-0.972212910652161,0.098079152405262,-0.212562292814255,-0.412158519029617,-0.603845477104187,0.682272672653198,0.705713450908661,-0.271625280380249,0.654360949993134,-0.427260041236877,-0.44608348608017,0.786421239376068,0.83321475982666,-0.0291245747357607,0.552181959152222,-0.793118238449097,0.251288771629334,0.554812967777252,-0.789387404918671,0.537775754928589,0.296082764863968,0.0203382726758718,0.999309539794922,-0.0310929547995329,-0.992045342922211,-0.122398748993874,0.0294030830264091,-0.407013118267059,-0.634740710258484,0.6568443775177,-0.968681395053864,0.0726469606161118,-0.237442553043365,-0.784347891807556,0.258506923913956,0.56389057636261,0.0195550378412008,0.999082803726196,-0.0380935110151768,-0.257041662931442,0.860736310482025,-0.439388811588287,0.791831016540527,0.251104265451431,0.556731760501862,0.827860116958618,-0.0180570632219315,0.560644090175629,
- -0.428280502557755,-0.418384701013565,0.800955712795258,0.423374146223068,-0.741058528423309,-0.521139860153198,0.713962376117706,-0.500289797782898,-0.489865094423294,-0.0880792066454887,0.449350982904434,-0.889002680778503,-0.228783637285233,0.882586181163788,-0.4107306599617,-0.0862429216504097,0.472053945064545,-0.877341032028198,0.687497675418854,-0.512837886810303,-0.5141441822052,-0.412400841712952,-0.602257609367371,0.683528602123261,-0.775311172008514,0.265750050544739,0.572948276996613,0.202585354447365,-0.777463972568512,0.595406532287598,0.810089588165283,-0.442353427410126,-0.38480943441391,-0.00305793620646,-0.917884409427643,-0.396836042404175,0.0557784028351307,-0.931829631328583,0.358584016561508,0.684924244880676,-0.513994693756104,-0.516418635845184,0.819425106048584,-0.187710136175156,-0.541578650474548,-0.210343971848488,0.895669162273407,-0.391831815242767,0.722500383853912,-0.495973944664001,-0.48166698217392,-0.120478473603725,-0.991898238658905,0.0402845107018948,0.683405935764313,-0.293547689914703,-0.668420612812042,0.852554678916931,-0.15468667447567,-0.499221980571747,0.289247632026672,0.954454123973846,-0.0731653422117233,-0.175587207078934,0.917918026447296,-0.355802774429321,-0.716143369674683,-0.0125434789806604,0.697840452194214,0.262316644191742,-0.681830048561096,0.682860016822815,-0.802938461303711,0.242972359061241,0.544292449951172,-0.47453635931015,0.131262317299843,0.870393991470337,-0.565150320529938,0.395161211490631,0.724191129207611,0.0252549555152655,0.990096628665924,-0.138098046183586,-0.203543081879616,-0.550261616706848,-0.809803903102875,0.081651546061039,-0.442622810602188,-0.892982661724091,-0.7242791056633,0.578621864318848,-0.374988734722137,0.0722886323928833,-0.446905970573425,-0.891655445098877,-0.413811475038528,0.900171279907227,-0.135837107896805,-0.722463309764862,0.581026315689087,-0.374773532152176,-0.0215593483299017,0.981502592563629,-0.190231084823608,-0.268724471330643,0.0612679161131382,0.961266577243805,-0.476440578699112,0.130288183689117,0.869499623775482,
- -0.833806157112122,-0.378044456243515,0.402305424213409,-0.0632752254605293,-0.987028062343597,0.147552907466888,-0.918861865997314,-0.207617208361626,0.335541307926178,-0.20584212243557,0.0991631299257278,0.973547995090485,0.164405882358551,0.986151039600372,0.0218366160988808,-0.35950380563736,0.884154200553894,-0.298376530408859,0.35015395283699,-0.919144868850708,0.180457606911659,0.446713000535965,-0.416277140378952,-0.79193502664566,-0.0778006240725517,-0.989637196063995,0.120686881244183,0.398414641618729,-0.344963997602463,0.849862098693848,-0.0584669560194016,0.183347761631012,0.981307923793793,0.720037877559662,-0.643900692462921,0.258722871541977,0.488948464393616,-0.398285716772079,-0.776078522205353,0.455134034156799,-0.86651074886322,0.204968690872192,0.338236778974533,-0.304121524095535,-0.890565097332001,-0.333822429180145,0.89650958776474,-0.291261315345764,0.0488827973604202,0.034311980009079,0.998215079307556,-0.171223923563957,0.11950745433569,0.977957248687744,0.00246116076596081,0.00172754086088389,0.999995470046997,0.724816262722015,-0.638185501098633,0.259539246559143,-0.0475184805691242,0.18935389816761,0.980758428573608,0.140958786010742,0.0989422425627708,0.985059022903442,0.0147475274279714,0.983640491962433,-0.179537996649742,-0.575694918632507,0.810541987419128,-0.107689693570137,-0.606028020381927,0.788937032222748,-0.101530395448208,-0.693089962005615,0.69879937171936,0.176934421062469,0.11542784422636,0.0810214802622795,0.990006029605865,0.700595259666443,-0.712909579277039,0.0304346047341824,0.344957292079926,-0.299903154373169,-0.889416992664337,0.465592950582504,-0.860370576381683,0.207329839468002,0.52475643157959,-0.822230935096741,0.220379143953323,-0.145200952887535,-0.101919904351234,0.98413872718811,0.194588884711266,-0.970044374465942,0.145427152514458,0.512701749801636,0.359877198934555,0.779503285884857,-0.0364308804273605,0.991943776607513,-0.121327549219131,0.935342669487,-0.0564668290317059,0.349207103252411,0.300200313329697,-0.584177136421204,0.75406688451767,0.276202440261841,-0.952121794223785,0.131058380007744,
- -0.0779470130801201,-0.0547128170728683,0.995455086231232,0.935342669487,-0.0564668290317059,0.349207103252411,-0.0364308804273605,0.991943776607513,-0.121327549219131,0.265310853719711,0.589853942394257,0.762681126594543,0.222846657037735,-0.371627986431122,-0.901239156723022,0.691410779953003,-0.721696197986603,0.0332526788115501,-0.0269983466714621,-0.206451877951622,-0.978084206581116,-0.413075178861618,0.900492489337921,-0.135949209332466,0.0826296210289001,-0.442172706127167,-0.893115818500519,0.172490000724792,-0.0372225008904934,-0.984307825565338,0.148035243153572,-0.0586608722805977,-0.987240850925446,-0.124199703335762,0.988493084907532,-0.0863476097583771,-0.440950602293015,0.88782924413681,-0.131612151861191,-0.507725179195404,-0.474968641996384,-0.718762755393982,0.391268134117126,-0.913858950138092,0.108494661748409,0.270809590816498,-0.594659924507141,0.75699520111084,0.691410779953003,-0.721696197986603,0.0332526788115501,-0.15508060157299,-0.145075365900993,-0.97719144821167,-0.0269983466714621,-0.206451877951622,-0.978084206581116,0.2170330286026,-0.878903269767761,-0.424765467643738,-0.485743433237076,-0.454405069351196,-0.746705651283264,0.243987277150154,-0.603641450405121,0.759004056453705,-0.78512579202652,0.575027287006378,0.230045959353447,-0.466042518615723,-0.53080028295517,-0.70785266160965,-0.424754410982132,-0.397350877523422,-0.813446998596191,-0.734886288642883,0.376180231571198,-0.564296543598175,-0.795301854610443,0.558245003223419,0.236341804265976,-0.460632562637329,-0.430914312601089,-0.775970697402954,0.774100780487061,-0.46190071105957,0.432915359735489,0.0101654641330242,-0.519052922725677,0.854681789875031,-0.503180325031281,0.471906453371048,0.723957180976868,-0.349901169538498,-0.411977171897888,0.841334640979767,-0.0198574978858233,-0.542513310909271,0.839812457561493,0.495313376188278,-0.841489791870117,0.215776801109314,-0.747481644153595,0.246373355388641,-0.616904675960541,0.299790441989899,0.372843891382217,-0.878130495548248,-0.55371618270874,0.79175341129303,-0.25792470574379,
- 0.458005964756012,0.493544936180115,-0.739353716373444,-0.473567128181458,0.870509147644043,-0.13397017121315,-0.496855646371841,0.232322975993156,0.836158156394959,-0.788993239402771,0.271147787570953,0.551333427429199,-0.986681640148163,-0.110462322831154,0.119405262172222,-0.974143505096436,-0.148086920380592,-0.170630171895027,-0.994175732135773,-0.0183933600783348,0.106189869344234,-0.758248388767242,0.0252606086432934,0.651476204395294,0.0831482335925102,0.35000017285347,0.933052122592926,-0.720296144485474,-0.105199195444584,0.685643255710602,0.949697434902191,-0.229134723544121,-0.213476240634918,0.10617146641016,0.265554010868073,0.958232164382935,0.75612199306488,-0.0163329169154167,-0.654226899147034,-0.651798963546753,-0.469179034233093,-0.595843255519867,0.935012698173523,0.110516600310802,-0.336953312158585,0.111179523169994,0.246445596218109,0.962758362293243,0.934312999248505,0.113560527563095,-0.337880432605743,0.683384716510773,-0.150123223662376,-0.714456677436829,-0.584051370620728,-0.598152697086334,-0.548723340034485,0.671592712402344,-0.0960012748837471,-0.73467481136322,0.947983145713806,0.0426500774919987,-0.315450429916382,-0.675136387348175,-0.413198113441467,-0.611112236976624,-0.8578040599823,-0.458097219467163,0.233064711093903,0.668144285678864,-0.0818748995661736,-0.739513158798218,0.431153506040573,-0.0176889803260565,-0.902105212211609,0.123715370893478,-0.405506521463394,-0.905681490898132,-0.981619000434875,-0.0969357937574387,-0.164400830864906,0.190089344978333,0.588621377944946,-0.785742282867432,0.248552486300468,0.588304817676544,-0.769492924213409,0.246872082352638,0.956206023693085,-0.157240107655525,-0.784966051578522,0.294269949197769,0.54519122838974,-0.864024937152863,0.43388232588768,-0.255356639623642,0.206477165222168,0.301187336444855,-0.930942296981812,-0.981027185916901,-0.105929277837276,-0.162372678518295,-0.855452358722687,0.0512303560972214,0.515341401100159,-0.223267823457718,0.119748421013355,0.967373669147491,-0.871545374393463,-0.106740780174732,0.478555202484131,
- 0.160294890403748,0.0652720406651497,-0.984908699989319,-0.712645053863525,0.61347633600235,-0.340270161628723,0.328988045454025,-0.78670334815979,0.522364556789398,-0.222576946020126,0.0777928903698921,0.971806466579437,-0.431319892406464,0.766190767288208,0.476356089115143,-0.171115711331367,-0.502427816390991,0.847517371177673,-0.300150603055954,-0.750578880310059,0.58867734670639,-0.0707380920648575,-0.98811799287796,0.136451467871666,-0.173502400517464,0.753822386264801,0.633757650852203,0.959038615226746,0.169422134757042,0.227026581764221,0.709624946117401,-0.0171239227056503,-0.704371452331543,0.068597249686718,-0.310583710670471,-0.948067605495453,0.876792252063751,-0.382149219512939,0.291885823011398,0.992982029914856,-0.0726803466677666,-0.0932977423071861,0.202635273337364,-0.214298948645592,-0.955518126487732,0.722544372081757,-0.229270488023758,-0.652199983596802,0.937536478042603,-0.206053107976913,0.280298948287964,0.966885268688202,0.00327795650810003,0.255190432071686,0.161346256732941,0.0701807513833046,-0.984399437904358,0.223032042384148,-0.0602014921605587,-0.972950398921967,0.757010996341705,0.119044907391071,-0.642466068267822,0.819017171859741,0.032858993858099,-0.572827398777008,-0.431258171796799,-0.640816450119019,-0.635114669799805,-0.422089964151382,-0.654990077018738,-0.626760125160217,0.817955434322357,0.0353978686034679,-0.574191510677338,-0.528377294540405,-0.609063744544983,-0.591488599777222,0.785937547683716,0.104673311114311,-0.609381377696991,0.82520604133606,-0.230644702911377,-0.515594840049744,-0.559660851955414,-0.543836534023285,-0.62531715631485,-0.43671527504921,-0.632155776023865,-0.640046000480652,-0.491549342870712,-0.673943519592285,-0.551524579524994,-0.733009517192841,-0.0650709867477417,0.67709881067276,0.824538350105286,-0.26741287112236,-0.498625010251999,-0.564137101173401,-0.330226868391037,-0.756769180297852,-0.523184955120087,-0.618904709815979,-0.585862278938293,0.824618816375732,-0.265153795480728,-0.499697238206863,0.685005605220795,-0.142157420516014,-0.714533865451813,
- -0.564017117023468,-0.327837377786636,-0.757896661758423,-0.805657386779785,0.0452841371297836,0.590648591518402,-0.853292763233185,0.207734867930412,0.478265285491943,-0.608814001083374,-0.411701887845993,-0.678120255470276,0.723048388957977,-0.264344394207001,-0.638218641281128,-0.751796245574951,-0.262021869421005,-0.605100750923157,-0.559622406959534,-0.525793313980103,-0.640596747398376,0.744835674762726,-0.379016101360321,-0.549150824546814,0.612001717090607,-0.599402010440826,-0.515917718410492,-0.740233242511749,-0.22666908800602,-0.632989764213562,-0.641022920608521,0.100640058517456,0.760895133018494,-0.624636054039001,-0.356166332960129,-0.694964289665222,-0.55135178565979,-0.587039053440094,-0.592786908149719,-0.606962740421295,-0.417644590139389,-0.676142930984497,-0.612483084201813,0.000962040154263377,0.790483117103577,-0.803437411785126,0.0378281511366367,0.594186305999756,-0.66997104883194,0.248985767364502,0.699388921260834,-0.53648841381073,-0.657735049724579,-0.528739035129547,-0.757297277450562,-0.628854215145111,-0.17619164288044,0.430124074220657,0.571445167064667,0.698887586593628,-0.727172672748566,-0.0743479132652283,0.682416498661041,-0.805702269077301,0.0454374514520168,0.590575337409973,-0.720393061637878,-0.0849009156227112,0.688349962234497,0.429385513067245,0.572998344898224,0.698069453239441,0.469247788190842,0.616663157939911,0.632086277008057,-0.680520415306091,0.368670463562012,0.63322514295578,0.604477763175964,0.421829164028168,0.675771296024323,-0.842490315437317,0.238220289349556,0.483178198337555,-0.792240619659424,0.00281540886498988,0.610202312469482,0.593576550483704,0.234251245856285,0.76993066072464,0.453748375177383,0.518718302249908,0.724599003791809,0.572407066822052,0.388264358043671,0.722219467163086,0.49256843328476,0.415974617004395,0.764422297477722,0.851690173149109,-0.0574810393154621,-0.520883679389954,0.462560474872589,0.628039062023163,0.625783443450928,0.742149889469147,0.183595806360245,-0.64459764957428,0.781208693981171,0.0800361931324005,-0.619118094444275,
- 0.577757477760315,0.640875935554504,0.505444645881653,0.85459566116333,-0.0671438574790955,-0.514934897422791,0.495295852422714,0.407776445150375,0.76707261800766,0.888374328613281,-0.277811199426651,-0.365530073642731,0.603701710700989,0.451308727264404,0.65716415643692,0.863195896148682,-0.195601284503937,-0.465438455343246,0.863000333309174,-0.192242905497551,-0.467197060585022,0.602599501609802,0.473709791898727,0.642240464687347,0.749538719654083,-0.430132895708084,-0.503167390823364,0.597037315368652,0.535825490951538,0.597023844718933,0.619668126106262,-0.0774747505784035,-0.781030774116516,0.747359037399292,-0.401916056871414,-0.529072701931,-0.681187152862549,0.402060776948929,0.611826121807098,-0.0463021285831928,0.490546554327011,0.870184004306793,0.602419793605804,0.47666871547699,0.640216767787933,0.563622772693634,-0.768334090709686,-0.303302347660065,0.586556315422058,0.184422925114632,0.788631677627563,-0.0356112904846668,0.530649840831757,0.846842706203461,0.0147176012396812,0.699771225452423,0.714215397834778,-0.646274447441101,0.648264110088348,0.40259525179863,-0.744080364704132,-0.237954318523407,-0.624277293682098,0.73768424987793,0.297658741474152,0.605987787246704,0.57105553150177,-0.755735039710999,-0.320562124252319,-0.0394050143659115,0.516592442989349,0.85532420873642,0.408770829439163,-0.912548720836639,-0.012707743793726,0.434692740440369,-0.137048795819283,0.890089929103851,0.488435685634613,-0.834134876728058,-0.256221741437912,0.486014038324356,-0.0800140798091888,0.870280504226685,0.909009099006653,-0.328829020261765,0.256074488162994,0.496045589447021,-0.827665746212006,-0.26250371336937,-0.698166310787201,0.395333290100098,0.596888065338135,0.310681402683258,-0.260836690664291,0.914024770259857,-0.109782159328461,0.218622118234634,0.969614505767822,-0.0217146836221218,0.61327189207077,0.789573311805725,0.424400210380554,-0.148035153746605,0.893291711807251,-0.610956490039825,0.564440667629242,0.555102586746216,-0.726117312908173,-0.188372105360031,-0.661263644695282,-0.685968637466431,0.423462122678757,0.591715216636658,
- 0.0265173316001892,0.734800457954407,0.677764773368835,-0.907165586948395,0.369636356830597,-0.201046198606491,-0.597897589206696,0.584884285926819,0.548113882541656,-0.556056380271912,0.054107416421175,-0.82938152551651,-0.505898654460907,0.706107497215271,0.495458126068115,-0.501530528068542,0.195052444934845,-0.842865169048309,-0.469521462917328,0.174422085285187,-0.86552095413208,-0.0154235512018204,-0.599807262420654,-0.799995839595795,-0.475345432758331,0.166897654533386,-0.863824009895325,0.776411056518555,-0.353607207536697,-0.521677851676941,0.599952936172485,-0.633169233798981,-0.489033132791519,-0.723775386810303,-0.278991729021072,-0.631120264530182,-0.754240989685059,-0.270123690366745,-0.598459422588348,-0.416872024536133,0.239346951246262,-0.876886963844299,0.6523277759552,-0.0853408426046371,-0.753117144107819,0.804166793823242,-0.199415609240532,-0.559954583644867,0.371048510074615,-0.801787793636322,0.468464851379395,-0.608745038509369,-0.646106898784637,-0.460407853126526,-0.79045969247818,-0.392171621322632,-0.470504939556122,-0.144199445843697,-0.203435227274895,0.968411386013031,-0.765884101390839,-0.595459699630737,-0.242588832974434,0.163762092590332,-0.740032136440277,0.652330040931702,-0.549213767051697,-0.487647086381912,-0.678649067878723,-0.546035945415497,-0.652322709560394,-0.52566134929657,-0.666817426681519,0.363220244646072,-0.650711596012115,-0.657724261283875,0.362903743982315,-0.660075485706329,-0.511283397674561,-0.712519764900208,-0.480525642633438,-0.549147069454193,-0.48765629529953,-0.678696393966675,0.550967037677765,0.67178863286972,0.495111465454102,0.658270657062531,-0.362924188375473,0.659519374370575,0.357796847820282,-0.799620747566223,0.482273876667023,-0.735052227973938,-0.651438593864441,-0.187951907515526,0.602122008800507,-0.359799683094025,0.712736487388611,0.947901725769043,0.0170803852379322,0.318104684352875,-0.523443102836609,0.629363298416138,-0.574377298355103,-0.117815159261227,-0.211717084050179,0.970203936100006,0.47398915886879,0.673007309436798,0.567798733711243,
- -0.522697508335114,0.629387557506561,-0.575029373168945,0.268050283193588,0.33803927898407,0.902152121067047,-0.121907688677311,-0.210445001721382,0.969975054264069,-0.478342086076736,0.629732966423035,-0.612066388130188,-0.200209885835648,-0.66975724697113,-0.71508127450943,-0.821320116519928,-0.129637271165848,-0.555542528629303,-0.559291660785675,0.627421796321869,-0.541788518428802,0.362593501806259,0.662810444831848,0.655139863491058,-0.741707146167755,0.149183452129364,-0.653922617435455,-0.0705420598387718,0.117342852056026,-0.990582883358002,-0.28355947136879,-0.629601776599884,-0.723322629928589,0.915895342826843,-0.357535988092422,-0.182493180036545,0.260247051715851,-0.795174956321716,-0.5476935505867,-0.739879429340363,-0.47658571600914,0.474810123443604,-0.807914435863495,-0.476602405309677,0.346589714288712,-0.773614406585693,-0.455348193645477,0.44065722823143,0.208724215626717,-0.758932411670685,-0.616810977458954,0.560748696327209,-0.15952143073082,-0.812474012374878,-0.761071979999542,-0.463549882173538,0.45375207066536,0.57434469461441,-0.167139261960983,-0.801369190216064,-0.266184061765671,-0.856180727481842,-0.442832499742508,0.737669050693512,-0.264337033033371,-0.621265113353729,0.272862464189529,-0.803205609321594,-0.529534518718719,0.428463727235794,0.903528988361359,0.00736234150826931,0.816803753376007,-0.317826241254807,-0.481474965810776,-0.260707467794418,0.817906022071838,0.512895286083221,0.740940868854523,0.668579816818237,-0.0633070692420006,0.886109530925751,-0.375269174575806,-0.271998107433319,0.510047078132629,0.849483072757721,0.135020270943642,-0.23133710026741,0.79367458820343,0.562640070915222,-0.243080645799637,0.803646385669708,0.543198227882385,-0.917075574398041,-0.320346415042877,0.237383171916008,-0.655220508575439,0.268792331218719,0.706000566482544,-0.874938249588013,-0.423020720481873,0.235661923885345,-0.25703564286232,0.815007627010345,0.519321918487549,0.449114143848419,0.892661452293396,0.0381049625575542,-0.245824858546257,0.805923104286194,0.538570404052734,
- -0.848240733146667,-0.447077423334122,0.283918052911758,-0.916466951370239,-0.321187376976013,0.238593876361847,-0.56645655632019,-0.169456094503403,-0.806481003761292,0.676741003990173,-0.678899347782135,-0.284810960292816,0.632329225540161,-0.652464628219604,-0.417671710252762,0.799965739250183,-0.0767878964543343,-0.595112085342407,0.652999520301819,0.127228200435638,-0.746595442295074,-0.362322688102722,0.121268227696419,-0.924130022525787,-0.45368567109108,0.00222280970774591,-0.891158998012543,0.704802393913269,-0.210622042417526,-0.677415668964386,-0.507336556911469,0.0541679635643959,-0.860043883323669,0.704592525959015,-0.203679010272026,-0.679753065109253,0.608554005622864,-0.140168458223343,-0.781034588813782,-0.509552299976349,0.0511108040809631,-0.858920335769653,-0.663402915000916,0.530286371707916,0.527913749217987,-0.71123993396759,-0.510594248771667,-0.483147233724594,-0.73594331741333,-0.389950960874558,-0.553466975688934,-0.307380050420761,0.186741337180138,-0.933083713054657,-0.332614958286285,0.931222438812256,0.148970901966095,0.538709878921509,0.592139482498169,-0.599301636219025,-0.822105288505554,0.387775987386703,-0.416860520839691,-0.64772754907608,-0.17085137963295,-0.742468059062958,0.63307398557663,-0.359269291162491,-0.685669660568237,-0.661804914474487,-0.198686838150024,-0.722867727279663,-0.922093331813812,0.241516664624214,-0.30234682559967,-0.648805916309357,0.56659871339798,0.507953464984894,0.629383027553558,-0.293338090181351,-0.719603896141052,-0.68629515171051,-0.366455554962158,-0.628258943557739,-0.807658076286316,0.404160887002945,-0.42935112118721,-0.690850973129272,-0.304935336112976,-0.655545055866241,0.624848008155823,-0.247197642922401,-0.740579724311829,0.867617011070251,-0.20432522892952,-0.453312188386917,-0.69194895029068,-0.216655820608139,-0.68867039680481,0.867579638957977,-0.14586329460144,-0.475425541400909,0.397881090641022,-0.304653942584991,-0.865376710891724,-0.738730430603027,0.417845666408539,0.528850018978119,-0.667607963085175,0.0122111169621348,-0.744412839412689,
- -0.995082557201386,0.0567415878176689,-0.0811866968870163,-0.739537358283997,0.414249628782272,0.530548572540283,-0.972859501838684,0.115859389305115,-0.200302749872208,-0.67292332649231,-0.0176788195967674,-0.739500939846039,0.955213129520416,-0.171905726194382,0.240865707397461,-0.760299146175385,0.0591743402183056,0.646872341632843,0.448133051395416,0.23393152654171,0.8628169298172,-0.957203686237335,-0.261620134115219,0.123757809400558,-0.729729831218719,0.454413950443268,0.510883867740631,0.494978994131088,-0.0507641732692719,0.867420792579651,-0.758950531482697,0.295098513364792,0.580440282821655,0.972725033760071,-0.0962866470217705,0.211033403873444,0.59471994638443,0.128979593515396,0.793519020080566,0.50510048866272,-0.0343983396887779,0.862374782562256,-0.677166104316711,0.491614133119583,0.547504901885986,-0.965777635574341,-0.238129675388336,0.10279992222786,0.59122496843338,-0.677926957607269,-0.436884731054306,0.677778542041779,0.339676797389984,0.652101278305054,0.968002438545227,-0.119864441454411,0.22046323120594,0.682256460189819,-0.475199699401855,-0.555618166923523,0.680895209312439,0.350384712219238,0.643126964569092,0.588021576404572,-0.686977684497833,-0.426957041025162,-0.728072762489319,0.255281388759613,0.636192977428436,0.473120987415314,-0.0850135013461113,0.876886129379272,0.400535434484482,-0.144614487886429,0.904797196388245,0.600537359714508,0.141115307807922,0.787045955657959,0.450926512479782,-0.878283441066742,-0.159007638692856,0.638001799583435,0.167154535651207,0.751673638820648,-0.119376212358475,0.347199350595474,0.930162310600281,-0.735550343990326,0.124839827418327,0.665868401527405,0.442822724580765,-0.0970572829246521,0.891340494155884,0.619180738925934,-0.664680302143097,-0.418109387159348,0.676203608512878,-0.577554702758789,-0.457361191511154,0.706845879554749,0.294515132904053,0.643140494823456,-0.203340098261833,0.214023932814598,0.955430030822754,0.446105748414993,-0.0932571068406105,0.890108406543732,0.541954696178436,-0.813352048397064,-0.211527198553085,0.409985721111298,-0.882655024528503,-0.229851633310318,
- 0.587755084037781,-0.773837387561798,-0.236049965023994,0.42180073261261,-0.121014013886452,0.898576498031616,0.269250959157944,0.2135219424963,0.939101874828339,0.139947548508644,0.172752022743225,0.974972546100616,0.129815831780434,-0.278998494148254,0.951476693153381,0.327453225851059,0.184022039175034,0.926774144172668,0.169955983757973,-0.281316041946411,0.944444954395294,-0.176670745015144,-0.541059792041779,0.822217702865601,-0.170973107218742,-0.545295357704163,0.820622444152832,0.228147760033607,-0.0981793850660324,0.96866375207901,0.336967408657074,0.179050534963608,0.924334287643433,-0.764135241508484,0.0869562029838562,0.6391681432724,0.205574423074722,-0.188843429088593,0.960248589515686,-0.509230196475983,-0.221107423305511,0.831742823123932,-0.667241752147675,0.34024304151535,0.662588238716125,0.244304224848747,-0.0271254330873489,0.96931916475296,-0.695030987262726,0.306907415390015,0.650184392929077,-0.451115041971207,0.713421761989594,0.536213219165802,0.319797575473785,0.490782618522644,0.810470342636108,-0.326204478740692,0.774718940258026,0.541665196418762,0.850243091583252,-0.196253046393394,-0.488437741994858,0.893552124500275,-0.25707933306694,0.368069112300873,0.186882629990578,-0.257800430059433,0.947952449321747,0.823459565639496,-0.2720827460289,-0.497880786657333,0.916533648967743,0.0208860225975513,-0.399411916732788,0.844148814678192,-0.461118996143341,-0.273463100194931,0.288198620080948,0.207597747445107,0.934796631336212,-0.629448294639587,0.396419078111649,0.66831648349762,0.157031551003456,0.139790609478951,0.977650105953217,-0.565493762493134,0.20014351606369,0.800099611282349,0.167516961693764,0.16147118806839,0.972555994987488,-0.619536638259888,0.421802848577499,0.662009596824646,0.783720791339874,-0.487852513790131,0.384423792362213,0.233786627650261,-0.0740377902984619,0.969465017318726,0.101757481694222,0.0272673610597849,0.994435489177704,0.879479587078094,-0.0824594795703888,-0.468738824129105,0.216994926333427,-0.144091740250587,0.965479552745819,0.898511469364166,-0.274508744478226,0.34252342581749,
- 0.33946219086647,0.537550687789917,0.771883845329285,-0.554039299488068,0.608420312404633,0.568212270736694,0.800368547439575,0.159586638212204,0.577877402305603,0.0548104085028172,-0.0661310404539108,0.996304452419281,0.46630197763443,-0.286530762910843,0.836936414241791,0.735979795455933,-0.551190137863159,0.393094420433044,-0.558447122573853,0.5863236784935,0.586823105812073,0.7112637758255,0.399792522192001,0.578160643577576,0.80530047416687,0.171018689870834,0.567665159702301,0.713623285293579,0.451598584651947,0.535537600517273,-0.552275598049164,0.616522431373596,0.561152338981628,-0.424646079540253,0.570840358734131,0.702721118927002,0.528384506702423,-0.612892031669617,-0.587514400482178,0.927780568599701,-0.189648777246475,0.321335583925247,0.815419495105743,0.196023225784302,0.544670522212982,0.713671326637268,0.471333652734756,0.51818710565567,-0.425854355096817,0.589092612266541,0.686744451522827,0.825418472290039,0.544642925262451,-0.148486986756325,0.127230450510979,0.699159979820251,0.703553676605225,0.925380885601044,0.378872364759445,-0.0112322364002466,-0.408524036407471,0.836329877376556,0.365596055984497,0.0918445810675621,0.795622885227203,0.598789632320404,0.496429145336151,0.769016563892365,0.40270534157753,0.815106749534607,0.556941509246826,-0.159428223967552,0.837608397006989,0.262275397777557,0.479190796613693,0.690839827060699,0.260271668434143,0.674536108970642,0.741035401821136,-0.656642019748688,-0.14031320810318,0.514656364917755,-0.648995578289032,-0.560297727584839,0.809464454650879,0.181033968925476,0.558564245700836,0.742394208908081,-0.653676927089691,-0.14682412147522,0.966963648796082,-0.00213387352414429,0.254905372858047,0.659427344799042,-0.74316668510437,0.113396823406219,0.698278069496155,0.29831400513649,0.650704622268677,0.904632031917572,-0.258642077445984,0.338740587234497,0.552704393863678,-0.535078287124634,-0.638912439346313,0.61869490146637,-0.380827963352203,-0.687158405780792,0.621882259845734,-0.372493773698807,-0.688847482204437,0.792480111122131,-0.343598365783691,-0.503900468349457,
- 0.909029841423035,-0.246725082397461,0.335844486951828,-0.445065885782242,-0.423566669225693,-0.788991689682007,0.393201559782028,-0.752407133579254,-0.528465688228607,0.518254458904266,-0.639957010746002,-0.567333519458771,0.699536144733429,-0.266012519598007,-0.663239419460297,-0.442842274904251,-0.418177276849747,-0.793106853961945,0.520056128501892,-0.635323762893677,-0.570881247520447,-0.317009449005127,-0.151018187403679,-0.936321914196014,0.58458024263382,-0.646195769309998,-0.490608960390091,0.601226985454559,-0.423825353384018,-0.677420258522034,0.600437104701996,-0.42567253112793,-0.676962435245514,-0.277046591043472,-0.0739986598491669,-0.958002805709839,-0.31771445274353,-0.153365612030029,-0.935701191425323,-0.516606390476227,0.45825183391571,-0.723272502422333,0.101593971252441,-0.155327960848808,-0.982625007629395,0.823723077774048,-0.271412312984467,-0.497810840606689,0.838684976100922,-0.231096938252449,-0.493154853582382,-0.190582484006882,0.204777330160141,-0.960075259208679,-0.497070789337158,0.485235899686813,-0.719351589679718,-0.616383612155914,0.295266568660736,-0.729992389678955,-0.257571011781693,0.322751075029373,-0.910762846469879,-0.262801617383957,-0.184337869286537,-0.947077035903931,-0.642445623874664,0.243187516927719,-0.726721048355103,-0.666068494319916,0.704430282115936,0.245215654373169,-0.958188593387604,0.194280743598938,-0.210070475935936,-0.699129521846771,0.106197737157345,-0.70706433057785,-0.936011135578156,0.343944519758224,-0.0747348293662071,-0.726847112178802,0.575905561447144,0.374200701713562,-0.994013965129852,-0.0316576063632965,-0.104566983878613,-0.760527491569519,-0.140069454908371,-0.634017705917358,-0.380369782447815,-0.394925266504288,-0.836273193359375,-0.722883999347687,0.587211191654205,0.364172697067261,-0.953492701053619,0.290627121925354,-0.0799237042665482,-0.73983770608902,0.180814564228058,0.648032605648041,-0.889020383358002,0.453522771596909,-0.0629292353987694,-0.667215883731842,0.34029695391655,0.662586569786072,-0.668986916542053,0.365735322237015,0.647065818309784,
- -0.926875948905945,0.368350386619568,-0.072242759168148,-0.671100974082947,0.266671866178513,0.691743910312653,-0.716891050338745,0.222553193569183,0.660709738731384,-0.585189461708069,0.499505639076233,0.638786017894745,-0.8496213555336,0.52458518743515,-0.0543523579835892,-0.906900465488434,0.415946990251541,-0.0672300234436989,-0.237338051199913,0.085383303463459,-0.967667460441589,-0.787476480007172,0.602037370204926,-0.132029563188553,-0.963752210140228,0.253447443246841,-0.0833427906036377,-0.909636616706848,0.410239994525909,-0.0653040111064911,-0.570443391799927,0.653525292873383,0.497492730617523,-0.588175892829895,0.493281662464142,0.640876233577728,-0.104341194033623,0.398922860622406,-0.911028802394867,-0.68270206451416,0.505749225616455,-0.527385771274567,-0.710268437862396,0.684922814369202,-0.16247932612896,-0.579287707805634,0.623976528644562,0.524479746818542,-0.911269962787628,0.406784057617188,-0.0641392469406128,-0.991988003253937,0.115864679217339,-0.0503507405519485,-0.920383095741272,0.291976988315582,-0.260085463523865,-0.382231742143631,-0.403646796941757,-0.831244945526123,-0.458943486213684,-0.458013564348221,-0.761311054229736,-0.459339022636414,0.801801681518555,0.382258713245392,-0.57253360748291,0.646918773651123,0.503687739372253,-0.982725322246552,0.15673828125,-0.0984073281288147,-0.941934406757355,0.0890231654047966,-0.323781460523605,-0.920298993587494,0.292104363441467,-0.260239899158478,-0.455836802721024,-0.45017272233963,-0.76782637834549,-0.997093379497528,0.076088584959507,-0.00391394132748246,-0.975245237350464,-0.0477837026119232,-0.215901583433151,-0.466738164424896,0.731460511684418,0.497112691402435,-0.527451515197754,-0.669188618659973,-0.523432374000549,-0.247284591197968,-0.684287250041962,-0.686003863811493,-0.968683123588562,-0.243803188204765,-0.0470423251390457,-0.431742370128632,-0.391747027635574,-0.812485575675964,0.670052528381348,-0.202152743935585,-0.714257657527924,-0.262125790119171,-0.593252301216125,-0.761145055294037,-0.827366948127747,0.406554281711578,0.387527793645859,
- -0.466813623905182,0.672621846199036,0.574164509773254,-0.978985965251923,-0.0844583213329315,-0.185616046190262,0.149129420518875,0.627104699611664,0.764526069164276,-0.441719114780426,0.464875042438507,0.767317056655884,-0.805170059204102,0.215448617935181,0.552524268627167,-0.262102663516998,-0.593421936035156,-0.76102089881897,0.698409080505371,-0.263382494449615,-0.665473103523254,0.649372160434723,-0.380992591381073,-0.658149242401123,0.728341281414032,-0.341174423694611,-0.59423816204071,0.961464822292328,0.264554411172867,0.0748089104890823,0.642437756061554,-0.343636691570282,-0.684972703456879,-0.613624811172485,-0.573248684406281,-0.543001532554626,-0.96199756860733,-0.272247016429901,-0.0210308581590652,-0.240196257829666,-0.718780815601349,-0.652426183223724,-0.246214747428894,-0.689788103103638,-0.680860221385956,0.661000072956085,-0.476849019527435,-0.579391002655029,-0.454112112522125,-0.82658439874649,-0.332476258277893,-0.902273297309875,-0.415124952793121,0.116508312523365,-0.562995553016663,-0.678488552570343,-0.471899688243866,-0.703388392925262,-0.0447159819304943,0.709397792816162,0.960710227489471,0.267963856458664,0.0723270773887634,0.682679235935211,-0.423390030860901,-0.595558524131775,0.640970945358276,-0.33649268746376,-0.689876019954681,0.65946239233017,-0.603796601295471,-0.447815805673599,0.70129656791687,-0.483120203018188,-0.524192690849304,-0.386849015951157,-0.88713264465332,-0.251681268215179,-0.802516341209412,0.204796612262726,0.560380101203918,-0.384748697280884,0.479005604982376,0.789000689983368,0.152348637580872,0.615589439868927,0.773200869560242,-0.381923317909241,0.47265413403511,0.794186770915985,0.578019559383392,0.682242572307587,0.447703510522842,0.138122692704201,0.66463440656662,0.734291017055511,-0.256732761859894,0.212162852287292,0.942907869815826,-0.680736720561981,-0.0853814408183098,0.727535307407379,-0.83384108543396,-0.396852731704712,0.383688598871231,-0.636430978775024,-0.511274397373199,-0.577541470527649,-0.953883826732636,-0.168365672230721,0.248512893915176,
- -0.781009793281555,0.132616385817528,0.610275864601135,-0.389448583126068,0.489635676145554,0.780119657516479,-0.0664213746786118,0.514297306537628,0.855035960674286,0.563815355300903,0.705734372138977,0.42901211977005,-0.85017716884613,-0.37387090921402,0.370701104402542,-0.295919716358185,0.658416748046875,0.692039668560028,-0.266791313886642,0.231938809156418,0.93542867898941,0.707714378833771,0.254323452711105,0.659135758876801,0.556684970855713,-0.126629158854485,0.821015775203705,0.911141693592072,0.207009062170982,0.356325805187225,0.853598535060883,0.424438863992691,0.302028477191925,0.332329362630844,0.154992163181305,0.930341243743896,0.658685684204102,0.654697239398956,-0.370816290378571,-0.791013300418854,-0.346847027540207,0.503979325294495,-0.846230924129486,-0.37956291437149,0.373932063579559,-0.506578624248505,-0.764835238456726,-0.39800152182579,0.409105807542801,0.0675520375370979,0.909983038902283,-0.0210620053112507,-0.830474436283112,0.556658387184143,-0.196041062474251,-0.802672266960144,0.563280701637268,0.584600627422333,0.0385784208774567,0.81040346622467,0.609375715255737,0.705508887767792,-0.361826717853546,0.264657974243164,0.226360470056534,0.937399089336395,0.417131841182709,0.158941924571991,0.894839942455292,0.470678150653839,-0.00854000169783831,0.882263660430908,-0.0817361548542976,-0.836516797542572,0.541810929775238,0.653753399848938,0.660094022750854,-0.369976222515106,0.678741037845612,-0.0414230637252331,0.73320859670639,0.336476355791092,0.81188040971756,-0.477109909057617,-0.916651964187622,-0.0854468941688538,0.390445977449417,-0.643462657928467,-0.489288568496704,-0.588687121868134,-0.544841051101685,-0.0738465562462807,-0.835281312465668,0.702460646629334,-0.487510025501251,-0.518539309501648,0.288687586784363,-0.70256108045578,-0.650436341762543,-0.344239175319672,-0.916898787021637,-0.201980248093605,0.576215922832489,0.0451926738023758,0.816047072410584,-0.0710076913237572,-0.839049160480499,0.539401888847351,-0.647077083587646,-0.73467481136322,0.203823938965797,-0.678446829319,-0.696342945098877,0.234129041433334,
- -0.877822935581207,-0.189634680747986,0.439847201108933,-0.60153603553772,0.00217501632869244,-0.79884284734726,0.686914145946503,-0.0489576831459999,0.725087702274323,0.808669745922089,0.55047607421875,0.207435265183449,0.337467581033707,0.810952425003052,-0.477987289428711,-0.00460514146834612,0.716979563236237,-0.697078943252563,0.466063529253006,0.661771297454834,-0.58723384141922,0.925538778305054,0.37488928437233,-0.053253848105669,0.30227130651474,-0.488806009292603,0.818352460861206,0.575668215751648,0.0456222109496593,0.816409766674042,-0.650166809558868,-0.73112154006958,0.20674741268158,0.832010984420776,-0.210859954357147,0.513123571872711,0.37937980890274,-0.630148708820343,0.677483260631561,0.878888309001923,0.470325529575348,0.0796820372343063,0.927165687084198,0.369840174913406,-0.0598503351211548,0.930201530456543,0.36542946100235,-0.0344443656504154,-0.00414518313482404,0.716000437736511,-0.698087513446808,0.384193360805511,-0.639085471630096,0.666307151317596,0.896640598773956,0.438602358102798,0.0605276450514793,0.883649945259094,0.463047415018082,0.0689192861318588,-0.319686591625214,0.796685338020325,-0.512925922870636,0.0200954526662827,0.662208735942841,-0.74904990196228,0.954069197177887,0.221099719405174,-0.202155604958534,0.346874833106995,-0.570192456245422,0.744686782360077,-0.67407351732254,-0.702003717422485,0.229816600680351,-0.898393273353577,-0.425290405750275,0.109624743461609,0.501525104045868,0.520038247108459,-0.691399157047272,-0.348749786615372,0.71407550573349,-0.60701721906662,0.947539031505585,0.139670506119728,-0.287509977817535,-0.759174287319183,0.597355782985687,-0.258496582508087,-0.39211118221283,0.490902125835419,-0.777987062931061,0.393850415945053,0.262863546609879,-0.88078635931015,0.447133809328079,0.380455106496811,-0.809521615505219,-0.600315272808075,0.799686968326569,0.0110587934032083,-0.724099278450012,0.649606585502625,-0.231714323163033,0.437544375658035,-0.739614546298981,0.511395394802094,0.0250253230333328,-0.511160850524902,0.859120666980743,0.950524985790253,0.277864068746567,-0.138902992010117,
- -0.053013451397419,-0.880652785301209,0.470786899328232,0.348474711179733,-0.573129177093506,0.74167937040329,-0.898255586624146,-0.425720810890198,0.109081365168095,0.518412590026855,0.571328163146973,-0.636264503002167,0.936978459358215,0.088696613907814,-0.337941288948059,0.92752742767334,-0.176034435629845,0.329704016447067,0.0281399600207806,-0.492386758327484,0.869921505451202,0.910855233669281,-0.300231903791428,0.283202230930328,0.953745305538177,0.202577963471413,-0.222108319401741,-0.920126855373383,0.388480216264725,-0.0494967401027679,0.0818748027086258,-0.278678953647614,-0.95688796043396,-0.194973990321159,0.103062838315964,-0.975378513336182,-0.211270242929459,0.0699417665600777,-0.974922180175781,-0.888793408870697,0.444194763898849,0.112859472632408,-0.934350192546844,0.352300584316254,-0.0536098554730415,0.990830183029175,0.0289619248360395,-0.131972536444664,0.525539517402649,0.595144808292389,-0.607956349849701,0.928511679172516,-0.158979073166847,0.335546940565109,0.251731485128403,-0.00637224735692143,-0.967776238918304,0.90613979101181,-0.391224324703217,-0.160792484879494,-0.156231090426445,0.179193153977394,-0.971329867839813,-0.218116208910942,0.0558212250471115,-0.974325060844421,-0.716403841972351,0.355378031730652,-0.600393235683441,-0.895046293735504,0.431315094232559,0.113399416208267,-0.733887493610382,0.211200281977654,0.64560329914093,-0.955354869365692,0.270860761404037,0.118032090365887,-0.723148286342621,0.334818005561829,-0.604113757610321,0.905206441879272,-0.393347650766373,-0.160869389772415,0.639347910881042,-0.235469430685043,-0.731975674629211,-0.158552721142769,0.174730062484741,-0.971766769886017,-0.710543155670166,0.372314274311066,-0.597085118293762,-0.125245153903961,0.237614914774895,-0.963251173496246,0.657476246356964,0.286907970905304,-0.696712851524353,-0.630663335323334,0.549821019172668,-0.547686576843262,-0.641961276531219,0.454386979341507,-0.617590665817261,-0.658060193061829,0.412974268198013,0.629610240459442,0.656889915466309,0.29079732298851,-0.695652604103088,
- -0.659618556499481,0.419698804616928,-0.6235032081604,-0.718367278575897,0.349517583847046,-0.601486444473267,-0.736312091350555,0.202547043561935,0.64561539888382,-0.755835294723511,0.151190787553787,-0.637067019939423,-0.562143504619598,0.217674136161804,0.797880113124847,-0.772918522357941,-0.34083965420723,-0.535187125205994,-0.458258807659149,-0.717942655086517,0.523982107639313,-0.422268033027649,-0.669819474220276,0.610763072967529,-0.789261698722839,-0.193477898836136,-0.582779824733734,-0.720086514949799,-0.26751634478569,0.640242516994476,-0.590861678123474,-0.29722598195076,0.750026106834412,-0.700999140739441,0.179466471076012,0.690211653709412,-0.762488722801209,0.121727652847767,-0.63544750213623,-0.348943531513214,-0.27446523308754,-0.896050930023193,-0.640532732009888,-0.125564157962799,-0.757595837116241,-0.700999140739441,0.179466471076012,0.690211653709412,-0.348943531513214,-0.27446523308754,-0.896050930023193,0.735070466995239,0.0413452088832855,-0.676728904247284,-0.258496165275574,0.0048654587008059,-0.966000139713287,-0.765037417411804,0.109504774212837,-0.634607374668121,0.740129232406616,-0.10904898494482,-0.663563907146454,0.431836903095245,0.895009756088257,-0.111688986420631,0.00276966975070536,0.572093665599823,-0.820183634757996,-0.755274653434753,0.153536304831505,-0.637170970439911,0.663073122501373,-0.0913788229227066,-0.742956221103668,0.72308737039566,0.136824548244476,-0.677069902420044,0.679991185665131,0.324125677347183,0.657688796520233,0.737498223781586,-0.167516261339188,-0.654243588447571,0.737256467342377,0.168320283293724,0.654309689998627,0.239690870046616,-0.588843703269959,0.771888196468353,0.372929185628891,-0.654428720474243,0.657758951187134,-0.603660821914673,-0.0866209119558334,0.792521595954895,-0.529763996601105,0.394604295492172,0.750757992267609,-0.399999290704727,0.520183622837067,0.754592478275299,0.720545947551727,0.0458992980420589,0.691886425018311,-0.549505174160004,0.302747189998627,0.778709352016449,-0.543758869171143,0.347742974758148,0.763806998729706,
- 0.721769034862518,0.0526055656373501,0.690131962299347,0.735059797763824,-0.198198989033699,-0.648385882377625,0.859744191169739,-0.0462719574570656,0.508624494075775,0.735255777835846,0.147436857223511,0.661559760570526,0.502213537693024,-0.489674478769302,0.712741613388062,0.7102010846138,-0.532121181488037,0.460935413837433,-0.397919923067093,-0.713517487049103,0.576673686504364,0.794907033443451,-0.349962055683136,0.495630294084549,0.694879114627838,-0.417163461446762,-0.585762619972229,0.609500646591187,-0.350414842367172,-0.711138844490051,-0.435689061880112,-0.111543722450733,0.893159031867981,-0.546268343925476,-0.299213528633118,0.782344043254852,0.787106871604919,-0.370978385210037,0.492785751819611,0.625778377056122,-0.292641878128052,-0.723022937774658,0.721298277378082,0.0544176027178764,0.690483570098877,0.815115988254547,-0.288389056921005,0.502412080764771,0.536894381046295,-0.381070882081985,0.752681493759155,-0.436881452798843,-0.120595067739487,0.89139860868454,0.792716264724731,-0.35599473118782,0.494842112064362,0.550731420516968,-0.358533382415771,0.753756403923035,0.305034041404724,-0.851028025150299,-0.427440732717514,0.842117488384247,-0.513800203800201,-0.16385281085968,0.847551465034485,-0.50482589006424,-0.163730293512344,0.871668517589569,-0.436107993125916,0.22361533343792,0.556064426898956,-0.349606305360794,0.754034340381622,-0.467974603176117,0.293222546577454,0.833678781986237,-0.396832466125488,0.10338219255209,0.912050485610962,0.593428134918213,-0.282801926136017,0.753568947315216,-0.366608470678329,0.222140043973923,0.903466701507568,-0.566322386264801,0.08474962413311,0.819814920425415,-0.944308578968048,0.307445496320724,0.117297768592834,-0.927927076816559,0.354223757982254,0.116090051829815,-0.497813194990158,0.236880034208298,0.83430802822113,-0.75064754486084,0.660572826862335,-0.0131064625456929,-0.283903568983078,0.56357616186142,0.775745391845703,-0.617294013500214,0.770868539810181,-0.157194122672081,-0.72211366891861,0.691726505756378,-0.00814274791628122,-0.464864760637283,-0.439750194549561,0.768453359603882,
- 0.321934282779694,-0.648917973041534,0.689393877983093,0.754215836524963,-0.647796511650085,0.107322745025158,0.589125454425812,-0.290910989046097,0.753858089447021,-0.142033010721207,0.129149809479713,0.981400489807129,-0.472744941711426,0.284529507160187,0.833999514579773,-0.632735073566437,-0.121215112507343,0.764822363853455,-0.453820258378983,-0.415938884019852,0.788062214851379,-0.879956245422363,0.293150335550308,-0.373818039894104,0.769603192806244,-0.627083480358124,0.120321586728096,0.0173770897090435,-0.555931627750397,0.831046402454376,-0.412218749523163,-0.330842763185501,0.848892688751221,-0.462473392486572,-0.434543609619141,0.772845685482025,-0.935334861278534,0.142825365066528,0.323650479316711,-0.883758246898651,0.274201065301895,-0.379190146923065,-0.526062607765198,-0.587564885616302,0.614837884902954,-0.0153343724086881,-0.726690292358398,0.68679416179657,-0.984869539737701,-0.0996310412883759,0.14179502427578,-0.493309408426285,0.483685314655304,-0.72297602891922,-0.886679947376251,0.258182197809219,-0.383589148521423,-0.983661592006683,-0.0680224299430847,0.166681706905365,-0.984897613525391,-0.102205358445644,0.139752388000488,-0.0139799248427153,-0.720282435417175,0.693540036678314,-0.912928998470306,-0.204733952879906,0.353050798177719,-0.979071497917175,-0.0219377707690001,0.202330872416496,-0.297128736972809,0.811995923519135,-0.502371728420258,-0.482970774173737,0.561169147491455,-0.672181844711304,-0.226048097014427,0.681746184825897,-0.695790469646454,-0.952806949615479,-0.302393049001694,-0.0267847422510386,-0.834471046924591,-0.547729790210724,-0.0604184381663799,-0.827984869480133,-0.555951356887817,-0.0732077211141586,-0.803307116031647,0.218481540679932,-0.554042875766754,-0.223698616027832,0.677194356918335,-0.700975596904755,-0.618386268615723,0.0375279858708382,-0.784977793693542,-0.675808846950531,-0.675377488136292,-0.295208036899567,-0.555645406246185,-0.822401404380798,0.122123427689075,0.326628029346466,0.820942163467407,-0.468367516994476,-0.164024338126183,0.557705342769623,-0.813671171665192,
- -0.623477280139923,0.0417420119047165,-0.780726373195648,-0.571874797344208,-0.808983862400055,0.136030554771423,-0.537773847579956,-0.0827748402953148,-0.83901584148407,-0.632856369018555,0.0495834946632385,-0.77267998456955,-0.601862192153931,0.0240467824041843,-0.798237860202789,-0.159923329949379,0.605984508991241,-0.779235064983368,0.346574425697327,0.80228728055954,-0.486026048660278,-0.013964232057333,0.540398418903351,-0.841293394565582,-0.421364456415176,-0.107683598995209,-0.900475680828094,-0.556257367134094,-0.0591871440410614,-0.828899681568146,0.695486605167389,-0.00420861644670367,-0.718526780605316,0.836509048938751,-0.319420158863068,-0.445223063230515,0.933805048465729,0.0289163868874311,-0.35661181807518,-0.430445373058319,-0.206754386425018,-0.878617882728577,0.140906825661659,0.353600054979324,-0.924722790718079,0.145802482962608,0.450638622045517,-0.880719304084778,0.856099247932434,0.343124210834503,-0.386470973491669,0.5716153383255,0.103112787008286,-0.814016997814178,0.647413611412048,0.739539086818695,0.184221550822258,0.860390245914459,0.433247447013855,-0.268375217914581,0.680725514888763,-0.026838781312108,-0.732046782970428,0.540133655071259,-0.137498006224632,-0.830271005630493,0.0335732400417328,0.515654385089874,-0.856138646602631,0.320747345685959,0.788850069046021,-0.524248719215393,0.158383503556252,0.985114097595215,-0.0668196901679039,0.546679079532623,-0.148066088557243,-0.82414710521698,0.821584522724152,0.549283623695374,-0.152599662542343,0.868647634983063,0.421572953462601,-0.260245114564896,0.351940304040909,0.909319043159485,0.221984475851059,0.535629391670227,0.835700333118439,0.121268652379513,0.663257360458374,0.628617703914642,-0.406115084886551,0.783207595348358,0.52521538734436,-0.332768261432648,0.782081961631775,0.592821478843689,-0.192121088504791,0.432203948497772,0.842954158782959,0.320356458425522,-0.724250197410584,-0.611561954021454,0.318517863750458,-0.31501641869545,0.269716829061508,-0.909954786300659,-0.821897506713867,-0.561953544616699,0.0932346880435944,
- -0.478726506233215,0.681998491287231,-0.552900552749634,-0.883897542953491,0.123923592269421,0.450963497161865,-0.876297235488892,0.0547258034348488,0.478652536869049,-0.702043354511261,-0.709810376167297,-0.0574834570288658,-0.247594252228737,0.131773054599762,-0.959860920906067,-0.207906380295753,0.36302861571312,-0.908286929130554,-0.259583055973053,0.508418202400208,-0.821052730083466,-0.734248101711273,-0.678336560726166,-0.0271881353110075,-0.246477991342545,0.414115846157074,-0.876217246055603,-0.574034690856934,-0.802772283554077,-0.161372378468513,-0.0986978709697723,0.329890578985214,-0.93884551525116,-0.947816073894501,-0.26870396733284,-0.171589255332947,0.0273768454790115,0.179575249552727,-0.983363211154938,-0.889383733272552,-0.347803145647049,-0.29669776558876,-0.909382462501526,-0.385867953300476,-0.155336707830429,0.892480969429016,0.358373552560806,-0.273945450782776,-0.169032379984856,0.311103522777557,-0.935223340988159,-0.338013648986816,0.319258511066437,-0.885336518287659,0.783275723457336,0.614159941673279,-0.0963686257600784,-0.458410799503326,0.616877496242523,-0.639782547950745,0.640058875083923,0.48179030418396,0.598500430583954,0.0582804754376411,0.141412869095802,-0.988233685493469,-0.0302714761346579,0.122566610574722,-0.991998612880707,0.606602787971497,0.793565988540649,-0.0478128381073475,0.862223505973816,-0.124529801309109,-0.490981847047806,0.992970585823059,-0.0698446556925774,0.0955571085214615,0.471839189529419,-0.604726433753967,-0.641618072986603,-0.327867031097412,-0.944113433361053,-0.0339568071067333,0.435871541500092,-0.37489327788353,-0.81821209192276,0.780430972576141,0.280078887939453,-0.559002101421356,0.585034072399139,0.809359073638916,-0.0517012998461723,0.487625777721405,0.496665298938751,-0.718014419078827,0.0240083020180464,0.183703601360321,-0.982688546180725,0.653786301612854,0.391162663698196,-0.647730886936188,-0.840361714363098,-0.411684691905975,-0.352573215961456,-0.426433980464935,-0.901458203792572,-0.0743445754051209,0.503013968467712,-0.653451263904572,-0.565666317939758,
- 0.933128416538239,-0.353198915719986,0.0672450810670853,0.546025037765503,-0.657429337501526,0.519271969795227,-0.484815061092377,-0.872189164161682,0.0651181638240814,0.506768405437469,-0.552946984767914,0.661388993263245,0.905158936977386,-0.425066918134689,0.00232589989900589,0.360758066177368,-0.257983922958374,0.896268904209137,-0.769384145736694,-0.511559367179871,0.382563769817352,-0.903892517089844,-0.333976745605469,0.267278611660004,-0.906071960926056,-0.400881111621857,0.135380655527115,0.359256237745285,-0.25528159737587,0.897644877433777,-0.90442955493927,-0.330813974142075,0.269386947154999,0.814136207103729,0.564614713191986,-0.135618761181831,0.41240006685257,-0.353943198919296,0.839434564113617,0.483532786369324,-0.43655401468277,0.758694052696228,0.246475905179977,-0.0631520748138428,0.967089176177979,-0.94314444065094,-0.250824123620987,0.218096405267715,0.124233916401863,0.0239152498543262,0.991964817047119,0.613388121128082,0.788407802581787,-0.0465655215084553,0.488668292760849,0.856272280216217,0.167335212230682,-0.267059892416,0.457466185092926,0.848176717758179,0.0985338166356087,-0.0886293351650238,0.991179168224335,0.108332641422749,0.0427414774894714,0.993195474147797,-0.94487202167511,-0.23838484287262,0.224476203322411,0.200575828552246,-0.0679612457752228,0.977318167686462,0.0840062499046326,-0.0672765523195267,0.994191527366638,0.945576846599579,0.32273280620575,0.0415683723986149,-0.938789665699005,-0.277435481548309,0.204214438796043,-0.609668672084808,-0.79256272315979,0.0121923703700304,0.100737847387791,-0.0918722301721573,0.990662097930908,-0.406901687383652,-0.911067485809326,-0.0662350058555603,0.125263512134552,-0.128018394112587,0.983829438686371,-0.594503462314606,-0.803941309452057,0.0156202875077724,0.280622333288193,-0.201364442706108,0.938458025455475,0.932350218296051,0.35978889465332,0.035708125680685,0.0570177473127842,-0.0277073513716459,0.997988641262054,-0.646799743175507,0.437570780515671,0.624645471572876,-0.300781577825546,0.484283983707428,0.82158350944519,-0.869236469268799,-0.404694586992264,-0.283989876508713,
- 0.577130734920502,0.814923763275146,-0.0530979745090008,-0.11264705657959,0.0678025037050247,0.991319060325623,0.865311443805695,0.178458869457245,-0.468389540910721,-0.841196179389954,-0.469873130321503,-0.267597109079361,-0.694478392601013,-0.713050901889801,-0.0962191745638847,-0.636007487773895,0.430016845464706,0.640765190124512,0.170477241277695,0.599219262599945,0.782223761081696,0.9593865275383,-0.00920423027127981,-0.281944960355759,-0.0043686511926353,-0.00652791373431683,0.999969244003296,-0.616336703300476,0.416264444589615,0.668470621109009,-0.738785147666931,-0.656629502773285,-0.15177021920681,-0.176246002316475,0.890391767024994,0.419690191745758,0.815819621086121,-0.403307557106018,-0.414465099573135,0.84026437997818,0.211877897381783,-0.49906262755394,0.218873858451843,0.536606073379517,0.814952850341797,-0.679269134998322,-0.725886702537537,-0.108083136379719,0.97501665353775,-0.0778172016143799,-0.208055406808853,0.460906833410263,-0.140289828181267,-0.876289844512939,-0.760431408882141,-0.623509764671326,-0.181603163480759,-0.532886981964111,0.233611300587654,0.81330019235611,-0.193886950612068,0.897867560386658,0.395274251699448,-0.554233014583588,0.296599239110947,0.777724027633667,-0.824319422245026,-0.487183630466461,-0.288356691598892,-0.73204630613327,-0.656785666942596,-0.180944219231606,-0.564143300056458,0.328875362873077,0.757352828979492,-0.741130352020264,-0.639094531536102,-0.205630734562874,-0.985731899738312,-0.0250091683119535,0.166455268859863,0.232422813773155,0.517971754074097,0.823216319084167,0.88819408416748,0.105623424053192,-0.447163224220276,0.823099493980408,-0.410402357578278,-0.392526924610138,0.98609071969986,-0.162154734134674,-0.0364825017750263,0.11687970161438,0.66182142496109,0.740494132041931,-0.599707424640656,0.736034452915192,0.31401315331459,0.460906833410263,-0.140289828181267,-0.876289844512939,0.445671290159225,0.402454644441605,-0.799629509449005,-0.679269134998322,-0.725886702537537,-0.108083136379719,0.901527047157288,-0.334943741559982,0.273973941802979,
- -0.612855017185211,0.640241861343384,0.463140457868576,0.380035579204559,0.675302624702454,0.632091224193573,-0.778808236122131,-0.52482670545578,-0.343532621860504,-0.602781176567078,-0.797452092170715,-0.0269263554364443,0.771661996841431,0.21860246360302,-0.597286343574524,-0.790236413478851,-0.419167280197144,-0.447018414735794,0.753177404403687,0.232936322689056,-0.615194857120514,0.196842715144157,-0.658060729503632,-0.726779937744141,0.411594539880753,-0.0974306464195251,-0.906144261360168,0.267194241285324,0.626643776893616,-0.732068836688995,0.718077719211578,0.565213859081268,-0.406075984239578,0.218523412942886,0.559548556804657,-0.7994704246521,0.368778765201569,-0.0574352815747261,-0.927741050720215,0.932153880596161,-0.208960697054863,-0.295676440000534,0.236099675297737,0.584116399288177,-0.776572585105896,0.961080968379974,-0.13248610496521,-0.242427304387093,0.859502971172333,0.435060858726501,-0.268284767866135,0.883689701557159,-0.339947640895844,-0.321757823228836,0.989680647850037,0.136209711432457,-0.0444878526031971,0.432727158069611,-0.233792155981064,0.870682775974274,0.417600035667419,-0.292428195476532,0.860288441181183,0.97372978925705,0.226258397102356,0.0256404802203178,0.259433895349503,-0.644360721111298,0.719370067119598,-0.78347235918045,-0.59303742647171,0.185681730508804,0.073499508202076,-0.909630954265594,0.408863455057144,0.0515251941978931,-0.222027599811554,0.973678052425385,0.325088709592819,-0.552832305431366,0.767263829708099,-0.75928008556366,-0.623333275318146,0.186947554349899,-0.855384886264801,-0.335038095712662,0.395052075386047,-0.859298050403595,-0.321694612503052,0.397642314434052,0.202901437878609,-0.738828778266907,0.642622053623199,0.319793283939362,-0.564500153064728,0.760967671871185,0.882918894290924,-0.34207558631897,-0.321618616580963,0.435250341892242,-0.22325499355793,0.872189521789551,0.563092529773712,-0.157315537333488,0.811282098293304,0.399452835321426,-0.494334399700165,0.772056460380554,-0.777458965778351,-0.524215281009674,0.347499519586563,-0.707059383392334,-0.329608887434006,0.625639677047729,
- -0.228607803583145,0.425223350524902,-0.875741720199585,0.125248476862907,0.42358472943306,-0.897155940532684,0.917427718639374,0.263582110404968,-0.298078596591949,-0.0230240728706121,0.190793469548225,-0.981360256671906,-0.231972903013229,0.414554327726364,-0.879962086677551,-0.645087659358978,0.763749480247498,-0.0234241094440222,-0.909579992294312,0.413532972335815,0.0406785681843758,-0.276601314544678,0.25481304526329,-0.926586210727692,-0.802387475967407,0.4337278008461,0.40994456410408,-0.274820268154144,0.261961370706558,-0.925121665000916,-0.5093834400177,0.648012280464172,0.566223084926605,-0.791110754013062,0.457709074020386,0.405766189098358,0.72676956653595,-0.513949632644653,-0.45569920539856,0.866550922393799,-0.384259819984436,-0.318486839532852,0.542631089687347,-0.211946934461594,0.812791466712952,0.918350279331207,0.259730279445648,-0.298618465662003,0.795312762260437,0.278667658567429,-0.53835117816925,-0.231629446148872,0.415650904178619,-0.87953519821167,-0.614503860473633,0.459785550832748,0.641079008579254,-0.239193767309189,0.39109081029892,-0.888726353645325,-0.575585782527924,0.195261627435684,-0.794086813926697,-0.415982931852341,0.503347754478455,-0.757363319396973,-0.253582328557968,0.341825932264328,-0.904903888702393,0.703624963760376,0.51557070016861,-0.488977253437042,-0.611657321453094,0.092645637691021,-0.785679399967194,-0.454257875680923,0.493988990783691,0.741366744041443,-0.662162184715271,0.335697025060654,0.669961750507355,0.563739478588104,-0.155491054058075,0.811184525489807,0.799259305000305,-0.0764454826712608,0.596104741096497,0.745076060295105,-0.473549515008926,-0.469694077968597,-0.720062255859375,-0.245997712016106,0.648841679096222,0.224974453449249,-0.671679854393005,0.705855965614319,0.40666988492012,-0.48287358880043,0.775533854961395,0.780191361904144,-0.114585153758526,0.614956676959991,-0.509499371051788,0.647844672203064,0.566310584545136,-0.449894636869431,0.505156993865967,0.736485719680786,0.695776045322418,-0.252164900302887,0.672538936138153,-0.498666733503342,0.36055314540863,0.788246750831604,
- -0.30305016040802,0.35417652130127,0.884714424610138,0.754143357276917,0.40479850769043,-0.517113327980042,0.631911396980286,0.291503936052322,-0.718131899833679,-0.426363408565521,0.487560719251633,-0.761904716491699,0.457419723272324,-0.72942191362381,-0.508636295795441,0.649565935134888,-0.647557616233826,-0.398413419723511,0.707100570201874,-0.235879108309746,0.666610717773438,-0.42128998041153,0.572208642959595,0.70362776517868,-0.505492389202118,0.350896924734116,-0.788256943225861,-0.831601798534393,0.0601399913430214,-0.552106738090515,-0.675364315509796,0.308636516332626,-0.669795989990234,-0.648252904415131,-0.0451531074941158,-0.760085105895996,0.633443772792816,-0.301081985235214,-0.712810397148132,-0.00400419440120459,0.894311189651489,0.447427600622177,-0.262256562709808,0.823065996170044,0.503769636154175,-0.716204762458801,0.255766749382019,-0.649333596229553,0.710294604301453,-0.231186643242836,0.664856612682343,-0.0143236201256514,-0.806841433048248,-0.590594410896301,0.472614914178848,-0.707012355327606,-0.526088118553162,0.629750192165375,-0.318669885396957,-0.708423733711243,0.191621527075768,-0.322668552398682,-0.926912188529968,-0.715466022491455,0.256776541471481,-0.649749338626862,-0.291317105293274,0.388711333274841,0.874092578887939,0.482755362987518,-0.58906078338623,0.648039102554321,0.758601129055023,-0.153917714953423,0.633114278316498,-0.09024278819561,-0.90929901599884,-0.406240701675415,0.401025235652924,-0.556347072124481,0.727775275707245,0.857777297496796,-0.408589065074921,0.311886250972748,0.91921991109848,-0.337708860635757,0.202453777194023,-0.00321896490640938,0.895053029060364,0.44594806432724,0.162646651268005,0.710962772369385,0.684162378311157,-0.0718987956643105,0.818681538105011,0.569728970527649,-0.665654122829437,0.320404529571533,-0.673977375030518,-0.927116334438324,0.244058802723885,-0.284412682056427,-0.874085068702698,-0.0508438050746918,-0.483104795217514,0.0685150250792503,-0.650520205497742,-0.756392180919647,-0.827999770641327,0.341141134500504,-0.445016115903854,
- 0.204554706811905,0.817154705524445,0.538902163505554,-0.0776187106966972,0.811255991458893,0.579516232013702,-0.945937931537628,0.217213243246078,-0.240873143076897,-0.962606072425842,0.188465774059296,-0.194602742791176,0.468569904565811,0.863076150417328,0.188525334000587,0.184987783432007,0.783101856708527,0.593743205070496,0.18736357986927,0.76579225063324,0.615188717842102,0.737602293491364,-0.539526343345642,0.406022399663925,0.94920939207077,-0.287318021059036,0.12825807929039,0.869446396827698,-0.49242377281189,0.0397716984152794,-0.091913253068924,-0.911094307899475,-0.401819735765457,0.864418089389801,-0.402183949947357,0.301710903644562,0.822849154472351,-0.294812947511673,-0.48580327630043,0.321772575378418,0.89513224363327,-0.308546036481857,0.440327644348145,0.896886110305786,-0.0413145944476128,-0.233190596103668,-0.433641672134399,-0.870389044284821,-0.884065985679626,0.29276168346405,-0.36430498957634,0.0313920266926289,-0.726311266422272,-0.686648726463318,0.0588848814368248,-0.671097099781036,-0.739027202129364,0.815469741821289,-0.284836769104004,-0.503862202167511,-0.257526725530624,-0.744325757026672,-0.616164863109589,0.38379979133606,0.451050490140915,0.805761218070984,-0.695955038070679,-0.35645455121994,0.623367249965668,-0.56957620382309,0.0721091330051422,0.818769454956055,-0.245328530669212,-0.915653049945831,-0.318423360586166,-0.935196876525879,0.347019821405411,0.0705974698066711,-0.984594523906708,-0.0446117259562016,0.169066861271858,-0.857974171638489,0.249382793903351,0.449097484350204,0.360356718301773,0.927244007587433,0.10179291665554,0.45817619562149,0.702317178249359,0.544816613197327,0.332987666130066,0.836751401424408,-0.434702575206757,0.482858419418335,-0.4151811003685,-0.771020352840424,0.625154197216034,-0.0911541879177094,-0.775160074234009,0.608778357505798,-0.505422234535217,-0.611504256725311,-0.257483810186386,-0.741439700126648,-0.619652628898621,0.812607765197754,-0.281068474054337,-0.510557889938354,0.174009174108505,-0.184096589684486,-0.967382669448853,0.176150724291801,0.644575834274292,-0.743971049785614,
- -0.0670698583126068,0.822580993175507,-0.56467878818512,0.116573795676231,-0.140090495347977,-0.983252346515656,-0.0621490776538849,0.826993882656097,-0.558765232563019,0.249838814139366,0.968279778957367,0.0038500230293721,-0.476119667291641,0.0253510288894176,0.879015147686005,-0.0021953375544399,-0.616213917732239,0.787575781345367,0.0805980041623116,-0.835587382316589,0.543413043022156,-0.249977797269821,-0.890927135944366,-0.379157185554504,0.692546129226685,-0.562751889228821,-0.451320469379425,-0.306810081005096,-0.949177205562592,-0.0702154934406281,0.074152760207653,-0.841496706008911,0.535149157047272,-0.488096535205841,-0.861300885677338,-0.141147315502167,-0.444016605615616,0.00996175035834312,0.895963191986084,-0.303939193487167,-0.950497210025787,-0.0646221861243248,0.700991749763489,-0.568315625190735,-0.430845618247986,0.0993577763438225,-0.991192877292633,0.0875483602285385,0.374122589826584,0.91821414232254,0.130057975649834,-0.851586520671844,0.244284138083458,0.463816404342651,-0.720911741256714,0.458149462938309,0.519985914230347,-0.0561711229383945,0.0356975421309471,0.99778288602829,-0.233397215604782,-0.0841077044606209,0.968737125396729,-0.115963540971279,-0.993233978748322,0.00622734474018216,0.421740233898163,0.876048922538757,0.233823597431183,-0.646531999111176,0.410880088806152,0.642786026000977,0.183167204260826,0.982594013214111,-0.0309641677886248,-0.404422163963318,0.257015913724899,0.87771612405777,0.095238670706749,0.994067311286926,-0.0525332950055599,0.433579176664352,0.895096898078918,0.103974170982838,0.435334861278534,0.894128680229187,0.104964151978493,0.517294764518738,-0.50111186504364,-0.693753004074097,0.198588654398918,-0.20284278690815,-0.958862543106079,-0.377050250768662,-0.921190023422241,-0.0961355417966843,0.340294390916824,-0.309820085763931,-0.887812614440918,0.163683265447617,-0.393307387828827,-0.904719352722168,-0.314076572656631,-0.1606215685606,-0.935711801052094,-0.168651074171066,0.964528977870941,-0.203078508377075,0.153713941574097,0.987063050270081,-0.0455913580954075,
- -0.145180881023407,-0.253695845603943,-0.956326901912689,0.294766902923584,0.955162107944489,-0.027893353253603,0.480562597513199,0.862034142017365,-0.161111637949944,-0.157121673226357,-0.987532377243042,-0.00962415151298046,-0.592597842216492,-0.805476307868958,0.00597980292513967,-0.0229472368955612,0.014583301730454,0.999630331993103,0.0282967407256365,-0.33683717250824,-0.941137611865997,-0.290943205356598,-0.956722140312195,-0.00590290827676654,-0.458114117383957,-0.879498898983002,-0.128891989588737,-0.395712524652481,0.2514808177948,0.883271753787994,0.00542717752978206,0.269865989685059,0.962882697582245,0.315040618181229,0.948742806911469,-0.025233119726181,0.391371369361877,-0.248721942305565,0.885982990264893,0.0482864081859589,-0.998684704303741,-0.0172481834888458,0.451497763395309,0.107066817581654,0.885825276374817,-0.261622786521912,0.960957288742065,-0.0900823548436165,-0.657312452793121,0.389787048101425,0.644985556602478,-0.351685166358948,0.933511137962341,-0.0698191076517105,0.0146190505474806,0.267146050930023,0.963545262813568,-0.0366966389119625,0.999095678329468,0.0214752480387688,0.145653545856476,0.980069696903229,-0.135086759924889,0.857358813285828,0.488716930150986,-0.161529138684273,0.572100698947906,-0.626583397388458,-0.529239118099213,0.276022166013718,-0.434315204620361,-0.857427597045898,-0.315928429365158,-0.576258718967438,-0.753734111785889,-0.43260058760643,-0.901585519313812,-0.00057295459555462,-0.140259921550751,-0.256222635507584,-0.956387519836426,-0.942233681678772,-0.0306766182184219,-0.333548575639725,-0.555115878582001,0.831113398075104,-0.0331197343766689,-0.365478068590164,0.920438230037689,0.138633608818054,-0.510394334793091,-0.484024494886398,-0.710786819458008,0.911515295505524,0.252645790576935,-0.324514925479889,0.682746648788452,0.0346590168774128,-0.729832708835602,-0.0875242054462433,-0.996078491210938,-0.0129296574741602,-0.418299436569214,-0.854053914546967,0.30922082066536,0.253064274787903,0.187658831477165,0.949074625968933,0.0480791926383972,-0.998694717884064,-0.0172417629510164,
- 0.0808818116784096,-0.671814382076263,-0.736290395259857,0.321588903665543,-0.946814715862274,0.0110761160030961,-0.881736636161804,0.348035752773285,0.318451941013336,-0.567878246307373,0.341607689857483,0.748878121376038,-0.364404320716858,0.35774239897728,0.85978490114212,0.104050561785698,-0.994284808635712,-0.0239005759358406,-0.224831268191338,-0.944007396697998,0.241455927491188,-0.361618667840958,-0.55767685174942,-0.747146844863892,0.558155059814453,0.432830005884171,0.70789909362793,0.592172980308533,0.779113292694092,-0.205702871084213,0.634566307067871,0.01725934445858,0.772675693035126,0.824407458305359,0.0576234795153141,0.563055872917175,0.571690082550049,0.050190232694149,0.818933069705963,-0.428981870412827,-0.605103015899658,0.670689880847931,0.657540380954742,0.717570006847382,-0.229638963937759,0.593626081943512,0.396751821041107,0.700139999389648,0.35393625497818,0.846451938152313,-0.397804319858551,0.657549262046814,0.324340671300888,0.680023610591888,0.2933070063591,0.886780142784119,-0.357200235128403,0.408252596855164,0.791620552539825,-0.454606115818024,0.678004860877991,0.122583717107773,-0.724763870239258,-0.442101418972015,-0.69216775894165,-0.57048237323761,-0.193283915519714,-0.617928385734558,-0.76210618019104,-0.946634232997894,-0.0190402735024691,-0.321746915578842,-0.904555261135101,-0.160992756485939,-0.394792526960373,-0.47730079293251,-0.496867090463638,0.724780797958374,-0.963194847106934,0.124949716031551,-0.237998425960541,0.132995188236237,0.980867445468903,-0.142167255282402,0.355077177286148,0.812017619609833,-0.463192820549011,-0.455643981695175,-0.548699080944061,0.700940728187561,-0.235744267702103,-0.342464119195938,0.909474015235901,0.803250730037689,0.10219669342041,0.586808383464813,-0.52476704120636,-0.637636244297028,-0.563950002193451,-0.0220129750669003,-0.996873021125793,-0.0758921280503273,-0.0822065994143486,-0.96916538476944,0.232294157147408,0.172455728054047,0.972431182861328,-0.156960546970367,0.382617294788361,0.579325318336487,0.719712555408478,0.520119965076447,0.778137505054474,0.352104425430298,
- 0.872829794883728,-0.467502653598785,0.140033558011055,0.899079263210297,-0.328393667936325,0.28950697183609,-0.170881077647209,-0.806345760822296,0.566221177577972,0.891768038272858,-0.424540638923645,0.156573414802551,0.283072650432587,-0.141283005475998,-0.948635339736938,0.525653123855591,-0.123600587248802,-0.841671943664551,0.506906092166901,0.430105865001678,-0.747030913829803,-0.948416531085968,0.194274455308914,-0.250526875257492,-0.923473060131073,-0.107761047780514,-0.368219047784805,-0.21330814063549,0.310534924268723,0.926319420337677,-0.794703245162964,0.597350299358368,0.107793293893337,-0.852123916149139,0.495316505432129,-0.16895680129528,-0.951711058616638,-0.0727649107575417,-0.298247098922729,0.537786185741425,0.031798679381609,-0.842481374740601,0.277500987052917,0.162144750356674,-0.946943759918213,-0.176068097352982,-0.425999522209167,0.887425720691681,0.934087574481964,-0.294233709573746,0.20225465297699,-0.226304292678833,-0.479321956634521,0.847960412502289,-0.666954278945923,0.741777181625366,-0.0702752694487572,0.0245805270969868,0.947121441364288,0.319932520389557,-0.0513433814048767,0.929428517818451,0.365412831306458,0.865874409675598,-0.391269952058792,0.311719954013824,0.196153283119202,-0.637705028057098,-0.744886696338654,0.815371036529541,-0.57080090045929,0.0967284515500069,0.946671903133392,0.100123539566994,0.306247621774673,-0.158992439508438,-0.0130173526704311,0.987194001674652,0.923674345016479,-0.245830103754997,0.293927639722824,0.295957088470459,-0.24062591791153,-0.924396336078644,0.27626159787178,-0.210916414856911,-0.937653362751007,0.964181065559387,-0.050382312387228,0.260416090488434,0.300082385540009,-0.199667274951935,-0.932782709598541,-0.988641083240509,-0.0254898425191641,-0.148118570446968,-0.884921789169312,-0.334548741579056,-0.324022501707077,-0.147876843810081,0.115917548537254,0.982189178466797,-0.909548997879028,0.358569771051407,-0.210115015506744,-0.988475978374481,-0.0140014179050922,-0.150729537010193,-0.916875600814819,0.333512932062149,-0.219336047768593,
- 0.259429126977921,0.294013261795044,-0.919919967651367,0.302284926176071,0.19609460234642,-0.932829439640045,0.302540421485901,0.191280514001846,-0.933745741844177,0.225865185260773,0.027134895324707,-0.973780572414398,-0.894727408885956,0.384301006793976,-0.227543026208878,0.287493139505386,-0.326695024967194,-0.900343298912048,0.950555562973022,-0.140201911330223,0.2771055996418,0.95828652381897,-0.0568974949419498,0.280088692903519,-0.16233828663826,-0.0593283250927925,0.984950065612793,0.862105071544647,-0.3652064204216,0.351282089948654,0.897320330142975,-0.32015073299408,0.303841680288315,0.147542685270309,-0.289320379495621,-0.945793271064758,0.277108669281006,-0.407397657632828,-0.87019419670105,0.945493400096893,-0.128476336598396,0.299225747585297,0.936047732830048,-0.168041974306107,0.309154540300369,0.712383270263672,-0.371961772441864,-0.595108807086945,0.133067682385445,-0.355747193098068,-0.925060510635376,-0.987116575241089,0.021187212318182,-0.158593893051147,-0.352533847093582,0.0977877527475357,0.930675804615021,-0.144334703683853,0.151531383395195,0.977857708930969,0.945512413978577,-0.128388628363609,0.299203276634216,-0.139993667602539,0.192570820450783,0.97124570608139,-0.307723969221115,0.322910934686661,0.895005285739899,-0.914801776409149,0.338610857725143,-0.220183104276657,0.264343649148941,0.471187800168991,-0.841489434242249,-0.901880085468292,0.284858047962189,-0.324759036302567,-0.374737083911896,-0.505138218402863,0.777436494827271,-0.981486797332764,-0.150643900036812,-0.118280492722988,-0.939083516597748,-0.143038004636765,-0.312509715557098,-0.854101419448853,0.413165926933289,-0.315918862819672,0.235622003674507,0.100888341665268,-0.96659392118454,0.374711126089096,0.235705479979515,-0.896679699420929,0.351310133934021,-0.749847888946533,-0.5606330037117,-0.431234091520309,-0.672773659229279,-0.601176202297211,-0.653679013252258,-0.734938621520996,-0.180468738079071,-0.0823361724615097,-0.0638880059123039,0.994554817676544,0.945512413978577,-0.128388628363609,0.299203276634216,
- -0.307723969221115,0.322910934686661,0.895005285739899,-0.384173810482025,-0.278946489095688,0.880113244056702,-0.903907477855682,-0.313922882080078,-0.290523141622543,-0.0985710173845291,0.010441062040627,0.995075345039368,-0.351220101118088,0.920045256614685,-0.173669680953026,-0.247613653540611,0.958510398864746,0.14122861623764,-0.231012761592865,0.852724671363831,0.468501567840576,0.890422284603119,0.443242728710175,0.103363528847694,-0.150713309645653,0.886556327342987,-0.43738266825676,0.628759384155273,0.440276831388474,-0.640950918197632,0.191507026553154,-0.963241815567017,0.188389152288437,-0.514632105827332,-0.575798809528351,-0.635302722454071,-0.962747991085052,-0.241851329803467,-0.120930776000023,0.398956507444382,-0.887382686138153,-0.231053382158279,0.128341361880302,-0.830394506454468,0.542193174362183,0.86169695854187,-0.436874091625214,0.258107393980026,0.474855422973633,0.853353321552277,0.21517539024353,-0.203577592968941,0.586541593074799,0.783916532993317,0.259907841682434,0.307992935180664,0.915198504924774,0.288919895887375,-0.357927083969116,-0.887926518917084,0.739254117012024,-0.182781592011452,-0.64814680814743,0.811517298221588,-0.535062849521637,0.234834864735603,0.25876185297966,-0.237365171313286,-0.936322629451752,0.918272912502289,-0.27174523472786,0.287974566221237,0.677772164344788,-0.0547870732843876,-0.733228027820587,0.237680211663246,0.93158233165741,-0.275068521499634,0.877442955970764,-0.103356674313545,0.468413591384888,0.807087123394012,0.568003058433533,0.161192893981934,0.908565878868103,0.155223459005356,0.387832134962082,0.856028914451599,-0.0845303013920784,0.509969711303711,0.202196419239044,0.958920359611511,-0.198968306183815,0.422786831855774,0.546132028102875,-0.723181366920471,0.16968297958374,0.843509674072266,-0.509606897830963,0.941059112548828,-0.0880548059940338,-0.326579421758652,0.178297370672226,0.861135125160217,-0.476084351539612,0.974029242992401,-0.148201555013657,-0.171182230114937,0.960797965526581,-0.067828506231308,-0.2688247859478,0.273352444171906,0.951928913593292,0.138238906860352,
- 0.744890511035919,0.235180214047432,0.624362409114838,0.844617784023285,0.202132031321526,0.495745569467545,0.855640411376953,-0.412812113761902,-0.31219494342804,0.134348720312119,0.764271855354309,-0.630744814872742,-0.410338580608368,0.910526931285858,-0.0506280921399593,0.0675432905554771,0.590792655944824,-0.803991258144379,0.334083199501038,0.80320155620575,-0.493209809064865,-0.654602825641632,0.0624604560434818,-0.753388285636902,-0.654321491718292,0.0623633414506912,-0.753640651702881,0.327268153429031,0.815654695034027,-0.477077543735504,-0.356235474348068,0.665463447570801,-0.655938029289246,0.44035068154335,-0.666815400123596,0.601205885410309,-0.710384428501129,0.247824028134346,0.658739149570465,-0.400830626487732,-0.867770969867706,0.293782889842987,-0.489502668380737,0.857007801532745,-0.161011695861816,0.219996079802513,0.933478057384491,-0.283232539892197,-0.952084720134735,0.234553396701813,0.196263685822487,-0.97330778837204,0.229503586888313,0.000202343740966171,-0.953245580196381,0.233223885297775,0.19217050075531,0.222997277975082,0.93759959936142,-0.266794294118881,-0.748885869979858,0.33921205997467,0.569302320480347,-0.0687391757965088,-0.829773008823395,0.553851664066315,-0.283828377723694,0.952905476093292,0.106829792261124,-0.298938542604446,-0.946622431278229,0.120589911937714,-0.960811197757721,0.242836654186249,0.133687123656273,0.429282605648041,-0.656237542629242,0.62053906917572,-0.736549258232117,0.250288873910904,0.62837141752243,-0.198416188359261,-0.83447676897049,0.514081239700317,-0.871846199035645,0.293872892856598,0.391819953918457,-0.316673129796982,-0.922262609004974,0.22169753909111,-0.896406769752502,0.280039936304092,0.343558579683304,-0.198526173830032,-0.834650099277496,0.513757288455963,0.599953532218933,-0.787148535251617,0.143013805150986,0.989786267280579,-0.0233079977333546,-0.14064185321331,-0.20383283495903,-0.842920660972595,0.497932612895966,-0.252188593149185,-0.908515632152557,0.333167374134064,0.88036972284317,-0.133488580584526,-0.455115288496017,0.72181898355484,-0.350897967815399,-0.596529960632324,
- -0.213107258081436,-0.902085304260254,0.375269770622253,-0.331197649240494,-0.938372075557709,-0.0988228917121887,0.718357622623444,-0.352376282215118,-0.599827826023102,0.760669767856598,-0.333097279071808,-0.557160377502441,0.744785070419312,-0.483895510435104,-0.459500133991241,-0.140776053071022,-0.871679782867432,0.46942138671875,-0.661761939525604,0.0518239922821522,0.747920751571655,0.830868542194366,0.272786259651184,0.485020786523819,0.855245769023895,0.210034936666489,0.473751217126846,0.799449563026428,0.391129672527313,0.455958336591721,-0.679787516593933,0.218667581677437,0.700052440166473,-0.611460626125336,-0.111915551126003,0.783320367336273,-0.618219673633575,-0.0979719310998917,0.779875576496124,0.609962821006775,0.577062666416168,0.543087482452393,0.806783616542816,0.367836862802505,0.462381333112717,-0.540806412696838,-0.34050464630127,0.769145667552948,-0.66177237033844,-0.484055906534195,-0.572492122650146,-0.604832530021667,-0.125263839960098,0.786439180374146,-0.711791932582855,-0.165384396910667,-0.682642102241516,-0.788213551044464,-0.0497288145124912,-0.613389313220978,-0.666529476642609,0.0822003707289696,0.740932941436768,0.431699991226196,-0.0641064345836639,-0.89973646402359,-0.708818733692169,-0.378822594881058,-0.595037341117859,-0.689320087432861,-0.293061286211014,-0.662535190582275,-0.357684969902039,-0.0323985926806927,0.933280110359192,0.653338193893433,0.514130294322968,0.555715203285217,-0.59083878993988,-0.152475789189339,0.792250394821167,0.647979080677032,0.522397458553314,0.554277956485748,-0.36932110786438,-0.0120717557147145,0.929223418235779,0.695810198783875,0.630188465118408,0.344544112682343,-0.691341698169708,-0.421163499355316,-0.587084293365479,0.445140063762665,-0.117406159639359,-0.887730896472931,0.460527777671814,0.00134557310957462,-0.887644290924072,0.822019457817078,0.375639408826828,0.427994221448898,0.527216851711273,-0.185381218791008,-0.829262435436249,0.432528734207153,-0.0672507137060165,-0.899108588695526,0.426113307476044,0.0809718072414398,-0.901038825511932,
- 0.756120979785919,0.545006275177002,0.362283676862717,0.745043635368347,0.524906158447266,0.411562263965607,-0.891309320926666,-0.415268182754517,-0.181989058852196,-0.602368593215942,-0.130147993564606,0.787536442279816,-0.659541189670563,-0.488438069820404,-0.571343779563904,-0.549475252628326,-0.226413354277611,0.804247438907623,-0.874085128307343,-0.449883759021759,-0.183247938752174,-0.333955317735672,-0.0727482810616493,0.939777493476868,0.447833389043808,0.031687393784523,-0.893555343151093,0.337445348501205,0.114303633570671,-0.934379756450653,-0.703532457351685,-0.392115652561188,-0.592694997787476,0.744909942150116,0.525177657604218,0.411457926034927,0.533452987670898,-0.200083240866661,-0.821824073791504,0.425663352012634,0.081961028277874,-0.901162087917328,0.303297638893127,0.160526365041733,-0.939277291297913,-0.739394009113312,-0.647387325763702,-0.184895217418671,-0.687782883644104,-0.429261356592178,-0.585396766662598,0.328678488731384,0.126353085041046,-0.935951590538025,0.62143874168396,0.715051293373108,0.320180505514145,0.64846408367157,0.577941477298737,0.495457321405411,0.833496272563934,0.362821221351624,0.41670697927475,0.394492119550705,0.0325090624392033,-0.918324112892151,0.720431447029114,0.469133108854294,0.510776579380035,0.863321483135223,0.294611901044846,0.409731477499008,0.906147837638855,0.380708158016205,-0.184275224804878,0.53098452091217,-0.195361256599426,-0.824554085731506,0.8576420545578,0.255663394927979,-0.4461909532547,0.551713049411774,-0.235988140106201,-0.799951434135437,0.945751547813416,0.262634664773941,-0.191251367330551,0.224234968423843,0.260791569948196,-0.938992261886597,0.75446218252182,0.51422381401062,-0.407873332500458,-0.731947541236877,0.227732881903648,-0.642176389694214,0.262810468673706,0.212984085083008,-0.941046476364136,-0.504507958889008,-0.393218070268631,-0.768668532371521,-0.777103781700134,-0.601421058177948,-0.185478895902634,-0.688317060470581,0.00920376740396023,-0.725351572036743,0.700090229511261,0.601326465606689,-0.385071635246277,0.880988538265228,0.142381176352501,-0.451206237077713,
- -0.735262393951416,0.263707548379898,-0.624377727508545,0.805083155632019,0.504620015621185,-0.311768710613251,-0.555354177951813,0.258626371622086,-0.790375947952271,0.769433319568634,0.57776552438736,-0.272322237491608,0.936845600605011,0.32677561044693,0.124651528894901,-0.599238872528076,0.553318679332733,-0.578576922416687,0.967354476451874,0.224419087171555,-0.117735281586647,-0.599238872528076,0.553318679332733,-0.578576922416687,0.936845600605011,0.32677561044693,0.124651528894901,-0.877167344093323,-0.306541919708252,0.369607180356979,-0.957240700721741,-0.232912570238113,-0.17158679664135,-0.701083123683929,0.0565793327987194,-0.710831463336945,-0.518884420394897,0.136188670992851,-0.843926310539246,-0.862358629703522,-0.359177380800247,0.356832176446915,-0.679563820362091,-0.0199671071022749,-0.733344614505768,-0.113251075148582,0.690195381641388,-0.714705944061279,-0.546652376651764,0.226390138268471,-0.806175351142883,0.971198260784149,0.128225833177567,-0.200828582048416,0.951665818691254,0.29931765794754,-0.068857379257679,-0.112626902759075,0.694805204868317,-0.71032452583313,0.971708655357361,0.151082932949066,-0.181538626551628,0.821250081062317,0.545162618160248,-0.168362826108933,-0.112779043614864,0.693687200546265,-0.711392283439636,0.951895534992218,0.29846054315567,-0.0693989172577858,-0.918763279914856,-0.293119072914124,0.264490604400635,-0.14916829764843,0.0953613594174385,-0.984202742576599,-0.883189141750336,-0.41831174492836,0.212113618850708,-0.989879310131073,-0.103667698800564,0.0969121381640434,-0.598770618438721,0.53484046459198,-0.596170663833618,-0.127258345484734,0.566604256629944,-0.814103901386261,-0.831491112709045,0.359174728393555,0.423811286687851,-0.597006320953369,0.501573622226715,-0.626104950904846,-0.987655460834503,-0.14481109380722,0.0597198605537415,-0.127751722931862,0.561363220214844,-0.817649722099304,0.719288408756256,0.680701673030853,-0.138814359903336,0.103544786572456,0.968809008598328,0.225139528512955,0.352645963430405,0.935474991798401,0.022963946685195,
- 0.314691990613937,0.919056236743927,-0.237285897135735,-0.578065693378448,0.813064873218536,0.0690347626805305,-0.931757092475891,-0.336669027805328,0.135951220989227,-0.147717460989952,0.19685685634613,-0.969240486621857,-0.984724760055542,0.0483666509389877,-0.167265668511391,-0.920990526676178,-0.361071735620499,-0.146299958229065,-0.147281363606453,0.215300843119621,-0.965377509593964,-0.921987771987915,-0.370269864797592,0.113308258354664,-0.865014255046844,-0.435694456100464,-0.248839125037193,-0.786246716976166,-0.444719135761261,0.429000020027161,0.177548125386238,-0.492686659097672,0.851901710033417,0.189715296030045,-0.391742706298828,0.90030312538147,-0.927802085876465,0.0693528577685356,0.36656990647316,-0.817848801612854,-0.514761686325073,-0.25718429684639,-0.210829392075539,-0.223063290119171,-0.951731979846954,0.896583735942841,-0.0546786412596703,-0.439485877752304,0.944584906101227,-0.0479027442634106,-0.324753314256668,0.17727966606617,-0.494658261537552,0.850814521312714,0.728549182415009,-0.597349405288696,-0.335245847702026,0.754076361656189,-0.555827498435974,-0.349892318248749,-0.956207036972046,-0.152935177087784,0.249557569622993,0.156095430254936,-0.626880466938019,0.763318598270416,0.179261907935143,-0.601183176040649,0.778745114803314,0.951675474643707,0.0713362470269203,-0.298705458641052,0.212806940078735,-0.140669941902161,0.966915309429169,0.209791392087936,-0.109489232301712,0.971596479415894,0.192503362894058,-0.4947589635849,0.847440898418427,-0.930454134941101,0.16609688103199,0.326599031686783,-0.953593611717224,-0.0801336392760277,0.29023751616478,0.203000620007515,-0.375012338161469,0.904520153999329,0.907412230968475,-0.243614852428436,-0.342425256967545,0.981891512870789,0.106636375188828,-0.156581282615662,0.202908784151077,-0.376308172941208,0.90400230884552,0.981689274311066,0.0605968050658703,-0.180594116449356,0.969530582427979,0.203721016645432,-0.136045023798943,0.135096445679665,-0.81747978925705,0.559889018535614,0.395870238542557,-0.734307110309601,0.551434338092804,
- -0.973392188549042,-0.228456735610962,-0.0177586041390896,0.91271448135376,0.405085563659668,0.0534618645906448,0.390427142381668,-0.411743462085724,0.823428213596344,0.20560148358345,-0.335287779569626,0.919407486915588,-0.776081681251526,-0.557568609714508,0.294642955064774,-0.986519873142242,-0.15596467256546,0.0495353490114212,0.398976892232895,-0.702346503734589,0.589514076709747,0.394322127103806,-0.449500232934952,0.801535785198212,0.94013786315918,0.34064394235611,-0.0101342089474201,0.993152499198914,0.116344772279263,-0.0105859078466892,0.994204819202423,0.106151178479195,-0.0169974099844694,0.693046450614929,-0.334429293870926,0.638626396656036,0.395126461982727,-0.458235234022141,0.796175599098206,0.593694388866425,0.0560056939721107,0.802739262580872,-0.878907263278961,-0.299555391073227,0.371198892593384,0.343828111886978,-0.134350806474686,0.929371893405914,0.654443144798279,-0.124613888561726,0.745771825313568,0.966459691524506,0.246421247720718,0.0723341330885887,0.793733298778534,0.354723513126373,-0.494124412536621,-0.876711010932922,-0.308340966701508,0.369193553924561,0.59531581401825,0.0519755519926548,0.801809012889862,0.554395139217377,-0.03139853104949,0.831661105155945,0.780773878097534,0.401155322790146,-0.479026675224304,0.559151530265808,-0.0481067448854446,0.827668607234955,0.639866709709167,-0.073933519423008,0.764921188354492,0.368314564228058,0.401598125696182,0.838488698005676,-0.988666772842407,0.00140517018735409,-0.150120079517365,-0.909180641174316,-0.0525134913623333,0.413077414035797,0.471067190170288,0.198923707008362,0.859374821186066,0.704106688499451,0.585427939891815,-0.40188068151474,0.78689444065094,0.451274067163467,-0.420890539884567,-0.857428908348084,-0.48052591085434,-0.184148117899895,-0.293695032596588,-0.51867687702179,-0.802943050861359,-0.322681069374084,-0.0914324298501015,0.942081212997437,0.539198338985443,0.0183807276189327,0.841978251934052,0.848582327365875,0.288666129112244,-0.443373382091522,0.943915009498596,0.269382804632187,-0.190938085317612,0.373277425765991,0.3930544257164,0.840340554714203,
- 0.694048702716827,0.632236242294312,0.344345390796661,-0.370844662189484,-0.00938245095312595,0.928647518157959,0.924379467964172,0.180155619978905,0.336254000663757,0.564570724964142,-0.0679340735077858,0.822584271430969,0.956960797309875,0.216630429029465,-0.193125203251839,0.920600175857544,-0.00977722648531199,0.390384078025818,0.561400771141052,0.664107143878937,-0.493751794099808,0.554146945476532,0.571787059307098,-0.604963421821594,0.627487540245056,0.566240131855011,-0.534444987773895,0.829615354537964,0.0769218504428864,0.553011238574982,0.528783440589905,-0.709174811840057,0.46632519364357,0.511450529098511,0.252177894115448,0.821477115154266,-0.656642496585846,-0.709985613822937,-0.25444296002388,0.264746695756912,-0.555131673812866,0.788503646850586,0.648134469985962,-0.0101751275360584,0.761457920074463,0.647053778171539,0.532181143760681,-0.545989573001862,0.548369526863098,-0.716530501842499,0.431132197380066,0.658557593822479,0.510774433612823,-0.552640378475189,0.728051841259003,-0.144332885742188,0.670155644416809,0.422138839960098,0.714800357818604,-0.557547509670258,0.209682613611221,-0.514312505722046,0.831574320793152,-0.704933345317841,-0.675738513469696,-0.215514540672302,-0.694195508956909,-0.141116514801979,-0.705817878246307,0.0514162480831146,0.940187335014343,-0.336755394935608,-0.68455445766449,-0.148479580879211,-0.713679909706116,-0.662366807460785,-0.706226587295532,-0.250028759241104,-0.657634735107422,-0.168330252170563,-0.734289824962616,0.203607439994812,0.877846717834473,-0.43350824713707,0.342202395200729,0.873074650764465,-0.347330003976822,0.44497674703598,0.666990756988525,-0.597594380378723,-0.654906392097473,-0.170287102460861,-0.736274361610413,0.344503700733185,0.871529698371887,-0.348931521177292,-0.667918920516968,-0.160865187644959,-0.726640701293945,-0.696714818477631,-0.703567624092102,-0.139932408928871,0.243489027023315,-0.539653301239014,0.805907964706421,-0.436657726764679,-0.820375204086304,-0.369208067655563,-0.721774101257324,-0.1192372366786,-0.681780517101288,
- 0.504402756690979,0.495442688465118,-0.707187652587891,0.800759851932526,-0.328052639961243,0.50116378068924,0.240991488099098,-0.53781121969223,0.807887494564056,-0.831634283065796,-0.553462862968445,0.0454237498342991,0.504402756690979,0.495442688465118,-0.707187652587891,-0.747755289077759,-0.0977354273200035,-0.656741797924042,-0.436657726764679,-0.820375204086304,-0.369208067655563,-0.924139857292175,0.382046759128571,0.0024586864747107,0.239085346460342,0.936926066875458,-0.254966229200363,0.368940860033035,0.855155169963837,-0.364132255315781,0.369294196367264,0.853926301002502,-0.366649270057678,0.387576520442963,0.797715365886688,-0.461989849805832,-0.936030626296997,0.346116095781326,-0.0636419132351875,-0.397990465164185,-0.659132480621338,0.638081610202789,0.800759851932526,-0.328052639961243,0.50116378068924,-0.831634283065796,-0.553462862968445,0.0454237498342991,-0.359264135360718,-0.399241268634796,0.843525886535645,-0.894707322120667,-0.0658793300390244,0.44176772236824,-0.878599286079407,0.453750044107437,0.148910090327263,0.806264281272888,-0.350401252508163,0.476609766483307,0.823386967182159,-0.359914094209671,0.438743323087692,0.478218555450439,0.582084596157074,-0.657635688781738,0.814244747161865,-0.531125903129578,0.234330505132675,-0.397334277629852,-0.813669621944427,0.424343347549438,0.829611837863922,-0.508547484874725,0.230486243963242,0.30633008480072,0.101675227284431,-0.946479797363281,0.546347320079803,-0.0664410144090652,-0.834919273853302,0.562037467956543,-0.725783824920654,-0.396675825119019,0.417172789573669,-0.71901273727417,-0.555866420269012,0.226142391562462,0.219696432352066,-0.94899582862854,0.311801254749298,0.123620241880417,-0.942071139812469,-0.398102730512619,-0.806510210037231,0.437099277973175,0.352823674678802,-0.809949278831482,0.468505710363388,0.830550789833069,-0.502210140228271,0.240770876407623,0.307591080665588,0.46554633975029,-0.829851984977722,0.779371619224548,-0.626561522483826,0.000752905383706093,0.243007659912109,-0.969956755638123,-0.0114538194611669,
- -0.38244354724884,-0.526401460170746,0.759367167949677,-0.894468724727631,0.434213072061539,0.106699153780937,0.120070733129978,0.548382759094238,0.827562272548676,0.346596002578735,-0.834154665470123,0.429018944501877,0.386753916740417,0.450426518917084,-0.804697036743164,0.373303890228271,0.71585476398468,-0.590081512928009,0.375982880592346,0.729111194610596,-0.571868658065796,-0.928398609161377,0.369268268346787,-0.0414361841976643,-0.943464457988739,0.294394284486771,-0.15233787894249,-0.928411304950714,0.371113717556,-0.018090171739459,-0.817838907241821,-0.179127633571625,-0.546857237815857,0.343262255191803,-0.845369815826416,0.409293115139008,-0.953897535800934,0.202928423881531,-0.221132472157478,0.324846178293228,0.523839712142944,-0.787443280220032,0.380491346120834,0.697439789772034,-0.607292413711548,0.0166482962667942,0.709237694740295,-0.70477283000946,-0.953897535800934,0.202928423881531,-0.221132472157478,0.380491346120834,0.697439789772034,-0.607292413711548,-0.949743747711182,0.145956084132195,-0.276918113231659,0.0203472208231688,0.507628262042999,-0.861335933208466,-0.723714828491211,-0.127887785434723,0.67814564704895,-0.866230905056,-0.10090533643961,-0.489348709583282,-0.635702788829803,-0.659862160682678,0.400579482316971,0.310601353645325,-0.918116867542267,0.246147215366364,-0.707509636878967,-0.445126086473465,0.548901557922363,0.0231995806097984,0.186942681670189,-0.98209685087204,-0.924030363559723,0.150597393512726,-0.35140934586525,0.356525212526321,-0.792938709259033,0.494103193283081,0.981226682662964,-0.169865429401398,0.0913232192397118,0.366619884967804,0.238871350884438,-0.89918315410614,0.97403609752655,0.124403849244118,0.189149633049965,0.341910064220428,-0.217235177755356,0.914279162883759,-0.703989267349243,0.0168961193412542,0.710009694099426,-0.716838240623474,-0.390288114547729,0.577769994735718,0.554998695850372,-0.655728995800018,0.511855363845825,0.977494180202484,-0.194117039442062,0.0826068595051765,0.262738406658173,-0.121866106987,-0.957140207290649,0.312083899974823,-0.0495400242507458,-0.948762059211731,
- 0.73920464515686,-0.664195954799652,-0.1114467009902,0.859445631504059,0.510854482650757,-0.0195164680480957,0.246695771813393,0.179999813437462,-0.952229619026184,0.989841639995575,-0.0532710552215576,0.13181771337986,-0.237323358654976,-0.970512449741364,-0.0422285720705986,0.730971992015839,-0.334645569324493,-0.594720363616943,0.797763228416443,-0.356775999069214,-0.486091524362564,0.699148893356323,-0.405429810285568,-0.588912189006805,-0.48301836848259,0.0304543953388929,-0.875080466270447,-0.829975306987762,0.394249498844147,-0.394598931074142,-0.899828612804413,0.230813890695572,-0.370180279016495,0.803592443466187,-0.421440690755844,-0.4202701151371,0.653957486152649,-0.489530831575394,-0.57680082321167,-0.845724999904633,0.363320648670197,-0.39082932472229,-0.135476976633072,0.815360605716705,-0.56287944316864,-0.0920496433973312,0.397375762462616,0.913027584552765,-0.16894406080246,0.192690804600716,0.966606497764587,-0.397603809833527,0.350004732608795,-0.848179161548615,-0.869829535484314,0.137230530381203,-0.473882228136063,0.804512560367584,-0.419292539358139,-0.420658230781555,-0.950406610965729,-0.0363344289362431,-0.30888044834137,-0.423984915018082,0.268164902925491,-0.865057468414307,-0.438153564929962,0.250329256057739,-0.863340437412262,0.702514946460724,-0.346164703369141,-0.621806025505066,0.800018489360809,-0.429664760828018,-0.418758451938629,0.750510692596436,-0.101039759814739,-0.653088569641113,-0.456890136003494,0.226081311702728,-0.860313236713409,-0.75930917263031,0.58559376001358,-0.283777326345444,0.83742618560791,-0.220604985952377,0.500050842761993,0.810282170772552,-0.320964127779007,-0.490331381559372,-0.171138092875481,0.186344087123871,0.967464566230774,0.803697884082794,-0.340277105569839,-0.488140553236008,0.88627165555954,-0.0844290107488632,0.455405920743942,0.76487934589386,-0.371629893779755,-0.526166379451752,0.808091521263123,-0.327516943216324,-0.489612877368927,0.543230354785919,-0.00767470756545663,0.839548766613007,-0.175279334187508,0.174276858568192,0.968970954418182,
- -0.0697587206959724,0.450915813446045,0.889836311340332,0.633753657341003,0.258823126554489,0.728949189186096,-0.290034115314484,0.88765949010849,-0.357688218355179,0.404254853725433,-0.271512150764465,0.873418092727661,0.663411736488342,-0.612322747707367,-0.430053144693375,0.635975658893585,-0.557191848754883,-0.533921539783478,0.645374715328217,-0.543288350105286,-0.536963045597076,0.648452460765839,-0.641227066516876,-0.410289466381073,0.420860558748245,-0.244467839598656,0.873562753200531,-0.114327162504196,0.384444832801819,0.916041195392609,-0.391300559043884,0.839251399040222,-0.377546012401581,0.646541357040405,0.317462116479874,0.693687319755554,-0.131006821990013,0.361035019159317,0.923304378986359,0.46259531378746,-0.172005593776703,0.869723916053772,0.594974637031555,-0.708371520042419,-0.379756450653076,-0.412198692560196,0.282689243555069,-0.866128742694855,-0.708242535591125,0.576728284358978,-0.407157212495804,-0.0497831478714943,0.470624715089798,0.880927920341492,-0.0798403322696686,0.431350618600845,0.898644626140594,-0.777800977230072,0.562587201595306,-0.28021639585495,-0.437248885631561,0.25148069858551,-0.86346447467804,-0.629050552845001,0.717036128044128,-0.300257802009583,-0.119574815034866,0.377131402492523,0.918408393859863,0.632579505443573,0.370541036128998,0.680104792118073,0.597643077373505,-0.705296099185944,-0.381287515163422,0.465388983488083,-0.213141143321991,0.859059929847717,-0.127449229359627,0.36606839299202,0.92181921005249,0.368135392665863,-0.390823423862457,0.843642950057983,0.622942864894867,-0.67476749420166,-0.395766377449036,0.490091323852539,-0.743672013282776,-0.454711347818375,0.761302053928375,0.172073036432266,0.625147998332977,0.719081819057465,0.396174788475037,-0.570935070514679,0.73550271987915,0.0941027030348778,0.670954823493958,0.749073207378387,0.297895163297653,-0.591732859611511,0.730553686618805,0.342138648033142,-0.590959072113037,0.774274349212646,0.109707459807396,0.62326842546463,0.64394611120224,0.401781797409058,0.651079714298248,0.749606549739838,0.29500213265419,-0.592506349086761,
- 0.775206923484802,0.104526996612549,0.622999489307404,-0.691235840320587,0.0383631139993668,-0.721610188484192,0.749361872673035,0.0532106310129166,-0.660019278526306,0.768726944923401,0.118702694773674,-0.628465414047241,0.743022918701172,0.258923023939133,-0.617151379585266,-0.698242485523224,0.187312677502632,-0.690920770168304,-0.777796566486359,0.0671142563223839,-0.624922573566437,0.797429919242859,-0.119538865983486,-0.591452479362488,0.76551753282547,0.17355740070343,-0.619564950466156,0.658562064170837,0.27027103304863,0.702317297458649,0.604932904243469,0.54210489988327,0.583248317241669,0.796443998813629,-0.104946300387383,-0.595536112785339,0.65734338760376,0.288619637489319,0.696130990982056,0.62217515707016,0.512548983097076,0.591769933700562,0.739219665527344,0.186087504029274,-0.647244811058044,0.599218130111694,0.5975341796875,0.532813787460327,0.768871486186981,0.114575088024139,-0.629054188728333,-0.481815308332443,0.280532896518707,-0.83015376329422,-0.690539121627808,0.0315934643149376,-0.722604691982269,-0.580963909626007,-0.132718399167061,-0.803035974502563,0.6749187707901,-0.414340406656265,-0.610578954219818,0.795150518417358,-0.0889013782143593,-0.599860310554504,-0.680169105529785,0.223082914948463,0.698286473751068,-0.787853062152863,0.165091902017593,-0.593323051929474,-0.698139250278473,0.157986685633659,-0.698313534259796,-0.693349123001099,-0.0576106458902359,0.718295276165009,-0.698274791240692,0.174032047390938,-0.694352328777313,-0.56488561630249,-0.572186946868896,-0.594564020633698,-0.78931999206543,0.196943923830986,-0.581538498401642,-0.693799197673798,-0.0482770279049873,0.718548536300659,-0.555849850177765,-0.25652089715004,0.790713727474213,-0.611284017562866,-0.461919367313385,0.642621457576752,0.769636988639832,-0.171243026852608,0.615089237689972,-0.55554610490799,-0.264652907848358,0.788243234157562,0.791046261787415,-0.0199394579976797,0.611431360244751,0.732951462268829,0.104751095175743,0.672167658805847,-0.681198716163635,-0.183984503149986,0.708602845668793,0.652552783489227,0.466550350189209,0.597080945968628,
- -0.674286544322968,0.259493380784988,0.691376030445099,0.672326028347015,0.0917290598154068,0.734549939632416,-0.694667458534241,0.0572701990604401,0.717047691345215,0.476125806570053,-0.161175042390823,0.864480674266815,0.635468482971191,-0.131585612893105,0.760831832885742,-0.509385049343109,-0.450803637504578,0.733009517192841,0.516681492328644,-0.0389836765825748,0.855289697647095,-0.689893007278442,0.14008304476738,0.710228443145752,-0.559491038322449,0.00416907435283065,-0.828825950622559,-0.781990230083466,0.596276223659515,0.181510835886002,-0.657297015190125,0.341240227222443,0.671949207782745,0.579470634460449,0.266489565372467,0.770193040370941,-0.801420748233795,0.0516164302825928,0.595869541168213,0.642846584320068,0.341353327035904,0.685730397701263,-0.801512897014618,0.0519212000072002,0.5957190990448,0.579486191272736,0.494120359420776,0.648105561733246,0.642739832401276,0.343603491783142,0.684705913066864,-0.839215576648712,0.239087715744972,0.488420218229294,-0.584209501743317,-0.453766703605652,-0.672900497913361,-0.50886482000351,-0.389794200658798,-0.767539620399475,0.78717976808548,-0.0203926283866167,-0.616386413574219,-0.52305144071579,-0.180417686700821,-0.83298659324646,-0.574487268924713,-0.0831996127963066,-0.81427401304245,0.580813407897949,0.489676177501678,0.650286912918091,-0.800008177757263,0.0469831973314285,0.598146736621857,-0.756289601325989,-0.0756309106945992,0.649850726127625,-0.487815678119659,-0.509903252124786,-0.708543956279755,0.778221905231476,-0.402731478214264,-0.481848537921906,0.777021169662476,-0.166492685675621,-0.607057094573975,0.713641464710236,0.0279298201203346,-0.699954152107239,0.693513870239258,0.307489097118378,-0.651528239250183,0.577597796916962,0.66376119852066,0.475186139345169,-0.50877058506012,-0.390504688024521,-0.767240881919861,-0.614501059055328,-0.276303350925446,-0.738948523998261,-0.838880658149719,0.235699757933617,0.490637242794037,-0.728935480117798,-0.123074792325497,0.673428297042847,-0.682517826557159,-0.216310620307922,0.698125422000885,
- -0.455090582370758,-0.721831500530243,-0.521394312381744,0.776981115341187,-0.166318863630295,-0.607155978679657,0.705199837684631,-0.0821910798549652,-0.704228579998016,-0.487876445055008,-0.509628355503082,-0.708699882030487,0.568907797336578,0.684451460838318,0.455927759408951,0.73264354467392,-0.141068041324615,-0.665832757949829,0.710086762905121,0.036310825496912,-0.703177273273468,0.676316976547241,-0.0274517722427845,-0.736099004745483,-0.542646765708923,-0.547055006027222,-0.637389481067657,-0.498317927122116,-0.45746511220932,-0.736481428146362,0.465912044048309,0.266061842441559,-0.843882262706757,0.398985922336578,0.904220104217529,0.152303025126457,0.324082762002945,0.902327418327332,0.284210443496704,-0.595102429389954,-0.574387848377228,-0.56207799911499,-0.728935480117798,-0.123074792325497,0.673428297042847,-0.455090582370758,-0.721831500530243,-0.521394312381744,0.675315678119659,-0.0256569813936949,-0.737082362174988,-0.502495050430298,-0.705601036548615,-0.499625831842422,-0.542676985263824,-0.546977341175079,-0.637430369853973,-0.748171389102936,-0.0902365148067474,0.657340824604034,-0.74423748254776,0.211048662662506,0.633694767951965,0.583601713180542,0.480124473571777,0.654896557331085,-0.765749156475067,-0.0579707138240337,0.640521347522736,-0.636280059814453,-0.499444752931595,-0.587964832782745,-0.613801956176758,-0.234319731593132,0.753884196281433,0.631428062915802,0.204809233546257,0.74789822101593,-0.670308470726013,-0.100431077182293,0.735255181789398,0.587623655796051,0.340320140123367,0.734084904193878,0.329414337873459,0.898137331008911,0.291265338659287,0.383623868227005,0.554740846157074,-0.738305807113647,0.434586644172668,0.300522595643997,-0.849011540412903,-0.71023416519165,-0.316225528717041,-0.628942728042603,0.427616357803345,0.307963103055954,-0.84988409280777,0.627841651439667,0.150887012481689,-0.763575792312622,0.469675540924072,0.441699296236038,-0.764399528503418,0.382604002952576,0.849845588207245,0.362459182739258,0.375308454036713,0.765202820301056,0.523075699806213,
- 0.656647145748138,0.519392192363739,0.546851277351379,0.493808597326279,0.405643463134766,-0.769159734249115,0.491278260946274,0.603085398674011,0.628437459468842,0.602664649486542,0.599492967128754,0.526691138744354,0.0940545499324799,0.272238820791245,-0.957621932029724,0.54767119884491,0.316331028938293,-0.774590969085693,0.638443946838379,0.12458149343729,-0.759518802165985,0.22926339507103,-0.0805260092020035,-0.97002774477005,-0.70390784740448,-0.335832804441452,-0.625883400440216,0.0444493032991886,0.384697377681732,-0.921971917152405,0.675626873970032,0.487380653619766,0.553162217140198,0.907966136932373,0.380043178796768,-0.176535055041313,-0.184914171695709,0.801724970340729,-0.568369448184967,-0.686841249465942,0.153298363089561,0.710456669330597,-0.768239200115204,0.0131539581343532,-0.640027701854706,-0.632082164287567,-0.327508956193924,0.702289164066315,-0.0934359058737755,0.656662046909332,-0.748374700546265,-0.870154023170471,-0.34181734919548,-0.354954749345779,-0.652581393718719,-0.465658158063889,-0.597745776176453,-0.566426992416382,-0.505040109157562,0.651225864887238,-0.623841404914856,-0.212992995977402,0.751968026161194,-0.68588387966156,0.16896590590477,0.707823276519775,0.570236623287201,0.389775574207306,0.723121821880341,-0.687369704246521,-0.0509749390184879,0.724516689777374,0.69684225320816,-0.189637869596481,0.691699624061584,-0.586170852184296,-0.459357708692551,0.667378604412079,-0.0307160932570696,-0.0552509799599648,0.998000025749207,0.659901797771454,-0.0240229163318872,0.750967741012573,-0.64202344417572,-0.291560530662537,0.709082782268524,0.675223708152771,0.0177233945578337,0.737400054931641,0.846710681915283,0.530746340751648,-0.0372739508748055,0.433433592319489,-0.793874323368073,-0.426496058702469,0.371510177850723,-0.90563029050827,-0.204484567046165,0.465939402580261,-0.884804964065552,0.00456914352253079,0.81186306476593,0.270230174064636,0.517546355724335,0.751343011856079,0.36024010181427,0.552911162376404,0.458969682455063,-0.879698932170868,0.124405987560749,0.800105154514313,0.458658814430237,0.386605501174927,
- 0.528183460235596,-0.800296068191528,-0.283810466527939,0.872132837772369,0.466544955968857,0.147378355264664,-0.371008723974228,0.87952595949173,0.29797089099884,0.817081987857819,0.538524687290192,0.205835357308388,-0.365729242563248,0.907467901706696,0.206746608018875,0.831295251846313,0.547254800796509,-0.0972659215331078,-0.892795324325562,0.211493775248528,0.397727191448212,0.716382682323456,0.672269880771637,-0.186679124832153,0.548912286758423,-0.561465740203857,-0.619234681129456,0.790027916431427,0.611390948295593,-0.0453571416437626,0.221069425344467,-0.842838406562805,0.490664601325989,0.399870485067368,0.161097913980484,0.902303218841553,0.465784817934036,-0.88489693403244,0.00137594365514815,-0.368275701999664,0.897124767303467,0.244008585810661,-0.0917287617921829,0.966708540916443,-0.238873332738876,0.816253006458282,0.555714070796967,0.157838419079781,0.508090913295746,0.274966657161713,0.816233396530151,0.605463743209839,0.166846096515656,0.778187692165375,-0.63063645362854,0.667494475841522,0.395915150642395,-0.944766759872437,0.301601201295853,-0.128267273306847,-0.892232120037079,-0.196836039423943,-0.406420260667801,-0.341927081346512,0.939721703529358,-0.00303223030641675,0.268954902887344,-0.824118256568909,-0.49849009513855,-0.904731571674347,-0.414668917655945,0.0975218862295151,-0.957042217254639,0.273457258939743,0.0963916555047035,-0.930729389190674,-0.361831277608871,-0.0531126856803894,0.246925234794617,-0.799699723720551,-0.547273457050323,0.434915035963058,-0.79721611738205,-0.418682962656021,-0.364410579204559,0.911658883094788,0.1899553835392,-0.929247558116913,-0.283810943365097,-0.236538201570511,-0.899784088134766,-0.334866225719452,-0.279737710952759,0.429113149642944,-0.784200608730316,-0.448209017515183,-0.902364909648895,-0.420102536678314,-0.096185527741909,-0.933408200740814,-0.34730738401413,-0.0901485458016396,-0.729999482631683,0.241049483418465,0.639527976512909,-0.34235543012619,0.605214893817902,0.718684673309326,-0.851414024829865,-0.504092633724213,0.144861295819283,
- -0.884996056556702,-0.287843465805054,-0.36596217751503,0.364330738782883,-0.646143555641174,-0.670642793178558,0.544941842556,-0.737919628620148,-0.398137122392654,0.540758609771729,-0.758596897125244,-0.363470613956451,-0.811735093593597,-0.44157862663269,-0.382223099470139,-0.891235768795013,-0.304830193519592,-0.335823386907578,-0.59961199760437,0.0565603785216808,-0.798289656639099,-0.501666665077209,0.00221295724622905,-0.865058183670044,-0.288956612348557,0.956489264965057,-0.0404029302299023,0.548605561256409,-0.558134794235229,-0.622509062290192,0.651688098907471,-0.730458498001099,-0.204286694526672,-0.677494049072266,-0.198234215378761,-0.708311378955841,-0.868808090686798,0.468166410923004,0.161222577095032,-0.346255362033844,0.937868237495422,0.0225927717983723,-0.478612065315247,0.0250214990228415,-0.877669870853424,-0.0882821604609489,0.973589301109314,0.210547253489494,0.557544887065887,0.330251455307007,0.761628448963165,-0.572466552257538,0.760390996932983,0.306736975908279,-0.721198797225952,-0.243881717324257,-0.648378014564514,-0.73169869184494,-0.276126325130463,-0.623194515705109,0.61859792470932,-0.76828008890152,-0.164567068219185,-0.388783097267151,0.895648002624512,0.216015294194222,0.0520603470504284,0.432790786027908,-0.899989902973175,0.0454722307622433,0.41302102804184,-0.90958559513092,0.807419419288635,-0.362086951732636,-0.465797066688538,0.666350185871124,-0.7125363945961,-0.219703167676926,-0.220206797122955,0.238428562879562,-0.945865094661713,-0.291513234376907,0.184461310505867,-0.938612937927246,0.615483403205872,-0.759784400463104,-0.20954255759716,0.278547495603561,-0.905484735965729,-0.320169746875763,-0.0464134030044079,0.266997456550598,-0.962578892707825,0.143585219979286,0.467486530542374,-0.872261226177216,0.673314690589905,-0.700615465641022,-0.236189231276512,-0.861312806606293,0.481087237596512,0.163387760519981,-0.321425884962082,0.160821422934532,-0.93317836523056,-0.164568290114403,0.134726509451866,-0.977121293544769,0.77024108171463,-0.601212680339813,-0.212772116065025,
- -0.0296288821846247,0.284975111484528,-0.958076894283295,0.691743314266205,-0.684562802314758,-0.229924112558365,0.969896614551544,-0.208811476826668,-0.125292927026749,0.644962310791016,-0.0685764029622078,-0.761131465435028,0.082422062754631,0.375822961330414,-0.92301881313324,0.105274096131325,0.424128383398056,-0.899462342262268,0.302980333566666,0.598747313022614,-0.741420745849609,0.978550374507904,-0.170306637883186,-0.115908622741699,0.123657457530499,0.439986675977707,-0.889449596405029,0.231056928634644,0.67600017786026,-0.699740290641785,-0.715697228908539,0.668256223201752,0.203005269169807,-0.816627323627472,0.550116539001465,0.174618348479271,-0.200152069330215,0.0928431153297424,-0.975355982780457,-0.902646005153656,0.424562633037567,0.0705478489398956,0.0704690143465996,0.350285768508911,-0.933988213539124,-0.651805460453033,0.496465116739273,-0.573299288749695,-0.936055958271027,0.350276947021484,0.0332459285855293,-0.947350919246674,0.319679707288742,0.0182035248726606,-0.63804304599762,0.0632484406232834,0.767398655414581,-0.228017717599869,-0.621383428573608,0.749593615531921,-0.0270058605819941,-0.393753200769424,0.918819427490234,-0.954291820526123,0.270980685949326,0.126081645488739,-0.732141971588135,0.652923226356506,0.194060549139977,0.125741302967072,-0.192181274294853,0.973270535469055,0.54059511423111,-0.480248630046844,0.690737426280975,0.870660483837128,-0.456760436296463,-0.182538896799088,-0.26910674571991,-0.661959290504456,0.699565291404724,0.186025515198708,-0.947489202022552,-0.260112911462784,0.28880175948143,-0.88682496547699,-0.360742330551147,-0.557147026062012,0.803694665431976,0.208954706788063,0.244820490479469,-0.0171792823821306,0.969416201114655,0.0707240328192711,-0.0638054683804512,0.995453178882599,0.0434237010776997,-0.0887125357985497,0.995110273361206,-0.0415923893451691,-0.411741405725479,0.910351097583771,0.779228210449219,-0.580546796321869,-0.23615463078022,0.0114335557445884,-0.198425725102425,0.980049252510071,-0.685611844062805,0.700883150100708,0.196721524000168,
- -0.0148560684174299,-0.141301542520523,0.989855110645294,0.955656468868256,-0.272778958082199,-0.1109609156847,0.543693363666534,-0.816423952579498,-0.194549486041069,0.109008952975273,-0.0285782907158136,0.99362987279892,0.346846282482147,0.198736131191254,0.916625142097473,0.509634256362915,-0.859501481056213,-0.0391198545694351,0.382733911275864,0.143775388598442,0.912602543830872,0.216448217630386,-0.954786717891693,0.203795194625854,-0.249936729669571,-0.345165520906448,0.904650449752808,0.302947998046875,-0.942649006843567,-0.140126258134842,0.922475636005402,-0.356121391057968,0.149051129817963,0.863986432552338,-0.407787710428238,0.295358449220657,0.402985572814941,-0.0930207148194313,-0.91046679019928,0.0912390649318695,-0.413597643375397,-0.905876636505127,-0.208775624632835,0.259325712919235,-0.942954361438751,0.841677963733673,-0.48951718211174,0.227927938103676,0.207279101014137,-0.306330889463425,-0.929083824157715,0.759305417537689,-0.554421603679657,0.340693324804306,0.338479340076447,-0.852856516838074,0.397576987743378,-0.246058255434036,0.235199183225632,-0.940285444259644,0.234778597950935,-0.278986036777496,-0.931152939796448,-0.655688107013702,0.565425455570221,-0.500367045402527,-0.513178110122681,0.701122641563416,-0.495050817728043,-0.26274785399437,0.34442150592804,0.901297628879547,-0.454132080078125,0.0847003236413002,-0.886899054050446,0.293533027172089,-0.574060797691345,-0.764390468597412,0.093361534178257,-0.411748588085175,-0.906502485275269,0.321466863155365,-0.862595736980438,0.390624761581421,0.432440996170044,-0.439279317855835,-0.787418842315674,-0.673820734024048,0.544436633586884,-0.499554216861725,0.225249260663986,-0.288549542427063,-0.930592358112335,0.55997622013092,-0.280678629875183,-0.779516637325287,0.671540081501007,-0.543006062507629,0.504161179065704,0.39703357219696,-0.719482004642487,0.569833338260651,-0.204750448465347,0.389334559440613,0.898051142692566,-0.380831390619278,0.792546093463898,-0.476275235414505,-0.262981176376343,0.524752140045166,0.809614777565002,
- -0.231544494628906,0.549516379833221,0.802757084369659,0.431792855262756,-0.797195971012115,0.421940475702286,-0.0892926901578903,0.470325320959091,0.877964079380035,0.0272236485034227,-0.87334418296814,0.486342310905457,-0.732982218265533,-0.0751732587814331,0.676081478595734,0.153238341212273,-0.904968023300171,0.396926879882813,-0.432960420846939,0.367772459983826,0.822975516319275,0.742566406726837,-0.428380221128464,0.5148646235466,0.262096613645554,-0.877540946006775,0.401531130075455,-0.276196867227554,0.513976573944092,0.812122762203217,0.631144225597382,-0.243640258908272,0.73640775680542,0.762323975563049,-0.390256077051163,0.516296744346619,0.0779065117239952,0.990357160568237,-0.114557698369026,-0.264131873846054,0.523822605609894,0.809842109680176,-0.392385274171829,0.785635113716125,-0.478342473506927,-0.0594030246138573,0.918023705482483,-0.392050743103027,0.726904988288879,0.0264452714473009,-0.686228632926941,-0.446598052978516,0.60268360376358,-0.661303758621216,0.426524937152863,-0.681290566921234,0.594911456108093,-0.715400695800781,-0.0364986732602119,0.697760462760925,-0.852324962615967,-0.0189552921801806,0.522669017314911,-0.558379888534546,0.219908580183983,0.799907565116882,-0.335539013147354,0.756991624832153,-0.560693562030792,-0.660168051719666,0.369339525699615,0.654038608074188,-0.850262343883514,-0.0114664500579238,0.526234209537506,0.203965246677399,-0.506582200527191,0.837718725204468,0.426032364368439,-0.68195903301239,0.594498336315155,0.723029255867004,0.0166478827595711,-0.69061678647995,-0.447182863950729,0.442808568477631,-0.777140974998474,-0.44984382390976,0.597229778766632,-0.664046049118042,-0.210182264447212,0.888845324516296,-0.407157778739929,-0.660313844680786,0.369142800569534,0.654002487659454,-0.337127685546875,0.755157947540283,-0.562211215496063,0.74550187587738,-0.302878022193909,-0.593710243701935,0.56125271320343,-0.278865337371826,-0.779249310493469,0.400803416967392,-0.714800417423248,0.573076725006104,-0.359311312437058,0.675305604934692,-0.644094586372375,
- 0.774246573448181,0.175646752119064,-0.608021795749664,0.902343809604645,-0.00511688785627484,-0.430986911058426,0.909223258495331,0.0179041791707277,-0.415923744440079,0.582308232784271,-0.393776774406433,0.711236357688904,0.234187409281731,-0.424959391355515,0.874394536018372,-0.824838221073151,0.0672451853752136,0.561355531215668,-0.421574205160141,0.525132954120636,-0.739263534545898,-0.91756945848465,0.00355609226971865,0.397559612989426,0.133844077587128,-0.664596021175385,0.735117614269257,-0.876196324825287,-0.134122639894485,0.462915897369385,-0.914433658123016,0.0137040754780173,0.404503762722015,0.89853435754776,-0.0169207323342562,-0.438576877117157,-0.162718564271927,0.374074339866638,-0.913012206554413,-0.366389065980911,0.66078907251358,-0.655070126056671,-0.137883275747299,0.813875913619995,-0.564441680908203,-0.904237151145935,0.0438715890049934,0.424771308898926,-0.405264526605606,0.570082485675812,-0.714679479598999,0.964109838008881,0.052690465003252,-0.260222971439362,0.889409780502319,-0.0430818013846874,-0.455076098442078,0.20148628950119,-0.512872576713562,0.834484875202179,-0.125862926244736,0.880315840244293,-0.457386612892151,0.897553324699402,0.433664202690125,-0.0795827805995941,0.967393398284912,0.251410692930222,-0.0307039357721806,0.957849323749542,0.0288348849862814,-0.285820364952087,0.162595689296722,-0.604520797729492,0.779818713665009,0.120528034865856,-0.810197114944458,0.573632001876831,-0.755214750766754,0.402000069618225,0.517732203006744,0.140278145670891,-0.651675879955292,0.74541300535202,-0.909513354301453,0.0287456884980202,0.41467958688736,-0.897232830524445,0.062635526061058,0.437092661857605,-0.1363305747509,0.82398122549057,-0.549971759319305,-0.994891285896301,0.0895987749099731,0.046512845903635,-0.0757024958729744,-0.944068908691406,0.320940881967545,-0.992992997169495,-0.0229646693915129,-0.115920603275299,-0.0837812349200249,-0.885208308696747,0.457588225603104,-0.976424038410187,-0.081928551197052,-0.199709922075272,-0.147943899035454,-0.72496497631073,0.672709703445435,
- -0.10157909989357,-0.939441084861755,0.327310502529144,0.949181854724884,0.00143816554918885,-0.314724922180176,0.118509836494923,-0.823265254497528,0.555148422718048,0.970676839351654,0.229365363717079,0.0719586759805679,0.974843919277191,0.129854246973991,-0.181155279278755,-0.116365492343903,0.918043732643127,-0.379018187522888,0.962887406349182,0.269788891077042,-0.00787417031824589,0.225890412926674,-0.969523727893829,-0.0948539674282074,0.910414159297943,0.300933033227921,0.283875703811646,0.140968039631844,0.0095666591078043,0.989967942237854,0.542920589447021,-0.701031565666199,0.462376475334167,0.470714420080185,0.407672494649887,0.782451987266541,-0.0507160387933254,-0.861218988895416,0.505697250366211,-0.128452554345131,0.868038773536682,-0.479592204093933,-0.796762049198151,0.538535416126251,-0.27413472533226,-0.984972596168518,0.133057221770287,0.110112704336643,0.00442032795399427,0.910894513130188,0.412615597248077,0.388905614614487,0.408014833927155,0.826000213623047,-0.818672478199005,0.345834195613861,0.458447515964508,-0.465707421302795,-0.485396474599838,-0.73993718624115,-0.0813298150897026,0.312481552362442,-0.946435809135437,0.38087671995163,-0.731593191623688,-0.565424025058746,0.25965404510498,0.89089173078537,0.372681736946106,-0.838842451572418,0.375571995973587,0.394067227840424,0.58745002746582,0.400418221950531,0.703255116939545,-0.510950803756714,-0.621800124645233,-0.593543529510498,0.36378937959671,-0.785078585147858,-0.501307249069214,-0.118570111691952,0.331160724163055,-0.93609493970871,0.58213746547699,0.675234198570251,-0.452962219715118,0.661690890789032,0.586317181587219,0.467329978942871,0.557775974273682,0.695333123207092,-0.453208416700363,0.080133892595768,-0.0509747751057148,-0.995479941368103,-0.936212599277496,0.250405132770538,-0.246583059430122,0.293573886156082,0.43487623333931,-0.851291537284851,-0.808714866638184,0.583788335323334,-0.071914404630661,0.401593565940857,0.336379438638687,-0.851804971694946,-0.979980766773224,-0.198000192642212,0.0208235830068588,-0.503727078437805,-0.694967687129974,-0.513107180595398,
- 0.262875348329544,0.0977130457758904,-0.959869086742401,-0.874326229095459,-0.249948278069496,-0.41602823138237,0.293868720531464,0.442669659852982,-0.847162783145905,-0.994978964328766,-0.0191536284983158,-0.0982354357838631,0.0534391701221466,0.681143045425415,-0.730197548866272,0.107592962682247,0.547779023647308,-0.829675793647766,0.0598631463944912,0.659731209278107,-0.7491135597229,-0.993077099323273,-0.0383254960179329,-0.111036248505116,-0.928437352180481,-0.265926748514175,-0.259397506713867,-0.961606979370117,-0.165117025375366,-0.219199389219284,0.124581061303616,0.312411099672318,-0.941742479801178,-0.964832186698914,-0.153529614210129,-0.213371768593788,0.376323580741882,0.386704444885254,-0.841926515102386,0.123515009880066,0.332397103309631,-0.935016810894012,-0.938050806522369,-0.235571637749672,-0.254099696874619,-0.929636001586914,0.0168639607727528,0.368093103170395,0.391221880912781,0.221054092049599,-0.893353521823883,-0.897504329681396,-0.18588387966156,-0.399916738271713,0.0278343930840492,-0.443663388490677,0.895761132240295,-0.996821045875549,0.0093443812802434,-0.0791231915354729,-0.991394340991974,0.106172114610672,-0.0765818133950233,-0.982110500335693,0.183961853384972,0.0402123928070068,0.0078075248748064,-0.318002134561539,0.94805783033371,-0.861285626888275,-0.428769528865814,0.27266052365303,-0.960917592048645,-0.167513146996498,-0.220401331782341,-0.246290162205696,-0.601586818695068,0.759891092777252,0.0506754666566849,-0.580477774143219,0.81269770860672,-0.245329141616821,-0.607933580875397,0.755136013031006,-0.956453621387482,-0.182421877980232,-0.227856874465942,-0.272354662418365,-0.288976609706879,0.917777478694916,0.786484837532043,-0.361702799797058,0.500612318515778,-0.873404264450073,-0.396795958280563,0.282343685626984,0.81946212053299,-0.155112683773041,0.55174458026886,-0.273523420095444,-0.226030215620995,0.934930622577667,0.943804621696472,0.16547554731369,0.286095976829529,0.93632984161377,0.187946051359177,0.296585440635681,-0.27332216501236,-0.144256785511971,0.951044142246246,
- 0.00289720017462969,-0.286419272422791,0.958100020885468,0.964030385017395,0.0902765318751335,0.249991074204445,0.354376316070557,0.519903004169464,-0.777250468730927,0.757089495658875,0.315454483032227,0.572104871273041,0.345160484313965,0.562312722206116,-0.751444339752197,0.946914732456207,0.15548175573349,0.281386077404022,0.0792248994112015,0.659468352794647,-0.747545897960663,0.946964144706726,0.112160421907902,0.301129460334778,0.0793235301971436,0.658731937408447,-0.748184502124786,0.950181066989899,0.144501641392708,0.276179701089859,0.974915146827698,-0.165703639388084,0.148602575063705,0.977065026760101,-0.185308963060379,0.104902356863022,0.0527768097817898,-0.592688024044037,0.803701162338257,0.102254331111908,0.446428388357162,-0.888957679271698,0.976286053657532,-0.0660172402858734,0.206172779202461,0.210121884942055,0.323776543140411,-0.922506153583527,0.9772789478302,-0.110219314694405,0.181045740842819,0.296678364276886,0.497706741094589,-0.815027594566345,0.21426847577095,0.300236821174622,-0.929487526416779,0.963152885437012,0.0430293828248978,0.26549020409584,0.0294043850153685,-0.453295975923538,0.890874922275543,0.380330681800842,-0.367905765771866,0.848524570465088,0.385949105024338,0.598493695259094,0.70203173160553,0.293034464120865,0.423610389232636,-0.857137680053711,0.974677503108978,-0.168623074889183,0.146867275238037,-0.0354528538882732,-0.0293137598782778,0.998941361904144,-0.908868074417114,0.371191293001175,-0.190199583768845,0.336816549301147,-0.522095739841461,0.783562779426575,-0.83256071805954,0.145692586898804,0.534430861473084,0.336253523826599,-0.523790419101715,0.782673120498657,-0.908496856689453,0.372406095266342,-0.189597323536873,0.180558875203133,-0.279949456453323,-0.942882180213928,0.377351045608521,-0.380306035280228,0.84437757730484,0.590896725654602,0.782919764518738,-0.194622114300728,0.841865122318268,-0.536575138568878,0.0578831806778908,0.288738787174225,-0.648253679275513,0.704554617404938,0.312402874231339,0.541351020336151,0.780604720115662,0.722376704216003,-0.689118325710297,-0.0573391057550907,
- 0.274601936340332,0.226984083652496,-0.93438321352005,-0.40736323595047,-0.503442823886871,-0.761971473693848,0.813310027122498,-0.581226170063019,0.0265125837177038,0.815772950649261,-0.161941185593605,-0.555238246917725,0.383784800767899,0.307890623807907,-0.870581746101379,0.35258474946022,0.344932615756989,-0.869888186454773,0.814151465892792,-0.580006062984467,0.0273922476917505,0.38390851020813,0.30808699131012,-0.870457708835602,0.903456807136536,-0.183296576142311,0.387515425682068,0.922442138195038,0.359643161296844,-0.140560820698738,0.420241594314575,0.880142867565155,0.220783978700638,-0.157697692513466,0.60246753692627,-0.782409310340881,0.432432353496552,-0.091138519346714,-0.897048532962799,-0.57714980840683,0.634300827980042,-0.514354526996613,0.673401594161987,0.0644693821668625,-0.736460447311401,0.705949366092682,-0.640596747398376,-0.302111357450485,0.231769531965256,-0.939765214920044,0.251245260238647,-0.980243027210236,-0.177024319767952,0.0882380530238152,0.0486857108771801,-0.998260855674744,0.0332438126206398,0.175816431641579,-0.681650936603546,-0.710239887237549,-0.523211300373077,0.721675634384155,-0.453248679637909,0.540535509586334,-0.0263001471757889,-0.840910136699677,0.887381494045258,0.460183292627335,-0.0280262250453234,0.306220501661301,-0.888961136341095,0.340554416179657,0.778023302555084,-0.503099024295807,-0.376259356737137,0.725911378860474,0.105180568993092,-0.679698288440704,0.0627520382404327,0.995202124118805,0.0750661417841911,-0.139909625053406,0.988878071308136,-0.0504546873271465,0.478344887495041,0.85052764415741,0.218607217073441,-0.0801237151026726,-0.935455560684204,-0.344242721796036,-0.203229412436485,-0.503217279911041,-0.839922726154327,-0.865189373493195,-0.353878289461136,-0.355271071195602,0.530701160430908,-0.584766566753387,0.613517999649048,-0.441528707742691,0.224887818098068,0.868606865406036,-0.479263812303543,-0.0134886829182506,0.877567231655121,-0.57894903421402,-0.0848714336752892,0.810934543609619,-0.925428748130798,-0.372208803892136,0.0710101053118706,
- 0.447872251272202,-0.733039736747742,0.511921107769012,-0.151439666748047,0.611858308315277,-0.776334762573242,-0.88930743932724,-0.448164403438568,0.0909997969865799,-0.978048622608185,-0.159861490130425,0.133660882711411,-0.555714547634125,-0.0676418840885162,0.828616857528687,0.468789219856262,0.793913006782532,0.387219339609146,-0.286949634552002,0.951588571071625,-0.110177539288998,0.588943481445313,0.449075549840927,0.67192018032074,0.780946731567383,0.62176388502121,0.0594293773174286,0.258786022663116,0.473740518093109,0.84178364276886,-0.152477696537972,-0.932854890823364,-0.326392889022827,-0.862780034542084,-0.491595089435577,-0.11808942258358,-0.753514051437378,-0.656932830810547,-0.0256090741604567,-0.333578139543533,0.929181516170502,-0.159208536148071,-0.339188814163208,-0.0120888575911522,0.94064062833786,-0.562433421611786,-0.0725840032100677,0.823650658130646,-0.659420311450958,0.71870493888855,-0.220517814159393,-0.713497579097748,0.287986069917679,0.638737201690674,-0.386885464191437,-0.0592715851962566,0.920221030712128,-0.325490027666092,0.00117622432298958,0.945544719696045,-0.215456023812294,0.975820660591125,-0.0367802940309048,-0.594509541988373,0.780815660953522,-0.192055448889732
- }
- TangentsW: *2637 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
- }
- }
- LayerElementTangent: 1 {
- Version: 102
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *7911 {
- a: 0.0828103050589561,-0.5613893866539,0.823398113250732,-0.352222591638565,-0.255751520395279,0.900294601917267,-0.606545925140381,-0.378381907939911,0.699234664440155,-0.259567856788635,-0.219515070319176,0.940445482730865,0.0829660221934319,-0.575146496295929,0.813832521438599,0.112449131906033,-0.902971267700195,0.414726555347443,0.0874166712164879,-0.908743321895599,0.408097892999649,0.370025426149368,-0.0646975561976433,0.926766097545624,-0.256432592868805,-0.218265548348427,0.941595733165741,-0.0545371808111668,-0.929237306118011,0.365436345338821,0.184266179800034,-0.336929768323898,0.923322439193726,0.450141251087189,-0.167020529508591,0.877198398113251,0.266603469848633,-0.429102301597595,0.863014340400696,-0.0391990803182125,-0.928021192550659,0.370459586381912,0.013476905412972,-0.990751504898071,0.135017946362495,-0.378589808940887,-0.904192566871643,0.197751328349113,0.124410361051559,-0.268450289964676,0.955225884914398,-0.275686383247375,-0.960196316242218,0.0449455082416534,-0.392002016305923,0.37030553817749,0.842145025730133,0.536632180213928,0.836871981620789,0.108033381402493,-0.0942564979195595,0.418600618839264,0.90326589345932,0.649343729019165,0.747620522975922,0.139342814683914,0.465537399053574,0.106208488345146,0.878632307052612,0.0165130849927664,0.317181766033173,0.94822096824646,0.464776635169983,0.105823688209057,0.87908136844635,0.648670554161072,0.748239934444427,0.139153003692627,0.0194347389042377,0.666511058807373,0.745241761207581,-0.346291750669479,-0.915302515029907,0.205677807331085,-0.0446247346699238,-0.550266146659851,0.833796143531799,0.143224403262138,-0.290100872516632,0.946217894554138,-0.143017128109932,-0.335071593523026,0.931275010108948,-0.701876401901245,-0.7060706615448,0.0939885154366493,-0.6617551445961,-0.744497835636139,0.0883349925279617,0.899267196655273,0.381337523460388,0.214243322610855,0.0407054834067822,-0.17078772187233,0.984466671943665,0.898088753223419,0.257983356714249,0.356203764677048,0.713908076286316,0.677044272422791,0.17873540520668,
- -0.326442331075668,0.283639341592789,0.901656329631805,-0.37233230471611,0.45180281996727,0.810705184936523,0.199594885110855,0.979705035686493,0.0184441227465868,-0.15825779736042,0.409236341714859,-0.898599088191986,0.631381452083588,0.539465248584747,-0.557076930999756,-0.0263526868075132,0.973424732685089,-0.227486297488213,-0.0685001090168953,0.302765935659409,-0.950600206851959,0.134555503726006,0.990904629230499,0.00168789690360427,-0.268644988536835,-0.568608939647675,0.777504801750183,-0.119911976158619,-0.389533936977386,0.913172721862793,-0.663295745849609,-0.743216276168823,0.0875697731971741,-0.839099705219269,-0.543715238571167,-0.0169026646763086,-0.88508540391922,-0.463114380836487,-0.0463567189872265,-0.302924990653992,-0.335519671440125,0.891999423503876,-0.3490070104599,0.326183378696442,0.878520667552948,0.868922650814056,0.388851523399353,0.306215524673462,0.861154854297638,0.405494272708893,0.306572467088699,-0.114189460873604,-0.402631223201752,0.908211886882782,-0.311054259538651,-0.232387691736221,0.921542823314667,0.786104500293732,-0.405619889497757,0.466382086277008,0.0797683075070381,0.116485424339771,-0.989983916282654,0.404427886009216,0.914426445960999,-0.0161982830613852,0.115169867873192,0.252791166305542,-0.960641741752625,0.403255522251129,0.914154410362244,-0.0413128882646561,0.115169867873192,0.252791166305542,-0.960641741752625,0.404427886009216,0.914426445960999,-0.0161982830613852,-0.576629519462585,-0.814506530761719,-0.0638557001948357,-0.728272616863251,-0.684121608734131,0.0399567671120167,0.486488342285156,-0.47627779841423,-0.732453763484955,-0.0494168028235435,0.279506504535675,-0.958871364593506,0.102313876152039,0.273538053035736,-0.956404089927673,-0.958942949771881,-0.057594008743763,-0.27768936753273,0.184466943144798,0.136149197816849,-0.973362922668457,-0.955671668052673,-0.287995100021362,-0.0612416490912437,-0.902856171131134,-0.369539052248001,-0.219753578305244,-0.615507781505585,-0.777830958366394,0.127001494169235,0.408293455839157,-0.315677225589752,-0.856530427932739,
- -0.757379591464996,-0.65194571018219,0.0366499312222004,0.052697665989399,-0.630013883113861,-0.774793803691864,-0.919485509395599,-0.383393615484238,-0.0869250074028969,0.345529168844223,-0.173301830887794,-0.922266781330109,0.280428200960159,-0.0405696667730808,-0.959017276763916,0.740124940872192,0.64743709564209,0.181770116090775,0.27885314822197,0.585993528366089,-0.760823726654053,-0.849623680114746,0.413362801074982,-0.327522277832031,0.21268530189991,-0.018688453361392,-0.976942121982574,-0.903011202812195,0.37346214056015,-0.212360188364983,-0.6597039103508,0.711898982524872,-0.240812614560127,0.258594423532486,0.289997845888138,-0.921428442001343,-0.792323052883148,0.608060359954834,-0.0498674958944321,0.236119136214256,0.120550863444805,-0.9642174243927,0.824546337127686,0.504168570041656,0.256782799959183,0.980925440788269,0.0544777028262615,0.186594411730766,-0.310185462236404,-0.246187701821327,0.918246507644653,0.900662183761597,-0.392934113740921,0.185500994324684,0.776468634605408,-0.423717945814133,0.466432809829712,-0.207184389233589,-0.0260075461119413,-0.977956175804138,-0.973524391651154,0.214801624417305,-0.078171081840992,0.223283678293228,0.0411167107522488,-0.973885953426361,0.221593111753464,0.0312672443687916,-0.974637806415558,0.974364459514618,-0.11906161159277,0.190887957811356,0.15810638666153,0.608142495155334,-0.777923583984375,-0.986754357814789,0.140148475766182,-0.0816960409283638,-0.284654766321182,-0.191812291741371,-0.939244329929352,-0.987635254859924,0.125327706336975,0.0941794291138649,-0.895075261592865,0.381013333797455,0.231665939092636,-0.963286101818085,0.249191612005234,0.0999180898070335,-0.289893716573715,-0.203593492507935,-0.935153126716614,0.940902948379517,-0.280608326196671,0.189632803201675,-0.308885604143143,-0.265123069286346,0.913399934768677,-0.0743824020028114,0.0489488653838634,0.996027767658234,-0.876152694225311,-0.480232059955597,-0.0416368395090103,-0.308773875236511,-0.685965597629547,0.658870160579681,-0.292403101921082,-0.426577538251877,0.855880975723267,
- -0.128255948424339,-0.102600954473019,0.98641961812973,-0.98870050907135,-0.027496512979269,-0.147360920906067,-0.963214576244354,0.241203635931015,-0.118484310805798,-0.0587822869420052,0.257761090993881,-0.964418947696686,0.973502576351166,-0.125836759805679,0.190939322113991,0.991659879684448,-0.11714668571949,-0.0537359230220318,-0.0704755783081055,0.0596836917102337,0.995726406574249,0.940654277801514,-0.335780829191208,-0.0492032170295715,0.942454278469086,-0.275265693664551,0.189759701490402,-0.906023323535919,0.350152879953384,0.237728700041771,-0.310239136219025,-0.250160574913025,-0.91715395450592,-0.553563594818115,-0.264865338802338,-0.789565563201904,-0.199499204754829,0.226276308298111,-0.953414559364319,-0.184500709176064,0.0199696477502584,-0.982629477977753,0.856940984725952,-0.513601899147034,-0.0431887432932854,-0.545476257801056,0.719846606254578,0.429274439811707,-0.880319714546204,0.418221205472946,0.223893374204636,-0.491970479488373,-0.161412641406059,-0.855518102645874,-0.0448748394846916,0.998884499073029,0.0146983545273542,-0.427041053771973,0.847537875175476,0.315143972635269,-0.388615697622299,-0.00938307493925095,-0.92135214805603,-0.973960399627686,0.191962137818336,-0.120630472898483,-0.0529227815568447,-0.544733583927155,0.836937606334686,-0.144991025328636,-0.151112854480743,0.977825403213501,0.810992419719696,-0.583680510520935,-0.0401045009493828,-0.188565611839294,-0.281133443117142,0.940960705280304,0.191153019666672,-0.188912972807884,0.963209450244904,0.437732547521591,0.302629828453064,0.846643626689911,-0.538324534893036,0.840940296649933,-0.0550103969871998,-0.643418729305267,0.758372724056244,0.104322157800198,-0.753707766532898,0.635783493518829,0.166444972157478,0.444684237241745,0.320198267698288,0.836498200893402,-0.643926978111267,0.757938981056213,0.104338981211185,0.383320152759552,0.175544306635857,0.906779944896698,-0.794339179992676,0.579035699367523,0.183692499995232,0.362120747566223,-0.343746840953827,0.866433441638947,0.902020275592804,-0.429199427366257,-0.0463381893932819,
- 0.268693953752518,-0.0533777438104153,0.961745500564575,0.543077886104584,-0.159295469522476,0.824434101581573,0.309057831764221,-0.389493465423584,0.867627859115601,-0.926529288291931,0.281047612428665,0.250111430883408,-0.738553464412689,0.221699476242065,0.636700987815857,0.746874511241913,-0.508706331253052,-0.428248047828674,0.951338768005371,-0.304056525230408,-0.0500418618321419,0.750694155693054,0.152389749884605,0.642834067344666,0.769379496574402,-0.637697041034698,-0.0373854115605354,0.811240017414093,-0.274009853601456,-0.516534805297852,-0.252372533082962,0.164744645357132,-0.953502655029297,0.102751463651657,-0.638230919837952,0.762957155704498,0.409408211708069,-0.300131469964981,0.861571848392487,-0.727052628993988,0.292106509208679,0.621343910694122,0.854464530944824,-0.193373501300812,0.482179522514343,0.67699533700943,-0.645132005214691,-0.354234635829926,0.682126462459564,0.028551759198308,0.730676591396332,0.0338002108037472,0.994092881679535,-0.103135421872139,-0.158026948571205,0.964556813240051,0.211324006319046,0.977538526058197,0.198706090450287,0.0702448859810829,-0.0348291732370853,0.820619106292725,0.57041323184967,0.970427930355072,0.240552112460136,0.020107202231884,-0.143335357308388,0.97211492061615,0.185600444674492,0.165271788835526,-0.13084514439106,-0.977529942989349,-0.199628591537476,0.226129308342934,-0.953422248363495,0.822285234928131,-0.0378817021846771,-0.567813336849213,0.721520602703094,-0.565071761608124,-0.400127410888672,0.952446699142456,-0.0122803905978799,0.304457694292068,0.100183948874474,-0.824396252632141,-0.557076334953308,0.931115746498108,0.346623122692108,-0.113471783697605,-0.0351228713989258,0.920113205909729,0.390074372291565,0.74765956401825,0.262429624795914,-0.610029518604279,0.125848367810249,-0.686224400997162,-0.716420412063599,0.978131175041199,0.10204017162323,0.181237891316414,0.95112156867981,-0.269024759531021,-0.151636511087418,-0.0330127328634262,0.993448674678802,0.109407834708691,0.453580021858215,0.651443600654602,0.608182847499847,0.884331226348877,0.0606780909001827,-0.462900012731552,
- -0.685936152935028,-0.602659106254578,-0.40779110789299,0.0771866962313652,-0.905943274497986,-0.416304230690002,-0.975187718868256,-0.21430467069149,-0.0555197037756443,-0.535738885402679,-0.779747784137726,0.324002265930176,-0.978439629077911,-0.188190802931786,-0.0850887522101402,-0.46463817358017,0.434759527444839,0.771424353122711,-0.426437467336655,0.576610624790192,0.696901202201843,-0.972922205924988,-0.0607723109424114,-0.223000258207321,-0.0349776931107044,0.839175999164581,0.54273396730423,-0.964885890483856,-0.0233155116438866,-0.261632651090622,-0.166590318083763,0.945428252220154,-0.2800233066082,-0.0350650884211063,0.85273402929306,0.521167099475861,0.0768919363617897,-0.906790912151337,-0.414509445428848,-0.605148255825043,-0.319746315479279,0.729080259799957,-0.952993810176849,-0.299688935279846,0.0446018204092979,0.261120736598969,0.903625965118408,0.339523315429688,-0.959775686264038,-0.279981702566147,0.0209982097148895,-0.911809086799622,0.268970429897308,0.310256838798523,-0.130578696727753,-0.990278720855713,-0.0479299314320087,0.105442941188812,-0.800856292247772,-0.589500665664673,0.930484771728516,-0.363641530275345,-0.0443047061562538,-0.880061864852905,0.103406690061092,0.463463217020035,-0.0698452442884445,-0.886231184005737,0.45794752240181,-0.521436274051666,-0.551303565502167,-0.651282370090485,0.924930572509766,-0.0388908050954342,-0.378141462802887,0.495044499635696,0.55822765827179,0.665817379951477,0.669772684574127,-0.485473096370697,-0.561890065670013,0.658754944801331,-0.447135537862778,-0.605071663856506,-0.324172645807266,-0.886020720005035,-0.331480652093887,0.947507739067078,-0.133218854665756,-0.290657609701157,0.646556556224823,-0.410354524850845,-0.64309698343277,0.590642631053925,0.0882071778178215,0.802097737789154,0.933016419410706,0.0956153944134712,0.346898078918457,-0.878341972827911,-0.362443625926971,-0.311688989400864,-0.880350887775421,0.104299418628216,0.462713688611984,-0.520227432250977,-0.555007815361023,-0.649099230766296,-0.498751133680344,-0.614605188369751,-0.611152827739716,
- 0.571385622024536,-0.236744403839111,-0.785792946815491,-0.57311886548996,-0.80463582277298,-0.155229508876801,-0.645778000354767,0.478677839040756,0.594843089580536,0.275324016809464,0.891175985336304,0.360557913780212,-0.909066259860992,0.235240414738655,0.343890517950058,-0.88191944360733,0.109211996197701,0.458575010299683,-0.932013511657715,-0.0474001877009869,-0.359310537576675,-0.620773673057556,0.38997209072113,0.680119097232819,0.477544695138931,0.573168337345123,0.665904760360718,-0.546953558921814,0.206154555082321,0.811382830142975,0.623315215110779,0.760859489440918,0.180474847555161,0.899820327758789,0.301807045936584,0.315017312765121,0.406905263662338,-0.514360427856445,-0.754891693592072,0.582511842250824,-0.259116500616074,-0.770414590835571,0.597615420818329,-0.290859490633011,-0.747165679931641,0.347139447927475,-0.419896990060806,-0.838558852672577,-0.438516080379486,-0.893665611743927,-0.0952122882008553,0.216089352965355,-0.219637155532837,-0.951349020004272,0.789048790931702,0.561811327934265,0.248536258935928,0.97662490606308,0.203103289008141,0.0703762695193291,0.883119702339172,0.357814848423004,-0.303427308797836,0.182740762829781,-0.169810891151428,-0.968385279178619,0.914699614048004,0.395682603120804,0.0822200402617455,-0.988654851913452,0.0559824369847775,0.139383524656296,-0.620042443275452,0.38773450255394,0.682062685489655,-0.932146191596985,-0.031463373452425,-0.360712826251984,0.34491816163063,-0.416431605815887,-0.841199398040771,-0.0930055230855942,-0.992857754230499,-0.0747227594256401,-0.549539685249329,-0.822878181934357,-0.144491717219353,-0.104374296963215,0.435585916042328,0.894075453281403,0.654450356960297,0.730929613113403,0.193485975265503,-0.545965373516083,0.204058468341827,0.812577366828918,-0.384085118770599,-0.0819171443581581,0.919656574726105,-0.956121504306793,-0.273122936487198,0.105997733771801,0.0765440985560417,0.0777117237448692,0.99403315782547,0.900715231895447,0.30693531036377,0.307413369417191,0.097187727689743,0.0342843644320965,0.994675397872925,0.887756288051605,0.452356249094009,0.0852210596203804,
- -0.00573990494012833,0.245487108826637,0.969382882118225,0.449387162923813,0.888941705226898,-0.0885090604424477,0.754018664360046,0.650165677070618,0.0934903547167778,-0.247684553265572,-0.313374251127243,-0.9167600274086,-0.644412636756897,-0.764406681060791,0.0203723013401031,0.0912040993571281,-0.0349815674126148,-0.995217621326447,0.0986055806279182,-0.0457844249904156,-0.994072914123535,0.933064162731171,0.094804435968399,-0.346991837024689,-0.311922878026962,-0.189096838235855,-0.931099653244019,-0.782348930835724,-0.167408242821693,0.599920511245728,0.0633798614144325,0.105118796229362,0.992438018321991,-0.971518158912659,-0.20783044397831,0.11383742839098,-0.280988663434982,-0.958382487297058,0.0504818931221962,-0.769585251808167,-0.636689245700836,0.0486349239945412,-0.276085257530212,-0.260359108448029,-0.925197422504425,0.434910774230957,0.336550146341324,0.835216522216797,0.578459680080414,0.802578270435333,-0.145782455801964,-0.00865669175982475,0.251281678676605,0.967875301837921,0.112403750419617,0.00191794068086892,0.993660867214203,-0.772063076496124,0.0575032569468021,0.632939159870148,0.478255391120911,0.272557258605957,0.834855854511261,0.768525540828705,0.594023585319519,-0.23770672082901,0.502098500728607,0.234676271677017,0.832360625267029,0.439536064863205,0.776879072189331,-0.450851649045944,0.551073849201202,0.149532422423363,0.820949256420136,0.167163178324699,0.964035749435425,-0.206619277596474,0.465147942304611,0.742596924304962,-0.48185807466507,-0.358943969011307,-0.520187437534332,-0.774960815906525,-0.310005664825439,-0.193043574690819,-0.930930018424988,0.933722257614136,0.0823103040456772,-0.348407506942749,-0.237683519721031,-0.331380009651184,-0.913068354129791,-0.567652106285095,-0.25603786110878,-0.782442152500153,-0.589717447757721,-0.732128739356995,0.340911865234375,-0.548085033893585,-0.286176025867462,-0.785942792892456,0.932819306850433,0.0988486856222153,-0.346521407365799,0.661116898059845,0.120734199881554,-0.74050509929657,0.364263445138931,0.504551708698273,-0.782777070999146,
- 0.716482996940613,-0.340510725975037,0.608855128288269,0.904283881187439,-0.294366121292114,0.309223532676697,0.903652727603912,-0.282506316900253,0.321872860193253,-0.00862332154065371,0.959045469760895,-0.283120810985565,0.36237570643425,0.516812860965729,-0.775621235370636,-0.217088147997856,-0.646576642990112,-0.731307983398438,-0.544280707836151,-0.291868776082993,-0.786492943763733,0.661591827869415,0.11079515516758,-0.741633832454681,-0.838422954082489,-0.222556009888649,-0.497509568929672,-0.603638172149658,-0.713591873645782,0.35553839802742,-0.602473855018616,-0.198405310511589,-0.773085117340088,-0.892440676689148,-0.138852372765541,-0.429266721010208,0.432935237884521,0.785118103027344,-0.442895770072937,0.357915729284287,0.543673634529114,-0.759154319763184,-0.0896561443805695,0.429015010595322,-0.898836970329285,-0.882684588432312,-0.155745759606361,-0.443408578634262,0.361929476261139,0.519627094268799,-0.773947536945343,-0.400694638490677,-0.0124324923381209,0.916127324104309,0.481520920991898,0.267489969730377,0.834617733955383,-0.773323357105255,0.0479329340159893,0.632197260856628,-0.757419228553772,-0.360557287931442,0.544347822666168,-0.973779022693634,0.113791674375534,-0.196992591023445,-0.41530829668045,-0.582024276256561,0.699118554592133,0.705328643321991,-0.269601970911026,0.655611395835876,-0.427393287420273,-0.443046629428864,0.788063883781433,0.832222640514374,-0.0270451474934816,0.553781628608704,-0.801973104476929,0.243801295757294,0.545343995094299,-0.796273052692413,0.532003223896027,0.287961423397064,0.0185672529041767,0.998726665973663,-0.0469072349369526,-0.992807328701019,-0.108325146138668,0.0509850941598415,-0.411805689334869,-0.60613340139389,0.68045449256897,-0.971667945384979,0.0935029983520508,-0.217068240046501,-0.794901728630066,0.249797314405441,0.552931070327759,0.0178818162530661,0.998433709144592,-0.0530133917927742,-0.266874730587006,0.852603554725647,-0.449271738529205,0.790375173091888,0.252458363771439,0.558186411857605,0.826971352100372,-0.0162560250610113,0.56200897693634,
- -0.428365111351013,-0.415386706590652,0.802469432353973,0.420175999403,-0.741193056106567,-0.523531258106232,0.711488127708435,-0.50151526927948,-0.492206394672394,-0.0883179232478142,0.446324199438095,-0.890502452850342,-0.234513282775879,0.878334581851959,-0.41657155752182,-0.086602620780468,0.467685401439667,-0.879642188549042,0.681676387786865,-0.515439391136169,-0.519268214702606,-0.416305214166641,-0.574512779712677,0.704716324806213,-0.731161892414093,0.298622220754623,0.613373517990112,0.219693511724472,-0.752335488796234,0.621068477630615,0.791221380233765,-0.455571621656418,-0.407950013875961,0.00518650887534022,-0.910850703716278,-0.412703424692154,0.0375416353344917,-0.944170355796814,0.327311724424362,0.691756129264832,-0.510899722576141,-0.510347902774811,0.823066413402557,-0.184268862009048,-0.537221193313599,-0.205731347203255,0.898801028728485,-0.387080550193787,0.722500383853912,-0.495973944664001,-0.48166698217392,-0.120478473603725,-0.991898238658905,0.0402845107018948,0.683405935764313,-0.293547689914703,-0.668420612812042,0.859571695327759,-0.147138029336929,-0.489373981952667,0.298117697238922,0.95199978351593,-0.0694439187645912,-0.166288807988167,0.923352062702179,-0.346076637506485,-0.707114160060883,-0.00621714442968369,0.707072079181671,0.272231221199036,-0.663648366928101,0.696750283241272,-0.793079376220703,0.251321107149124,0.554853856563568,-0.466952830553055,0.135121822357178,0.873897671699524,-0.558982968330383,0.398118853569031,0.727351069450378,0.0328459218144417,0.99102658033371,-0.129566445946693,-0.206936925649643,-0.550329029560089,-0.808897435665131,0.0776975750923157,-0.444437891244888,-0.892433762550354,-0.7270228266716,0.57496178150177,-0.375308901071548,0.0648032575845718,-0.450293123722076,-0.890526175498962,-0.424180865287781,0.895571947097778,-0.134244218468666,-0.727200388908386,0.574723780155182,-0.375329405069351,-0.0161297060549259,0.982751369476318,-0.1842270642519,-0.258577227592468,0.0674674138426781,0.963631629943848,-0.468342214822769,0.134417057037354,0.873262643814087,
- -0.830078899860382,-0.373331308364868,0.414237529039383,-0.0540984161198139,-0.984909355640411,0.164398714900017,-0.915388464927673,-0.202074408531189,0.348180860280991,-0.218968629837036,0.0913542658090591,0.971445918083191,0.156254857778549,0.987640738487244,0.0122558427974582,-0.374209821224213,0.876662850379944,-0.302372694015503,0.357488453388214,-0.91596919298172,0.182215332984924,0.456838965415955,-0.412093192338943,-0.788338363170624,-0.0741325691342354,-0.989064931869507,0.127494782209396,0.39903798699379,-0.342780023813248,0.85045313835144,-0.0556260533630848,0.184909492731094,0.981180131435394,0.723004639148712,-0.64036226272583,0.259230613708496,0.469016820192337,-0.406954646110535,-0.783843815326691,0.429632842540741,-0.880770087242126,0.199147462844849,0.317346096038818,-0.317024528980255,-0.893748819828033,-0.353250920772552,0.887246668338776,-0.296659976243973,0.0232613794505596,0.0163277182728052,0.999596059322357,-0.191468581557274,0.10765378922224,0.975576996803284,0.00447082100436091,0.00313816801644862,0.999985098838806,0.727064907550812,-0.635466694831848,0.25992077589035,-0.0451488383114338,0.190649420022964,0.980619370937347,0.13047306239605,0.0915820673108101,0.987213015556335,0.000460191047750413,0.982807576656342,-0.184632271528244,-0.588484644889832,0.801644086837769,-0.10513161867857,-0.613544464111328,0.783308684825897,-0.0999535918235779,-0.697725296020508,0.693517684936523,0.179479151964188,0.108972705900669,0.0764904692769051,0.991097450256348,0.683115005493164,-0.729434728622437,0.0357629805803299,0.323310315608978,-0.313372761011124,-0.892898619174957,0.441736102104187,-0.874126374721527,0.201921492815018,0.562666773796082,-0.79449337720871,0.228443384170532,-0.107529833912849,-0.0754776746034622,0.991332769393921,0.242260545492172,-0.96046257019043,0.137191519141197,0.505265533924103,0.354657560586929,0.786717712879181,-0.0539946965873241,0.991963446140289,-0.11442481726408,0.929421126842499,-0.0696762129664421,0.362383157014847,0.322356671094894,-0.575820088386536,0.751343727111816,
- 0.307823926210403,-0.943178296089172,0.125136435031891,-0.053520780056715,-0.0375674813985825,0.997859835624695,0.927501618862152,-0.0737904533743858,0.366464048624039,-0.0571120493113995,0.99193000793457,-0.1131946220994,0.265900731086731,0.589276552200317,0.762921988964081,0.193643316626549,-0.387318640947342,-0.901380479335785,0.655699014663696,-0.753748834133148,0.0438354089856148,-0.0564417503774166,-0.230360731482506,-0.971467077732086,-0.358448535203934,0.922390460968018,-0.143911555409431,0.170928686857224,-0.399153560400009,-0.900810658931732,0.217809230089188,0.00304787512868643,-0.97598671913147,0.176695048809052,-0.0335157476365566,-0.983694851398468,-0.089711032807827,0.990910947322845,-0.100237920880318,-0.406827449798584,0.903189539909363,-0.136895298957825,-0.496772438287735,-0.464722543954849,-0.732973456382751,0.403817027807236,-0.908694624900818,0.105857998132706,0.309622198343277,-0.580671787261963,0.752963721752167,0.666247189044952,-0.744615733623505,0.0407688952982426,-0.176601409912109,-0.165207743644714,-0.970318794250488,-0.0476395636796951,-0.223241806030273,-0.97359824180603,0.215745061635971,-0.878606498241425,-0.426033705472946,-0.471971243619919,-0.441521406173706,-0.763087153434753,0.291087478399277,-0.587500214576721,0.755057334899902,-0.793634057044983,0.561050772666931,0.235302403569222,-0.476755946874619,-0.537627220153809,-0.695457339286804,-0.434932351112366,-0.406872153282166,-0.803298771381378,-0.734856188297272,0.375471770763397,-0.5648073554039,-0.804409325122833,0.542518436908722,0.242073148488998,-0.474364727735519,-0.443760514259338,-0.76029908657074,0.771864056587219,-0.467507362365723,0.430886000394821,0.00838062260299921,-0.520472228527069,0.853837490081787,-0.505839824676514,0.470654249191284,0.722918152809143,-0.339063882827759,-0.403578132390976,0.849800169467926,-0.0162686742842197,-0.539755344390869,0.841664731502533,0.496842920780182,-0.840307056903839,0.216867193579674,-0.747425138950348,0.199965447187424,-0.633537292480469,0.284402757883072,0.360680788755417,-0.888270497322083,
- -0.60080349445343,0.743850886821747,-0.292781531810761,0.416260033845901,0.462559372186661,-0.782793998718262,-0.47683185338974,0.868107795715332,-0.137914925813675,-0.505525350570679,0.225666925311089,0.832777619361877,-0.789052188396454,0.283007979393005,0.545255124568939,-0.987714231014252,-0.102163784205914,0.118251271545887,-0.975076794624329,-0.140476360917091,-0.171731427311897,-0.99450820684433,-0.00669004814699292,0.104445554316044,-0.760134398937225,0.0334329418838024,0.648905217647552,0.0799877941608429,0.361176192760468,0.929060637950897,-0.723970532417297,-0.0944906547665596,0.683328747749329,0.953608453273773,-0.198641717433929,-0.226213067770004,0.105282187461853,0.268918454647064,0.957391619682312,0.754231810569763,-0.00862962286919355,-0.656551718711853,-0.654696762561798,-0.46264311671257,-0.597773790359497,0.930748760700226,0.128429666161537,-0.342363476753235,0.108875654637814,0.25527036190033,0.960720121860504,0.933000147342682,0.119156882166862,-0.339576750993729,0.680884957313538,-0.137730658054352,-0.71932327747345,-0.594565510749817,-0.580592751502991,-0.556240856647491,0.668488383293152,-0.0832567140460014,-0.739047825336456,0.94426029920578,0.0650240331888199,-0.32271409034729,-0.672018945217133,-0.421156138181686,-0.609112560749054,-0.848036110401154,-0.474866628646851,0.235236927866936,0.674928307533264,-0.110302858054638,-0.729592382907867,0.149607375264168,-0.97236967086792,0.179206743836403,-0.0976506322622299,-0.993525147438049,0.0580705478787422,-0.122268348932266,-0.975146949291229,0.184767603874207,-0.0940351188182831,-0.994886875152588,0.0368469394743443,-0.225177302956581,-0.974259316921234,0.010687337256968,-0.325486212968826,-0.935423612594604,0.137990415096283,-0.344409137964249,-0.936031699180603,-0.0722982659935951,-0.32990488409996,-0.934040486812592,0.136862620711327,-0.225253522396088,-0.974235355854034,0.0112411938607693,-0.305585384368896,-0.941364049911499,0.143008187413216,-0.408239454030991,-0.912443399429321,-0.0280650872737169,-0.00880660582333803,-0.976914405822754,0.213449627161026,
- -0.356773316860199,-0.932003796100616,-0.0638884082436562,-0.0106292720884085,-0.573086977005005,-0.819425642490387,-0.938399791717529,0.330274373292923,-0.101610466837883,-0.275533586740494,-0.758377611637115,0.590715348720551,-0.00942279677838087,-0.976331412792206,0.216074377298355,-0.40636995434761,-0.91323584318161,-0.0293903164565563,0.00230375421233475,-0.986140847206116,0.16589418053627,-0.311265736818314,-0.74686998128891,0.58762139081955,-0.322315216064453,-0.944528877735138,0.0630740597844124,0.0384481661021709,-0.999227344989777,0.00816300045698881,-0.0435664318501949,-0.988658726215363,0.143722236156464,0.148181989789009,-0.977262198925018,0.15165987610817,-0.245130434632301,-0.952749848365784,0.179384484887123,-0.353986859321594,-0.933747172355652,0.0530051030218601,-0.365445196628571,-0.727068841457367,0.581223428249359,-0.165126100182533,-0.946899056434631,0.275890409946442,0.027791004627943,-0.963099896907806,0.26770555973053,0.124280408024788,-0.97467428445816,0.185915589332581,-0.351469427347183,-0.934651494026184,0.0538128726184368,-0.24384032189846,-0.95541775226593,0.166490271687508,-0.150510087609291,-0.967159271240234,0.204816222190857,0.74619323015213,0.13541778922081,-0.651811063289642,0.811209559440613,0.0511109866201878,-0.582517623901367,-0.439993292093277,-0.626870453357697,-0.642992615699768,-0.431693255901337,-0.640132248401642,-0.635508954524994,0.811010658740997,0.0515640191733837,-0.582754731178284,-0.53735762834549,-0.591430842876434,-0.601212382316589,0.777279376983643,0.121471270918846,-0.617317974567413,0.825054824352264,-0.213380292057991,-0.52321445941925,-0.565242648124695,-0.530954301357269,-0.631338477134705,-0.441181004047394,-0.624939441680908,-0.64405745267868,-0.495469480752945,-0.667542994022369,-0.555784463882446,-0.738324642181396,-0.0564600937068462,0.672078132629395,0.824120581150055,-0.277385056018829,-0.493844956159592,-0.564577639102936,-0.339763134717941,-0.752205491065979,-0.518646895885468,-0.62730461359024,-0.580942571163177,0.824225068092346,-0.275106251239777,-0.494944036006927,
- 0.687629818916321,-0.149336412549019,-0.710537731647491,-0.564482271671295,-0.337581545114517,-0.753258585929871,-0.807391345500946,0.051248375326395,0.587786376476288,-0.854491591453552,0.212552651762962,0.473988890647888,-0.610502243041992,-0.406192541122437,-0.679922521114349,0.724906623363495,-0.271840959787369,-0.632939875125885,-0.753387331962585,-0.267265111207962,-0.600813567638397,-0.559130072593689,-0.530411839485168,-0.637210249900818,0.7446448802948,-0.37749382853508,-0.550456583499908,0.612435877323151,-0.598093509674072,-0.516920149326324,-0.739467263221741,-0.224471524357796,-0.634665846824646,-0.655386388301849,0.163851603865623,0.737306892871857,-0.633690416812897,-0.31945613026619,-0.704545438289642,-0.555726766586304,-0.558202564716339,-0.616098761558533,-0.608583152294159,-0.412448406219482,-0.67787379026413,-0.615023732185364,0.00892199389636517,0.788458108901978,-0.805074095726013,0.0433065071702003,0.591591238975525,-0.672821044921875,0.271041303873062,0.688366532325745,-0.54505580663681,-0.620714008808136,-0.563585221767426,-0.763218760490417,-0.614107728004456,-0.200920015573502,0.441258937120438,0.547354996204376,0.711120963096619,-0.713245809078217,-0.0957823991775513,0.694338619709015,-0.79808235168457,0.020585423335433,0.602196633815765,-0.70085334777832,-0.114099361002445,0.704120695590973,0.442061096429825,0.545569062232971,0.711994647979736,0.485103249549866,0.588426530361176,0.646860897541046,-0.68011862039566,0.358695030212402,0.639356374740601,0.604591250419617,0.405592769384384,0.685539186000824,-0.84144002199173,0.22664912045002,0.490519016981125,-0.783597469329834,-0.0218271166086197,0.62088531255722,0.590788662433624,0.213059857487679,0.778186559677124,0.461355894804001,0.500347197055817,0.732668817043304,0.568355321884155,0.399938583374023,0.719042003154755,0.488253027200699,0.428638964891434,0.760182619094849,0.848282694816589,-0.0466037392616272,-0.527488887310028,0.45560559630394,0.639556169509888,0.619186162948608,0.734053492546082,0.196777001023293,-0.649957120418549,0.773423671722412,0.0929798930883408,-0.627033174037933,
- 0.575990438461304,0.647714138031006,0.498699724674225,0.851649105548859,-0.0573471784591675,-0.52096551656723,0.491466462612152,0.419243603944778,0.763344943523407,0.888476371765137,-0.293795794248581,-0.352553248405457,0.604293406009674,0.432042956352234,0.669453918933868,0.864099681377411,-0.215439975261688,-0.454881697893143,0.863685190677643,-0.205154702067375,-0.460390776395798,0.603459179401398,0.45712149143219,0.653358221054077,0.750178635120392,-0.443091511726379,-0.490817666053772,0.595479369163513,0.548019886016846,0.587433993816376,0.614152312278748,-0.0540623255074024,-0.787333607673645,0.745187044143677,-0.38188037276268,-0.546684265136719,-0.681053996086121,0.389073073863983,0.620312631130219,-0.0494574122130871,0.478421270847321,0.876736581325531,0.603539347648621,0.455279946327209,0.654568910598755,0.54346638917923,-0.798537731170654,-0.258808374404907,0.582942545413971,0.162391722202301,0.796120047569275,-0.0517620779573917,0.469482839107513,0.881423056125641,0.0259796380996704,0.73324191570282,0.679471373558044,-0.643145859241486,0.65760350227356,0.392327904701233,-0.739028751850128,-0.223220303654671,-0.635617315769196,0.730018258094788,0.280876338481903,0.623042404651642,0.555037319660187,-0.781853854656219,-0.283968478441238,-0.0598467886447906,0.437543630599976,0.897203385829926,0.416882306337357,-0.908593356609344,-0.0258303266018629,0.453042685985565,-0.117100104689598,0.883764624595642,0.502657771110535,-0.821901857852936,-0.267978936433792,0.503543972969055,-0.0595933496952057,0.86191189289093,0.909013211727142,-0.32948961853981,0.255209356546402,0.515953361988068,-0.809895277023315,-0.279037266969681,-0.708380579948425,0.370165586471558,0.600977897644043,0.292267203330994,-0.277769714593887,0.915108680725098,-0.113791547715664,0.199227541685104,0.973324120044708,-0.0267621260136366,0.615023851394653,0.788054227828979,0.407983064651489,-0.165270373225212,0.897906303405762,-0.621307075023651,0.547520339488983,0.560534536838531,-0.717398226261139,-0.166644632816315,-0.676438689231873,-0.679362535476685,0.437929958105087,0.588798701763153,
- 0.0347459428012371,0.758173823356628,0.651126086711884,-0.907299995422363,0.368258953094482,-0.202958270907402,-0.612982928752899,0.561179637908936,0.556173861026764,-0.569396197795868,0.0336615145206451,-0.821373760700226,-0.522036552429199,0.687305152416229,0.505064010620117,-0.516070127487183,0.176221057772636,-0.838223099708557,-0.484668970108032,0.154697477817535,-0.860909342765808,-0.0120743568986654,-0.601062953472137,-0.799110472202301,-0.458044767379761,0.189040079712868,-0.868595898151398,0.782402396202087,-0.328718036413193,-0.528952658176422,0.599511861801147,-0.634321391582489,-0.488079816102982,-0.724224209785461,-0.28033572435379,-0.6300088763237,-0.754659116268158,-0.271535664796829,-0.597292244434357,-0.395994484424591,0.263679087162018,-0.879580557346344,0.64876526594162,-0.0583252795040607,-0.758750140666962,0.807649731636047,-0.162530168890953,-0.566820859909058,0.379353702068329,-0.803004205226898,0.459646642208099,-0.602335631847382,-0.64701771736145,-0.467503905296326,-0.78380286693573,-0.392818957567215,-0.480984807014465,-0.0851929783821106,-0.221693828701973,0.971387684345245,-0.745576858520508,-0.606092989444733,-0.27706778049469,0.196896761655808,-0.753577649593353,0.627178311347961,-0.539406597614288,-0.488959968090057,-0.685535311698914,-0.538143634796143,-0.652710795402527,-0.533263564109802,-0.5752192735672,0.35765066742897,-0.735669016838074,-0.5752192735672,0.35765066742897,-0.735669016838074,-0.504484832286835,-0.712785243988037,-0.487270206212997,-0.539406597614288,-0.488959968090057,-0.685535311698914,0.538038432598114,0.67254114151001,0.508136808872223,0.648758888244629,-0.362535804510117,0.66908872127533,0.343731075525284,-0.797024250030518,0.496589660644531,-0.750728785991669,-0.641115128993988,-0.159304425120354,0.596066892147064,-0.359350323677063,0.718033254146576,0.945199370384216,0.020579045638442,0.325844496488571,-0.558574855327606,0.627475917339325,-0.542464852333069,-0.19756130874157,-0.186095878481865,0.962464451789856,0.464568316936493,0.672654151916504,0.575945019721985,
- -0.559705913066864,0.627390027046204,-0.541397273540497,0.251829922199249,0.34137898683548,0.905561745166779,-0.207092508673668,-0.182914242148399,0.961069762706757,-0.461390018463135,0.629323422908783,-0.625356912612915,-0.104713089764118,-0.6384197473526,-0.762532234191895,-0.809644877910614,-0.13723261654377,-0.57065087556839,-0.557740211486816,0.62753838300705,-0.543250799179077,0.367386311292648,0.66350269317627,0.651760280132294,-0.739372909069061,0.149234458804131,-0.656549155712128,-0.100065723061562,0.120069690048695,-0.987709641456604,-0.297605127096176,-0.632399082183838,-0.71519410610199,0.914025783538818,-0.376873344182968,-0.150077909231186,0.27339506149292,-0.803536951541901,-0.528756558895111,-0.724209487438202,-0.485615581274033,0.489589810371399,-0.795680820941925,-0.484328269958496,0.363755643367767,-0.775641977787018,-0.453985989093781,0.438493132591248,0.207888320088387,-0.758301079273224,-0.617868840694427,0.558057069778442,-0.158019959926605,-0.814617693424225,-0.763507306575775,-0.46198695898056,0.451247900724411,0.570959448814392,-0.165237188339233,-0.804177820682526,-0.266230911016464,-0.856183707714081,-0.44279882311821,0.732566118240356,-0.261088252067566,-0.628633260726929,0.263147085905075,-0.797051787376404,-0.543564200401306,0.415406674146652,0.9095618724823,-0.0116073042154312,0.819115936756134,-0.319508850574493,-0.476406574249268,-0.257256537675858,0.815183222293854,0.518936991691589,0.740975439548492,0.668535768985748,-0.0633668899536133,0.889291822910309,-0.378618836402893,-0.256530314683914,0.511927008628845,0.847842156887054,0.138182744383812,-0.227608203887939,0.790432095527649,0.568692862987518,-0.240546703338623,0.801525950431824,0.547442674636841,-0.914723575115204,-0.32357469201088,0.242033928632736,-0.655556797981262,0.268290370702744,0.705879271030426,-0.864555358886719,-0.43290451169014,0.255221009254456,-0.252573311328888,0.811433792114258,0.527050256729126,0.464361131191254,0.8835129737854,0.0614310540258884,-0.2431910187006,0.803738355636597,0.543012738227844,-0.845203459262848,-0.449554681777954,0.289018571376801,
- -0.914259314537048,-0.324204981327057,0.242942944169044,0.56531035900116,0.167515382170677,0.807689785957336,-0.677298307418823,0.678212702274323,0.285122007131577,-0.632764995098114,0.651793479919434,0.418059438467026,-0.799789428710938,0.0847126469016075,0.594273209571838,-0.654334425926209,-0.122380934655666,0.746236801147461,0.365308731794357,-0.117589607834816,0.923429608345032,0.470920354127884,0.0219419505447149,0.881902813911438,-0.705282807350159,0.243885099887848,0.665654718875885,0.525539636611938,-0.0286950618028641,0.850285053253174,-0.705267310142517,0.239031821489334,0.667429268360138,-0.613832056522369,0.169705092906952,0.7709801197052,0.52650111913681,-0.0273263808339834,0.849735140800476,0.662747502326965,-0.532010793685913,-0.527001202106476,0.71059912443161,0.507585227489471,0.487243413925171,0.73510205745697,0.386871039867401,0.556736707687378,0.306207329034805,-0.188095256686211,0.933197319507599,0.331559330224991,-0.931771099567413,-0.147888705134392,-0.538909494876862,-0.593273639678955,0.597999095916748,0.803375840187073,-0.408861339092255,0.432919919490814,0.642252266407013,0.160410508513451,0.749520242214203,-0.632507801055908,0.343655824661255,0.694143056869507,0.658126056194305,0.191264852881432,0.728208661079407,0.918811798095703,-0.247704461216927,0.307290405035019,0.642853796482086,-0.580283999443054,-0.500009477138519,-0.627505660057068,0.272272288799286,0.729454874992371,0.687653005123138,0.352075427770615,0.634961724281311,0.790749371051788,-0.422334372997284,0.443112999200821,0.680323421955109,0.415015131235123,0.604088127613068,-0.630999445915222,0.31550058722496,0.708730697631836,-0.860628962516785,0.29612797498703,0.414277702569962,0.676102459430695,0.441622406244278,0.589792430400848,-0.864099740982056,0.263839393854141,0.428626477718353,-0.386723816394806,0.30525004863739,0.870210945606232,0.72180587053299,-0.482460409402847,-0.496213912963867,0.650250434875488,-0.0922407731413841,0.754099607467651,0.995993852615356,-0.0621095523238182,0.0643337890505791,0.722020864486694,-0.481740355491638,-0.496600598096848,
- 0.960676491260529,-0.15363122522831,0.231297135353088,0.660843908786774,-0.0459626875817776,0.749114692211151,-0.94223290681839,0.214611127972603,-0.257175832986832,0.743938684463501,0.059959702193737,-0.66555243730545,-0.449646443128586,-0.233588248491287,-0.862122178077698,0.954691350460052,0.267971277236938,-0.129444465041161,0.730626225471497,-0.451024532318115,-0.512603342533112,-0.490961253643036,0.0571688562631607,-0.869303643703461,0.763621687889099,-0.23707503080368,-0.600564181804657,-0.965460479259491,0.131353288888931,-0.225016370415688,-0.586814880371094,-0.112870201468468,-0.801815807819366,-0.501743018627167,0.0398646891117096,-0.864097774028778,0.678023099899292,-0.489032328128815,-0.548755049705505,0.964094996452332,0.242991149425507,-0.107127711176872,-0.603051960468292,0.639921605587006,0.476265341043472,-0.687197744846344,-0.373447686433792,-0.623134076595306,-0.974248349666595,0.0878849849104881,-0.207645371556282,-0.691154897212982,0.427369505167007,0.582803785800934,-0.688440799713135,-0.378261655569077,-0.618843615055084,-0.602528095245361,0.641789376735687,0.474411517381668,0.728522777557373,-0.251100242137909,-0.637340784072876,-0.471077084541321,0.0881441682577133,-0.877677023410797,-0.398173719644547,0.147197932004929,-0.905422806739807,-0.601689994335175,-0.143549710512161,-0.785724282264709,-0.455215752124786,0.874993622303009,0.164817363023758,-0.639352798461914,-0.169375449419022,-0.750026643276215,0.122515514492989,-0.342461585998535,-0.931509554386139,0.735579371452332,-0.116746798157692,-0.667303025722504,-0.439012140035629,0.101447887718678,-0.892735481262207,-0.622306942939758,0.658058166503906,0.423902720212936,-0.680127620697021,0.570016384124756,0.460985660552979,-0.713468849658966,-0.308962821960449,-0.628891229629517,0.203250840306282,-0.214173048734665,-0.955415725708008,-0.446163862943649,0.093189612030983,-0.890086233615875,-0.542091846466064,0.813241720199585,0.211600139737129,-0.405406445264816,0.885725617408752,0.226132228970528,-0.583363652229309,0.777868092060089,0.233683779835701,
- -0.417985141277313,0.125294372439384,-0.899772047996521,0.269079685211182,0.213606491684914,0.939131736755371,0.139760166406631,0.172744765877724,0.97500067949295,0.129624098539352,-0.278986304998398,0.951506316661835,0.327128171920776,0.1841911226511,0.926855325698853,0.169606134295464,-0.28129780292511,0.944513261318207,-0.176989823579788,-0.540821492671967,0.822305738925934,-0.171462312340736,-0.544933140277863,0.82076108455658,0.228256940841675,-0.097718134522438,0.968684613704681,0.336552917957306,0.179268047213554,0.924443244934082,-0.763906061649323,0.0879990682005882,0.639299392700195,0.205841764807701,-0.187819972634315,0.960391998291016,-0.509667158126831,-0.220567911863327,0.831618428230286,-0.667283713817596,0.340155512094498,0.66259092092514,0.244290500879288,-0.027188379317522,0.969320893287659,-0.695068895816803,0.306815892457962,0.650187134742737,-0.449027985334396,0.716006457805634,0.534517168998718,0.31995552778244,0.493342757225037,0.808851897716522,-0.323783814907074,0.776625692844391,0.540385603904724,0.850413084030151,-0.19571079313755,-0.488359332084656,0.89351761341095,-0.257020592689514,0.368193864822388,0.187030792236328,-0.257272899150848,0.948066532611847,0.825158596038818,-0.267738431692123,-0.497422814369202,0.919039726257324,0.022112375125289,-0.393544256687164,0.84645289182663,-0.46016052365303,-0.267899334430695,0.290411382913589,0.22203853726387,0.930784702301025,-0.623470842838287,0.411914587020874,0.664537906646729,0.163450017571449,0.153048664331436,0.974607825279236,-0.566662967205048,0.210291475057602,0.796662151813507,0.172514200210571,0.171843707561493,0.969901323318481,-0.614627480506897,0.433820277452469,0.658811867237091,0.783385872840881,-0.488332539796829,0.384496957063675,0.233695805072784,-0.074431948363781,0.969456732273102,0.101568326354027,0.0268871635198593,0.994465172290802,0.879624128341675,-0.0817393139004707,-0.468593746423721,0.217179015278816,-0.143352374434471,0.9655482172966,0.898671746253967,-0.274102926254272,0.342427670955658,0.338950961828232,0.536351561546326,0.772941946983337,
- -0.554354310035706,0.606932938098907,0.569494247436523,0.799527823925018,0.157680496573448,0.57956200838089,0.0532490126788616,-0.0692046731710434,0.996180355548859,0.464044362306595,-0.288623690605164,0.837471902370453,0.733507335186005,-0.554219007492065,0.393456846475601,-0.558862924575806,0.58407986164093,0.588662028312683,0.711130678653717,0.398043662309647,0.579529583454132,0.804566502571106,0.169289097189903,0.569222211837769,0.713658034801483,0.454231441020966,0.533259928226471,-0.551745355129242,0.618886888027191,0.559067189693451,-0.424805879592896,0.573070704936981,0.700806617736816,0.527135908603668,-0.616367280483246,-0.584994971752167,0.927072942256927,-0.192031785845757,0.321962118148804,0.814547121524811,0.193773686885834,0.546776652336121,0.713631093502045,0.474612504243851,0.515241324901581,-0.426005840301514,0.591660857200623,0.684438824653625,0.820305645465851,0.550812900066376,-0.153960511088371,0.129161313176155,0.693219423294067,0.70905864238739,0.927770435810089,0.373090803623199,-0.00673278095200658,-0.410426169633865,0.829406082630157,0.378993332386017,0.0942996218800545,0.789640545845032,0.606279969215393,0.500888764858246,0.763004302978516,0.408576637506485,0.822386026382446,0.54831999540329,-0.151744499802589,0.83799022436142,0.263634443283081,0.47777533531189,0.691208779811859,0.262011528015137,0.673483848571777,0.741467356681824,-0.655712425708771,-0.142363488674164,0.514172673225403,-0.650189638137817,-0.559356689453125,0.809005916118622,0.179913520812988,0.559589624404907,0.742170691490173,-0.654173135757446,-0.145740330219269,0.96696925163269,-0.00210043508559465,0.254884421825409,0.65944641828537,-0.743156492710114,0.113352656364441,0.698284268379211,0.298348724842072,0.650682151317596,0.903412520885468,-0.26186728477478,0.339516311883926,0.551943242549896,-0.537873566150665,-0.637221038341522,0.61753249168396,-0.383826971054077,-0.686535120010376,0.620759785175323,-0.375447601079941,-0.688256025314331,0.791216552257538,-0.346255093812943,-0.504067242145538,0.907796025276184,-0.250115126371384,0.336673110723495,
- -0.44418677687645,-0.421431988477707,-0.790628373622894,0.394787043333054,-0.750678539276123,-0.529740452766418,0.519086062908173,-0.637827575206757,-0.568968951702118,0.698707342147827,-0.264076739549637,-0.664884567260742,-0.442094504833221,-0.416372239589691,-0.794472694396973,0.520722568035126,-0.633590877056122,-0.572198033332825,-0.315802454948425,-0.147012814879417,-0.937366545200348,0.587961196899414,-0.642640173435211,-0.491238474845886,0.602985620498657,-0.419684439897537,-0.678434431552887,0.60201495885849,-0.421974748373032,-0.677875578403473,-0.275243729352951,-0.0706714317202568,-0.95877343416214,-0.316638857126236,-0.149786576628685,-0.936645090579987,-0.516595125198364,0.458267778158188,-0.723270416259766,0.101599857211113,-0.155327335000038,-0.982624590396881,0.823733031749725,-0.271386981010437,-0.497808188199997,0.839065909385681,-0.230006128549576,-0.493016809225082,-0.19033282995224,0.205385252833366,-0.959994971752167,-0.496568441390991,0.485912680625916,-0.719241738319397,-0.61980539560318,0.288716614246368,-0.72971498966217,-0.26372903585434,0.322986990213394,-0.908914983272552,-0.26943501830101,-0.184650972485542,-0.945150136947632,-0.636642217636108,0.255244702100754,-0.727692902088165,-0.661749064922333,0.711152493953705,0.237382486462593,-0.956376791000366,0.196089774370193,-0.216546073555946,-0.697897434234619,0.109667137265205,-0.707751572132111,-0.935151994228363,0.346325397491455,-0.0744950175285339,-0.726260662078857,0.577619910240173,0.37269389629364,-0.994134783744812,-0.0283404402434826,-0.104368835687637,-0.760099470615387,-0.137132450938225,-0.635172069072723,-0.379596918821335,-0.391346722841263,-0.838304340839386,-0.72460550069809,0.582379519939423,0.368484884500504,-0.955380320549011,0.284189850091934,-0.0805271789431572,-0.742492973804474,0.171815574169159,0.647443890571594,-0.89321905374527,0.44505786895752,-0.0638998821377754,-0.671936750411987,0.330346256494522,0.662851691246033,-0.673545062541962,0.355982780456543,0.647775769233704,-0.931440532207489,0.356399118900299,-0.0734725147485733,
- -0.674032807350159,0.2554751932621,0.693117737770081,-0.720770835876465,0.211824968457222,0.660014808177948,-0.586772322654724,0.49621793627739,0.63989531993866,-0.851434469223022,0.521597623825073,-0.0547291152179241,-0.908366799354553,0.412900865077972,-0.0662016272544861,-0.238307535648346,0.0827814489603043,-0.967655301094055,-0.789498209953308,0.599578082561493,-0.131143867969513,-0.964608371257782,0.250068247318268,-0.0836456716060638,-0.910856664180756,0.407662004232407,-0.0644350424408913,-0.5711430311203,0.651337444782257,0.499554961919785,-0.589514553546906,0.4904625415802,0.641809225082397,-0.105449937283993,0.396612852811813,-0.911909282207489,-0.684737861156464,0.504581153392792,-0.52586305141449,-0.712449610233307,0.682839274406433,-0.161698013544083,-0.579537749290466,0.623074889183044,0.525274872779846,-0.91177636384964,0.405705213546753,-0.0637758672237396,-0.992130398750305,0.115052819252014,-0.0493997037410736,-0.919773757457733,0.292898416519165,-0.261202573776245,-0.3819420337677,-0.402280211448669,-0.832040190696716,-0.458492398262024,-0.45687010884285,-0.762269258499146,-0.459447026252747,0.801210999488831,0.383365839719772,-0.572783291339874,0.646115243434906,0.504434764385223,-0.982907056808472,0.156081885099411,-0.0976328030228615,-0.941522002220154,0.0901803076267242,-0.324659556150436,-0.919660210609436,0.293069660663605,-0.261410266160965,-0.455346047878265,-0.448941200971603,-0.768838107585907,-0.997002422809601,0.0771950930356979,-0.00520143425092101,-0.975060880184174,-0.0463996008038521,-0.217033192515373,-0.466680914163589,0.732823848724365,0.495154678821564,-0.528357088565826,-0.67315274477005,-0.517401337623596,-0.246145278215408,-0.690141499042511,-0.680527150630951,-0.967294931411743,-0.250296086072922,-0.0411409623920918,-0.432317852973938,-0.393098950386047,-0.81152617931366,0.670822739601135,-0.203710034489632,-0.713091254234314,-0.261941134929657,-0.594602942466736,-0.760154068470001,-0.827322423458099,0.408265918493271,0.385819643735886,-0.466877788305283,0.674559473991394,0.571834444999695,
- -0.978824019432068,-0.0822586342692375,-0.18744894862175,0.15114252269268,0.619933485984802,0.769959986209869,-0.44053316116333,0.45868131518364,0.771713674068451,-0.803450107574463,0.20848248898983,0.557676434516907,-0.262102663516998,-0.593421936035156,-0.76102089881897,0.698409080505371,-0.263382494449615,-0.665473103523254,0.649372160434723,-0.380992591381073,-0.658149242401123,0.725925743579865,-0.334109127521515,-0.601167976856232,0.959375262260437,0.273798942565918,0.0680682212114334,0.640691041946411,-0.335153341293335,-0.690787374973297,-0.610753238201141,-0.580244719982147,-0.538791716098785,-0.960171043872833,-0.279022097587585,-0.0147735401988029,-0.238564938306808,-0.726121425628662,-0.64485228061676,-0.245278745889664,-0.694509744644165,-0.676383435726166,0.661329627037048,-0.481716960668564,-0.574971199035645,-0.449889123439789,-0.830945074558258,-0.327307254076004,-0.906361639499664,-0.408085525035858,0.109430380165577,-0.568827152252197,-0.667996883392334,-0.479808330535889,-0.709829688072205,-0.032517533749342,0.703622341156006,0.958729445934296,0.276538282632828,0.0660638064146042,0.680125176906586,-0.416224181652069,-0.603479206562042,0.638973772525787,-0.327091068029404,-0.696221172809601,0.658970952033997,-0.60820859670639,-0.442537695169449,0.702486157417297,-0.487607628107071,-0.518412947654724,-0.382886826992035,-0.89015805721283,-0.24701526761055,-0.800443172454834,0.196832224726677,0.566169440746307,-0.381966441869736,0.472751170396805,0.79410845041275,0.15453365445137,0.607627511024475,0.779043138027191,-0.37933811545372,0.466868042945862,0.798834681510925,0.580965161323547,0.67713737487793,0.451624274253845,0.139571264386177,0.659851968288422,0.738319218158722,-0.260343194007874,0.219242841005325,0.940294623374939,-0.684102416038513,-0.0795402154326439,0.725036025047302,-0.838229835033417,-0.390825778245926,0.380297601222992,-0.63844633102417,-0.50513881444931,-0.580707371234894,-0.955353677272797,-0.163968980312347,0.245791748166084,-0.782921969890594,0.138301625847816,0.606552422046661,
- -0.386695951223373,0.483399540185928,0.785360515117645,-0.0604892559349537,0.509955227375031,0.858071506023407,0.567716538906097,0.699460506439209,0.434111684560776,-0.854808986186981,-0.36706817150116,0.366827636957169,-0.303605258464813,0.6623654961586,0.684905767440796,-0.270781606435776,0.239829063415527,0.932287156581879,0.707825005054474,0.253140300512314,0.659472346305847,0.557146668434143,-0.127310112118721,0.820597171783447,0.911319851875305,0.205805838108063,0.356567054986954,0.853627026081085,0.424365878105164,0.302050560712814,0.332383960485458,0.154932513833046,0.930331587791443,0.658799588680267,0.654571712017059,-0.370835542678833,-0.798392534255981,-0.335693150758743,0.499879479408264,-0.853159964084625,-0.369505494832993,0.368216991424561,-0.514301896095276,-0.754406452178955,-0.407877951860428,0.399985522031784,0.0783402100205421,0.913167238235474,-0.0356707610189915,-0.829161405563354,0.557870030403137,-0.211942210793495,-0.796947717666626,0.565645694732666,0.579283475875854,0.0427812188863754,0.814002871513367,0.605374336242676,0.709344685077667,-0.361043184995651,0.259198874235153,0.23190826177597,0.937568426132202,0.393507480621338,0.174223706126213,0.902661621570587,0.454688936471939,0.0118013471364975,0.890572249889374,-0.111184008419514,-0.829003572463989,0.5480797290802,0.642030358314514,0.672628164291382,-0.367924392223358,0.662523031234741,-0.0267878081649542,0.748562395572662,0.323165684938431,0.824060380458832,-0.465283155441284,-0.915597021579742,-0.0888736248016357,0.39215275645256,-0.642804622650146,-0.491417497396469,-0.58763176202774,-0.543406426906586,-0.0756678804755211,-0.836052536964417,0.703536152839661,-0.491671741008759,-0.513123691082001,0.293341845273972,-0.70417046546936,-0.646602392196655,-0.338750511407852,-0.920309126377106,-0.195651262998581,0.600538790225983,0.0258000269532204,0.799179255962372,-0.0512656047940254,-0.843425273895264,0.534794986248016,-0.625520765781403,-0.758258402347565,0.183760687708855,-0.678264141082764,-0.696581661701202,0.233948260545731,-0.877722024917603,-0.189863428473473,0.43994989991188,
- -0.601305842399597,0.00184867158532143,-0.799016833305359,0.66494083404541,-0.0289440844208002,0.746335029602051,0.799376249313354,0.558535516262054,0.221440106630325,0.323547184467316,0.8237184882164,-0.465623289346695,-0.00465164054185152,0.717078506946564,-0.696976900100708,0.466006487607956,0.661852359771729,-0.587187707424164,0.925516247749329,0.374958008527756,-0.0531638711690903,0.311684995889664,-0.505911529064178,0.804304659366608,0.600802361965179,0.0255863647907972,0.798988044261932,-0.626799941062927,-0.756915211677551,0.184935703873634,0.827553689479828,-0.204579666256905,0.522782981395721,0.373643130064011,-0.619519412517548,0.690352439880371,0.873268663883209,0.478493064641953,0.09190334379673,0.927220463752747,0.369666069746017,-0.0600771084427834,0.930263638496399,0.365250259637833,-0.0346676371991634,-0.00404249224811792,0.715781629085541,-0.69831246137619,0.379434019327164,-0.630249202251434,0.677359402179718,0.892294526100159,0.445917874574661,0.0704817026853561,0.879110813140869,0.469993025064468,0.0791877806186676,-0.313349425792694,0.811384677886963,-0.493423819541931,0.0132305379956961,0.677879273891449,-0.735054194927216,0.953398168087006,0.245592921972275,-0.175260573625565,0.365498512983322,-0.604464769363403,0.707836985588074,-0.656521558761597,-0.723668098449707,0.212800472974777,-0.890243351459503,-0.448410868644714,0.0799655243754387,0.510358870029449,0.54612010717392,-0.664294123649597,-0.341504693031311,0.737441897392273,-0.582712590694427,0.954062581062317,0.2176853120327,-0.205858483910561,-0.781469762325287,0.559378862380981,-0.276406019926071,-0.394963890314102,0.4637670814991,-0.793047070503235,0.379234045743942,0.232657745480537,-0.895573496818542,0.429529041051865,0.340096890926361,-0.836563766002655,-0.634459555149078,0.772933125495911,0.00595462135970593,-0.74472051858902,0.619875609874725,-0.247276440262794,0.440727263689041,-0.7457315325737,0.499643981456757,0.0221626963466406,-0.528137743473053,0.848869442939758,0.95201450586319,0.264303833246231,-0.154311075806618,-0.0573919713497162,-0.89525318145752,0.441846251487732,
- 0.365498512983322,-0.604464769363403,0.707836985588074,-0.890243351459503,-0.448410868644714,0.0799655243754387,0.52170318365097,0.582120656967163,-0.623667657375336,0.93910276889801,0.0973181799054146,-0.329568177461624,0.92838716506958,-0.16146619617939,0.3347028195858,0.022667832672596,-0.52516108751297,0.850700914859772,0.908172428607941,-0.312909632921219,0.278047442436218,0.953153729438782,0.190426796674728,-0.235022649168968,-0.934992551803589,0.350562483072281,-0.0538038834929466,0.0325896739959717,-0.350114077329636,-0.93614000082016,-0.216283455491066,0.0596137642860413,-0.974508941173553,-0.215155154466629,0.0619440972805023,-0.9746133685112,-0.892775356769562,0.43604701757431,0.113204181194305,-0.937080442905426,0.344842791557312,-0.0544400997459888,0.990555346012115,0.0412769727408886,-0.130752921104431,0.5284343957901,0.605339884757996,-0.595248460769653,0.929133653640747,-0.143737360835075,0.340661436319351,0.249424517154694,-0.0103766545653343,-0.968338668346405,0.903954029083252,-0.396176487207413,-0.160970628261566,-0.159350678324699,0.173193231225014,-0.971911251544952,-0.214426204562187,0.0634477213025093,-0.974677383899689,-0.714645802974701,0.360543578863144,-0.59940779209137,-0.892053067684174,0.437538892030716,0.113141871988773,-0.736411988735199,0.202185496687889,0.645614743232727,-0.957532227039337,0.262999504804611,0.118166521191597,-0.726696014404297,0.323484092950821,-0.606028854846954,0.903132379055023,-0.398019284009933,-0.161035791039467,0.638543605804443,-0.2391696870327,-0.731477916240692,-0.161322593688965,0.169389218091965,-0.972256302833557,-0.702421605587006,0.39454448223114,-0.592400670051575,-0.116786025464535,0.253203839063644,-0.96033787727356,0.653702914714813,0.310719460248947,-0.690018773078918,-0.635004997253418,0.541943192481995,-0.55051451921463,-0.64673113822937,0.445275127887726,-0.619248628616333,-0.661632239818573,0.405384540557861,0.630798041820526,0.652761220932007,0.316261380910873,-0.688390552997589,-0.651231467723846,0.436507552862167,-0.62077271938324,-0.711797773838043,0.368755549192429,-0.597798705101013,
- -0.734314560890198,0.209692493081093,0.645609140396118,-0.74708354473114,0.185822144150734,-0.638229131698608,-0.56122612953186,0.225072994828224,0.796471834182739,-0.771861493587494,-0.346635729074478,-0.53298544883728,-0.455525279045105,-0.722718060016632,0.519783914089203,-0.418701767921448,-0.676554441452026,0.605774641036987,-0.788922250270844,-0.200509145855904,-0.580859482288361,-0.719038963317871,-0.275476276874542,0.638040602207184,-0.589510560035706,-0.307251811027527,0.747043251991272,-0.700999140739441,0.179466471076012,0.690211653709412,-0.762488722801209,0.121727652847767,-0.63544750213623,-0.348943531513214,-0.27446523308754,-0.896050930023193,-0.640532732009888,-0.125564157962799,-0.757595837116241,-0.700999140739441,0.179466471076012,0.690211653709412,-0.348943531513214,-0.27446523308754,-0.896050930023193,0.726603090763092,0.113826148211956,-0.677562952041626,-0.240833446383476,0.0521822422742844,-0.96916276216507,-0.749545514583588,0.176476463675499,-0.637994945049286,0.740129232406616,-0.10904898494482,-0.663563907146454,0.431836903095245,0.895009756088257,-0.111688986420631,0.00276966975070536,0.572093665599823,-0.820183634757996,-0.734176218509674,0.230825707316399,-0.638517677783966,0.671306312084198,0.0123612331226468,-0.741076946258545,0.700031161308289,0.2490603774786,-0.669272243976593,0.67493349313736,0.286093771457672,0.680158138275146,0.733292639255524,-0.216116920113564,-0.644651353359222,0.733188927173615,0.128944620490074,0.667688012123108,0.265287518501282,-0.560680866241455,0.784384787082672,0.404246926307678,-0.619227170944214,0.673158347606659,-0.598726570606232,-0.0527601949870586,0.799213886260986,-0.535313785076141,0.376679033041,0.75601065158844,-0.408238679170609,0.505587220191956,0.760080754756927,0.718125462532043,0.0331597849726677,0.695123195648193,-0.548434674739838,0.30875888466835,0.777101933956146,-0.542100250720978,0.353598475456238,0.762296199798584,0.723280906677246,0.0611776188015938,0.687838673591614,0.728775084018707,-0.253501147031784,-0.636100649833679,0.855596780776978,-0.0898417308926582,0.50978684425354,
- 0.729508757591248,0.100743688642979,0.676511406898499,0.52813333272934,-0.449336111545563,0.720536112785339,0.736590087413788,-0.483965456485748,0.472453683614731,-0.424732118844986,-0.665094494819641,0.614208519458771,0.790310621261597,-0.36249965429306,0.493966728448868,0.691753566265106,-0.428008884191513,-0.581623077392578,0.605552852153778,-0.363140732049942,-0.708120465278625,-0.430194169282913,-0.0729218870401382,0.899786412715912,-0.553690373897552,-0.256207138299942,0.792328774929047,0.801681637763977,-0.330595731735229,0.49800905585289,0.624947369098663,-0.295834958553314,-0.722442030906677,0.720329821109772,0.0503836683928967,0.691799402236938,0.814185798168182,-0.291502833366394,0.502123057842255,0.555207848548889,-0.351049661636353,0.753994941711426,-0.430968552827835,-0.0780968591570854,0.898981213569641,0.807083964347839,-0.314293652772903,0.499834984540939,0.566104352474213,-0.332413852214813,0.75433874130249,0.330474317073822,-0.827925980091095,-0.453128606081009,0.857997477054596,-0.486959278583527,-0.163435757160187,0.86478990316391,-0.474873304367065,-0.163199290633202,0.880692422389984,-0.411092191934586,0.235338270664215,0.572499871253967,-0.321185886859894,0.754376232624054,-0.470947355031967,0.287818521261215,0.833887934684753,-0.398092597723007,0.0978202819824219,0.912114858627319,0.590579867362976,-0.288183122873306,0.753767848014832,-0.390595585107803,0.13006828725338,0.911327242851257,-0.593252420425415,0.0118234027177095,0.804929792881012,-0.963052928447723,0.24184675514698,0.118487991392612,-0.933159351348877,0.340065240859985,0.116488210856915,-0.501172661781311,0.230223894119263,0.834160029888153,-0.763708233833313,0.645376563072205,-0.0154527295380831,-0.254319995641708,0.597974300384521,0.760097563266754,-0.589298188686371,0.79588258266449,-0.138919189572334,-0.693607151508331,0.720345616340637,-0.00338273099623621,-0.456946820020676,-0.422617942094803,0.782683670520782,0.331928223371506,-0.639088988304138,0.693821966648102,0.763701558113098,-0.635192573070526,0.115283541381359,0.585441827774048,-0.297760814428329,0.754053294658661,
- -0.145432233810425,0.124009318649769,0.981565773487091,-0.476203083992004,0.278156310319901,0.83418208360672,-0.630249619483948,-0.111393421888351,0.768359899520874,-0.449392378330231,-0.406555235385895,0.795461714267731,-0.87682831287384,0.307480335235596,-0.369632512331009,0.78268563747406,-0.608314990997314,0.131742313504219,0.019241027534008,-0.545193254947662,0.83808970451355,-0.406116962432861,-0.318866729736328,0.856383681297302,-0.457056939601898,-0.422855406999588,0.782491087913513,-0.931570649147034,0.152122035622597,0.330204844474792,-0.880375027656555,0.291152119636536,-0.374393224716187,-0.52472060918808,-0.583872318267822,0.619484841823578,-0.0140746682882309,-0.720732510089874,0.693070352077484,-0.984770178794861,-0.0939662903547287,0.146281391382217,-0.493497997522354,0.481841385364532,-0.724077761173248,-0.886943757534027,0.256660133600235,-0.384000420570374,-0.983745634555817,-0.0693723559379578,0.165626138448715,-0.984843790531158,-0.0978528037667274,0.143204569816589,-0.0130663868039846,-0.715927958488464,0.698051989078522,-0.912389278411865,-0.201214954257011,0.356452405452728,-0.980265498161316,-0.0312292464077473,0.195203676819801,-0.294802039861679,0.808017134666443,-0.510098099708557,-0.484023332595825,0.554707169532776,-0.676772773265839,-0.233888924121857,0.69684112071991,-0.678018033504486,-0.958185613155365,-0.285877555608749,-0.0124323191121221,-0.844123542308807,-0.534620106220245,-0.0404566079378128,-0.840174853801727,-0.54011857509613,-0.0487666353583336,-0.810786724090576,0.227809026837349,-0.539191961288452,-0.232245653867722,0.693689942359924,-0.681803643703461,-0.615970492362976,0.0355385467410088,-0.786967217922211,-0.673898816108704,-0.676321566104889,-0.297404885292053,-0.552991807460785,-0.824518859386444,0.119870647788048,0.293218314647675,0.849614977836609,-0.438380420207977,-0.177669033408165,0.585631489753723,-0.790866315364838,-0.652862429618835,0.0666667893528938,-0.754537105560303,-0.572325229644775,-0.808599710464478,0.13641981780529,-0.538116991519928,-0.0823438540101051,-0.838838219642639,
- -0.633237242698669,0.0499041192233562,-0.772347211837769,-0.639382719993591,0.0551016069948673,-0.766911685466766,-0.198322266340256,0.620562553405762,-0.758663594722748,0.308676868677139,0.836736440658569,-0.452317088842392,-0.0183937065303326,0.542620062828064,-0.839776992797852,-0.425783753395081,-0.10473894327879,-0.898742437362671,-0.559478998184204,-0.0549954809248447,-0.827018022537231,0.696611940860748,-0.0200677588582039,-0.717167437076569,0.837256491184235,-0.322039544582367,-0.441918700933456,0.934848964214325,0.0164670366793871,-0.354663521051407,-0.430257648229599,-0.206954628229141,-0.878662705421448,0.141076490283012,0.353434085845947,-0.924760401248932,0.146007135510445,0.450511455535889,-0.880750477313995,0.859607934951782,0.334570705890656,-0.386182099580765,0.577489078044891,0.0967717170715332,-0.810642719268799,0.659154951572418,0.727313101291656,0.191129624843597,0.857667505741119,0.437001317739487,-0.27099135518074,0.678177952766418,-0.0234497282654047,-0.734523594379425,0.537634432315826,-0.133499503135681,-0.832542538642883,0.032271571457386,0.516353905200958,-0.855767011642456,0.319300681352615,0.789235949516296,-0.524550974369049,0.156872048974037,0.985308408737183,-0.0675170123577118,0.544431030750275,-0.144420489668846,-0.826279401779175,0.818956136703491,0.552417755126953,-0.155388206243515,0.866341173648834,0.424879103899002,-0.262546598911285,0.362750917673111,0.901770889759064,0.234991565346718,0.548903286457062,0.825947821140289,0.128512188792229,0.677504479885101,0.618134498596191,-0.39861935377121,0.788897454738617,0.51929098367691,-0.328599661588669,0.787272870540619,0.587502121925354,-0.187196910381317,0.437488496303558,0.837662637233734,0.326994121074677,0.728019535541534,0.604444980621338,-0.323471516370773,0.321741312742233,-0.284053683280945,0.903214275836945,0.825086712837219,0.556431114673615,-0.0980641767382622,0.481947153806686,-0.69350665807724,0.535514235496521,0.876874208450317,-0.14452338218689,-0.458480775356293,0.868964731693268,-0.0783734768629074,-0.488628625869751,
- 0.698157966136932,0.71334034204483,0.0610010139644146,0.24511131644249,-0.126870423555374,0.96115779876709,0.203996315598488,-0.357825130224228,0.911233603954315,0.253773480653763,-0.502262055873871,0.826638877391815,0.728966236114502,0.683786988258362,0.0323051996529102,0.241151988506317,-0.407088726758957,0.880979299545288,0.563894093036652,0.80842798948288,0.168723583221436,0.0873624458909035,-0.316732048988342,0.944483280181885,0.944349467754364,0.281639128923416,0.169951498508453,-0.0354682691395283,-0.169633492827415,0.984868764877319,0.886298835277557,0.357262462377548,0.294682741165161,0.905129253864288,0.396373838186264,0.153716683387756,-0.896402716636658,-0.33947080373764,0.284994184970856,0.160870641469955,-0.300149172544479,0.940229296684265,0.331941455602646,-0.306032985448837,0.892277240753174,-0.785637021064758,-0.610679388046265,0.0992226228117943,0.456557750701904,-0.611383378505707,0.64634770154953,-0.647081196308136,-0.475332856178284,-0.59610790014267,-0.0436006039381027,-0.159605592489243,0.986217558383942,0.0448337830603123,-0.142573848366737,0.988768339157104,-0.586054921150208,-0.808631777763367,0.0515198186039925,-0.859412431716919,0.133043795824051,0.49366956949234,-0.991807281970978,0.0829784646630287,-0.0971233323216438,-0.474938690662384,0.609603226184845,0.634678781032562,0.333849102258682,0.941924691200256,0.0363709852099419,-0.434105068445206,0.372176885604858,0.820388436317444,-0.77457857131958,-0.28606966137886,0.564085304737091,-0.565440773963928,-0.822943925857544,0.0551368854939938,-0.472702980041504,-0.504538774490356,0.72249048948288,-0.0104142334312201,-0.20030166208744,0.979678928852081,-0.650942504405975,-0.393291354179382,0.649304091930389,0.840931832790375,0.40926656126976,0.354026228189468,0.429548531770706,0.899870097637177,0.0756429806351662,-0.503273069858551,0.653231263160706,0.565690100193024,-0.933282196521759,0.352710783481598,-0.0676729455590248,-0.545927405357361,0.657127857208252,-0.519755959510803,0.484646111726761,0.872294545173645,-0.0649644881486893,-0.506812274456024,0.553051769733429,-0.661267817020416,
- -0.905077874660492,0.425240397453308,-0.00216428004205227,-0.358187675476074,0.253361582756042,-0.898615300655365,0.770949840545654,0.507337152957916,-0.38502648472786,0.904746234416962,0.328908801078796,-0.270653426647186,0.907759785652161,0.396068572998047,-0.138210326433182,-0.357062846422195,0.25134289264679,-0.899629414081573,0.905132651329041,0.326541870832443,-0.272223323583603,-0.81450742483139,-0.563958346843719,0.136119946837425,-0.412768870592117,0.354652255773544,-0.838954031467438,-0.48394376039505,0.437137275934219,-0.758095920085907,-0.240518882870674,0.0535104423761368,-0.969168365001678,0.944472134113312,0.241392552852631,-0.22293995320797,-0.117804534733295,-0.0315398089587688,-0.992535829544067,-0.618998050689697,-0.784071981906891,0.0455251932144165,-0.49353900551796,-0.854145050048828,-0.16387714445591,0.260067254304886,-0.450301676988602,-0.854162395000458,-0.0869825184345245,0.0716475322842598,-0.993630051612854,-0.0938776582479477,-0.0597655922174454,-0.993788242340088,0.946748971939087,0.222939595580101,-0.232302650809288,-0.215592131018639,0.0863367170095444,-0.972659349441528,-0.0986698046326637,0.0888300165534019,-0.991147577762604,-0.953580498695374,-0.29768905043602,-0.0454472601413727,0.938823521137238,0.277247995138168,-0.204313367605209,0.609859824180603,0.792416155338287,-0.0121487909927964,-0.100585773587227,0.0916484519839287,-0.990698277950287,0.406502932310104,0.911257445812225,0.0660700127482414,-0.12549065053463,0.12835368514061,-0.98375678062439,0.594167172908783,0.804188430309296,-0.0156956873834133,-0.29183441400528,0.209004104137421,-0.933354139328003,-0.939510941505432,-0.340313524007797,-0.0388063341379166,-0.0672848299145699,0.0427452214062214,-0.996817827224731,0.644297659397125,-0.435818880796433,-0.628444492816925,0.296964406967163,-0.478966861963272,-0.826076805591583,0.86718487739563,0.409932225942612,0.282747149467468,-0.57514613866806,-0.816303014755249,0.0534463711082935,0.116216629743576,-0.0702557638287544,-0.99073600769043,-0.862047374248505,-0.183023810386658,0.472627371549606,
- 0.839903891086578,0.472591668367386,0.266867995262146,0.692568838596344,0.715206384658813,0.0939589217305183,0.633965313434601,-0.428588181734085,-0.643739223480225,-0.169260904192925,-0.600716471672058,-0.781339049339294,-0.958360731601715,0.00582914473488927,0.285501211881638,0.00738180009648204,0.00446169311180711,-0.99996280670166,0.616336703300476,-0.416264444589615,-0.668470621109009,0.738785147666931,0.656629502773285,0.15177021920681,0.176246002316475,-0.890391767024994,-0.419690191745758,-0.816468000411987,0.403930395841599,0.412577539682388,-0.840909123420715,-0.211060851812363,0.498322576284409,-0.220294833183289,-0.534675240516663,-0.815838575363159,0.691551864147186,0.711909353733063,0.122233889997005,-0.961046516895294,0.0148410052061081,0.27598837018013,-0.442780286073685,0.128562748432159,0.887365341186523,0.760288953781128,0.623742640018463,0.181399628520012,0.532832801342011,-0.233460500836372,-0.813378989696503,0.193666532635689,-0.897779107093811,-0.395583391189575,0.554628193378448,-0.297843009233475,-0.776966631412506,0.82468718290329,0.486114054918289,0.289109289646149,0.732477009296417,0.655992448329926,0.182075157761574,0.564515054225922,-0.330133944749832,-0.756527960300446,0.741529405117035,0.638267159461975,0.206758782267571,0.985730111598969,0.0249975994229317,-0.166467025876045,-0.234117850661278,-0.515604853630066,-0.824221134185791,-0.888904571533203,-0.104755982756615,0.445953905582428,-0.823853254318237,0.411150634288788,0.390155017375946,-0.986389696598053,0.159054443240166,0.0416780486702919,-0.115848116576672,-0.662960112094879,-0.739637136459351,0.599205076694489,-0.737881422042847,-0.310619413852692,-0.444325506687164,0.129558846354485,0.886447608470917,-0.395854622125626,-0.421598315238953,0.815814912319183,0.692719995975494,0.710536599159241,0.123599238693714,-0.90747207403183,0.328618973493576,-0.261733144521713,0.61269873380661,-0.644517064094543,-0.457381755113602,-0.381097793579102,-0.675098240375519,-0.631669878959656,0.776024401187897,0.537893116474152,0.329328387975693,
- 0.591647684574127,0.806039273738861,0.0159367471933365,-0.788008630275726,-0.205303907394409,0.580424606800079,0.789433181285858,0.439435541629791,0.428592652082443,-0.765876233577728,-0.223165661096573,0.603018164634705,-0.194495648145676,0.658619463443756,0.726905763149261,0.413578510284424,-0.0993116497993469,-0.90503591299057,0.26836371421814,0.628218472003937,-0.730289340019226,0.720116257667542,0.563500761985779,-0.404845237731934,0.212819561362267,0.551498472690582,-0.806571304798126,0.35963436961174,-0.0490349046885967,-0.931804001331329,0.92790412902832,-0.218402117490768,-0.302149713039398,0.228188097476959,0.573102951049805,-0.787072539329529,0.953588664531708,-0.15492507815361,-0.258199334144592,0.866971671581268,0.417681127786636,-0.271850407123566,0.882747232913971,-0.342547565698624,-0.321587473154068,0.989868462085724,0.134362652897835,-0.0459056124091148,0.432165056467056,-0.236106768250465,0.870337247848511,0.41977196931839,-0.284436672925949,0.861909091472626,0.971318364143372,0.235489442944527,0.0329447463154793,0.256773114204407,-0.639212906360626,0.724896132946014,-0.785430312156677,-0.590479016304016,0.185563921928406,0.0754852518439293,-0.908026456832886,0.412055730819702,0.0493409037590027,-0.21741858124733,0.974830687046051,0.319862872362137,-0.564348518848419,0.761050939559937,-0.750070035457611,-0.634269177913666,0.187343448400497,-0.851161181926727,-0.348757326602936,0.392292261123657,-0.856186747550964,-0.332356512546539,0.395580112934113,0.195987433195114,-0.74547666311264,0.637066304683685,0.314803779125214,-0.575261473655701,0.754965424537659,0.88122022151947,-0.346715271472931,-0.321308881044388,0.434399038553238,-0.226837411522865,0.871689319610596,0.561913847923279,-0.160622745752335,0.811451256275177,0.392421424388886,-0.505291223526001,0.768561124801636,-0.76657623052597,-0.544002056121826,0.341207683086395,-0.703574597835541,-0.347149670124054,0.620056390762329,-0.226048737764359,0.433228105306625,-0.872476577758789,0.128676354885101,0.428734660148621,-0.894219756126404,0.915242075920105,0.272458076477051,-0.296814054250717,
- -0.0140757719054818,0.205382063984871,-0.97858065366745,-0.227796331048012,0.427771598100662,-0.874711573123932,-0.631913125514984,0.774607002735138,-0.0258852187544107,-0.907858788967133,0.417355060577393,0.0400899685919285,-0.275324761867523,0.259944379329681,-0.925540506839752,-0.799923181533813,0.439101845026016,0.409038484096527,-0.273673593997955,0.266523361206055,-0.924158036708832,-0.504721462726593,0.654705286026001,0.562687516212463,-0.788549363613129,0.462949067354202,0.404806226491928,0.734799206256866,-0.4967902302742,-0.46181121468544,0.873090982437134,-0.368043303489685,-0.319775402545929,0.549891650676727,-0.193200379610062,0.812583982944489,0.91622519493103,0.268507987260818,-0.297380387783051,0.793444871902466,0.285650134086609,-0.537446975708008,-0.229336023330688,0.422928482294083,-0.876662135124207,-0.61719685792923,0.453692078590393,0.642830848693848,-0.241087764501572,0.384802788496017,-0.89095664024353,-0.577553570270538,0.190182238817215,-0.793890833854675,-0.418331414461136,0.49981352686882,-0.758409678936005,-0.254728525876999,0.337746173143387,-0.906113088130951,0.706349730491638,0.510343313217163,-0.490530073642731,-0.613170921802521,0.087804026901722,-0.785055339336395,-0.45755860209465,0.485353201627731,0.745031774044037,-0.664300918579102,0.329088479280472,0.671122252941132,0.570332884788513,-0.136509954929352,0.809991002082825,0.805751860141754,-0.0625580102205276,0.58894008398056,0.753116488456726,-0.454225093126297,-0.475915312767029,-0.718276858329773,-0.260089874267578,0.645315229892731,0.215424567461014,-0.676920175552368,0.703826189041138,0.399414598941803,-0.494394391775131,0.77203768491745,0.785086154937744,-0.105134658515453,0.610398769378662,-0.502391457557678,0.658010244369507,0.560914874076843,-0.445911884307861,0.515113115310669,0.731998026371002,0.695617496967316,-0.25238910317421,0.672618806362152,-0.498741090297699,0.360290557146072,0.788319766521454,-0.303123623132706,0.353954672813416,0.884778141975403,0.755979120731354,0.400080919265747,-0.518103122711182,0.632827997207642,0.287056386470795,-0.719115674495697,
- -0.429100543260574,0.483325600624084,-0.763065576553345,0.450174868106842,-0.739608705043793,-0.500321447849274,0.642422318458557,-0.657781541347504,-0.39321368932724,0.698227286338806,-0.248684957623482,0.671293079853058,-0.420866787433624,0.573129296302795,0.703131556510925,-0.50490790605545,0.352031379938126,-0.788125574588776,-0.831211388111115,0.0609951429069042,-0.55260044336319,-0.673284292221069,0.311181128025055,-0.670711994171143,-0.647636651992798,-0.042325709015131,-0.760772824287415,0.634231209754944,-0.297179013490677,-0.713747441768646,-0.00387247814796865,0.894435822963715,0.447179526090622,-0.262136429548264,0.823201358318329,0.503611028194427,-0.716109752655029,0.255896836519241,-0.649387240409851,0.701485753059387,-0.244020909070969,0.669605493545532,-0.0231950227171183,-0.820851743221283,-0.570670306682587,0.465589433908463,-0.717554688453674,-0.518017172813416,0.630611121654511,-0.314670294523239,-0.709444999694824,0.192397132515907,-0.320148080587387,-0.927625238895416,-0.713589072227478,0.259332627058029,-0.650797367095947,-0.293322861194611,0.382933557033539,0.875970065593719,0.477898955345154,-0.590101480484009,0.65068644285202,0.756129562854767,-0.158201828598976,0.635012030601501,-0.0959748402237892,-0.915372431278229,-0.391001492738724,0.388903498649597,-0.56551867723465,0.727284491062164,0.849900543689728,-0.415895909070969,0.323573350906372,0.920512855052948,-0.335844725370407,0.19966071844101,-0.00113458198029548,0.897007703781128,0.442013502120972,0.163652077317238,0.713248908519745,0.681538045406342,-0.0742353647947311,0.81566858291626,0.573736965656281,-0.668253839015961,0.317281454801559,-0.672881364822388,-0.928574085235596,0.242136135697365,-0.281283289194107,-0.872290134429932,-0.0451192818582058,-0.486902624368668,0.0721845701336861,-0.642507076263428,-0.762872219085693,-0.823363363742828,0.344627648591995,-0.450893074274063,0.203958615660667,0.816149055957794,0.540649473667145,-0.0783304795622826,0.810320377349854,0.5807284116745,-0.946553885936737,0.216249227523804,-0.239315718412399,
- -0.963224470615387,0.187270820140839,-0.192686975002289,0.468874126672745,0.861913800239563,0.193032756447792,0.184099808335304,0.781507849693298,0.596114695072174,0.189273476600647,0.769902288913727,0.609447479248047,0.740775167942047,-0.539419770240784,0.400347918272018,0.950878143310547,-0.283926159143448,0.123355954885483,0.867169260978699,-0.495261311531067,0.05228516086936,-0.0981751009821892,-0.917638123035431,-0.385099858045578,0.857585191726685,-0.408770948648453,0.312176108360291,0.822529733181,-0.294372946023941,-0.48661008477211,0.321764826774597,0.894889831542969,-0.309256494045258,0.440177947282791,0.896920084953308,-0.0421632640063763,-0.231813848018646,-0.422731578350067,-0.87610524892807,-0.877273082733154,0.299349069595337,-0.375209331512451,0.0385846868157387,-0.712364792823792,-0.700747907161713,0.0526831597089767,-0.684005498886108,-0.727571964263916,0.822280287742615,-0.29402968287468,-0.487238794565201,-0.257665514945984,-0.759195923805237,-0.597687244415283,0.384378761053085,0.452675133943558,0.80457329750061,-0.698522627353668,-0.354976415634155,0.621335566043854,-0.570888161659241,0.0727886408567429,0.817794919013977,-0.246156021952629,-0.911904871463776,-0.328385084867477,-0.935228168964386,0.348531484603882,0.0622423365712166,-0.985683023929596,-0.0409842245280743,0.163552045822144,-0.861894011497498,0.2525754570961,0.439709424972534,0.354386329650879,0.930782914161682,0.0897410809993744,0.45977520942688,0.710007548332214,0.533381700515747,0.333047807216644,0.836809575557709,-0.43454447388649,0.483031511306763,-0.415307313203812,-0.770844101905823,0.625267386436462,-0.0912501513957977,-0.77505749464035,0.620724499225616,-0.513776481151581,-0.592228710651398,-0.257665514945984,-0.759195923805237,-0.597687244415283,0.822280287742615,-0.29402968287468,-0.487238794565201,0.17141255736351,-0.182113170623779,-0.968221426010132,0.175072893500328,0.64304119348526,-0.745551824569702,-0.0690779760479927,0.820760130882263,-0.567081153392792,0.110250629484653,-0.135228872299194,-0.984661340713501,-0.0645445585250854,0.82485431432724,-0.561648786067963,
- 0.240295931696892,0.970699071884155,-0.00117892876733094,-0.478994578123093,0.0267448108643293,0.877410352230072,-0.00290077552199364,-0.618294060230255,0.785941541194916,0.078038327395916,-0.837949991226196,0.540138721466064,-0.24879977107048,-0.898153066635132,-0.362518638372421,0.698600828647614,-0.566746294498444,-0.436755657196045,-0.297401905059814,-0.953337132930756,-0.0519659407436848,0.0722370967268944,-0.843227803707123,0.532680690288544,-0.494215846061707,-0.857387244701386,-0.143658682703972,-0.44782155752182,0.0117693953216076,0.894045472145081,-0.295928001403809,-0.953946053981781,-0.0491276420652866,0.706930696964264,-0.572193026542664,-0.415745317935944,0.112235844135284,-0.989383041858673,0.0923269689083099,0.368123233318329,0.922302782535553,0.117655612528324,-0.857582628726959,0.249066591262817,0.450020104646683,-0.726454675197601,0.461672067642212,0.509040772914886,-0.0456742122769356,0.0290266089141369,0.998534679412842,-0.222677707672119,-0.0886110290884972,0.970856726169586,-0.0966171994805336,-0.995228111743927,0.0136437322944403,0.430172145366669,0.866464674472809,0.253359317779541,-0.630684614181519,0.400808840990067,0.664521813392639,0.202815622091293,0.978996515274048,-0.0207812003791332,-0.399047315120697,0.253600120544434,0.881163001060486,0.103034660220146,0.993337392807007,-0.0516207292675972,0.440326124429703,0.891344964504242,0.107782624661922,0.441006451845169,0.890961945056915,0.108167193830013,0.524566292762756,-0.502571880817413,-0.687205731868744,0.205385997891426,-0.208017513155937,-0.956318616867065,-0.383460700511932,-0.91826730966568,-0.098707027733326,0.33636862039566,-0.306883603334427,-0.890325009822845,0.159207165241241,-0.391560643911362,-0.906274437904358,-0.313964366912842,-0.160687729716301,-0.935738146305084,-0.168581366539001,0.96454781293869,-0.203046277165413,0.153822779655457,0.987046718597412,-0.0455782264471054,-0.139498487114906,-0.256612747907639,-0.95639431476593,0.300162523984909,0.953500509262085,-0.0271883457899094,0.484943062067032,0.859535038471222,-0.161337405443192,
- -0.140619173645973,-0.990058422088623,-0.00325634377077222,-0.578784227371216,-0.815462946891785,0.00538745755329728,-0.00969623494893312,0.00616210419684649,0.999934017658234,0.02068673633039,-0.333443254232407,-0.942543208599091,-0.297789245843887,-0.954614996910095,-0.00565410172566772,-0.463638335466385,-0.876265227794647,-0.131144016981125,-0.387070268392563,0.24598853290081,0.888631701469421,0.0153697486966848,0.266922801733017,0.963595449924469,0.32341855764389,0.945948541164398,-0.0241248235106468,0.393917590379715,-0.250340104103088,0.884397387504578,0.052859865128994,-0.998450636863709,-0.0173885431140661,0.455617904663086,0.105230361223221,0.883933782577515,-0.271197259426117,0.958215057849884,-0.0909720733761787,-0.665080726146698,0.389954656362534,0.636869788169861,-0.360021680593491,0.930429518222809,-0.068448930978775,0.00766358757391572,0.269206523895264,0.963051974773407,-0.0433541536331177,0.998774945735931,0.0238581858575344,0.137344896793365,0.981383740901947,-0.134247407317162,0.864742457866669,0.475756883621216,-0.160859957337379,0.583419859409332,-0.622769474983215,-0.521324634552002,0.289448976516724,-0.438838064670563,-0.850670576095581,-0.318775296211243,-0.575151562690735,-0.753381192684174,-0.436421006917953,-0.899742603302002,-0.000423604826210067,-0.143327996134758,-0.254648417234421,-0.95635312795639,-0.943178772926331,-0.0282389391213655,-0.331083565950394,-0.558143615722656,0.829107046127319,-0.0325156450271606,-0.370352774858475,0.918225228786469,0.140361919999123,-0.513716995716095,-0.482123464345932,-0.709684312343597,0.888355731964111,0.333553016185761,-0.315541565418243,0.682620048522949,0.0396458022296429,-0.729697346687317,-0.0856601223349571,-0.996239840984344,-0.0129909096285701,-0.417276382446289,-0.854675590991974,0.308885127305985,0.254212349653244,0.187232956290245,0.948851883411407,0.0516300685703754,-0.998515546321869,-0.0173507817089558,0.0838730931282043,-0.672114133834839,-0.73568195104599,0.324413418769836,-0.945865392684937,0.00973568484187126,-0.88075864315033,0.351342707872391,0.317525684833527,
- -0.567378401756287,0.344797104597092,0.747794568538666,-0.369266510009766,0.358593851327896,0.857352137565613,0.103775307536125,-0.994322896003723,-0.0235128048807383,-0.225381433963776,-0.943823993206024,0.241659864783287,-0.362096816301346,-0.557473123073578,-0.747067391872406,0.539793133735657,0.450517892837524,0.711095750331879,0.568218231201172,0.798960268497467,-0.196953698992729,0.610726058483124,0.0300436280667782,0.791271805763245,0.830922365188599,0.0426994748413563,0.554747521877289,0.584733128547668,0.0435615293681622,0.810055315494537,-0.417773246765137,-0.626787126064301,0.657725930213928,0.654110431671143,0.721097707748413,-0.228380486369133,0.589582741260529,0.400999039411545,0.70113617181778,0.350464761257172,0.849592804908752,-0.394165635108948,0.653778791427612,0.328914046287537,0.681460916996002,0.290637195110321,0.889462947845459,-0.352683544158936,0.404819995164871,0.795423150062561,-0.451024204492569,0.677703976631165,0.126098692417145,-0.72444224357605,-0.445959061384201,-0.689833521842957,-0.57030713558197,-0.195709958672524,-0.617214441299438,-0.762065708637238,-0.9487144947052,-0.013264361768961,-0.315855771303177,-0.907409071922302,-0.153596356511116,-0.391173839569092,-0.481193453073502,-0.486864805221558,0.728982508182526,-0.963311374187469,0.13232234120369,-0.233499497175217,0.125241249799728,0.983051955699921,-0.133878573775291,0.348764300346375,0.820892751216888,-0.452215194702148,-0.448616564273834,-0.564285576343536,0.693054914474487,-0.235059887170792,-0.35612091422081,0.904391944408417,0.810082793235779,0.0883792340755463,0.579616189002991,-0.527692139148712,-0.635522961616516,-0.563605844974518,-0.0226247534155846,-0.99704498052597,-0.0734125003218651,-0.0846608281135559,-0.968158543109894,0.235587745904922,0.164839997887611,0.975663781166077,-0.144596666097641,0.369189500808716,0.588713109493256,0.719107747077942,0.509784460067749,0.785483598709106,0.350906491279602,0.86957460641861,-0.474319905042648,0.13733483850956,0.898503601551056,-0.334997057914734,0.283669352531433,-0.168733894824982,-0.813749670982361,0.556183755397797,
- 0.896898448467255,-0.411753088235855,0.161346212029457,0.284211456775665,-0.127910479903221,-0.950191020965576,0.526996493339539,-0.112136006355286,-0.842437028884888,0.505227565765381,0.438237965106964,-0.743432998657227,-0.947616040706635,0.199619486927986,-0.249351352453232,-0.924968481063843,-0.103047162294388,-0.365807086229324,-0.213173180818558,0.311697721481323,0.925959885120392,-0.794172048568726,0.59795743227005,0.108340583741665,-0.851536393165588,0.496453434228897,-0.168581590056419,-0.950881123542786,-0.0794929713010788,-0.299175530672073,0.53744500875473,0.0229395478963852,-0.842986762523651,0.278228610754013,0.155836880207062,-0.947788953781128,-0.176083743572235,-0.432551920413971,0.884247362613678,0.932267725467682,-0.301555156707764,0.199853479862213,-0.225706934928894,-0.485785663127899,0.844433963298798,-0.665335118770599,0.74330061674118,-0.0695229172706604,0.024835828691721,0.947575986385345,0.318564176559448,-0.0509572811424732,0.930031359195709,0.363930255174637,0.872304260730743,-0.377839535474777,0.31035915017128,0.199969097971916,-0.62426483631134,-0.755185902118683,0.821250677108765,-0.561590492725372,0.100814037024975,0.945654392242432,0.105952434241772,0.307427734136581,-0.158451735973358,-0.00594878988340497,0.987348794937134,0.925460040569305,-0.240048080682755,0.293088018894196,0.297424167394638,-0.222401335835457,-0.928480744361877,0.278242021799088,-0.192172765731812,-0.94109034538269,0.966148555278778,-0.0297021474689245,0.256271332502365,0.300153970718384,-0.210919365286827,-0.930279850959778,-0.988672614097595,-0.0357184819877148,-0.145775929093361,-0.88184380531311,-0.342188149690628,-0.324436038732529,-0.148118823766708,0.113406203687191,0.9824458360672,-0.910200476646423,0.356593579053879,-0.210656300187111,-0.988516807556152,-0.0161276645958424,-0.150247901678085,-0.917361557483673,0.332306623458862,-0.219134882092476,0.259694576263428,0.292334884405136,-0.920379817485809,0.302384912967682,0.19422759115696,-0.933187544345856,0.302593141794205,0.190270096063614,-0.933935165405273,
- 0.225718930363655,0.0260963346809149,-0.973842859268188,-0.895164370536804,0.383368372917175,-0.227397039532661,0.29031828045845,-0.300743222236633,-0.908443093299866,0.95565140247345,-0.1124631986022,0.272180825471878,0.961820304393768,-0.0287832263857126,0.272164344787598,-0.161781385540962,-0.0512805543839931,0.985493302345276,0.865837216377258,-0.357621252536774,0.349904149770737,0.900561153888702,-0.31190887093544,0.302824467420578,0.152304530143738,-0.266353160142899,-0.951766431331635,0.279693514108658,-0.389023572206497,-0.877742648124695,0.949169933795929,-0.110766418278217,0.294630736112595,0.940407574176788,-0.150663197040558,0.304851114749908,0.715548813343048,-0.357441574335098,-0.600187838077545,0.139162614941597,-0.328370481729507,-0.93424129486084,-0.987231552600861,0.0191279705613852,-0.158139199018478,-0.352853834629059,0.0957182049751282,0.930769801139832,-0.144599571824074,0.148938879370689,0.978216826915741,0.940170228481293,-0.151644542813301,0.305096566677094,-0.142640352249146,0.167866915464401,0.975435495376587,-0.31494876742363,0.292661905288696,0.902860045433044,-0.918814599514008,0.328672528266907,-0.218527123332024,0.263632506132126,0.446841537952423,-0.854886293411255,-0.904800653457642,0.274944812059402,-0.325178623199463,-0.37596121430397,-0.492401450872421,0.784980237483978,-0.982569575309753,-0.141513451933861,-0.120544627308846,-0.940199017524719,-0.133302837610245,-0.313458740711212,-0.860806941986084,0.397894412279129,-0.317319095134735,0.234499886631966,0.091902382671833,-0.967762231826782,0.376650780439377,0.226360127329826,-0.898273527622223,0.348510593175888,-0.757308959960938,-0.552289545536041,-0.423230767250061,-0.681053400039673,-0.597529947757721,-0.64371657371521,-0.744632065296173,-0.176499456167221,-0.0776901319622993,-0.0847001671791077,0.993373095989227,0.941107451915741,-0.147744089365005,0.304119437932968,-0.313769608736038,0.297713875770569,0.90161806344986,-0.384234398603439,-0.285726517438889,0.877909064292908,-0.901408195495605,-0.322235524654388,-0.289184302091599,
- -0.0965119004249573,0.000870575313456357,0.995331466197968,-0.355764955282211,0.918024897575378,-0.175104647874832,-0.24859644472599,0.958382487297058,0.140366837382317,-0.230917185544968,0.850377082824707,0.472796022891998,0.886155843734741,0.452639132738113,0.0992251262068748,-0.154179856181145,0.894546985626221,-0.419540584087372,0.622876942157745,0.453384250402451,-0.637547671794891,0.191412255167961,-0.963121652603149,0.189097926020622,-0.516187608242035,-0.573782980442047,-0.63586437702179,-0.962839245796204,-0.241734996438026,-0.120435863733292,0.402212172746658,-0.885036945343018,-0.234382122755051,0.123850002884865,-0.818272650241852,0.56132972240448,0.868882417678833,-0.420241326093674,0.26161140203476,0.467293709516525,0.85806804895401,0.21296913921833,-0.204464122653008,0.592822432518005,0.778945446014404,0.258220493793488,0.307778477668762,0.915748119354248,0.285505294799805,-0.343514859676361,-0.894697844982147,0.740111947059631,-0.168043911457062,-0.651149451732636,0.822979807853699,-0.514882266521454,0.240001067519188,0.255708873271942,-0.225884258747101,-0.939994275569916,0.922855079174042,-0.252556592226028,0.290781199932098,0.67717844247818,-0.0550608783960342,-0.733755886554718,-0.23712632060051,-0.932077467441559,0.273866206407547,-0.876908659934998,0.102865219116211,-0.469521015882492,-0.807017862796783,-0.568138539791107,-0.161061450839043,-0.907185137271881,-0.156161159276962,-0.390677660703659,-0.854369819164276,0.0831385850906372,-0.512971937656403,-0.199762508273125,-0.960484862327576,0.193813815712929,-0.423442900180817,-0.54302179813385,0.725136816501617,-0.168505176901817,-0.841042697429657,0.514055609703064,-0.939557194709778,0.0894338563084602,0.330505758523941,-0.177120745182037,-0.858772337436676,0.480768442153931,-0.973202645778656,0.14982296526432,0.174440965056419,-0.959816634654999,0.0689470395445824,0.272026717662811,-0.273366361856461,-0.951895892620087,-0.13843797147274,-0.744843542575836,-0.235219031572342,-0.624403893947601,-0.844552397727966,-0.202182576060295,-0.495836168527603,
- -0.866239905357361,0.403613656759262,0.294490188360214,-0.136549279093742,-0.769496142864227,0.623883008956909,0.39607435464859,-0.91766631603241,0.0318378917872906,-0.058885220438242,-0.566426575183868,0.822005748748779,-0.350604802370071,-0.770104467868805,0.532930970191956,0.621291637420654,-0.0511284023523331,0.781909584999084,0.617916882038116,-0.0499982610344887,0.78465211391449,-0.341922134160995,-0.788038194179535,0.511942446231842,0.349278658628464,-0.670446157455444,0.654603958129883,-0.44165363907814,0.668050646781921,-0.598874270915985,0.710410714149475,-0.247826650738716,-0.658709764480591,0.400561571121216,0.867824494838715,-0.293991655111313,0.47747015953064,-0.866853594779968,0.143482744693756,-0.225444927811623,-0.940818428993225,0.253051936626434,0.942700982093811,-0.244449004530907,-0.227067232131958,0.972188115119934,-0.232575222849846,-0.0275543686002493,0.946235656738281,-0.240884110331535,-0.215900182723999,-0.228979557752609,-0.945224344730377,0.232635587453842,0.754769682884216,-0.337644070386887,-0.562422811985016,0.0849933475255966,0.840197205543518,-0.535578966140747,0.299444884061813,-0.950007915496826,-0.088417612016201,0.299209833145142,0.946724593639374,-0.119105979800224,0.961503446102142,-0.242466166615486,-0.129310712218285,-0.430859297513962,0.657753467559814,-0.617835462093353,0.755772352218628,-0.251903206110001,-0.604444324970245,0.207999035716057,0.849283933639526,-0.485235244035721,0.890836358070374,-0.283399105072021,-0.355099320411682,0.33181431889534,0.922526717185974,-0.197088092565537,0.908716022968292,-0.272062927484512,-0.316570550203323,0.206803157925606,0.847469389438629,-0.488905042409897,-0.594495177268982,0.785452485084534,-0.172162309288979,-0.994864284992218,0.00955663342028856,0.100765511393547,0.191339686512947,0.823166012763977,-0.534590363502502,0.247444614768028,0.902991771697998,-0.351250648498535,-0.92108815908432,0.105067238211632,0.374910235404968,-0.754676878452301,0.335996806621552,0.563532769680023,0.223583340644836,0.905447959899902,-0.360797017812729,
- 0.332584649324417,0.936452865600586,0.111550413072109,-0.709081947803497,0.356257528066635,0.608509123325348,-0.7746302485466,0.326104789972305,0.541852295398712,-0.755703210830688,0.4784015417099,0.44726350903511,0.13190071284771,0.867123603820801,-0.480311214923859,0.661684930324554,-0.0513651147484779,-0.748020529747009,-0.830947697162628,-0.27240177989006,-0.485101222991943,-0.855293273925781,-0.209635272622108,-0.473842263221741,-0.798436164855957,-0.39420747756958,-0.455082595348358,0.679979026317596,-0.222892493009567,-0.698532342910767,0.61343377828598,0.107880637049675,-0.782343149185181,0.618832111358643,0.0966911464929581,-0.779549658298492,-0.609168410301209,-0.578136920928955,-0.542836606502533,-0.806347131729126,-0.3692766726017,-0.461994618177414,0.543906927108765,0.333697855472565,-0.769942224025726,0.665159642696381,0.477314829826355,0.57422399520874,0.608462154865265,0.117992833256722,-0.78476220369339,0.710249304771423,0.177154719829559,0.681294441223145,0.787112832069397,0.0600309520959854,0.61388099193573,0.665112912654877,-0.0727306008338928,-0.743192493915558,-0.42860946059227,0.052537564188242,0.901961028575897,0.71300333738327,0.367965489625931,0.59684807062149,0.691734969615936,0.282206684350967,0.664727091789246,0.354583621025085,0.0377544276416302,-0.934261798858643,-0.656439602375031,-0.509276032447815,-0.556529462337494,0.586781680583954,0.160136520862579,-0.79375284910202,-0.640784025192261,-0.533264696598053,-0.552290320396423,0.377809107303619,-0.00299529801122844,-0.925878643989563,-0.685906112194061,-0.641566872596741,-0.343401789665222,0.691129505634308,0.421650797128677,0.58698433637619,-0.445275217294693,0.117970108985901,0.887588322162628,-0.460758656263351,-0.000782122660893947,0.887525141239166,-0.824271380901337,-0.367659389972687,-0.430584818124771,-0.530174434185028,0.195229187607765,0.82510644197464,-0.435564637184143,0.0789117962121964,0.896691918373108,-0.430089563131332,-0.0721769109368324,0.899896383285522,-0.758645951747894,-0.539944529533386,-0.364576727151871,-0.747669517993927,-0.519531548023224,-0.413614869117737,
- 0.893986463546753,0.409575551748276,0.181758403778076,0.606341004371643,0.122253134846687,-0.785751104354858,0.663221299648285,0.481185585260391,0.573234617710114,0.54294627904892,0.237323805689812,-0.805535078048706,0.868157207965851,0.461079210042953,0.183600783348084,0.325474768877029,0.0868305787444115,-0.941555440425873,-0.448310881853104,-0.0305679477751255,0.893354892730713,-0.338149636983871,-0.113329887390137,0.934243619441986,0.703049600124359,0.393307715654373,0.592478156089783,-0.74752950668335,-0.519820213317871,-0.413505256175995,-0.537530422210693,0.207948669791222,0.817201554775238,-0.429626613855362,-0.07320586591959,0.900034368038177,-0.308400124311447,-0.153739094734192,0.938751101493835,0.734144568443298,0.653370320796967,0.18476739525795,0.685500979423523,0.434370130300522,0.584303855895996,-0.326761484146118,-0.128970742225647,0.936265707015991,-0.620294511318207,-0.716406762599945,-0.319368302822113,-0.647149205207825,-0.579698026180267,-0.495124340057373,-0.833208918571472,-0.3634212911129,-0.41675877571106,-0.394188076257706,-0.03296172991395,0.918438494205475,-0.720039486885071,-0.469805419445038,-0.510711431503296,-0.868812203407288,-0.280497610569,-0.408027529716492,-0.910804569721222,-0.369009733200073,0.185112997889519,-0.538738191127777,0.210294499993324,0.815804779529572,-0.847837209701538,-0.291214108467102,0.443132787942886,-0.533815443515778,0.200779035687447,0.821418821811676,-0.935566067695618,-0.298004925251007,0.189497247338295,-0.221557393670082,-0.264035373926163,0.938721299171448,-0.752222537994385,-0.518216609954834,0.406955569982529,0.733106076717377,-0.238963887095451,0.636751055717468,-0.263875961303711,-0.211634382605553,0.941052913665771,0.504027307033539,0.393965482711792,0.76860111951828,0.776401340961456,0.602329194545746,0.185473829507828,0.690723538398743,-0.0176464188843966,0.722903609275818,-0.69328647851944,-0.610993564128876,0.382153004407883,-0.880646228790283,-0.155947253108025,0.447373330593109,0.736478745937347,-0.281636089086533,0.615044832229614,-0.795483469963074,-0.526126623153687,0.300660640001297,
- 0.559057056903839,-0.273154407739639,0.78284215927124,-0.769433319568634,-0.57776552438736,0.272322237491608,-0.936845600605011,-0.32677561044693,-0.124651528894901,0.599238872528076,-0.553318679332733,0.578576922416687,-0.967354476451874,-0.224419087171555,0.117735281586647,0.599238872528076,-0.553318679332733,0.578576922416687,-0.936845600605011,-0.32677561044693,-0.124651528894901,0.875818014144897,0.311822026968002,-0.368388414382935,0.955913424491882,0.238033190369606,0.171958565711975,0.69921201467514,-0.0491969548165798,0.713219583034515,0.516237318515778,-0.12833996117115,0.846774995326996,0.860446691513062,0.365267008543015,-0.355262637138367,0.677585899829865,0.0262615121901035,0.73497462272644,0.111130379140377,-0.705610752105713,0.699831068515778,0.561336517333984,-0.282379925251007,0.777922213077545,-0.971599936485291,-0.141487151384354,0.189670547842979,-0.953700125217438,-0.291580736637115,0.073735885322094,0.113493449985981,-0.68838769197464,0.716408848762512,-0.971636593341827,-0.143564715981483,0.187914133071899,-0.824260413646698,-0.539991736412048,0.170305371284485,0.113493449985981,-0.68838769197464,0.716408848762512,-0.953700125217438,-0.291580736637115,0.073735885322094,0.939396917819977,0.186724156141281,-0.287519633769989,0.148997262120247,-0.116422951221466,0.98196005821228,0.913587749004364,0.329337507486343,-0.238525182008743,0.989474236965179,0.117484495043755,-0.084487646818161,0.59833174943924,-0.524205446243286,0.605976700782776,0.128828912973404,-0.549634039402008,0.825412333011627,0.838765978813171,-0.34032154083252,-0.425032824277878,0.595955669879913,-0.487869381904602,0.637824654579163,0.985971331596375,0.160671278834343,-0.0452244393527508,0.127870097756386,-0.560093104839325,0.818501651287079,-0.720473527908325,-0.679322898387909,0.1394212692976,-0.103932179510593,-0.968753933906555,-0.22519762814045,-0.359201788902283,-0.933037102222443,-0.020391546189785,-0.319438368082047,-0.916856586933136,0.239443421363831,0.582391202449799,-0.810091316699982,-0.0676210522651672,0.93266373872757,0.333204329013824,-0.138250544667244,
- 0.1476059705019,-0.201795488595963,0.968241214752197,0.984675049781799,-0.0518448129296303,0.166515454649925,0.922238647937775,0.358793377876282,0.144024968147278,0.147194996476173,-0.218702659010887,0.964625716209412,0.923110246658325,0.366703271865845,-0.115741848945618,0.87901359796524,0.408672720193863,0.245604857802391,0.792149901390076,0.43230402469635,-0.430826812982559,-0.179555252194405,0.477650582790375,-0.860005855560303,-0.192330524325371,0.366244584321976,-0.910425126552582,0.918903768062592,-0.100778266787529,-0.381391674280167,0.858465254306793,0.447693675756454,0.250215381383896,0.207142919301987,0.308203309774399,0.9284947514534,-0.89630913734436,0.0682078972458839,0.438152492046356,-0.943167388439178,0.062216904014349,0.326442003250122,-0.173878893256187,0.518860101699829,-0.836988866329193,-0.705719828605652,0.625942349433899,0.331897109746933,-0.730814278125763,0.587165415287018,0.34806215763092,0.955984532833099,0.165395066142082,-0.242359235882759,-0.153255164623261,0.641824662685394,-0.751381397247314,-0.176906943321228,0.617086708545685,-0.766751706600189,-0.951736807823181,-0.0666385218501091,0.299594044685364,-0.212741672992706,0.144935518503189,-0.966299593448639,-0.209622383117676,0.113789930939674,-0.971138775348663,-0.191388502717018,0.505134224891663,-0.841552197933197,0.934623122215271,-0.156885400414467,-0.319165825843811,0.954352259635925,0.0902561917901039,-0.284720540046692,-0.203332111239433,0.37028032541275,-0.90639317035675,-0.90939325094223,0.236954033374786,0.341843098402023,-0.981745719909668,-0.11189242452383,0.15380334854126,-0.203339725732803,0.370171248912811,-0.906435966491699,-0.981806695461273,-0.0644205957651138,0.178621485829353,-0.969229817390442,-0.207071602344513,0.133097484707832,-0.133915260434151,0.821566581726074,-0.554161608219147,-0.395167708396912,0.740183770656586,-0.54403167963028,0.971626281738281,0.235281050205231,0.0241950862109661,-0.912885725498199,-0.404744625091553,-0.0531170703470707,-0.390460997819901,0.412046074867249,-0.823260724544525,-0.205580458045006,0.335635900497437,-0.919285178184509,
- 0.771919846534729,0.564734876155853,-0.291914790868759,0.985464811325073,0.16473326086998,-0.0414975546300411,-0.397982746362686,0.713943362236023,-0.576103091239929,-0.391643345355988,0.422862470149994,-0.817192196846008,-0.928884267807007,-0.369914591312408,-0.0183685682713985,-0.98899781703949,-0.147645816206932,-0.00917855650186539,-0.990448713302612,-0.137849271297455,-0.00298015726730227,-0.690597295761108,0.311069011688232,-0.652925312519073,-0.392599672079086,0.431997090578079,-0.811938464641571,-0.59274035692215,-0.0583630092442036,-0.803276181221008,0.880055129528046,0.294828295707703,-0.372262299060822,-0.343372046947479,0.132273480296135,-0.929838359355927,-0.657063186168671,0.134518444538116,-0.741736352443695,-0.968381941318512,-0.239976450800896,-0.0681757777929306,-0.796059727668762,-0.345419526100159,0.496965080499649,0.877768754959106,0.304150462150574,-0.370154738426209,-0.594455301761627,-0.0541181489825249,-0.802305519580841,-0.553788900375366,0.0293115973472595,-0.832141160964966,-0.782899141311646,-0.394072443246841,0.481431037187576,-0.561140537261963,0.0552804358303547,-0.825872480869293,-0.641806900501251,0.0803076326847076,-0.762649714946747,-0.367206305265427,-0.403491795063019,-0.838065564632416,0.98870724439621,-0.00434666080400348,0.149796783924103,0.909186899662018,0.0511980690062046,-0.413228988647461,-0.478654623031616,-0.181258365511894,-0.859089732170105,-0.711016178131104,-0.572461247444153,0.408343195915222,-0.793630301952362,-0.436786681413651,0.423519015312195,0.850272417068481,0.492964297533035,0.184453427791595,0.274340689182281,0.545949816703796,0.791628837585449,0.31110468506813,0.110310070216656,-0.943952202796936,-0.539113759994507,-0.0186443850398064,-0.842026591300964,-0.848499715328217,-0.288949698209763,0.443346738815308,-0.943850755691528,-0.26961562037468,0.190927103161812,-0.367594927549362,-0.402828246355057,-0.83821439743042,-0.684363722801209,-0.643309712409973,-0.343218505382538,0.37910333275795,-0.00531092006713152,-0.925339221954346,-0.923472166061401,-0.183996468782425,-0.336666703224182,
- -0.563172936439514,0.0627330467104912,-0.823954522609711,-0.956039071083069,-0.220795080065727,0.1929741948843,0.923750817775726,-0.0136321727186441,0.38275134563446,0.566277861595154,0.657639503479004,-0.496829599142075,0.559356331825256,0.564792096614838,-0.606737494468689,0.631917893886566,0.558768212795258,-0.537082731723785,0.832368016242981,0.0747537910938263,0.549158811569214,0.534540235996246,-0.711424767971039,0.456225335597992,0.517066955566406,0.249899879097939,0.818652451038361,-0.651087939739227,-0.713561475276947,-0.258678376674652,0.266509085893631,-0.556398630142212,0.787015557289124,0.651733040809631,-0.0155397122725844,0.758289217948914,0.652171492576599,0.522793889045715,-0.548961818218231,0.554459154605865,-0.718636155128479,0.419687002897263,0.663264274597168,0.501687407493591,-0.555328965187073,0.733887612819672,-0.155798733234406,0.661162495613098,0.426526457071304,0.706148982048035,-0.56518030166626,0.211156114935875,-0.515435099601746,0.830505847930908,-0.704399228096008,-0.676150739192963,-0.215967431664467,-0.693109512329102,-0.141952976584435,-0.70671683549881,0.0628813356161118,0.936704516410828,-0.344427973031998,-0.679364204406738,-0.152386292815208,-0.717804074287415,-0.649079144001007,-0.714837670326233,-0.260198712348938,-0.67634654045105,-0.154639810323715,-0.720167994499207,0.186744019389153,0.886513650417328,-0.423344135284424,0.324585497379303,0.884531915187836,-0.335033714771271,0.436543673276901,0.685475468635559,-0.582711756229401,-0.67634654045105,-0.154639810323715,-0.720167994499207,0.324585497379303,0.884531915187836,-0.335033714771271,-0.667722344398499,-0.161009222269058,-0.72678941488266,-0.696639776229858,-0.703625202178955,-0.140016287565231,0.243712916970253,-0.539818167686462,0.805729746818542,-0.436657726764679,-0.820375204086304,-0.369208067655563,-0.721774101257324,-0.1192372366786,-0.681780517101288,0.504402756690979,0.495442688465118,-0.707187652587891,0.800759851932526,-0.328052639961243,0.50116378068924,0.240991488099098,-0.53781121969223,0.807887494564056,
- -0.831634283065796,-0.553462862968445,0.0454237498342991,0.504402756690979,0.495442688465118,-0.707187652587891,-0.747755289077759,-0.0977354273200035,-0.656741797924042,-0.436657726764679,-0.820375204086304,-0.369208067655563,-0.928205192089081,0.371678382158279,-0.0170383863151073,0.244276851415634,0.933291018009186,-0.263243108987808,0.370368391275406,0.850082397460938,-0.374415755271912,0.370780676603317,0.848562002182007,-0.377444356679916,0.386727184057236,0.791567385196686,-0.47314178943634,-0.938211858272552,0.336547166109085,-0.0805886164307594,-0.397990465164185,-0.659132480621338,0.638081610202789,0.800759851932526,-0.328052639961243,0.50116378068924,-0.831634283065796,-0.553462862968445,0.0454237498342991,-0.35406756401062,-0.37480354309082,0.856830596923828,-0.890851736068726,-0.0498420372605324,0.451552003622055,-0.870942175388336,0.462001621723175,0.167374491691589,0.810914695262909,-0.372664481401443,0.451152473688126,0.827219665050507,-0.380370885133743,0.413552433252335,0.483279377222061,0.567032754421234,-0.667019426822662,0.808501362800598,-0.55603301525116,0.192750692367554,-0.393823832273483,-0.838215351104736,0.37722384929657,0.824454307556152,-0.533883988857269,0.187731251120567,0.31047710776329,0.118253774940968,-0.943196713924408,0.547462940216064,-0.0534348413348198,-0.835122168064117,0.569929420948029,-0.725117921829224,-0.386502891778946,0.433914631605148,-0.721373617649078,-0.539757549762726,0.232962116599083,0.238961383700371,-0.942669689655304,0.31603267788887,0.141019597649574,-0.938209354877472,-0.395397305488586,-0.828445255756378,0.396660357713699,0.348163574934006,-0.828497469425201,0.438604712486267,0.826357245445251,-0.525792062282562,0.201684609055519,0.306086391210556,0.460604250431061,-0.833159565925598,0.77823281288147,-0.627970576286316,-0.00261881412006915,0.240666642785072,-0.970416069030762,-0.019292188808322,-0.379564255475998,-0.508231103420258,0.773066699504852,-0.887069642543793,0.44378536939621,0.127129897475243,0.125811666250229,0.535283505916595,0.83525025844574,
- 0.31810474395752,-0.905726194381714,0.280123949050903,0.384033739566803,0.404662013053894,-0.829919695854187,0.364957630634308,0.677551209926605,-0.638537585735321,0.37332084774971,0.715936481952667,-0.589971721172333,-0.931049525737762,0.361364960670471,-0.0506176017224789,-0.943690121173859,0.287748843431473,-0.163247615098953,-0.925787270069122,0.378009766340256,-0.00517583871260285,-0.822076141834259,-0.172930300235748,-0.542481303215027,0.344067752361298,-0.842755138874054,0.413982033729553,-0.953520655632019,0.235396757721901,-0.188113674521446,0.334418922662735,0.557709157466888,-0.759687125682831,0.375921338796616,0.730818748474121,-0.569725513458252,0.0160918794572353,0.731903970241547,-0.681217849254608,-0.953649818897247,0.232189625501633,-0.191416308283806,0.376602917909622,0.726363122463226,-0.574949443340302,-0.945804178714752,0.119457177817822,-0.301967561244965,0.0216543804854155,0.39905172586441,-0.916672706604004,-0.727591812610626,-0.202391296625137,0.655475378036499,-0.865765511989594,-0.10175159573555,-0.489996880292892,-0.63551390171051,-0.660240352153778,0.400255858898163,0.310437172651291,-0.918366611003876,0.245421126484871,-0.692743241786957,-0.508266270160675,0.511636912822723,0.0234169866889715,0.129518911242485,-0.991300404071808,-0.929811179637909,0.132371068000793,-0.343408048152924,0.345506310462952,-0.837937414646149,0.422476410865784,0.975444495677948,-0.205834969878197,0.0783580020070076,0.352626889944077,0.14826425909996,-0.923943698406219,0.969799041748047,0.145642682909966,0.195647835731506,0.340223848819733,-0.206867352128029,0.917307794094086,-0.698896586894989,0.0423044487833977,0.713970541954041,-0.720215380191803,-0.364282310009003,0.590413570404053,0.560739874839783,-0.651337921619415,0.511204361915588,0.980597376823425,-0.174284979701042,0.0897424817085266,0.262755066156387,-0.123107954859734,-0.956976592540741,0.31178292632103,-0.0507989823818207,-0.948794424533844,0.737971127033234,-0.665463268756866,-0.112059250473976,0.855309367179871,0.517547845840454,-0.0242923777550459,
- 0.245346739888191,0.194204285740852,-0.94978404045105,0.989866673946381,-0.0408275574445724,0.13600417971611,0.236637383699417,0.97073620557785,0.0409147627651691,-0.729867815971375,0.337314188480377,0.594568848609924,-0.796773016452789,0.359452575445175,0.485743403434753,-0.701081514358521,0.401450961828232,0.589340209960938,0.482583731412888,-0.0328204147517681,0.875234663486481,0.827864766120911,-0.398213922977448,0.395051330327988,0.898248493671417,-0.235545992851257,0.371036022901535,-0.804902136325836,0.418379068374634,0.420822381973267,-0.655267477035522,0.487302154302597,0.577201128005981,0.844276189804077,-0.366271436214447,0.391207069158554,0.132790446281433,-0.818303644657135,0.559236884117126,0.0903082191944122,-0.401645988225937,-0.911331534385681,0.175461977720261,-0.173741072416306,-0.969034135341644,0.401000320911407,-0.34042090177536,0.850477695465088,0.87156218290329,-0.132104858756065,0.472152382135391,-0.804971635341644,0.418215930461884,0.420851677656174,0.949872553348541,0.026842812076211,0.311482906341553,0.423146367073059,-0.26920747756958,0.865144193172455,0.43749150633812,-0.251172035932541,0.863431394100189,-0.702769935131073,0.34531369805336,0.621991038322449,-0.800454437732697,0.428671568632126,0.41894319653511,-0.750313222408295,0.103048883378506,0.653001546859741,0.457657188177109,-0.225071832537651,0.860170066356659,0.761252045631409,-0.583239376544952,0.283420830965042,-0.833621799945831,0.229203805327415,-0.502533912658691,-0.804141581058502,0.33901059627533,0.488291054964066,0.182209849357605,-0.153825163841248,-0.971152603626251,-0.807464957237244,0.329367071390152,0.489405423402786,-0.890098750591278,0.0704821646213531,-0.450284898281097,-0.768245220184326,0.360726833343506,0.528843522071838,-0.801827549934387,0.345564246177673,0.487501949071884,-0.539012551307678,0.0173312146216631,-0.84211939573288,0.185598105192184,-0.143706470727921,-0.97206062078476,0.0706420466303825,-0.448839902877808,-0.890815734863281,-0.632708847522736,-0.254529684782028,-0.731364667415619,0.294166684150696,-0.885940730571747,0.358573824167252,
- -0.408145636320114,0.265259027481079,-0.873530089855194,-0.666743278503418,0.607614636421204,0.431575983762741,-0.639696478843689,0.551739871501923,0.535136938095093,-0.649006843566895,0.537796676158905,0.538112342357636,-0.651761710643768,0.636651277542114,0.412167251110077,-0.424084097146988,0.239107370376587,-0.87348747253418,0.115540020167828,-0.38275870680809,-0.916594922542572,0.395947247743607,-0.836701214313507,0.378360778093338,-0.64591521024704,-0.31425529718399,-0.69572788476944,0.131247356534004,-0.360693901777267,-0.92340350151062,-0.462524890899658,0.172133833169937,-0.869735956192017,-0.594795882701874,0.708576619625092,0.379653841257095,0.414806872606277,-0.279498964548111,0.865918934345245,0.709521889686584,-0.575172066688538,0.407131195068359,0.0524260327219963,-0.467230588197708,-0.882579803466797,0.081782154738903,-0.428762346506119,-0.899708151817322,0.778733968734741,-0.561389863491058,0.280026435852051,0.439333468675613,-0.248824939131737,0.863175690174103,0.628437519073486,-0.717552900314331,0.300306737422943,0.119370475411415,-0.377416998147964,-0.918317556381226,-0.632628262042999,-0.37115690112114,-0.679723501205444,-0.59749710559845,0.705465018749237,0.381203800439835,-0.465338170528412,0.213246688246727,-0.859061241149902,0.127647161483765,-0.365788966417313,-0.92190283536911,-0.368068397045136,0.390931755304337,-0.843621969223022,-0.622871160507202,0.674857676029205,0.395725458860397,-0.490015119314194,0.743760287761688,0.454649120569229,-0.761046350002289,-0.173163190484047,-0.625158309936523,-0.718830943107605,-0.397225320339203,0.57052093744278,-0.735226929187775,-0.0952725932002068,-0.67109203338623,-0.747480034828186,-0.306307047605515,0.589448571205139,-0.728966355323792,-0.350459963083267,0.588035643100739,-0.772721529006958,-0.118075124919415,-0.623666524887085,-0.642402529716492,-0.41088679432869,-0.646908819675446,-0.747889161109924,-0.304178416728973,0.590031623840332,-0.773451566696167,-0.114179439842701,-0.623486757278442,0.690694212913513,-0.033072866499424,0.722390353679657,
- -0.749007225036621,-0.0463904067873955,0.660935819149017,-0.768969833850861,-0.111522108316422,0.629482507705688,-0.745568454265594,-0.234324097633362,0.62387490272522,0.698262453079224,-0.170732945203781,0.695183277130127,0.775029122829437,-0.0489396750926971,0.630027651786804,-0.79796040058136,0.128788575530052,0.588789165019989,-0.766259014606476,-0.16387851536274,0.621281683444977,-0.659110486507416,-0.260446339845657,-0.705507695674896,-0.605609536170959,-0.53161883354187,-0.592130541801453,-0.79718542098999,0.115657158195972,0.592552781105042,-0.658184349536896,-0.276384145021439,-0.7002894282341,-0.625132381916046,-0.497345149517059,-0.601545810699463,-0.746106564998627,-0.163963869214058,0.645322382450104,-0.600877285003662,-0.584714710712433,-0.545027852058411,-0.769070625305176,-0.108122877776623,0.629952192306519,0.483343422412872,-0.276368051767349,0.830662310123444,0.689992487430573,-0.0264905206859112,0.723331689834595,0.581251800060272,0.135220035910606,0.802410066127777,-0.673961102962494,0.41667976975441,0.610044598579407,-0.795397162437439,0.0917630940675735,0.599101722240448,0.681673169136047,-0.212627857923508,-0.700079381465912,0.787552833557129,-0.160270065069199,0.595041394233704,0.698054432868958,-0.152777910232544,0.699556231498718,0.693435370922089,0.0559157282114029,-0.718345940113068,0.698278784751892,-0.176586389541626,0.69370311498642,0.565312385559082,0.570265829563141,0.596002340316772,0.789640963077545,-0.209115356206894,0.576834440231323,0.694339752197266,0.0348594784736633,-0.718802571296692,0.55633008480072,0.240474477410316,-0.795404851436615,0.610442817211151,0.464164733886719,-0.641802668571472,-0.769680738449097,0.173443078994751,-0.614417672157288,0.555454671382904,0.266906499862671,-0.787547469139099,-0.791107654571533,0.0207412056624889,-0.611325204372406,-0.733121991157532,-0.104051180183887,-0.672090411186218,0.681129097938538,0.184475839138031,-0.708542048931122,-0.650708794593811,-0.470080345869064,-0.59632420539856,0.673575878143311,-0.263508051633835,-0.690549910068512,
- -0.672683656215668,-0.0958695858716965,-0.733693182468414,0.694365739822388,-0.0667442008852959,-0.716520369052887,-0.479207217693329,0.15275251865387,-0.864307284355164,-0.637980282306671,0.121072269976139,-0.760475277900696,0.506913959980011,0.453521102666855,-0.733046293258667,-0.515629947185516,0.0425250306725502,-0.85575544834137,0.690333604812622,-0.134909600019455,-0.710801601409912,0.558956384658813,-0.00686498917639256,0.829168617725372,0.781201660633087,-0.597844481468201,-0.179738521575928,0.656264185905457,-0.3454929292202,-0.670784592628479,-0.580283641815186,-0.273944824934006,-0.766958355903625,0.803639471530914,-0.0590480603277683,-0.592179775238037,-0.642445027828217,-0.349421203136444,-0.682033240795136,0.803719878196716,-0.0593210197985172,-0.592043399810791,-0.577377140522003,-0.501054108142853,-0.644655287265778,-0.642358303070068,-0.351036339998245,-0.68128502368927,0.838189363479614,-0.229096591472626,-0.494927853345871,0.583132445812225,0.463349789381027,0.667280673980713,0.507323801517487,0.40110519528389,0.762716948986053,-0.787523329257965,0.0227762963622808,0.615863859653473,0.52303683757782,0.182299673557281,0.83258593082428,0.574768126010895,0.0851352140307426,0.813875675201416,-0.583191692829132,-0.481547951698303,-0.654216349124908,0.7972132563591,-0.0380248390138149,-0.60249924659729,0.751731753349304,0.0838904529809952,-0.654111623764038,0.486754328012466,0.514660775661469,0.705828964710236,-0.777089416980743,0.408079564571381,0.479169249534607,-0.7782102227211,0.171719551086426,0.604070544242859,-0.709352314472198,-0.038022868335247,0.703827798366547,-0.689908802509308,-0.315721362829208,0.651418328285217,-0.574963986873627,-0.670222640037537,-0.469273954629898,0.507143616676331,0.402388125658035,0.762161016464233,0.612769544124603,0.287035286426544,0.736290872097015,0.837758719921112,-0.225211158394814,-0.497433662414551,0.728935480117798,0.123074792325497,-0.673428297042847,0.682517826557159,0.216310620307922,-0.698125422000885,0.455090582370758,0.721831500530243,0.521394312381744,
- -0.77815181016922,0.171459823846817,0.604219615459442,-0.707447826862335,0.0867253243923187,0.701424479484558,0.486808091402054,0.514421820640564,0.705966055393219,-0.565565824508667,-0.691956400871277,-0.44869989156723,-0.727998971939087,0.130501076579094,0.673043072223663,-0.705529868602753,-0.046828992664814,0.707131266593933,-0.67963171005249,0.0334381461143494,0.732791006565094,0.540099143981934,0.55354106426239,0.63394433259964,0.497170597314835,0.463752895593643,0.73331755399704,-0.456090122461319,-0.277051866054535,0.845709204673767,-0.392468273639679,-0.908704459667206,-0.142214313149452,-0.316034436225891,-0.908445179462433,-0.273586511611938,0.595102429389954,0.574387848377228,0.56207799911499,0.728935480117798,0.123074792325497,-0.673428297042847,0.455090582370758,0.721831500530243,0.521394312381744,-0.678888738155365,0.0320903211832047,0.733539581298828,0.497485458850861,0.711597263813019,0.496122539043427,0.540042877197266,0.553682804107666,0.633868336677551,0.743054091930389,0.0992040261626244,-0.661837816238403,0.743324816226959,-0.202774539589882,-0.637456476688385,-0.585953414440155,-0.471828609704971,-0.658814370632172,0.764546513557434,0.0602569133043289,-0.641745865345001,0.634977698326111,0.502030074596405,0.587170422077179,0.612523138523102,0.236975848674774,-0.754094064235687,-0.631439447402954,-0.204650953412056,-0.747931957244873,0.670236706733704,0.100627519190311,-0.735293805599213,-0.587676227092743,-0.34016141295433,-0.73411637544632,-0.322043627500534,-0.903900980949402,-0.281515806913376,-0.375420361757278,-0.564424693584442,0.735176384449005,-0.422362923622131,-0.313518464565277,0.85047972202301,0.709612607955933,0.318201214075089,0.628647744655609,-0.42891526222229,-0.306582719087601,0.849728763103485,-0.628666758537292,-0.148889109492302,0.763289034366608,-0.475431561470032,-0.433295488357544,0.765649974346161,-0.387994527816772,-0.844236373901367,-0.36976370215416,-0.382429271936417,-0.757011473178864,-0.529794037342072,-0.661146879196167,-0.512009739875793,-0.548389315605164,-0.501262128353119,-0.394052684307098,0.770362734794617,
- -0.495473206043243,-0.595832049846649,-0.632052600383759,-0.5915207862854,-0.614346086978912,-0.522189676761627,-0.0877697989344597,-0.286932200193405,0.953921675682068,-0.542165696620941,-0.326100915670395,0.774412393569946,-0.638893842697144,-0.123433381319046,0.75932788848877,-0.229573503136635,0.0814318731427193,0.969878792762756,0.703448116779327,0.337216258049011,0.625656425952911,-0.0385064706206322,-0.397641956806183,0.916732311248779,-0.671315968036652,-0.494857728481293,-0.551770508289337,-0.907818555831909,-0.380017399787903,0.177348449826241,0.181127160787582,-0.796381592750549,0.577034950256348,0.687731802463531,-0.135127395391464,-0.713278114795685,0.767899513244629,-0.00612626923248172,0.640541017055511,0.628826200962067,0.338523119688034,-0.699985504150391,0.0864879041910172,-0.644406020641327,0.759776771068573,0.870124638080597,0.341801524162292,0.355042070150375,0.651534914970398,0.467911571264267,0.597127437591553,0.565351724624634,0.507391035556793,-0.650332033634186,0.622536301612854,0.215814843773842,-0.752245128154755,0.685912609100342,-0.168534263968468,-0.707898378372192,-0.570414423942566,-0.389297842979431,-0.723238945007324,0.68723452091217,0.051391065120697,-0.724615514278412,-0.696963250637054,0.194190964102745,-0.690313041210175,0.584178328514099,0.464201092720032,-0.665772616863251,0.0303824990987778,0.0551148727536201,-0.99801766872406,-0.660269558429718,0.0291450228542089,-0.750463008880615,0.639212608337402,0.302113354206085,-0.707202076911926,-0.676117300987244,-0.0126739563420415,-0.73668497800827,0.840552031993866,0.538064777851105,-0.0629175752401352,0.428900748491287,-0.783727705478668,-0.449238240718842,0.36357456445694,-0.902004599571228,-0.232812032103539,0.466216623783112,-0.884653985500336,-0.00542057165876031,0.815875887870789,0.276969820261002,0.507577061653137,0.756146013736725,0.368305027484894,0.54092013835907,0.459501713514328,-0.880284309387207,0.118143640458584,0.801067471504211,0.461303055286407,0.381432056427002,0.529324114322662,-0.797272145748138,-0.29012605547905,
- 0.872674703598022,0.460989058017731,0.16102147102356,-0.371639639139175,0.873188614845276,0.315318614244461,0.816941976547241,0.533651113510132,0.218683078885078,-0.367748081684113,0.89958256483078,0.235611096024513,0.84571248292923,0.532013416290283,-0.0416183136403561,-0.854563534259796,0.187771990895271,0.484213620424271,0.715078473091125,0.672211706638336,-0.191818058490753,0.548545479774475,-0.557496666908264,-0.623133480548859,0.788834750652313,0.612504303455353,-0.0507765039801598,0.215734392404556,-0.839316546916962,0.499005377292633,0.390597343444824,0.151702970266342,0.907975733280182,0.453119516372681,-0.89135867357254,0.0127461841329932,-0.369044482707977,0.893141150474548,0.257109045982361,-0.0993454232811928,0.967705249786377,-0.231683015823364,0.816619396209717,0.5520339012146,0.168497428297997,0.513128101825714,0.280487835407257,0.811188101768494,0.610957562923431,0.173087865114212,0.772509813308716,-0.626158535480499,0.675952553749084,0.388604670763016,-0.941784918308258,0.303137511014938,-0.145426243543625,-0.886292695999146,-0.187115967273712,-0.423642337322235,-0.337743282318115,0.940761566162109,-0.0299523267894983,0.261958479881287,-0.816561996936798,-0.514396965503693,-0.907396554946899,-0.411224335432053,0.0867526084184647,-0.958167970180511,0.277558952569962,0.0698224082589149,-0.929813146591187,-0.365429908037186,-0.0436891466379166,0.250256806612015,-0.80350798368454,-0.54013580083847,0.436632007360458,-0.801107168197632,-0.409365147352219,-0.363399833440781,0.914488732814789,0.177907735109329,-0.928558051586151,-0.280998557806015,-0.242527827620506,-0.89904260635376,-0.33170148730278,-0.285826355218887,0.431250184774399,-0.788972556591034,-0.43765926361084,-0.901372671127319,-0.424553364515305,-0.0853330418467522,-0.932709753513336,-0.352031409740448,-0.0782714486122131,-0.729963362216949,0.243083104491234,0.638798952102661,-0.34287565946579,0.607757687568665,0.716286838054657,-0.852245271205902,-0.503391146659851,0.142391607165337,-0.885142385959625,-0.288214266300201,-0.365315675735474,
- 0.364526212215424,-0.646548271179199,-0.670146226882935,0.544863104820251,-0.738366723060608,-0.39741513133049,0.540694415569305,-0.758874654769897,-0.362986028194427,-0.811800420284271,-0.441800683736801,-0.381827533245087,-0.891322255134583,-0.305085837841034,-0.335361450910568,-0.601361870765686,0.0551048181951046,-0.797074258327484,-0.503398895263672,0.000474441476399079,-0.864054024219513,-0.291515558958054,0.955824971199036,-0.0376465916633606,0.548437237739563,-0.556355893611908,-0.624247312545776,0.653346478939056,-0.728396236896515,-0.206342652440071,-0.675929665565491,-0.196155145764351,-0.710381746292114,-0.869819402694702,0.46638822555542,0.16092312335968,-0.347762227058411,0.937268137931824,0.0242871064692736,-0.480288743972778,0.023382842540741,-0.876798689365387,-0.080633781850338,0.974338591098785,0.210149258375168,0.563170194625854,0.336707323789597,0.754630863666534,-0.567934095859528,0.76636791229248,0.300218433141708,-0.717433393001556,-0.238640576601028,-0.654476881027222,-0.728434383869171,-0.27104115486145,-0.629221737384796,0.621369898319244,-0.765336871147156,-0.167806208133698,-0.397590458393097,0.891812980175018,0.215850412845612,0.0444665998220444,0.428227156400681,-0.902576565742493,0.0375487543642521,0.408386796712875,-0.91203647851944,0.807474374771118,-0.361732184886932,-0.465977400541306,0.6667400598526,-0.712148010730743,-0.219779327511787,-0.219688400626183,0.238809123635292,-0.94588965177536,-0.288551568984985,0.186768665909767,-0.939071595668793,0.618207097053528,-0.757416129112244,-0.210097119212151,0.281501412391663,-0.904697716236115,-0.319810897111893,-0.0443857423961163,0.269179821014404,-0.96206670999527,0.146108031272888,0.468814730644226,-0.871128678321838,0.675366342067719,-0.698868453502655,-0.235506236553192,-0.860146701335907,0.483057588338852,0.163716271519661,-0.320448338985443,0.161603793501854,-0.933379411697388,-0.163678333163261,0.135761380195618,-0.977127552032471,0.770916223526001,-0.600403785705566,-0.212611079216003,-0.0288139060139656,0.28584298491478,-0.95784318447113,
- 0.692514002323151,-0.683873295783997,-0.229655534029007,0.969755411148071,-0.209383428096771,-0.125431403517723,0.645054459571838,-0.0686477273702621,-0.761046826839447,0.0821944773197174,0.375338464975357,-0.923236191272736,0.105005204677582,0.423564016819,-0.899759650230408,0.30261167883873,0.59844970703125,-0.741811454296112,0.978436291217804,-0.170867994427681,-0.116046316921711,0.114661045372486,0.431352436542511,-0.894867658615112,0.227133929729462,0.668572843074799,-0.708110511302948,-0.724391937255859,0.660246789455414,0.198319166898727,-0.812999725341797,0.555210113525391,0.175423055887222,-0.194777607917786,0.0992331132292748,-0.975814878940582,-0.900085151195526,0.429540306329727,0.0730893611907959,0.0676050335168839,0.344139963388443,-0.936481416225433,-0.651694655418396,0.496454685926437,-0.573434233665466,-0.938112556934357,0.344974011182785,0.0306259524077177,-0.945239365100861,0.325692147016525,0.0211453195661306,-0.638454616069794,0.0635639950633049,0.76703017950058,-0.225220486521721,-0.618538558483124,0.752785384654999,-0.0221544168889523,-0.387721806764603,0.92151015996933,-0.95106053352356,0.281247079372406,0.127999737858772,-0.72294408082962,0.661595463752747,0.199106201529503,0.12213996052742,-0.197217255830765,0.972721636295319,0.540173768997192,-0.480168253183365,0.691122829914093,0.86608350276947,-0.464698046445847,-0.184269085526466,-0.274149656295776,-0.666775941848755,0.693001985549927,0.177048668265343,-0.949261248111725,-0.259917110204697,0.277790665626526,-0.889838039875031,-0.361967980861664,-0.567402362823486,0.796677947044373,0.208227798342705,0.240320652723312,-0.024113355204463,0.970394015312195,0.0645344704389572,-0.0694679468870163,0.995494604110718,0.0405781380832195,-0.0912986323237419,0.99499648809433,-0.0434238351881504,-0.413984477519989,0.909247636795044,0.77771008014679,-0.582290887832642,-0.23686408996582,0.00364615186117589,-0.205025359988213,0.978749871253967,-0.69427764415741,0.692613065242767,0.195616453886032,-0.0221830271184444,-0.147856920957565,0.988759934902191,
- 0.955466568470001,-0.273349225521088,-0.111192889511585,0.543082535266876,-0.81686145067215,-0.194419026374817,0.108649581670761,-0.0289106015115976,0.993659734725952,0.329306036233902,0.181413546204567,0.92663186788559,0.496716380119324,-0.867492854595184,-0.0269993059337139,0.366602808237076,0.127621233463287,0.921582996845245,0.217826142907143,-0.954688608646393,0.202784225344658,-0.248306483030319,-0.343800455331802,0.905618667602539,0.305035978555679,-0.941901683807373,-0.140620872378349,0.922733843326569,-0.355583488941193,0.148736715316772,0.864354968070984,-0.407156318426132,0.295151174068451,0.403522998094559,-0.0923674032092094,-0.910295248031616,0.0993360802531242,-0.406521707773209,-0.908224880695343,-0.18437547981739,0.274698346853256,-0.943687736988068,0.850745856761932,-0.477088272571564,0.220495492219925,0.208385229110718,-0.305245816707611,-0.929193496704102,0.760508894920349,-0.553018569946289,0.340289145708084,0.340160220861435,-0.851869583129883,0.39825776219368,-0.250621736049652,0.232191979885101,-0.939827442169189,0.230180591344833,-0.283612251281738,-0.930903315544128,-0.660876333713531,0.559523522853851,-0.500175893306732,-0.527445256710052,0.689505636692047,-0.496370285749435,-0.292346596717834,0.320333361625671,0.901066064834595,-0.489669620990753,0.0558409057557583,-0.870118200778961,0.297114312648773,-0.570980668067932,-0.765313148498535,0.0978640764951706,-0.407812505960464,-0.907805919647217,0.326299548149109,-0.859875082969666,0.392611026763916,0.426411926746368,-0.445845574140549,-0.787016272544861,-0.680388450622559,0.536576390266418,-0.499156624078751,0.220255941152573,-0.293523341417313,-0.930231869220734,0.563255369663239,-0.276009798049927,-0.778821051120758,0.674658477306366,-0.538552284240723,0.504774510860443,0.400526612997055,-0.715146124362946,0.572838962078094,-0.208431646227837,0.386570930480957,0.898398101329803,-0.385739237070084,0.789633512496948,-0.477162599563599,-0.266167372465134,0.52217435836792,0.810240149497986,-0.236517354846001,0.545679032802582,0.803924083709717,
- 0.425797671079636,-0.799548387527466,0.423578500747681,-0.0937062352895737,0.467426747083664,0.879051387310028,0.0426267459988594,-0.873227596282959,0.485444635152817,-0.727575898170471,-0.0629017204046249,0.6831374168396,0.170125976204872,-0.90148937702179,0.397962361574173,-0.429410427808762,0.371502220630646,0.823160231113434,0.746132791042328,-0.42174705862999,0.515184700489044,0.269938677549362,-0.875097155570984,0.401669144630432,-0.281737864017487,0.509393036365509,0.813106834888458,0.629915297031403,-0.248229756951332,0.735927104949951,0.759754240512848,-0.395414173603058,0.516159951686859,0.0754496306180954,0.9902064204216,-0.117468245327473,-0.267663478851318,0.520959436893463,0.810529172420502,-0.398092806339264,0.782150626182556,-0.479335457086563,-0.0558980293571949,0.918745517730713,-0.39087375998497,0.728163480758667,0.0296781938523054,-0.684760749340057,-0.444458395242691,0.60624372959137,-0.659488677978516,0.428125888109207,-0.679110407829285,0.596252679824829,-0.714479267597198,-0.0345635414123535,0.698802351951599,-0.851678371429443,-0.0165833309292793,0.52380245923996,-0.564297616481781,0.212020039558411,0.79788202047348,-0.341509431600571,0.750051558017731,-0.566386759281158,-0.66506439447403,0.362691164016724,0.652797520160675,-0.849588334560394,-0.00906676892191172,0.527368426322937,0.204708084464073,-0.504685938358307,0.838681519031525,0.427554428577423,-0.679889976978302,0.595774173736572,0.724559426307678,0.0204878989607096,-0.688907742500305,-0.445894092321396,0.447379797697067,-0.775261104106903,-0.447285652160645,0.601533651351929,-0.661885797977448,-0.215038508176804,0.884041249752045,-0.415005713701248,-0.665243804454803,0.362445831298828,0.652750909328461,-0.343534111976624,0.747667670249939,-0.568311095237732,0.748465061187744,-0.29893746972084,-0.591976702213287,0.564695298671722,-0.273948192596436,-0.778505980968475,0.404654502868652,-0.709959149360657,0.576379001140594,-0.362879544496536,0.668054401874542,-0.649631977081299,0.773072481155396,0.170848742127419,-0.610876142978668,
- 0.900640189647675,-0.0104688154533505,-0.434439420700073,0.908833265304565,0.016530966386199,-0.416831880807877,0.581787347793579,-0.395117580890656,0.710918843746185,0.233515724539757,-0.426879465579987,0.873638570308685,-0.825445532798767,0.0655843019485474,0.560658872127533,-0.422044575214386,0.523761332035065,-0.739967882633209,-0.917958736419678,0.00226182513870299,0.396669387817383,0.137649700045586,-0.656989514827728,0.7412269115448,-0.87506502866745,-0.126421883702278,0.467203110456467,-0.911928653717041,0.0214861687272787,0.409785896539688,0.897224903106689,-0.0208470057696104,-0.441081494092941,-0.162709444761276,0.369722008705139,-0.914784848690033,-0.369124948978424,0.655030965805054,-0.659303605556488,-0.138040333986282,0.812823116779327,-0.565918266773224,-0.904716849327087,0.0425342656672001,0.423884749412537,-0.405719608068466,0.568892121315002,-0.715369403362274,0.963931620121002,0.0519417822360992,-0.261032402515411,0.889051377773285,-0.0440571084618568,-0.455682575702667,0.201057657599449,-0.51395446062088,0.833922445774078,-0.12595821917057,0.879880845546722,-0.458196699619293,0.897727489471436,0.433224141597748,-0.0800153389573097,0.967501580715179,0.250919491052628,-0.0313100442290306,0.960299849510193,0.0376399531960487,-0.27641898393631,0.166494145989418,-0.595896542072296,0.785612523555756,0.121441498398781,-0.804004073143005,0.582090616226196,-0.749563217163086,0.40546777844429,0.523212075233459,0.143413588404655,-0.645272672176361,0.750370383262634,-0.907448351383209,0.0347789525985718,0.418721795082092,-0.901360273361206,0.0517443977296352,0.429967641830444,-0.137600585818291,0.815755903720856,-0.561790347099304,-0.99578332901001,0.0835993140935898,0.0377726145088673,-0.077455960214138,-0.9453045129776,0.316859483718872,-0.992108345031738,-0.0274595897644758,-0.12233954668045,-0.0843766257166862,-0.887219786643982,0.453565418720245,-0.976080060005188,-0.0828469097614288,-0.201007768511772,-0.147457286715508,-0.725782454013824,0.67193466424942,-0.101716734468937,-0.939807772636414,0.326213508844376,
- 0.951448500156403,0.00814236793667078,-0.307700306177139,0.119244523346424,-0.818602979183197,0.561845302581787,0.968993484973907,0.233043432235718,0.0821120962500572,0.974829077720642,0.129805743694305,-0.181269869208336,-0.116383925080299,0.917980432510376,-0.379166096448898,0.962909817695618,0.269705832004547,-0.00797801744192839,0.232832849025726,-0.965959012508392,-0.112747944891453,0.911603569984436,0.300036132335663,0.28099337220192,0.141104176640511,0.00671995524317026,0.989971935749054,0.542236506938934,-0.70210337638855,0.461552232503891,0.487842977046967,0.407139122486115,0.772170305252075,-0.0474597401916981,-0.864894449710846,0.499705106019974,-0.129456400871277,0.863013327121735,-0.488312423229218,-0.79394543170929,0.538942933082581,-0.281409323215485,-0.986425578594208,0.128065183758736,0.102780915796757,0.00456638215109706,0.910528004169464,0.413422167301178,0.387402772903442,0.407988905906677,0.826718926429749,-0.818051993846893,0.344985902309418,0.460190862417221,-0.469897925853729,-0.483967214822769,-0.738221943378448,-0.0889585688710213,0.316348791122437,-0.944462835788727,0.37984836101532,-0.7352374792099,-0.561374306678772,0.259646266698837,0.890897035598755,0.372674524784088,-0.839065432548523,0.375930279493332,0.393250077962875,0.587774097919464,0.400385290384293,0.70300304889679,-0.510789155960083,-0.622058391571045,-0.593411982059479,0.362212061882019,-0.789370179176331,-0.495678514242172,-0.126876845955849,0.335258692502975,-0.933543741703033,0.586397469043732,0.686490774154663,-0.429963290691376,0.658137023448944,0.590164244174957,0.467505991458893,0.562787711620331,0.706023335456848,-0.429884940385818,0.0818616673350334,-0.0485897809267044,-0.995458543300629,-0.9358229637146,0.252948313951492,-0.245464012026787,0.293691784143448,0.437925547361374,-0.849686026573181,-0.807140171527863,0.586143374443054,-0.0704338103532791,0.405076801776886,0.34200593829155,-0.847906112670898,-0.980424463748932,-0.195232585072517,0.0255364943295717,-0.500622391700745,-0.696593463420868,-0.513940393924713,
- 0.262461453676224,0.0947179719805717,-0.960282504558563,-0.872377514839172,-0.254796773195267,-0.417176336050034,0.29547855257988,0.510075986385345,-0.807783961296082,-0.997298359870911,0.0234812013804913,-0.0696049705147743,0.0415836498141289,0.718755066394806,-0.694018721580505,0.101806469261646,0.604437708854675,-0.790120542049408,0.0452580861747265,0.707357883453369,-0.705405175685883,-0.996978461742401,0.0131623195484281,-0.0765550807118416,-0.932029604911804,-0.258075892925262,-0.254396736621857,-0.96401983499527,-0.156509980559349,-0.214872986078262,0.124121733009815,0.321167528629303,-0.938853144645691,-0.967444956302643,-0.14363220334053,-0.208374887704849,0.374529808759689,0.400257885456085,-0.836373746395111,0.1229437738657,0.342645019292831,-0.93138575553894,-0.942870140075684,-0.222699001431465,-0.247792765498161,-0.926000535488129,0.0581554025411606,0.37301629781723,0.389770090579987,0.24592025578022,-0.887469708919525,-0.885088205337524,-0.221814677119255,-0.409166395664215,0.032767903059721,-0.473822802305222,0.880010485649109,-0.995335042476654,-0.0148177137598395,-0.0953340008854866,-0.99287348985672,0.0706052780151367,-0.0960070192813873,-0.987910032272339,0.153818264603615,0.0193324834108353,0.0121392393484712,-0.345613241195679,0.938298523426056,-0.856981098651886,-0.439363539218903,0.269338309764862,-0.95665568113327,-0.181768193840981,-0.227530837059021,-0.244539797306061,-0.613042414188385,0.751251816749573,0.0530243366956711,-0.594121992588043,0.802625358104706,-0.243765771389008,-0.617964625358582,0.747461020946503,-0.952590107917786,-0.194577738642693,-0.233905509114265,-0.271727323532104,-0.309108108282089,0.911381602287292,0.777941346168518,-0.392815977334976,0.490411192178726,-0.856626510620117,-0.44022062420845,0.269066601991653,0.819391310214996,-0.15617074072361,0.551551282405853,-0.273508161306381,-0.227640748023987,0.934544265270233,0.944154739379883,0.164371266961098,0.28557687997818,0.936411023139954,0.187712103128433,0.296476930379868,-0.273327112197876,-0.144611686468124,0.950988829135895,
- 0.00293838046491146,-0.286685407161713,0.958020389080048,0.959729254245758,0.108774431049824,0.259013324975967,0.349256694316864,0.544135808944702,-0.762847304344177,0.748878598213196,0.338825672864914,0.569541931152344,0.343300849199295,0.570247113704681,-0.746299386024475,0.94407331943512,0.164628356695175,0.285697877407074,0.0780408829450607,0.668216824531555,-0.739862084388733,0.944635093212128,0.120356336236,0.305252254009247,0.0780859664082527,0.667886853218079,-0.740155220031738,0.947831034660339,0.15245409309864,0.279953718185425,0.972078561782837,-0.194403514266014,0.131417572498322,0.97264689207077,-0.214939415454865,0.0880858600139618,0.0560565777122974,-0.611610174179077,0.789170861244202,0.102295093238354,0.44595593214035,-0.889190077781677,0.976305723190308,-0.0664043426513672,0.20595546066761,0.210198491811752,0.323350250720978,-0.922638297080994,0.977282166481018,-0.109667621552944,0.181363254785538,0.296694487333298,0.498162567615509,-0.814743161201477,0.214166581630707,0.300826519727707,-0.929320216178894,0.967020034790039,0.0210344828665257,0.253830283880234,0.0316850543022156,-0.467230796813965,0.883567452430725,0.377252280712128,-0.380710929632187,0.844239234924316,0.382332354784012,0.611964166164398,0.692330837249756,0.293611645698547,0.433126896619797,-0.852169752120972,0.975109815597534,-0.163200363516808,0.150088384747505,-0.0310570783913136,-0.0597477965056896,0.997730255126953,-0.91953831911087,0.33295264840126,-0.208786562085152,0.320547044277191,-0.568753480911255,0.75747549533844,-0.843666195869446,0.134400978684425,0.51977276802063,0.317060500383377,-0.578173100948334,0.751790225505829,-0.917873561382294,0.339405298233032,-0.205699816346169,0.184449672698975,-0.264358341693878,-0.946621894836426,0.379798084497452,-0.370148360729218,0.847787499427795,0.591248989105225,0.784925580024719,-0.185247018933296,0.848107874393463,-0.525794267654419,0.0652183592319489,0.291594117879868,-0.641663610935211,0.709394574165344,0.321035414934158,0.541156411170959,0.777229726314545,0.74707818031311,-0.66373884677887,-0.0363995283842087,
- 0.294465988874435,0.256604701280594,-0.920567214488983,-0.410189509391785,-0.48820886015892,-0.770322442054749,0.837080001831055,-0.544566571712494,0.0523881427943707,0.832862496376038,-0.145391762256622,-0.534042418003082,0.40709200501442,0.345269560813904,-0.845615327358246,0.378846168518066,0.385779798030853,-0.841219067573547,0.838268160820007,-0.542603194713593,0.0537428334355354,0.408590942621231,0.347701251506805,-0.843894124031067,0.901306092739105,-0.174860835075378,0.396321922540665,0.92265909910202,0.363004505634308,-0.130108296871185,0.424245983362198,0.875060737133026,0.23298941552639,-0.15663805603981,0.604067325592041,-0.781387984752655,0.4345703125,-0.0899186432361603,-0.89613801240921,-0.575934410095215,0.63653576374054,-0.512953996658325,0.67714923620224,0.0672637820243835,-0.732764959335327,0.708791077136993,-0.639170467853546,-0.298456579446793,0.237034857273102,-0.936741054058075,0.257547497749329,-0.980218470096588,-0.176632151007652,0.0892908051609993,0.0491079539060593,-0.998223304748535,0.0337442122399807,0.177004709839821,-0.681884109973907,-0.709720611572266,-0.520857572555542,0.725013852119446,-0.450624376535416,0.543393552303314,-0.0244905762374401,-0.839120745658875,0.88576602935791,0.463380068540573,-0.0264100842177868,0.309227049350739,-0.886524319648743,0.344170391559601,0.780084848403931,-0.500340282917023,-0.375669002532959,0.728432655334473,0.107228666543961,-0.67667418718338,0.054340984672308,0.99593597650528,0.0718245729804039,-0.148220419883728,0.987203478813171,-0.0588219836354256,0.478050768375397,0.850661873817444,0.218727752566338,-0.0857404544949532,-0.935440123081207,-0.342929363250732,-0.206242024898529,-0.503148674964905,-0.839229166507721,-0.864556729793549,-0.355581223964691,-0.35511103272438,0.5278160572052,-0.591075003147125,0.609951257705688,-0.447297126054764,0.222769916057587,0.866197943687439,-0.483844846487045,-0.0166340209543705,0.874995827674866,-0.586545169353485,-0.0905924737453461,0.804834008216858,-0.922627627849579,-0.37975138425827,0.0674321204423904,
- 0.441043376922607,-0.742875933647156,0.503603100776672,-0.155369833111763,0.605976760387421,-0.780161798000336,-0.888851344585419,-0.45152160525322,0.0779201686382294,-0.978615581989288,-0.162987172603607,0.125485807657242,-0.548674046993256,-0.0624973326921463,0.833697080612183,0.472373872995377,0.784484505653381,0.401804715394974,-0.278203099966049,0.9551882147789,-0.10108645260334,0.590399980545044,0.44866070151329,0.670918405056,0.781527638435364,0.621072053909302,0.0590257681906223,0.260820090770721,0.475080907344818,0.840399324893951,-0.150222823023796,-0.933015108108521,-0.326979905366898,-0.863355219364166,-0.491194754838943,-0.115522809326649,-0.753874003887177,-0.65660035610199,-0.0234514623880386,-0.327879816293716,0.932220876216888,-0.153163686394691,-0.330308616161346,-0.00347583857364953,0.943866610527039,-0.554943740367889,-0.0670770406723022,0.829179167747498,-0.657434165477753,0.720791101455688,-0.219637498259544,-0.712175130844116,0.288771837949753,0.639857292175293,-0.384991973638535,-0.0573675893247128,0.921135365962982,-0.31937974691391,0.00705385534092784,0.947600662708282,-0.210261136293411,0.977136850357056,-0.0315252356231213,-0.588005423545837,0.786409437656403,-0.189235523343086
- }
- TangentsW: *2637 {
- a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
- 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,-1,1,1,1,-1,1,1,-1,-1,-1,1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,1,-1,1,-1,1,-1,1,-1,-1,-1,-1,1,-1,1,-1,1,1,-1,-1,-1,-1,1,-1,-1,1,-1,1,-1,1,1,-1,1,-1,-1,1,-1,1,-1,-1,1,1,1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *1300 {
- a: 1.8876953125,-1.009765625,1.82421875,-0.9375,1.8046875,-0.99609375,1.935546875,-0.9248046875,1.8076171875,-0.8935546875,1.837890625,-0.5732421875,1.9873046875,-0.740234375,1.9697265625,-0.5634765625,1.6767578125,-0.923828125,1.7900390625,-0.9375,1.7080078125,-0.9560546875,1.853515625,-0.1630859375,1.9951171875,-0.203125,1.6826171875,-0.3759765625,1.541015625,-0.95703125,1.6474609375,-0.95703125,1.85546875,0.20068359375,1.99609375,0.1708984375,1.712890625,0.20556640625,1.5419921875,-0.376953125,1.3681640625,-0.7333984375,1.4130859375,-0.921875,1.396484375,-0.556640625,1.392578125,-0.1953125,1.572265625,0.306640625,1.412109375,0.18115234375,1.421875,0.49951171875,1.7158203125,0.48876953125,1.5791015625,0.828857421875,1.4326171875,0.904296875,1.4443359375,1.13916015625,1.8642578125,0.518798828125,2.03125,0.50048828125,1.7255859375,0.96636962890625,1.5830078125,1.2205810546875,1.453125,1.33203125,1.4638671875,1.54443359375,1.869140625,0.8856201171875,2.009765625,0.9058837890625,1.990234375,1.1407470703125,1.8408203125,1.2861328125,1.974609375,1.33349609375,1.712890625,1.3291015625,1.8427734375,1.533203125,1.970703125,1.54736328125,1.9638671875,1.7060546875,1.7041015625,1.62158203125,1.8388671875,1.80615234375,1.9560546875,1.92041015625,1.5859375,1.6689453125,1.466796875,1.70361328125,1.466796875,1.9208984375,1.5859375,1.94775390625,1.70703125,1.9423828125,1.8271484375,2.18359375,1.9208984375,2.326171875,1.7060546875,2.30859375,1.5947265625,2.302734375,1.490234375,2.3251953125,1.8076171875,2.427734375,1.8916015625,2.4873046875,1.8662109375,2.701171875,1.7119140625,2.6015625,1.6181640625,2.5830078125,1.5185546875,2.486328125,1.544921875,2.6982421875,1.783203125,2.703125,1.701171875,2.923828125,1.6220703125,2.923828125,1.5458984375,2.9111328125,1.537109375,3.169921875,1.779296875,2.912109375,1.8583984375,2.9130859375,1.6142578125,3.17578125,1.54296875,3.369140625,1.7783203125,3.17578125,1.85546875,3.171875,1.82421875,3.369140625,1.69140625,3.181640625,1.7548828125,3.365234375,1.80078125,3.51171875,
- 1.6103515625,3.36328125,1.546875,3.513671875,1.673828125,3.44140625,1.6083984375,3.5,1.5625,3.66015625,1.73828125,3.501953125,1.6181640625,3.654296875,1.5791015625,3.8203125,1.7314453125,3.654296875,1.787109375,3.66015625,1.6748046875,3.650390625,1.7236328125,3.81640625,1.7724609375,3.818359375,1.74609375,4.14453125,1.6767578125,3.822265625,1.6953125,4.14453125,1.6806640625,4.388671875,1.62890625,3.822265625,1.61328125,4.14453125,1.6455078125,4.138671875,4.40625,2.0751953125,4.4609375,1.81884765625,4.4453125,2.078125,4.3828125,1.7998046875,4.3671875,2.0732421875,4.3125,1.818359375,4.7890625,1.234375,4.85546875,0.96319580078125,4.828125,1.185302734375,4.80859375,0.95086669921875,4.75390625,1.2061767578125,4.70703125,1.1845703125,4.7265625,0.946380615234375,4.65234375,0.964874267578125,4.50390625,1.7900390625,4.47265625,1.91259765625,4.44140625,1.802734375,4.44140625,2.05859375,4.40625,2.0732421875,4.40625,1.80078125,4.3828125,2.103515625,4.3671875,1.92138671875,4.33203125,1.78662109375,4.3515625,2.0576171875,4.3359375,1.9091796875,6.51171875,-1.001953125,6.5,-0.810546875,6.43359375,-0.998046875,6.42578125,-0.7734375,6.5078125,-0.5146484375,6.3515625,-0.99609375,6.4375,-0.5166015625,6.5,-0.376953125,6.35546875,-0.7763671875,6.41796875,-0.1904296875,6.47265625,-0.203125,6.359375,-0.4775390625,6.28125,-0.802734375,6.2734375,-0.9990234375,6.28125,-0.4970703125,6.20703125,-0.80859375,6.1953125,-1,6.20703125,-0.513671875,6.22265625,-0.375,6.25,-0.2021484375,6.33984375,-0.20703125,6.3203125,-0.0263671875,6.2734375,-0.0048828125,6.375,0.265625,6.3671875,-0.04296875,6.4140625,-0.0263671875,6.4609375,-0.0068359375,5.3984375,0.945159912109375,5.37109375,1.04946899414063,5.328125,0.9361572265625,5.43359375,1.1585693359375,5.38671875,1.158935546875,5.40625,1.255859375,5.4453125,0.95037841796875,5.44921875,1.292236328125,5.49609375,1.1558837890625,5.5,1.255615234375,5.5234375,0.92828369140625,5.53515625,1.04803466796875,5.05859375,0.9287109375,5.01953125,1.10284423828125,5.01953125,0.93402099609375,5.078125,1.130126953125,5.08984375,
- 1.33447265625,5.1171875,0.93121337890625,5.1328125,1.1014404296875,5.171875,1.10443115234375,5.1796875,0.9359130859375,5.90625,0.85400390625,5.96484375,0.8414306640625,5.9453125,1.02177429199219,5.91796875,1.2205810546875,5.87890625,1.2181396484375,5.90234375,1.36865234375,5.8359375,1.1744384765625,5.80859375,0.8291015625,5.85546875,1.36279296875,5.86328125,1.53125,5.8828125,1.54345703125,5.84375,1.6630859375,5.84375,1.52880859375,5.8125,1.54248046875,5.80859375,1.3642578125,5.77734375,1.36962890625,5.7578125,1.2215576171875,5.796875,1.1351318359375,5.7265625,1.02255249023438,5.71484375,0.8369140625,0.97509765625,-0.9130859375,0.98828125,-1,1.11328125,-0.9833984375,1.138671875,-0.9091796875,1.068359375,-0.8046875,1.19140625,-0.7099609375,1.16796875,-0.5517578125,1.154296875,-0.2939453125,0.8466796875,-0.8369140625,0.796875,-0.896484375,1.0703125,-0.287109375,1.154296875,0.0166015625,0.92626953125,-0.380859375,0.9931640625,0.06298828125,1.0283203125,0.32861328125,1.1416015625,0.28857421875,0.8115234375,0.01611328125,1.0126953125,0.614013671875,1.1181640625,0.8121337890625,1.11328125,1.1104736328125,0.85009765625,0.203125,0.80859375,-0.365234375,0.6923828125,0.0244140625,0.69873046875,-0.373046875,0.6484375,-0.8525390625,0.6240234375,-0.900390625,0.4921875,-0.9111328125,0.5654296875,-0.642578125,0.4443359375,-0.7099609375,0.46826171875,-0.55078125,0.48193359375,-0.2958984375,0.5830078125,-0.29296875,0.458251953125,0.015625,0.578125,0.048828125,0.464111328125,0.29541015625,0.6328125,0.3681640625,0.76953125,0.4228515625,0.619140625,0.797119140625,0.50927734375,0.81396484375,0.88330078125,0.5634765625,0.8115234375,1.06634521484375,0.94677734375,1.04403686523438,0.63330078125,1.126708984375,0.537109375,1.11126708984375,0.7333984375,1.1396484375,0.689453125,1.51171875,0.587890625,1.4453125,0.595703125,1.56591796875,0.7763671875,1.475341796875,0.72705078125,1.72314453125,0.60693359375,1.74609375,0.90869140625,1.49853515625,0.84765625,1.73291015625,0.70263671875,1.93115234375,0.6123046875,1.9365234375,0.79638671875,1.9384765625,
- 0.734375,2.103515625,0.6455078125,2.1650390625,0.89208984375,1.9404296875,0.72900390625,2.4462890625,0.64306640625,2.5166015625,0.66845703125,2.7568359375,0.849609375,2.1669921875,0.8115234375,2.4345703125,0.7490234375,2.8662109375,0.67578125,2.98828125,0.8251953125,2.869140625,0.7294921875,3.248046875,0.6767578125,3.3125,0.8056640625,3.2578125,0.76513671875,3.580078125,0.703125,3.431640625,0.70556640625,3.64453125,0.7373046875,4.025390625,0.7939453125,4.025390625,0.849609375,4.07421875,0.81982421875,3.5859375,0.87451171875,3.58203125,0.88916015625,4.021484375,0.92724609375,3.64453125,0.93017578125,3.431640625,0.87939453125,3.306640625,0.9541015625,3.318359375,0.86572265625,2.87109375,0.9306640625,2.86328125,0.96826171875,2.9892578125,0.9755859375,2.7568359375,1,2.5166015625,0.9130859375,2.525390625,0.9384765625,2.1962890625,0.9951171875,2.1640625,1.009765625,1.93359375,0.95263671875,1.751953125,1.0234375,1.74462890625,0.98486328125,1.521484375,1.03125,1.56396484375,1.0341796875,1.443115234375,1.0478515625,1.05447387695313,6.68359375,-0.978515625,6.76953125,-0.98046875,6.70703125,-0.8251953125,6.7421875,-0.533203125,6.8046875,-0.529296875,6.80859375,-0.3984375,6.75390625,-0.41015625,6.7734375,-0.205078125,6.87109375,-0.587890625,6.8984375,-0.9990234375,6.86328125,-0.4052734375,6.83984375,-0.2216796875,6.78125,-0.0224609375,6.94921875,-0.82421875,7.02734375,-0.990234375,7.03125,-0.8251953125,6.98828125,-0.53125,6.92578125,-0.5322265625,6.91796875,-0.41015625,6.9765625,-0.4072265625,6.953125,-0.2041015625,6.90625,-0.208984375,6.94140625,-0.021484375,6.8828125,-0.02734375,6.8203125,-0.0224609375,6.890625,0.1279296875,6.921875,0.13037109375,6.85546875,0.25390625,6.83984375,0.1376953125,6.79296875,0.12939453125,2.568359375,-1.005859375,2.431640625,-0.8974609375,2.408203125,-1.0078125,2.54296875,-0.88671875,2.5703125,-0.7138671875,2.740234375,-0.734375,2.6953125,-0.9130859375,2.83984375,-0.9296875,2.921875,-0.75390625,2.74609375,-0.4462890625,2.916015625,-0.4794921875,2.39453125,-0.724609375,2.291015625,-0.9287109375,2.21484375,
- -0.751953125,2.228515625,-0.48046875,2.578125,-0.3955078125,2.392578125,-0.4287109375,2.203125,-0.033203125,2.7265625,0.1142578125,2.91796875,-0.033203125,2.88671875,0.22900390625,2.552734375,0.09423828125,2.3828125,0.1318359375,2.232421875,0.2294921875,2.560546875,0.504638671875,2.705078125,0.4873046875,2.853515625,0.5380859375,2.419921875,0.55224609375,2.263671875,0.5263671875,2.298828125,0.824462890625,2.697265625,0.7855224609375,2.826171875,0.827392578125,2.564453125,0.7838134765625,2.4453125,0.954345703125,2.306640625,0.987762451171875,2.701171875,0.978530883789063,2.822265625,0.989700317382813,2.8203125,1.07879638671875,2.564453125,0.947021484375,2.5625,1.120849609375,2.447265625,1.1456298828125,2.310546875,1.07733154296875,2.333984375,1.256591796875,2.685546875,1.273681640625,2.78515625,1.25048828125,2.806640625,1.377197265625,2.568359375,1.362548828125,2.453125,1.53564453125,2.330078125,1.37646484375,2.34765625,1.60205078125,2.6796875,1.658203125,2.79296875,1.60205078125,2.78515625,1.7255859375,2.5703125,1.61474609375,2.564453125,1.7275390625,2.451171875,1.74072265625,2.345703125,1.7236328125,2.3515625,2.0107421875,2.6640625,1.984375,2.759765625,2.0107421875,2.548828125,2.1474609375,2.45703125,2.1865234375,2.388671875,2.27734375,2.611328125,2.32421875,2.69140625,2.2802734375,2.54296875,2.603515625,2.486328125,2.6142578125,2.427734375,2.62890625,2.599609375,2.6181640625,2.658203125,2.626953125,2.62890625,2.8505859375,2.505859375,2.8662109375,2.46484375,2.8515625,2.470703125,3.05078125,2.546875,2.8662109375,2.587890625,2.9453125,2.6484375,3.0546875,2.60546875,3.2578125,2.544921875,3.134765625,2.560546875,3.69140625,2.517578125,3.248046875,2.474609375,3.263671875,7.10546875,0.818359375,7.16015625,0.8284912109375,7.13671875,0.985244750976563,7.16015625,0.65625,7.1171875,0.6181640625,7.17578125,0.5322265625,7.19921875,0.36328125,7.10546875,0.36669921875,7.0625,0.8204345703125,7.04296875,0.986373901367188,6.99609375,0.83056640625,7.05859375,0.6103515625,7.01171875,0.357421875,7.015625,0.62548828125,6.96484375,0.655517578125,
- 6.95703125,0.5302734375,6.94921875,0.359375,3.2421875,-0.98046875,3.142578125,-0.72265625,3.09765625,-0.982421875,3.26171875,-0.6787109375,3.158203125,-0.3916015625,3.375,-0.685546875,3.37890625,-1,3.5234375,-1.001953125,3.25,-0.15234375,3.1328125,-0.1591796875,3.484375,-0.7119140625,3.658203125,-0.97265625,3.59375,-0.7177734375,3.35546875,-0.1650390625,3.47265625,-0.29296875,3.5703125,-0.3837890625,3.587890625,-0.1591796875,3.568359375,-0.046875,3.52734375,0.14599609375,3.4296875,0.33056640625,3.509765625,0.390625,3.419921875,0.648193359375,3.484375,0.648193359375,3.47265625,0.8349609375,3.345703125,0.36572265625,3.412109375,1.02008056640625,3.46875,1.02033996582031,3.4453125,1.2164306640625,3.4140625,1.440673828125,3.365234375,0.663330078125,3.359375,1.38232421875,3.333984375,1.67333984375,3.349609375,1.02810668945313,3.306640625,1.340576171875,3.275390625,1.440673828125,3.248046875,1.215576171875,3.2890625,0.985000610351563,3.23046875,1.01834106445313,3.232421875,0.8319091796875,3.30078125,0.63623046875,3.23828125,0.643798828125,3.265625,0.3642578125,3.18359375,0.3828125,3.26953125,0.0224609375,3.1875,0.1376953125,3.15625,-0.041015625,7.1953125,-0.99609375,7.15234375,-0.76953125,7.10546875,-0.982421875,7.25,-0.775390625,7.33203125,-0.9990234375,7.23828125,-0.6142578125,7.17578125,-0.6005859375,7.36328125,-0.783203125,7.45703125,-1,7.4453125,-0.7841796875,7.421875,-0.6142578125,7.3359375,-0.6142578125,7.359375,-0.4365234375,7.40625,-0.447265625,7.3984375,-0.294921875,7.31640625,-0.453125,7.2578125,-0.451171875,7.203125,-0.4345703125,7.23828125,-0.2861328125,7.30859375,-0.1982421875,7.26171875,-0.1796875,7.35546875,-0.1865234375,7.390625,-0.1865234375,7.37890625,-0.037109375,7.3359375,-0.0546875,7.3359375,0.13623046875,7.3046875,-0.072265625,7.29296875,-0.03125,6.23046875,1.52490234375,6.296875,1.203125,6.2734375,1.3740234375,6.2421875,1.1844482421875,6.3359375,0.991188049316406,6.1953125,1.37841796875,6.1953125,1.5576171875,6.27734375,0.988189697265625,6.359375,0.850341796875,6.265625,0.833984375,6.15625,1.369140625,
- 6.17578125,1.52490234375,6.17578125,1.1917724609375,6.13671875,1.1973876953125,6.109375,0.9833984375,6.19140625,0.982818603515625,6.1640625,0.835693359375,6.09375,0.8424072265625,5.515625,-0.6865234375,5.453125,-0.9755859375,5.5703125,-0.978515625,5.4140625,-0.6845703125,5.48046875,-0.4609375,5.3125,-0.6962890625,5.33984375,-0.966796875,5.390625,-0.4658203125,5.47265625,-0.3232421875,5.44140625,-0.115234375,5.3046875,-0.4794921875,5.203125,-0.57421875,5.2109375,-0.9873046875,5.0859375,-0.9931640625,5.1015625,-0.6962890625,5.109375,-0.4697265625,5.1484375,-0.333984375,5.2265625,-0.1240234375,5.16015625,-0.123046875,5.19140625,0.14111328125,5.29296875,-0.1279296875,5.2421875,0.13671875,5.3671875,-0.1298828125,5.29296875,0.13671875,5.3515625,0.14013671875,5.40625,0.14892578125,5.296875,0.345703125,5.25390625,0.35205078125,5.21875,0.37060546875,5.3359375,0.3564453125,5.375,0.37890625,5.33984375,0.62744140625,5.3125,0.677001953125,5.3125,0.8336181640625,5.26953125,0.6455078125,5.23828125,0.62255859375,4.27734375,-0.98828125,4.21875,-0.859375,4.203125,-0.9873046875,4.28515625,-0.76953125,4.21875,-0.708984375,4.33984375,-0.779296875,4.3828125,-1.001953125,4.26953125,-0.3994140625,4.2109375,-0.37109375,4.3359375,-0.423828125,4.41015625,-0.86328125,4.48828125,-0.9833984375,4.47265625,-0.8564453125,4.40625,-0.7109375,4.47265625,-0.70703125,4.40234375,-0.3984375,4.46484375,-0.3701171875,4.3359375,-0.1015625,4.39453125,-0.173828125,4.453125,-0.1875,4.46484375,-0.0224609375,4.40234375,-0.0126953125,4.44140625,0.2275390625,4.43359375,0.48974609375,4.390625,0.22412109375,4.33984375,0.20263671875,4.32421875,0.4931640625,4.2890625,0.18603515625,4.24609375,0.228515625,4.21875,-0.01953125,4.28125,-0.1259765625,4.21875,-0.185546875,6.02734375,-0.9853515625,6.01953125,-0.80078125,5.93359375,-0.7490234375,5.890625,-1.001953125,6.01171875,-0.6455078125,5.85546875,-0.7353515625,5.75390625,-0.990234375,5.9140625,-0.3935546875,5.9765625,-0.3916015625,5.76171875,-0.7314453125,5.66015625,-0.986328125,5.671875,-0.80078125,5.68359375,-0.6455078125,
- 5.71875,-0.390625,5.84765625,-0.388671875,5.78125,-0.3876953125,5.734375,-0.123046875,5.84765625,-0.1328125,5.90625,-0.130859375,5.96484375,-0.123046875,5.79296875,-0.1259765625,5.84765625,0.119140625,5.8984375,0.10107421875,5.94140625,0.10498046875,5.80078125,0.1298828125,5.75390625,0.10302734375,5.78125,0.44580078125,5.8984375,0.36962890625,5.9296875,0.44482421875,5.859375,0.724609375,5.83984375,0.4609375,4.75390625,0.48974609375,4.71875,-0.005859375,4.7578125,0.2275390625,4.77734375,-0.0810546875,4.6796875,0.577880859375,4.72265625,-0.3974609375,4.78125,-0.4013671875,4.79296875,-0.8046875,4.72265625,-0.80859375,4.80859375,-0.9833984375,4.703125,-1.001953125,4.65625,-0.419921875,4.6640625,-0.8134765625,4.59765625,-0.98828125,4.609375,-0.802734375,4.5234375,-0.9873046875,4.54296875,-0.806640625,4.6015625,-0.392578125,4.53125,-0.4033203125,4.5390625,-0.078125,4.625,-0.0009765625,4.56640625,0.228515625,4.62109375,0.4921875,4.578125,0.4912109375,7.48828125,0.2919921875,7.44921875,0.582763671875,7.359375,0.28564453125,7.38671875,0.62158203125,7.53515625,0.57373046875,7.609375,0.3095703125,7.51171875,0.90106201171875,7.3984375,0.78271484375,7.5390625,1.27587890625,7.59765625,0.611083984375,7.69140625,0.28515625,7.6640625,0.624755859375,7.6015625,0.7813720703125,7.66796875,0.78466796875
- }
- UVIndex: *2637 {
- a: 0,1,2,1,0,3,3,4,1,3,5,4,5,3,6,7,5,6,5,8,4,8,9,4,9,8,10,7,11,5,11,7,12,8,5,13,13,5,11,8,14,15,13,14,8,16,11,12,12,17,16,11,18,13,11,16,18,14,13,19,18,19,13,20,21,14,14,19,20,19,22,20,22,19,23,24,23,19,19,18,24,23,24,25,25,24,26,24,18,27,16,27,18,28,26,24,24,27,28,26,28,29,30,29,28,27,16,31,17,31,16,31,17,32,28,27,33,31,33,27,30,28,34,34,28,33,35,30,34,36,35,34,32,37,31,33,31,37,37,32,38,39,37,38,37,39,40,33,37,40,40,39,41,42,33,40,33,42,34,43,40,41,43,42,40,41,44,43,45,43,44,46,34,42,42,43,46,43,45,47,46,43,47,45,48,47,34,46,49,34,49,36,36,49,50,49,51,50,46,52,49,51,49,52,53,46,47,52,46,53,47,48,54,54,53,47,54,48,55,56,52,53,53,54,56,57,51,52,52,56,57,51,57,58,55,59,54,54,59,56,59,55,60,61,59,60,62,57,56,59,62,56,63,58,57,57,62,63,58,63,64,63,65,64,66,62,59,59,61,66,67,63,62,67,62,66,68,65,63,63,67,68,65,68,69,68,70,69,71,66,61,66,71,67,71,61,72,70,68,73,73,74,70,75,71,72,75,67,71,75,72,76,77,75,76,78,68,67,67,75,78,68,78,73,79,75,77,79,78,75,79,77,80,81,73,78,73,81,74,82,74,81,78,79,83,81,78,83,81,84,82,81,83,84,84,85,82,86,83,79,86,79,80,84,87,85,87,88,85,80,89,86,89,83,86,89,80,90,91,84,83,83,89,91,84,91,87,90,92,89,92,91,89,92,90,93,93,94,92,95,87,91,91,92,95,92,94,96,96,95,92,96,94,97,87,95,98,88,87,98,98,99,88,100,95,96,95,100,98,97,100,96,99,98,100,97,99,100,101,102,103,104,102,101,105,104,101,104,105,106,107,108,109,108,107,110,107,111,110,107,112,111,110,111,113,112,113,111,112,114,113,115,116,117,116,118,117,119,117,118,117,119,120,119,118,121,121,120,119,120,121,122,120,122,123,124,122,121,125,123,122,122,124,125,126,127,128,128,127,129,127,130,129,128,129,131,130,132,129,130,133,132,134,131,129,133,135,132,133,136,135,137,129,132,129,137,134,137,132,135,138,131,134,131,138,139,137,140,134,134,140,138,139,138,141,139,141,142,140,141,138,141,140,143,143,140,144,140,145,144,137,146,140,145,140,146,146,137,135,147,145,146,145,147,148,147,149,148,150,147,146,149,147,150,135,150,146,149,150,151,150,135,151,149,151,152,136,151,135,151,136,152,153,154,155,156,154,153,157,154,156,156,158,
- 157,159,156,153,158,156,160,161,156,159,161,160,156,161,162,160,161,159,163,163,164,161,165,166,167,166,165,168,166,168,169,168,165,170,168,171,169,168,170,171,171,172,169,173,171,170,171,173,172,174,175,176,176,177,174,174,177,178,177,179,178,180,174,178,174,180,181,182,178,179,178,182,180,179,183,182,183,179,184,183,184,185,186,183,185,186,182,183,187,186,185,182,186,188,186,187,188,188,180,182,189,188,187,190,188,189,180,188,191,188,190,191,181,180,191,190,192,191,181,191,193,192,193,191,194,195,196,194,196,197,197,198,194,199,198,197,200,198,199,201,198,200,202,194,198,202,203,194,198,201,204,205,204,201,206,198,204,202,198,206,204,205,207,204,207,206,205,208,207,208,205,209,210,206,207,208,209,211,212,211,209,212,213,211,207,208,214,210,207,214,211,214,208,206,210,215,215,202,206,216,215,210,214,216,210,217,202,215,215,216,217,218,203,202,202,217,218,218,219,203,218,220,219,218,221,220,221,218,217,220,221,222,221,223,222,221,224,223,224,221,225,217,225,221,225,226,224,217,227,225,226,225,227,227,217,216,228,226,227,229,227,216,227,229,228,216,230,229,216,214,230,231,228,229,232,228,231,230,214,233,214,211,233,234,229,230,230,233,234,229,234,231,211,235,233,233,235,234,231,236,232,236,237,232,236,231,238,234,238,231,236,239,237,238,239,236,237,239,240,240,239,241,242,238,234,239,238,242,243,241,239,243,239,242,241,243,244,242,234,245,235,245,234,243,242,246,246,242,245,243,247,244,248,244,247,249,243,246,243,249,247,247,250,248,249,250,247,251,248,250,249,246,252,253,251,250,254,251,253,253,255,254,249,256,250,256,249,252,253,250,257,256,257,250,255,253,258,258,259,255,260,253,257,253,260,258,258,261,259,262,259,261,260,263,258,261,258,263,261,264,262,263,264,261,262,264,265,264,266,265,264,267,266,267,264,268,269,267,268,270,268,264,270,269,268,264,263,270,269,270,271,269,271,272,273,272,271,274,273,271,270,275,271,271,275,274,275,270,263,276,274,275,263,277,275,277,276,275,277,263,260,260,257,277,278,276,277,276,278,279,279,278,280,278,281,280,282,277,257,277,282,278,278,282,281,257,256,282,282,283,281,282,256,
- 283,284,281,283,283,256,252,283,285,284,285,283,252,252,286,285,286,252,246,287,285,286,246,245,286,286,288,287,288,286,245,287,288,289,245,235,288,289,288,290,291,288,235,288,291,290,235,211,291,213,290,291,291,211,213,292,293,294,293,295,294,295,293,296,297,295,296,295,297,298,297,299,298,300,296,293,300,293,301,297,296,302,300,302,296,299,297,303,302,303,297,303,304,299,300,301,305,306,305,301,305,306,307,308,305,307,300,305,309,305,308,309,302,300,309,310,309,308,309,310,302,308,311,310,312,310,311,313,302,310,313,310,312,302,313,303,312,314,313,315,303,313,313,314,315,316,303,315,304,303,316,314,317,315,317,314,318,317,318,319,315,320,316,320,315,317,316,320,304,320,317,319,321,304,320,321,320,319,322,323,324,323,322,325,323,325,326,326,325,327,327,325,328,329,327,328,327,329,330,330,331,327,326,327,331,331,330,332,333,323,326,323,333,334,334,333,335,333,336,335,337,326,331,326,337,333,336,333,338,338,333,337,338,339,336,331,340,337,332,340,331,340,332,341,340,341,342,337,343,338,343,337,340,339,338,344,344,338,343,345,339,344,340,346,343,343,346,344,342,347,340,346,340,347,347,342,348,345,344,349,344,346,349,350,345,349,349,351,350,348,352,347,352,346,347,352,348,353,354,349,346,346,352,354,351,349,355,354,355,349,355,356,351,353,357,352,357,354,352,357,353,358,357,358,359,355,354,360,354,357,360,360,361,355,360,357,361,356,355,362,362,355,361,356,362,363,362,364,363,359,365,357,361,357,365,365,359,366,365,366,367,361,368,362,365,368,361,362,369,364,362,368,369,364,369,370,369,371,370,367,372,365,372,368,365,372,367,373,372,373,374,368,375,369,368,372,375,375,376,369,376,375,372,377,371,369,377,369,376,371,377,378,377,379,378,374,380,372,372,380,376,380,374,381,376,382,377,380,382,376,379,377,383,383,377,382,383,384,379,381,385,380,382,380,385,385,381,386,387,383,382,385,387,382,388,384,383,383,387,388,389,384,388,386,390,385,387,385,390,390,386,391,391,392,390,389,388,393,387,393,388,394,389,393,393,395,394,390,396,387,393,387,396,390,392,397,396,390,397,397,392,398,398,399,397,400,393,396,396,397,400,397,399,
- 400,393,400,395,400,399,401,395,400,402,402,400,401,403,395,402,403,402,401,404,405,406,407,405,404,404,408,407,408,409,407,408,410,409,410,408,411,408,404,412,412,404,413,414,412,413,411,408,415,412,415,408,415,416,411,417,412,414,412,417,415,416,415,417,414,418,417,417,418,419,416,417,419,419,420,416,421,422,423,422,421,424,424,425,422,421,426,424,427,426,421,428,426,427,429,425,424,425,429,430,426,428,431,432,431,428,431,432,433,434,424,426,424,434,429,431,435,426,433,435,431,435,434,426,435,433,436,437,435,436,437,438,435,439,435,438,435,439,440,435,440,434,440,439,441,440,441,442,441,443,442,444,442,443,445,434,440,442,445,440,446,442,444,447,446,444,448,446,447,449,446,448,450,442,446,445,442,450,446,449,451,449,452,451,453,446,451,450,446,453,451,452,454,454,453,451,454,452,455,454,455,456,453,454,457,456,457,454,457,450,453,457,456,458,457,458,459,457,460,450,459,460,457,445,450,460,460,459,461,461,462,460,462,445,460,462,461,463,445,462,464,463,464,462,464,434,445,464,463,465,434,464,429,464,465,466,464,430,429,430,464,466,467,468,469,468,467,470,467,471,470,472,468,470,468,472,473,470,471,474,475,474,471,474,475,476,477,474,476,474,478,470,478,474,477,472,470,478,477,479,478,479,477,480,480,481,479,482,472,478,482,478,479,472,483,473,472,482,483,484,473,483,483,485,484,482,486,483,485,483,486,482,479,486,486,487,485,481,488,479,479,488,486,488,481,489,490,488,489,488,490,491,488,491,486,491,490,492,486,493,487,493,486,491,491,492,493,494,487,493,492,494,493,495,496,497,496,495,498,498,499,496,498,495,500,500,495,501,499,498,502,502,503,499,503,502,504,501,505,500,505,501,506,505,507,500,500,507,498,507,505,508,508,509,507,510,498,507,510,507,509,502,498,510,510,504,502,504,510,511,509,511,510,511,509,512,513,514,515,516,514,513,517,516,513,518,514,516,514,518,519,520,516,517,521,520,517,522,520,521,516,523,518,523,516,520,524,519,518,524,518,523,519,524,525,524,526,525,527,526,524,527,524,528,524,529,528,530,529,524,523,530,524,529,530,531,530,532,531,530,523,533,520,533,523,532,530,534,533,520,535,535,520,
- 522,533,536,530,534,530,536,535,537,533,522,537,535,537,536,533,537,522,538,539,534,536,537,539,536,534,540,532,534,539,540,532,540,541,538,542,537,539,537,542,542,538,543,544,542,543,544,545,542,542,545,539,545,544,546,545,547,539,547,545,546,539,547,540,547,541,540,548,547,546,541,547,548,549,550,551,550,549,552,550,552,553,549,554,552,554,549,555,556,553,552,553,556,557,554,558,552,556,552,558,555,559,554,560,559,555,559,560,561,554,559,562,561,562,559,558,554,562,562,561,563,563,564,562,562,564,558,563,565,564,566,558,564,566,556,558,567,564,565,566,564,567,565,568,567,567,568,569,570,567,569,566,567,570,571,570,569,571,572,573,573,570,571,570,573,574,566,570,574,573,575,574,574,575,576,576,566,574,576,575,577,576,577,578,566,576,579,579,576,578,556,566,579,578,580,579,579,557,556,557,579,580,581,582,583,583,584,581,583,582,585,584,583,586,586,587,584,588,583,585,588,586,583,588,585,589,587,586,590,590,591,587,591,590,592,590,593,592,590,594,593,595,590,586,586,588,595,594,590,596,590,595,596,596,597,594,588,598,595,598,596,595,599,588,589,598,588,599,599,589,600,596,598,601,597,596,601,599,602,598,602,601,598,603,599,600,602,599,603,603,600,604,605,597,601,601,602,605,597,605,606,605,607,606,603,604,608,608,602,603,609,608,604,610,608,609,602,611,605,602,608,611,605,611,607,610,611,608,610,607,611,612,613,614,614,613,615,613,612,616,617,615,613,615,617,618,619,618,617,617,620,619,620,621,619,620,622,621,613,623,617,620,617,623,622,620,624,623,624,620,624,625,622,625,624,626,626,624,623,626,627,625,627,626,628,629,628,626,629,626,623,628,629,630,629,631,630,629,623,632,632,631,629,623,613,632,616,632,613,631,632,633,634,632,616,634,633,632,634,616,635,633,634,635,636,637,638,638,637,639,637,636,640,641,640,636,639,637,642,640,642,637,643,639,642,642,644,643,640,641,645,645,642,640,646,645,641,645,646,647,644,642,648,642,645,648,647,648,645,649,644,648,648,647,649
- }
- }
- LayerElementUV: 1 {
- Version: 101
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *1300 {
- a: 0.376953125,0.0068359375,0.365478515625,0.02001953125,0.36181640625,0.00927734375,0.3857421875,0.0224609375,0.3623046875,0.02783203125,0.367919921875,0.08642578125,0.395263671875,0.05615234375,0.39208984375,0.08837890625,0.338623046875,0.0224609375,0.359130859375,0.02001953125,0.34423828125,0.0166015625,0.37060546875,0.16162109375,0.396484375,0.15380859375,0.339599609375,0.12255859375,0.313720703125,0.0166015625,0.333251953125,0.0166015625,0.37109375,0.2275390625,0.396728515625,0.22216796875,0.344970703125,0.228515625,0.31396484375,0.12255859375,0.2822265625,0.05712890625,0.290283203125,0.02294921875,0.287353515625,0.08935546875,0.28662109375,0.15576171875,0.3193359375,0.2470703125,0.2900390625,0.22412109375,0.2919921875,0.2822265625,0.345703125,0.2802734375,0.320556640625,0.34228515625,0.2939453125,0.3564453125,0.296142578125,0.39892578125,0.372802734375,0.28564453125,0.4033203125,0.28271484375,0.347412109375,0.36767578125,0.3212890625,0.4140625,0.2978515625,0.4345703125,0.299560546875,0.47314453125,0.37353515625,0.35302734375,0.3994140625,0.3564453125,0.395751953125,0.3994140625,0.368408203125,0.42578125,0.392822265625,0.4345703125,0.344970703125,0.43359375,0.36865234375,0.47119140625,0.392333984375,0.4736328125,0.390869140625,0.50244140625,0.343505859375,0.4873046875,0.3681640625,0.520751953125,0.389404296875,0.54150390625,0.322021484375,0.49560546875,0.300048828125,0.501953125,0.300048828125,0.541748046875,0.32177734375,0.546630859375,0.343994140625,0.545654296875,0.365966796875,0.589599609375,0.383056640625,0.61572265625,0.34375,0.612548828125,0.323486328125,0.611328125,0.304443359375,0.615478515625,0.362548828125,0.63427734375,0.377685546875,0.64501953125,0.373046875,0.68408203125,0.344970703125,0.666015625,0.327880859375,0.66259765625,0.3095703125,0.644775390625,0.314453125,0.68359375,0.35791015625,0.6845703125,0.343017578125,0.724853515625,0.328369140625,0.724609375,0.314697265625,0.722412109375,0.31298828125,0.7698974609375,0.357421875,0.72265625,0.37158203125,0.722900390625,0.3271484375,
- 0.7706298828125,0.314208984375,0.80615234375,0.35693359375,0.7708740234375,0.37109375,0.7698974609375,0.365478515625,0.80615234375,0.34130859375,0.771728515625,0.352783203125,0.8055419921875,0.361083984375,0.8321533203125,0.326416015625,0.8050537109375,0.31494140625,0.832275390625,0.338134765625,0.8192138671875,0.325927734375,0.829833984375,0.317626953125,0.8592529296875,0.349609375,0.830322265625,0.327880859375,0.858154296875,0.32080078125,0.88824462890625,0.348388671875,0.8580322265625,0.358642578125,0.8590087890625,0.338134765625,0.8572998046875,0.34716796875,0.8878173828125,0.35595703125,0.88812255859375,0.35107421875,0.947601318359375,0.33837890625,0.888671875,0.341796875,0.94769287109375,0.33935546875,0.991935729980469,0.329833984375,0.88885498046875,0.326904296875,0.947662353515625,0.332763671875,0.946533203125,0.023284912109375,0.978973388671875,0.032470703125,0.91851806640625,0.0299072265625,0.979644775390625,0.01971435546875,0.91400146484375,0.0166015625,0.97869873046875,0.00754547119140625,0.91845703125,0.84375,0.10791015625,0.85791015625,0.02392578125,0.8515625,0.0927734375,0.84716796875,0.02001953125,0.8359375,0.09912109375,0.826171875,0.09228515625,0.82958984375,0.0185546875,0.8134765625,0.0244140625,0.41552734375,0.07763671875,0.461181640625,0.06640625,0.420166015625,0.056640625,0.515625,0.05615234375,0.5205078125,0.0439453125,0.41943359375,0.04443359375,0.53173828125,0.0361328125,0.46435546875,0.03076171875,0.414306640625,0.01806640625,0.51513671875,0.0244140625,0.459716796875,0.01953125,0.88330078125,0.16552734375,0.880859375,0.224609375,0.8662109375,0.16650390625,0.86474609375,0.23583984375,0.88232421875,0.31591796875,0.8486328125,0.1669921875,0.86669921875,0.3154296875,0.880859375,0.3583984375,0.84912109375,0.23486328125,0.86279296875,0.416015625,0.87451171875,0.412109375,0.849609375,0.3271484375,0.8330078125,0.22705078125,0.83154296875,0.16650390625,0.83349609375,0.3212890625,0.81640625,0.22509765625,0.814453125,0.166015625,0.81689453125,0.31640625,0.81982421875,0.35888671875,0.826171875,0.41259765625,
- 0.84521484375,0.41064453125,0.84130859375,0.466796875,0.83154296875,0.47314453125,0.853515625,0.556640625,0.8515625,0.46142578125,0.86181640625,0.46630859375,0.87255859375,0.47265625,0.58447265625,0.22509765625,0.578125,0.25732421875,0.56884765625,0.22216796875,0.591796875,0.29150390625,0.58203125,0.29150390625,0.58642578125,0.32177734375,0.5947265625,0.2265625,0.59521484375,0.3330078125,0.60546875,0.29052734375,0.60595703125,0.32177734375,0.611328125,0.2197265625,0.61376953125,0.2568359375,0.58203125,0.06396484375,0.57275390625,0.123046875,0.572265625,0.06591796875,0.58642578125,0.13232421875,0.58935546875,0.20166015625,0.59619140625,0.06494140625,0.599609375,0.12255859375,0.6083984375,0.12353515625,0.61083984375,0.06640625,0.50439453125,0.0947265625,0.49169921875,0.0908203125,0.49609375,0.14697265625,0.501953125,0.208984375,0.5107421875,0.20849609375,0.5048828125,0.25537109375,0.51953125,0.19482421875,0.52587890625,0.0869140625,0.51513671875,0.25341796875,0.51416015625,0.30615234375,0.50927734375,0.3095703125,0.517578125,0.34716796875,0.51806640625,0.30517578125,0.5244140625,0.3095703125,0.525390625,0.25390625,0.5322265625,0.25537109375,0.53662109375,0.20947265625,0.5283203125,0.1826171875,0.54345703125,0.1474609375,0.54638671875,0.08935546875,0.23291015625,0.975860595703125,0.2353515625,0.991661071777344,0.2578125,0.988639831542969,0.262451171875,0.975143432617188,0.2498779296875,0.956298828125,0.27197265625,0.939178466796875,0.267822265625,0.91058349609375,0.265380859375,0.864013671875,0.209716796875,0.962127685546875,0.2008056640625,0.972946166992188,0.250244140625,0.8629150390625,0.265380859375,0.8079833984375,0.22412109375,0.87982177734375,0.2362060546875,0.799560546875,0.24267578125,0.7515869140625,0.26318359375,0.7587890625,0.2034912109375,0.8079833984375,0.2398681640625,0.699951171875,0.2587890625,0.664306640625,0.258056640625,0.6103515625,0.2103271484375,0.7742919921875,0.202880859375,0.876953125,0.181884765625,0.8065185546875,0.18310546875,0.87841796875,0.1739501953125,0.9649658203125,0.1695556640625,0.973541259765625,
- 0.145751953125,0.975601196289063,0.158935546875,0.9271240234375,0.1370849609375,0.939178466796875,0.141357421875,0.910400390625,0.143798828125,0.8643798828125,0.162109375,0.8638916015625,0.1395263671875,0.80810546875,0.1612548828125,0.8021240234375,0.140625,0.757568359375,0.171142578125,0.744384765625,0.19580078125,0.734619140625,0.1685791015625,0.6669921875,0.1488037109375,0.663818359375,0.21630859375,0.709228515625,0.2034912109375,0.6181640625,0.2279052734375,0.622314453125,0.171142578125,0.607421875,0.15380859375,0.610107421875,0.1893310546875,0.60498046875,0.1812744140625,0.537841796875,0.1629638671875,0.5498046875,0.1644287109375,0.528076171875,0.1971435546875,0.544189453125,0.1881103515625,0.49951171875,0.16650390625,0.49560546875,0.220947265625,0.5400390625,0.2099609375,0.498046875,0.183837890625,0.4619140625,0.16748046875,0.4609375,0.20068359375,0.46044921875,0.1895751953125,0.4306640625,0.17333984375,0.419921875,0.2178955078125,0.46044921875,0.1884765625,0.369140625,0.1729736328125,0.35595703125,0.177490234375,0.3125,0.2103271484375,0.41943359375,0.2034912109375,0.37109375,0.192138671875,0.29296875,0.178955078125,0.27099609375,0.205810546875,0.29248046875,0.1885986328125,0.22412109375,0.1790771484375,0.21240234375,0.202392578125,0.22216796875,0.195068359375,0.1640625,0.183837890625,0.19091796875,0.184326171875,0.15234375,0.1900634765625,0.08349609375,0.2003173828125,0.08349609375,0.2103271484375,0.07470703125,0.2049560546875,0.16259765625,0.21484375,0.16357421875,0.217529296875,0.083984375,0.224365234375,0.15234375,0.224853515625,0.1904296875,0.2156982421875,0.21337890625,0.229248046875,0.2109375,0.213134765625,0.2919921875,0.2249755859375,0.29345703125,0.2318115234375,0.27099609375,0.2330322265625,0.3125,0.237548828125,0.35595703125,0.2218017578125,0.3544921875,0.226318359375,0.4140625,0.236572265625,0.419921875,0.2392578125,0.46142578125,0.2288818359375,0.49462890625,0.24169921875,0.49560546875,0.2347412109375,0.535888671875,0.2432861328125,0.5283203125,0.24365234375,0.550048828125,0.2462158203125,0.620361328125,
- 0.91162109375,0.580322265625,0.89208984375,0.579833984375,0.90673828125,0.63134765625,0.89892578125,0.729248046875,0.8837890625,0.73046875,0.8828125,0.77392578125,0.89599609375,0.7701416015625,0.8916015625,0.838623046875,0.86767578125,0.710693359375,0.861328125,0.573486328125,0.86962890625,0.7718505859375,0.87548828125,0.8331298828125,0.88916015625,0.8994140625,0.84912109375,0.6318359375,0.8310546875,0.576416015625,0.83056640625,0.631591796875,0.83984375,0.729736328125,0.8544921875,0.729248046875,0.8564453125,0.77001953125,0.84326171875,0.77099609375,0.8486328125,0.8389892578125,0.85986328125,0.83740234375,0.8515625,0.89990234375,0.86572265625,0.89794921875,0.8798828125,0.89959716796875,0.86376953125,0.94976806640625,0.8564453125,0.950592041015625,0.87158203125,0.991935729980469,0.87548828125,0.9530029296875,0.8857421875,0.950347900390625,0.0843505859375,0.00732421875,0.055938720703125,0.0302734375,0.050872802734375,0.0068359375,0.0792236328125,0.0322265625,0.0848388671875,0.06884765625,0.12066650390625,0.064453125,0.11126708984375,0.02685546875,0.1414794921875,0.0234375,0.158447265625,0.06005859375,0.12176513671875,0.125,0.1573486328125,0.11767578125,0.048248291015625,0.06640625,0.0263214111328125,0.0234375,0.0103836059570313,0.060546875,0.0131683349609375,0.11767578125,0.08642578125,0.13525390625,0.047760009765625,0.12841796875,0.00806427001953125,0.21142578125,0.1175537109375,0.2421875,0.15771484375,0.21142578125,0.1513671875,0.26611328125,0.0810546875,0.23828125,0.0457763671875,0.24609375,0.0142745971679688,0.2666015625,0.0830078125,0.32421875,0.11328125,0.3203125,0.1441650390625,0.3310546875,0.0535888671875,0.333984375,0.020599365234375,0.32861328125,0.02825927734375,0.39111328125,0.11151123046875,0.3828125,0.1385498046875,0.3916015625,0.08380126953125,0.3828125,0.05859375,0.41845703125,0.029693603515625,0.42529296875,0.11224365234375,0.42333984375,0.1376953125,0.42578125,0.1373291015625,0.4443359375,0.08367919921875,0.4169921875,0.08331298828125,0.453125,0.058990478515625,0.45849609375,0.030487060546875,0.4443359375,
- 0.03546142578125,0.48193359375,0.109130859375,0.4853515625,0.1297607421875,0.48046875,0.13427734375,0.5068359375,0.0843505859375,0.50390625,0.0604248046875,0.540283203125,0.03466796875,0.5068359375,0.0382080078125,0.553955078125,0.1077880859375,0.56591796875,0.131591796875,0.55419921875,0.1300048828125,0.580078125,0.0850830078125,0.556884765625,0.08380126953125,0.580322265625,0.05987548828125,0.583251953125,0.037750244140625,0.57958984375,0.038909912109375,0.6396484375,0.1044921875,0.63427734375,0.12457275390625,0.639892578125,0.08050537109375,0.66845703125,0.0611572265625,0.6767578125,0.0469970703125,0.695556640625,0.0936279296875,0.70556640625,0.1103515625,0.6962890625,0.07928466796875,0.7640380859375,0.0675048828125,0.7662353515625,0.0550537109375,0.7691650390625,0.09100341796875,0.76708984375,0.10333251953125,0.7689208984375,0.0972900390625,0.815673828125,0.0714111328125,0.819091796875,0.06280517578125,0.81591796875,0.064208984375,0.8577880859375,0.079833984375,0.8189697265625,0.08868408203125,0.8355712890625,0.10137939453125,0.8583984375,0.0921630859375,0.90130615234375,0.07958984375,0.87554931640625,0.08294677734375,0.991935729980469,0.07373046875,0.89910888671875,0.06494140625,0.9022216796875,0.91357421875,0.22607421875,0.90283203125,0.2294921875,0.90771484375,0.2822265625,0.90234375,0.171875,0.9111328125,0.1591796875,0.89892578125,0.13037109375,0.89501953125,0.07373046875,0.9140625,0.07470703125,0.92236328125,0.22705078125,0.92626953125,0.28271484375,0.93603515625,0.23046875,0.92333984375,0.15625,0.93310546875,0.07177734375,0.93212890625,0.16162109375,0.94287109375,0.17138671875,0.9443359375,0.1298828125,0.94580078125,0.072265625,0.484375,0.985336303710938,0.50537109375,0.9056396484375,0.51513671875,0.985931396484375,0.479736328125,0.8919677734375,0.501953125,0.8028564453125,0.45556640625,0.8939208984375,0.454833984375,0.991607666015625,0.423828125,0.991935729980469,0.482666015625,0.728759765625,0.50732421875,0.731201171875,0.43212890625,0.902099609375,0.39501953125,0.983047485351563,0.40869140625,0.904052734375,
- 0.4599609375,0.73291015625,0.4345703125,0.7725830078125,0.413818359375,0.8006591796875,0.409912109375,0.731201171875,0.41455078125,0.696044921875,0.423095703125,0.636474609375,0.444091796875,0.579345703125,0.427001953125,0.560546875,0.446044921875,0.48095703125,0.43212890625,0.48095703125,0.434814453125,0.4228515625,0.462158203125,0.568359375,0.44775390625,0.36572265625,0.435791015625,0.36572265625,0.440673828125,0.3046875,0.447265625,0.2353515625,0.457763671875,0.47607421875,0.458984375,0.25341796875,0.46435546875,0.1630859375,0.461181640625,0.36328125,0.47021484375,0.2666015625,0.47705078125,0.2353515625,0.482666015625,0.30517578125,0.47412109375,0.37646484375,0.486572265625,0.3662109375,0.486328125,0.423828125,0.4716796875,0.484375,0.485107421875,0.482421875,0.479248046875,0.56884765625,0.49658203125,0.56298828125,0.478271484375,0.6748046875,0.49609375,0.638916015625,0.50244140625,0.694580078125,0.93115234375,0.3046875,0.9208984375,0.375,0.9111328125,0.30908203125,0.943359375,0.373046875,0.9609375,0.3037109375,0.93994140625,0.42333984375,0.92626953125,0.427734375,0.96826171875,0.37060546875,0.98876953125,0.30322265625,0.98583984375,0.37060546875,0.98095703125,0.42333984375,0.9619140625,0.42333984375,0.96728515625,0.478515625,0.97705078125,0.47509765625,0.9755859375,0.522216796875,0.95751953125,0.47314453125,0.94482421875,0.47412109375,0.9326171875,0.47900390625,0.93994140625,0.525146484375,0.95556640625,0.55224609375,0.9453125,0.558349609375,0.96630859375,0.555908203125,0.97412109375,0.55615234375,0.97119140625,0.602294921875,0.9619140625,0.59716796875,0.96142578125,0.656494140625,0.95458984375,0.591552734375,0.95166015625,0.604248046875,0.955078125,0.7760009765625,0.94091796875,0.87646484375,0.94580078125,0.8231201171875,0.953125,0.88232421875,0.93212890625,0.942657470703125,0.962890625,0.82177734375,0.962890625,0.7657470703125,0.94482421875,0.943603515625,0.92724609375,0.986640930175781,0.94775390625,0.991722106933594,0.97119140625,0.8245849609375,0.96728515625,0.7760009765625,0.96728515625,0.8800048828125,0.9765625,
- 0.8782958984375,0.98193359375,0.945068359375,0.96435546875,0.94525146484375,0.97021484375,0.991195678710938,0.9853515625,0.989097595214844,0.52099609375,0.47216796875,0.5361328125,0.373046875,0.5078125,0.3720703125,0.544921875,0.47265625,0.529296875,0.549072265625,0.5693359375,0.46875,0.56298828125,0.37646484375,0.55078125,0.547607421875,0.53125,0.59619140625,0.5390625,0.66748046875,0.5712890625,0.54296875,0.595703125,0.510498046875,0.59375,0.369140625,0.6240234375,0.3671875,0.6201171875,0.46875,0.61767578125,0.546142578125,0.60888671875,0.5927734375,0.58984375,0.66455078125,0.60546875,0.664794921875,0.5986328125,0.755126953125,0.57373046875,0.6630859375,0.58642578125,0.7535400390625,0.55615234375,0.662353515625,0.57421875,0.7535400390625,0.560546875,0.754638671875,0.546875,0.7578125,0.5732421875,0.8250732421875,0.58349609375,0.8272705078125,0.59228515625,0.8336181640625,0.564453125,0.8287353515625,0.55419921875,0.8363037109375,0.56298828125,0.92144775390625,0.5693359375,0.938323974609375,0.56982421875,0.991935729980469,0.57958984375,0.9276123046875,0.58740234375,0.9197998046875,0.67578125,0.43359375,0.65771484375,0.48193359375,0.65283203125,0.43359375,0.6787109375,0.515869140625,0.6572265625,0.53857421875,0.6953125,0.511962890625,0.70849609375,0.427734375,0.67333984375,0.6552734375,0.65478515625,0.666259765625,0.69384765625,0.646240234375,0.716796875,0.48046875,0.7412109375,0.43505859375,0.736328125,0.48291015625,0.7158203125,0.537841796875,0.73583984375,0.539306640625,0.71484375,0.65576171875,0.73388671875,0.66650390625,0.69384765625,0.767578125,0.71240234375,0.740234375,0.73046875,0.735107421875,0.7333984375,0.797607421875,0.7138671875,0.80126953125,0.7265625,0.89178466796875,0.724609375,0.990798950195313,0.71142578125,0.8905029296875,0.69580078125,0.88250732421875,0.6904296875,0.991935729980469,0.6796875,0.87615966796875,0.666015625,0.89227294921875,0.65771484375,0.7987060546875,0.67626953125,0.758544921875,0.65771484375,0.736083984375,0.82763671875,0.987388610839844,0.82568359375,0.93511962890625,0.80810546875,
- 0.92047119140625,0.79833984375,0.992347717285156,0.82373046875,0.89111328125,0.79052734375,0.91650390625,0.76953125,0.988616943359375,0.80322265625,0.81982421875,0.81640625,0.8192138671875,0.77099609375,0.91534423828125,0.74951171875,0.987442016601563,0.751953125,0.93511962890625,0.75390625,0.8909912109375,0.76171875,0.8189697265625,0.78955078125,0.8184814453125,0.775390625,0.818115234375,0.765625,0.7431640625,0.78955078125,0.745849609375,0.80126953125,0.745361328125,0.81396484375,0.7431640625,0.77734375,0.743896484375,0.7890625,0.674560546875,0.80029296875,0.6796875,0.80908203125,0.678466796875,0.779296875,0.67138671875,0.76904296875,0.678955078125,0.775390625,0.58203125,0.7998046875,0.603515625,0.806640625,0.582275390625,0.7919921875,0.5029296875,0.787109375,0.57763671875,0.7880859375,0.3642578125,0.7822265625,0.25146484375,0.7890625,0.3046875,0.79248046875,0.234375,0.77587890625,0.38427734375,0.78271484375,0.16259765625,0.79296875,0.162109375,0.794921875,0.0703125,0.783203125,0.0693359375,0.79736328125,0.02978515625,0.77978515625,0.025390625,0.77197265625,0.15771484375,0.77294921875,0.068359375,0.76220703125,0.02880859375,0.763671875,0.07080078125,0.74951171875,0.02880859375,0.7529296875,0.06982421875,0.7626953125,0.1640625,0.7509765625,0.16162109375,0.751953125,0.2353515625,0.76708984375,0.2529296875,0.7568359375,0.3046875,0.76611328125,0.36474609375,0.75927734375,0.3642578125,0.66162109375,0.09423828125,0.65380859375,0.1748046875,0.63671875,0.09228515625,0.6416015625,0.185546875,0.67041015625,0.17236328125,0.685546875,0.09912109375,0.666015625,0.26318359375,0.64404296875,0.23046875,0.67138671875,0.36767578125,0.6826171875,0.1826171875,0.701171875,0.09228515625,0.6962890625,0.1865234375,0.68359375,0.22998046875,0.69677734375,0.23095703125
- }
- UVIndex: *2637 {
- a: 0,1,2,1,0,3,3,4,1,3,5,4,5,3,6,7,5,6,5,8,4,8,9,4,9,8,10,7,11,5,11,7,12,8,5,13,13,5,11,8,14,15,13,14,8,16,11,12,12,17,16,11,18,13,11,16,18,14,13,19,18,19,13,20,21,14,14,19,20,19,22,20,22,19,23,24,23,19,19,18,24,23,24,25,25,24,26,24,18,27,16,27,18,28,26,24,24,27,28,26,28,29,30,29,28,27,16,31,17,31,16,31,17,32,28,27,33,31,33,27,30,28,34,34,28,33,35,30,34,36,35,34,32,37,31,33,31,37,37,32,38,39,37,38,37,39,40,33,37,40,40,39,41,42,33,40,33,42,34,43,40,41,43,42,40,41,44,43,45,43,44,46,34,42,42,43,46,43,45,47,46,43,47,45,48,47,34,46,49,34,49,36,36,49,50,49,51,50,46,52,49,51,49,52,53,46,47,52,46,53,47,48,54,54,53,47,54,48,55,56,52,53,53,54,56,57,51,52,52,56,57,51,57,58,55,59,54,54,59,56,59,55,60,61,59,60,62,57,56,59,62,56,63,58,57,57,62,63,58,63,64,63,65,64,66,62,59,59,61,66,67,63,62,67,62,66,68,65,63,63,67,68,65,68,69,68,70,69,71,66,61,66,71,67,71,61,72,70,68,73,73,74,70,75,71,72,75,67,71,75,72,76,77,75,76,78,68,67,67,75,78,68,78,73,79,75,77,79,78,75,79,77,80,81,73,78,73,81,74,82,74,81,78,79,83,81,78,83,81,84,82,81,83,84,84,85,82,86,83,79,86,79,80,84,87,85,87,88,85,80,89,86,89,83,86,89,80,90,91,84,83,83,89,91,84,91,87,90,92,89,92,91,89,92,90,93,93,94,92,95,87,91,91,92,95,92,94,96,96,95,92,96,94,97,87,95,98,88,87,98,98,99,88,100,95,96,95,100,98,97,100,96,99,98,100,97,99,100,101,102,103,104,102,101,105,104,101,104,105,106,107,108,109,108,107,110,107,111,110,107,112,111,110,111,113,112,113,111,112,114,113,115,116,117,116,118,117,119,117,118,117,119,120,119,118,121,121,120,119,120,121,122,120,122,123,124,122,121,125,123,122,122,124,125,126,127,128,128,127,129,127,130,129,128,129,131,130,132,129,130,133,132,134,131,129,133,135,132,133,136,135,137,129,132,129,137,134,137,132,135,138,131,134,131,138,139,137,140,134,134,140,138,139,138,141,139,141,142,140,141,138,141,140,143,143,140,144,140,145,144,137,146,140,145,140,146,146,137,135,147,145,146,145,147,148,147,149,148,150,147,146,149,147,150,135,150,146,149,150,151,150,135,151,149,151,152,136,151,135,151,136,152,153,154,155,156,154,153,157,154,156,156,158,
- 157,159,156,153,158,156,160,161,156,159,161,160,156,161,162,160,161,159,163,163,164,161,165,166,167,166,165,168,166,168,169,168,165,170,168,171,169,168,170,171,171,172,169,173,171,170,171,173,172,174,175,176,176,177,174,174,177,178,177,179,178,180,174,178,174,180,181,182,178,179,178,182,180,179,183,182,183,179,184,183,184,185,186,183,185,186,182,183,187,186,185,182,186,188,186,187,188,188,180,182,189,188,187,190,188,189,180,188,191,188,190,191,181,180,191,190,192,191,181,191,193,192,193,191,194,195,196,194,196,197,197,198,194,199,198,197,200,198,199,201,198,200,202,194,198,202,203,194,198,201,204,205,204,201,206,198,204,202,198,206,204,205,207,204,207,206,205,208,207,208,205,209,210,206,207,208,209,211,212,211,209,212,213,211,207,208,214,210,207,214,211,214,208,206,210,215,215,202,206,216,215,210,214,216,210,217,202,215,215,216,217,218,203,202,202,217,218,218,219,203,218,220,219,218,221,220,221,218,217,220,221,222,221,223,222,221,224,223,224,221,225,217,225,221,225,226,224,217,227,225,226,225,227,227,217,216,228,226,227,229,227,216,227,229,228,216,230,229,216,214,230,231,228,229,232,228,231,230,214,233,214,211,233,234,229,230,230,233,234,229,234,231,211,235,233,233,235,234,231,236,232,236,237,232,236,231,238,234,238,231,236,239,237,238,239,236,237,239,240,240,239,241,242,238,234,239,238,242,243,241,239,243,239,242,241,243,244,242,234,245,235,245,234,243,242,246,246,242,245,243,247,244,248,244,247,249,243,246,243,249,247,247,250,248,249,250,247,251,248,250,249,246,252,253,251,250,254,251,253,253,255,254,249,256,250,256,249,252,253,250,257,256,257,250,255,253,258,258,259,255,260,253,257,253,260,258,258,261,259,262,259,261,260,263,258,261,258,263,261,264,262,263,264,261,262,264,265,264,266,265,264,267,266,267,264,268,269,267,268,270,268,264,270,269,268,264,263,270,269,270,271,269,271,272,273,272,271,274,273,271,270,275,271,271,275,274,275,270,263,276,274,275,263,277,275,277,276,275,277,263,260,260,257,277,278,276,277,276,278,279,279,278,280,278,281,280,282,277,257,277,282,278,278,282,281,257,256,282,282,283,281,282,256,
- 283,284,281,283,283,256,252,283,285,284,285,283,252,252,286,285,286,252,246,287,285,286,246,245,286,286,288,287,288,286,245,287,288,289,245,235,288,289,288,290,291,288,235,288,291,290,235,211,291,213,290,291,291,211,213,292,293,294,293,295,294,295,293,296,297,295,296,295,297,298,297,299,298,300,296,293,300,293,301,297,296,302,300,302,296,299,297,303,302,303,297,303,304,299,300,301,305,306,305,301,305,306,307,308,305,307,300,305,309,305,308,309,302,300,309,310,309,308,309,310,302,308,311,310,312,310,311,313,302,310,313,310,312,302,313,303,312,314,313,315,303,313,313,314,315,316,303,315,304,303,316,314,317,315,317,314,318,317,318,319,315,320,316,320,315,317,316,320,304,320,317,319,321,304,320,321,320,319,322,323,324,323,322,325,323,325,326,326,325,327,327,325,328,329,327,328,327,329,330,330,331,327,326,327,331,331,330,332,333,323,326,323,333,334,334,333,335,333,336,335,337,326,331,326,337,333,336,333,338,338,333,337,338,339,336,331,340,337,332,340,331,340,332,341,340,341,342,337,343,338,343,337,340,339,338,344,344,338,343,345,339,344,340,346,343,343,346,344,342,347,340,346,340,347,347,342,348,345,344,349,344,346,349,350,345,349,349,351,350,348,352,347,352,346,347,352,348,353,354,349,346,346,352,354,351,349,355,354,355,349,355,356,351,353,357,352,357,354,352,357,353,358,357,358,359,355,354,360,354,357,360,360,361,355,360,357,361,356,355,362,362,355,361,356,362,363,362,364,363,359,365,357,361,357,365,365,359,366,365,366,367,361,368,362,365,368,361,362,369,364,362,368,369,364,369,370,369,371,370,367,372,365,372,368,365,372,367,373,372,373,374,368,375,369,368,372,375,375,376,369,376,375,372,377,371,369,377,369,376,371,377,378,377,379,378,374,380,372,372,380,376,380,374,381,376,382,377,380,382,376,379,377,383,383,377,382,383,384,379,381,385,380,382,380,385,385,381,386,387,383,382,385,387,382,388,384,383,383,387,388,389,384,388,386,390,385,387,385,390,390,386,391,391,392,390,389,388,393,387,393,388,394,389,393,393,395,394,390,396,387,393,387,396,390,392,397,396,390,397,397,392,398,398,399,397,400,393,396,396,397,400,397,399,
- 400,393,400,395,400,399,401,395,400,402,402,400,401,403,395,402,403,402,401,404,405,406,407,405,404,404,408,407,408,409,407,408,410,409,410,408,411,408,404,412,412,404,413,414,412,413,411,408,415,412,415,408,415,416,411,417,412,414,412,417,415,416,415,417,414,418,417,417,418,419,416,417,419,419,420,416,421,422,423,422,421,424,424,425,422,421,426,424,427,426,421,428,426,427,429,425,424,425,429,430,426,428,431,432,431,428,431,432,433,434,424,426,424,434,429,431,435,426,433,435,431,435,434,426,435,433,436,437,435,436,437,438,435,439,435,438,435,439,440,435,440,434,440,439,441,440,441,442,441,443,442,444,442,443,445,434,440,442,445,440,446,442,444,447,446,444,448,446,447,449,446,448,450,442,446,445,442,450,446,449,451,449,452,451,453,446,451,450,446,453,451,452,454,454,453,451,454,452,455,454,455,456,453,454,457,456,457,454,457,450,453,457,456,458,457,458,459,457,460,450,459,460,457,445,450,460,460,459,461,461,462,460,462,445,460,462,461,463,445,462,464,463,464,462,464,434,445,464,463,465,434,464,429,464,465,466,464,430,429,430,464,466,467,468,469,468,467,470,467,471,470,472,468,470,468,472,473,470,471,474,475,474,471,474,475,476,477,474,476,474,478,470,478,474,477,472,470,478,477,479,478,479,477,480,480,481,479,482,472,478,482,478,479,472,483,473,472,482,483,484,473,483,483,485,484,482,486,483,485,483,486,482,479,486,486,487,485,481,488,479,479,488,486,488,481,489,490,488,489,488,490,491,488,491,486,491,490,492,486,493,487,493,486,491,491,492,493,494,487,493,492,494,493,495,496,497,496,495,498,498,499,496,498,495,500,500,495,501,499,498,502,502,503,499,503,502,504,501,505,500,505,501,506,505,507,500,500,507,498,507,505,508,508,509,507,510,498,507,510,507,509,502,498,510,510,504,502,504,510,511,509,511,510,511,509,512,513,514,515,516,514,513,517,516,513,518,514,516,514,518,519,520,516,517,521,520,517,522,520,521,516,523,518,523,516,520,524,519,518,524,518,523,519,524,525,524,526,525,527,526,524,527,524,528,524,529,528,530,529,524,523,530,524,529,530,531,530,532,531,530,523,533,520,533,523,532,530,534,533,520,535,535,520,
- 522,533,536,530,534,530,536,535,537,533,522,537,535,537,536,533,537,522,538,539,534,536,537,539,536,534,540,532,534,539,540,532,540,541,538,542,537,539,537,542,542,538,543,544,542,543,544,545,542,542,545,539,545,544,546,545,547,539,547,545,546,539,547,540,547,541,540,548,547,546,541,547,548,549,550,551,550,549,552,550,552,553,549,554,552,554,549,555,556,553,552,553,556,557,554,558,552,556,552,558,555,559,554,560,559,555,559,560,561,554,559,562,561,562,559,558,554,562,562,561,563,563,564,562,562,564,558,563,565,564,566,558,564,566,556,558,567,564,565,566,564,567,565,568,567,567,568,569,570,567,569,566,567,570,571,570,569,571,572,573,573,570,571,570,573,574,566,570,574,573,575,574,574,575,576,576,566,574,576,575,577,576,577,578,566,576,579,579,576,578,556,566,579,578,580,579,579,557,556,557,579,580,581,582,583,583,584,581,583,582,585,584,583,586,586,587,584,588,583,585,588,586,583,588,585,589,587,586,590,590,591,587,591,590,592,590,593,592,590,594,593,595,590,586,586,588,595,594,590,596,590,595,596,596,597,594,588,598,595,598,596,595,599,588,589,598,588,599,599,589,600,596,598,601,597,596,601,599,602,598,602,601,598,603,599,600,602,599,603,603,600,604,605,597,601,601,602,605,597,605,606,605,607,606,603,604,608,608,602,603,609,608,604,610,608,609,602,611,605,602,608,611,605,611,607,610,611,608,610,607,611,612,613,614,614,613,615,613,612,616,617,615,613,615,617,618,619,618,617,617,620,619,620,621,619,620,622,621,613,623,617,620,617,623,622,620,624,623,624,620,624,625,622,625,624,626,626,624,623,626,627,625,627,626,628,629,628,626,629,626,623,628,629,630,629,631,630,629,623,632,632,631,629,623,613,632,616,632,613,631,632,633,634,632,616,634,633,632,634,616,635,633,634,635,636,637,638,638,637,639,637,636,640,641,640,636,639,637,642,640,642,637,643,639,642,642,644,643,640,641,645,645,642,640,646,645,641,645,646,647,644,642,648,642,645,648,647,648,645,649,644,648,648,647,649
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *1343 {
- a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
- 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
- }
- }
- 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: 2139419757216, "Geometry::", "Mesh" {
- Vertices: *786 {
- a: -32.4423713684082,-377.292907714844,-16.9188842773438,-14.2688493728638,-349.757354736328,-35.1987609863281,-8.25244998931885,-352.518127441406,-32.3452758789063,-32.6397399902344,-381.670074462891,-9.86929321289063,-15.2296533584595,-347.476043701172,-32.1449890136719,18.6137580871582,-337.134246826172,28.7739562988281,31.1970157623291,-340.685760498047,13.2868957519531,10.1148557662964,-340.324096679688,32.6446533203125,37.0193176269531,-341.151733398438,15.6031494140625,-14.0422515869141,-378.488708496094,44.8511352539063,-27.9409103393555,-373.122924804688,29.8946533203125,-7.2131175994873,-388.754028320313,53.1414794921875,-20.6159954071045,-373.0869140625,26.5625,20.2970695495605,-376.901885986328,-27.5679016113281,15.5590162277222,-355.305541992188,-30.4178466796875,14.2964706420898,-355.569854736328,-36.5639953613281,26.6186771392822,-382.456634521484,-27.7505798339844,19.1149559020996,-163.831878662109,39.1241912841797,8.611083984375,-194.631958007813,46.7381591796875,18.8609046936035,-161.664428710938,46.6363525390625,10.5970783233643,-206.624114990234,48.5877990722656,22.6517391204834,-490.968231201172,-25.6488952636719,37.0577850341797,-478.257843017578,-14.2197570800781,21.6849956512451,-491.864166259766,-22.8114013671875,35.4929695129395,-473.820465087891,-13.4542541503906,31.0370082855225,-251.85791015625,9.23487854003906,3.03125047683716,-227.031372070313,32.2967529296875,18.0058212280273,-233.567016601563,22.8656005859375,14.9942121505737,-221.588104248047,38.1696929931641,34.7362289428711,-254.938369750977,14.3389739990234,27.2358074188232,-273.353973388672,-22.8158874511719,35.0118103027344,-250.85986328125,8.93115234375,33.3991279602051,-275.010101318359,-27.5667419433594,30.0886611938477,-291.790893554688,-34.4715576171875,32.7543640136719,-298.043579101563,-34.3072509765625,3.90440583229065,-307.030395507813,31.5819091796875,25.5054588317871,-281.781799316406,23.4965209960938,2.85235095024109,-319.244934082031,32.6710815429688,28.6853008270264,-280.365081787109,29.1671752929688,
- 5.23295211791992,-304.643493652344,36.2315063476563,-14.9382810592651,4.52426528930664,-58.8067893981934,-24.0296573638916,-53.6152877807617,-58.0439987182617,-5.1776704788208,-0.792320251464844,-60.5814094543457,-36.8933601379395,-72.0108947753906,-47.7267150878906,-36.1126556396484,-42.6276626586914,-68.7370376586914,-17.7847652435303,7.20256042480469,-72.5737915039063,-50.482250213623,-71.8949432373047,-36.3158569335938,-36.085090637207,-90.4978713989258,-22.2918243408203,-25.0533752441406,-45.3827972412109,-74.8251800537109,-3.53262233734131,-1.68406677246094,-69.8656997680664,-39.9626770019531,-84.5234832763672,-50.3379440307617,-51.6210441589355,-83.7524261474609,-48.8803405761719,-38.5541114807129,-108.826446533203,-18.6799697875977,-30.5701599121094,-131.213897705078,3.08688354492188,-25.0666980743408,-158.733520507813,15.2498626708984,-51.4188957214355,-107.212440490723,-13.0874252319336,-36.3111801147461,-158.937957763672,14.9692687988281,-1.92355823516846,-190.67073059082,35.6495666503906,-38.5734748840332,-152.237762451172,25.0278472900391,-6.26235151290894,-192.163818359375,44.7473297119141,15.8168182373047,-208.039764404297,26.8332824707031,-29.3087768554688,-146.880737304688,22.7169189453125,4.4966197013855,-182.459396362305,46.9566192626953,34.8815574645996,-217.569076538086,25.8762359619141,28.44580078125,-221.42707824707,12.1090545654297,37.111644744873,-213.049224853516,10.7652282714844,31.4602127075195,-239.218505859375,-6.328857421875,42.2871017456055,-239.833480834961,-5.50633239746094,20.498462677002,-276.285308837891,-23.6310119628906,21.4733409881592,-264.610687255859,-27.3548278808594,-0.534825801849365,-307.44775390625,-31.5063171386719,29.8776741027832,-263.065490722656,-29.0742797851563,26.7075099945068,-277.55078125,-27.2822265625,0.845911502838135,-309.432678222656,-41.7314758300781,-12.3563833236694,-365.584442138672,-31.4653015136719,-12.0204725265503,-321.239288330078,-33.2373352050781,-17.7991180419922,-396.504455566406,-26.8618774414063,-17.3472442626953,-377.824279785156,-38.5039672851563,
- -28.9721984863281,-427.751586914063,-21.1802978515625,30.4838256835938,-124.8291015625,-37.7353515625,29.0018310546875,-127.734252929688,-16.3211669921875,22.6350021362305,-122.848449707031,-35.2019653320313,44.3134269714355,-133.107299804688,-1.8367919921875,29.3359069824219,-138.976318359375,7.397705078125,29.6452388763428,-112.812080383301,-37.1626586914063,23.5188045501709,-160.505706787109,39.8370666503906,17.7390327453613,-159.995040893555,38.4366149902344,33.9410018920898,-126.612365722656,2.26947021484375,21.1112308502197,-152.197265625,44.0683441162109,1.57967221736908,-180.546157836914,54.9167175292969,-2.84457588195801,-176.405563354492,44.8122100830078,-27.4550457000732,-208.363815307617,31.5483093261719,-37.892333984375,-219.275924682617,31.0561065673828,-5.73626089096069,-173.735382080078,49.9745788574219,20.0120735168457,-279.899932861328,-33.8139953613281,28.7082042694092,-295.647857666016,-22.5668029785156,21.5100116729736,-274.72998046875,-23.56201171875,34.4418144226074,-326.418090820313,-10.5509033203125,36.7490005493164,-322.754333496094,-4.97698974609375,36.3668975830078,-293.593505859375,-18.490966796875,40.2874717712402,-324.457458496094,-10.8402709960938,32.8680763244629,-344.962768554688,13.3262939453125,38.3021354675293,-349.224884033203,17.4245300292969,24.9734134674072,-362.167846679688,20.3966064453125,11.2004489898682,-377.863708496094,33.8081665039063,31.7321891784668,-346.058319091797,19.8323059082031,0.422241926193237,9.51969909667969,-68.3074417114258,-14.3006467819214,7.75808715820313,-70.1647644042969,-5.44568920135498,6.24182510375977,-61.780647277832,-10.6087007522583,10.1528167724609,-80.39892578125,-7.54560661315918,-41.9794311523438,-62.2880249023438,-28.0546169281006,-75.3740234375,-57.0830001831055,-23.3448524475098,-92.5122146606445,-48.8969879150391,-27.4201641082764,-71.6115798950195,-70.298095703125,-46.2867584228516,-112.027984619141,-19.217414855957,-42.4600372314453,-127.081352233887,-11.9094696044922,-53.5557556152344,-112.122619628906,-31.1187210083008,-2.05783820152283,-22.1550827026367,-77.4890670776367,
- -26.3776111602783,-93.741455078125,-60.6438064575195,-52.4145431518555,-129.602401733398,-18.7889404296875,-57.3252830505371,-128.55500793457,13.8600311279297,-46.0106735229492,-141.539581298828,24.4399108886719,-37.8473854064941,-138.967742919922,19.8662261962891,-38.4413032531738,-133.518615722656,30.8221893310547,-13.5794906616211,-156.918731689453,29.8215026855469,-32.8545265197754,-142.031646728516,41.5201110839844,-18.0432415008545,-160.760726928711,37.6758117675781,10.3837509155273,-161.252899169922,44.3232727050781,11.8642492294312,-156.770935058594,35.7378540039063,14.525182723999,-168.496917724609,26.8966369628906,23.6303234100342,-175.117095947266,33.1592864990234,27.5964241027832,-182.674667358398,18.8966369628906,38.9390106201172,-179.082336425781,27.5553588867188,36.7721138000488,-177.996856689453,18.9777526855469,41.0628814697266,-228.52165222168,-3.46891784667969,45.306697845459,-228.567611694336,2.293701171875,50.9064292907715,-230.433349609375,-5.21070861816406,44.8009834289551,-283.803436279297,4.86355590820313,41.8036880493164,-273.021301269531,-2.08380126953125,35.447582244873,-298.022491455078,6.49996948242188,36.582218170166,-313.576812744141,6.24252319335938,45.669319152832,-272.383666992188,-4.5828857421875,-27.2377109527588,-149.502136230469,23.4578247070313,-24.5472831726074,-177.237243652344,20.7715454101563,-29.3845558166504,-151.790771484375,13.634033203125,-21.3730907440186,-178.172714233398,30.5519104003906,2.66119790077209,-216.911819458008,29.8381652832031,-36.471492767334,-179.902572631836,28.4587554931641,-41.4059143066406,-149.702362060547,20.2927551269531,5.49364614486694,-221.007202148438,41.0611572265625,-6.94517135620117,-214.971084594727,32.0992279052734,24.9692993164063,-266.473937988281,25.8688354492188,21.8555374145508,-276.651092529297,21.9416809082031,32.321662902832,-304.338470458984,5.52774047851563,25.1786556243896,-285.322479248047,25.9470520019531,30.4910659790039,-332.521545410156,-17.8672485351563,26.4491710662842,-349.803863525391,-20.5206604003906,31.8404273986816,-290.060485839844,25.4033813476563,
- 34.5269393920898,-332.402191162109,-15.0838317871094,28.1018562316895,-379.609313964844,-26.0135803222656,-11.2421760559082,-41.7797088623047,-59.2797164916992,-6.40769577026367,-37.337158203125,-66.997314453125,-18.5004367828369,-45.9035110473633,-68.6515655517578,-12.3743629455566,-42.869384765625,-75.072509765625,30.6817626953125,-79.0375213623047,-47.2621154785156,23.0655612945557,-85.9333114624023,-39.5172958374023,25.8466377258301,-84.4058532714844,-57.5601501464844,35.2060089111328,-138.809555053711,-31.5517425537109,25.5054359436035,-125.424987792969,-26.8917846679688,19.2550086975098,-156.007171630859,-24.1536407470703,30.4238948822021,-133.940963745117,-40.3354949951172,19.4605026245117,-89.7287673950195,-50.2121658325195,19.7125701904297,-134.118087768555,-34.5165252685547,-15.4716262817383,-211.939651489258,-37.9191284179688,3.52720260620117,-196.664428710938,-31.6810302734375,-13.4109258651733,-224.467300415039,-26.43701171875,-29.679801940918,-257.252624511719,-3.49090576171875,-13.0078573226929,-213.858154296875,-47.059326171875,-38.0515098571777,-255.418716430664,2.295166015625,-24.7266979217529,-283.689636230469,17.0173950195313,-44.8388862609863,-258.149963378906,-5.46929931640625,-27.7349338531494,-279.978210449219,25.3889770507813,-1.16778802871704,-216.552383422852,-37.6226959228516,-38.676586151123,-267.163757324219,-3.95672607421875,-37.5780258178711,-282.721893310547,24.8796691894531,-13.0599994659424,-324.686126708984,40.4828186035156,-1.6926885843277,-329.149932861328,36.7192077636719,13.9871635437012,-368.009429931641,32.8811950683594,18.9299240112305,-398.764892578125,28.531005859375,-1.03979587554932,-333.791748046875,52.061767578125,33.8180999755859,-417.035766601563,28.1507568359375,26.982234954834,-420.944458007813,11.9276123046875,7.10562610626221,-334.369598388672,45.8325500488281,28.4612445831299,-440.696105957031,-7.06134033203125,26.9864826202393,-396.392333984375,27.373291015625,35.5423469543457,-429.960998535156,0.75970458984375,19.3336162567139,-450.814270019531,-23.5105590820313,
- 36.8472595214844,-448.456848144531,-18.5437622070313,23.1251201629639,-446.928070068359,-26.7640075683594,4.83882522583008,-461.745666503906,-31.2066040039063,16.0776290893555,-459.856719970703,-30.9416809082031,-17.6022033691406,-481.257171630859,-30.0559997558594,-5.51087999343872,-466.713073730469,-45.3185424804688,-16.3221988677979,-439.833343505859,24.5006408691406,-36.5909233093262,-450.098724365234,4.57998657226563,-22.4866256713867,-444.841094970703,30.1755065917969,-26.7263145446777,-460.302978515625,-23.427001953125,-31.8465003967285,-460.640228271484,-18.3540954589844,-32.5640182495117,-456.50390625,7.080078125,-7.63786125183105,-400.565673828125,37.281005859375,-1.89106607437134,-441.065765380859,41.3902893066406,-4.5607590675354,-432.654174804688,36.4376220703125,-15.869668006897,-389.452941894531,41.8556823730469,-21.1733016967773,-374.699737548828,25.9789733886719,-15.7299137115479,-394.620330810547,36.9509582519531,-30.5987815856934,-347.934448242188,5.5821533203125,-39.1033020019531,-347.02197265625,7.24169921875,-31.429141998291,-345.398101806641,10.9309997558594,-29.6590175628662,-306.288146972656,-14.7920532226563,-37.2220497131348,-298.757263183594,-18.1273803710938,-28.3659629821777,-280.77197265625,-16.60009765625,-36.7795333862305,-295.487182617188,-12.0789794921875,-38.5766487121582,-255.306518554688,-9.2039794921875,-30.181941986084,-253.059875488281,-9.03643798828125,-33.5813140869141,-258.005828857422,1.27639770507813,-28.7663669586182,-293.406951904297,-10.9899597167969,-35.5213584899902,-293.600311279297,-12.2770690917969,-12.5419416427612,-326.578460693359,-38.8167419433594,-27.5424747467041,-293.41455078125,-10.34619140625,-12.3304719924927,-325.989166259766,-46.6317443847656,-30.9578819274902,-284.895233154297,-15.8571472167969,19.7285747528076,-361.400634765625,-37.238525390625,18.2526054382324,-359.157562255859,-26.9231872558594,-6.82671451568604,-325.897338867188,-42.4930114746094,38.6052055358887,-493.105407714844,-15.3114624023438,20.018102645874,-519.853881835938,-42.5150146484375,
- 20.931282043457,-525.016357421875,-42.0114135742188,42.9108009338379,-498.02783203125,-21.4975891113281,34.2602386474609,-478.904327392578,-17.1855773925781,38.0088119506836,-469.349334716797,-11.5563659667969,29.9049835205078,-443.389007568359,7.96743774414063,31.7404651641846,-427.011749267578,11.5487976074219,35.1049423217773,-443.774993896484,13.2835998535156,28.3522529602051,-231.65007019043,-26.8404998779297,40.5171813964844,-213.780944824219,7.22589111328125,19.6377201080322,-229.675918579102,-24.0225830078125,49.066478729248,-212.208862304688,4.1641845703125,5.29508352279663,-251.128662109375,-30.6052093505859,20.9679412841797,-224.854598999023,-28.7188720703125,22.44677734375,-400.461791992188,25.4610595703125,2.71335291862488,-415.097045898438,37.2565002441406,2.36268639564514,-413.32568359375,32.0229797363281,23.565315246582,-397.459869384766,34.0801696777344,-17.4067993164063,-443.694213867188,25.5479736328125,-0.913272798061371,-407.500244140625,37.549560546875,-20.4527988433838,-445.218627929688,31.7882080078125,-25.3793029785156,-471.089141845703,15.6413269042969,-26.9374980926514,-455.334869384766,21.4502868652344,-35.9730072021484,-482.299743652344,13.1983032226563,-32.8896751403809,-482.446380615234,2.96377563476563,-25.9246120452881,-491.308349609375,-17.996826171875,-39.460319519043,-483.004730224609,0.036285400390625
- }
- PolygonVertexIndex: *1317 {
- a: 0,1,-3,3,0,-3,4,3,-3,3,4,-1,1,0,-5,5,6,-8,8,7,-7,5,7,-9,8,6,-6,9,10,-12,11,10,-13,12,9,-12,12,10,-10,13,14,-16,13,15,-17,14,16,-16,16,14,-14,17,18,-20,20,19,-19,19,20,-18,18,17,-21,21,22,-24,24,22,-22,23,24,-22,24,23,-23,25,26,-28,26,25,-29,28,27,-27,25,29,-29,25,30,-30,31,27,-29,31,28,-30,27,31,-26,31,30,-26,29,32,-32,30,31,-33,29,30,-33,33,30,-33,34,33,-33,30,34,-33,30,33,-35,35,36,-38,38,37,-37,38,39,-38,35,37,-40,36,39,-39,39,36,-36,40,41,-43,41,40,-44,44,43,-41,45,44,-41,44,46,-44,47,43,-47,44,45,-49,45,49,-49,49,45,-41,49,40,-43,41,49,-43,48,49,-42,41,50,-49,41,43,-51,48,51,-45,51,48,-51,46,44,-52,43,52,-51,50,52,-52,52,43,-48,53,52,-48,53,54,-53,51,52,-56,46,51,-56,56,52,-55,52,56,-56,54,57,-57,58,46,-56,55,56,-59,59,56,-58,56,59,-59,57,60,-60,46,58,-62,61,47,-47,53,47,-62,61,54,-54,62,61,-59,61,62,-55,62,58,-60,54,62,-58,63,59,-61,63,62,-60,63,60,-65,65,57,-63,65,62,-64,57,65,-61,64,60,-66,66,64,-66,64,67,-64,67,65,-64,67,64,-67,66,68,-68,69,66,-66,68,66,-70,69,70,-69,67,71,-66,69,65,-72,72,67,-69,71,67,-73,70,72,-69,72,73,-72,73,72,-71,73,69,-72,70,74,-74,70,69,-76,69,73,-76,74,70,-76,75,76,-75,73,74,-78,73,77,-76,77,76,-76,74,76,-78,77,78,-77,76,78,-78,79,80,-82,80,79,-83,80,82,-84,82,79,-85,85,83,-83,83,85,-87,84,87,-83,81,87,-85,87,81,-81,87,80,-84,88,82,-88,83,88,-88,85,82,-89,83,86,-89,89,86,-86,89,85,-89,86,89,-91,89,91,-91,91,89,-93,93,88,-87,89,88,-94,89,93,-93,86,90,-94,92,93,-92,91,93,-91,94,95,-97,95,97,-97,97,98,-97,96,98,-100,96,99,-95,94,99,-96,100,95,-100,98,100,-100,95,100,-98,100,101,-98,101,100,-103,98,102,-101,101,102,-104,102,104,-104,102,98,-106,104,102,-106,97,105,-99,104,105,-104,97,101,-106,105,101,-104,106,107,-109,107,106,-110,107,110,-109,110,107,-112,111,112,-111,109,113,-108,111,107,-114,112,111,-115,115,112,-115,113,116,-112,111,116,-115,113,109,-118,117,109,-107,108,117,-107,117,108,-111,117,118,-114,110,118,-118,118,116,-114,118,110,-113,112,119,-119,116,118,-120,119,112,-116,116,119,-121,120,114,-117,115,121,-120,121,120,-120,121,115,-123,120,123,-115,115,
- 114,-124,123,122,-116,123,124,-123,120,121,-126,120,125,-124,122,126,-122,125,121,-127,126,122,-125,125,127,-124,126,127,-126,123,128,-125,123,127,-129,128,129,-125,124,130,-127,130,127,-127,130,124,-130,130,129,-132,127,132,-129,132,127,-131,133,129,-129,133,128,-133,129,133,-132,133,134,-132,131,135,-131,130,135,-133,135,131,-135,132,136,-134,135,136,-133,134,133,-137,134,137,-136,135,137,-137,137,134,-139,138,139,-138,137,139,-141,141,134,-137,136,137,-142,137,140,-142,138,134,-142,138,141,-141,139,138,-141,142,143,-145,143,142,-146,145,146,-144,142,147,-146,148,147,-143,144,147,-149,147,144,-144,149,146,-146,149,145,-148,143,150,-148,150,149,-148,150,143,-147,151,146,-150,151,152,-147,151,153,-153,150,146,-155,150,154,-150,154,146,-153,152,153,-155,155,154,-154,156,154,-156,151,149,-158,157,149,-155,157,154,-157,151,157,-154,158,157,-157,158,153,-158,156,159,-159,155,153,-159,156,158,-160,158,156,-156,160,161,-163,163,162,-162,160,164,-162,164,163,-162,164,160,-166,163,164,-167,166,162,-164,167,164,-166,165,168,-168,167,168,-170,164,170,-167,164,167,-171,162,166,-172,170,171,-167,165,160,-163,162,171,-166,172,165,-172,171,170,-173,165,172,-169,168,172,-170,173,169,-173,172,170,-174,169,173,-175,175,174,-174,176,175,-174,173,170,-178,167,177,-171,173,178,-177,178,179,-177,173,180,-179,180,173,-178,179,178,-182,180,181,-179,177,167,-183,169,182,-168,182,169,-175,175,182,-175,183,177,-183,183,182,-176,177,183,-181,175,176,-184,176,179,-184,184,180,-184,181,180,-185,183,179,-186,185,184,-184,185,179,-187,187,185,-187,185,187,-189,184,185,-190,188,189,-186,189,181,-185,190,189,-189,190,188,-192,181,189,-193,190,192,-190,192,179,-182,179,192,-187,192,187,-187,193,190,-192,194,187,-193,192,190,-195,187,194,-189,194,191,-189,191,194,-196,194,190,-196,195,193,-192,196,193,-196,197,190,-194,195,190,-198,197,193,-197,195,198,-197,195,197,-199,198,199,-197,200,197,-197,200,196,-200,199,201,-201,202,198,-198,197,200,-203,198,202,-200,201,202,-201,202,201,-200,203,204,-206,204,206,-208,205,204,-209,207,208,-205,208,203,-206,
- 208,207,-207,203,208,-205,206,204,-209,209,210,-212,210,209,-213,213,212,-210,214,210,-213,211,210,-215,211,214,-210,214,213,-210,214,215,-214,214,212,-217,215,214,-217,213,217,-213,216,212,-218,217,213,-216,218,217,-216,216,219,-216,215,219,-219,218,219,-221,217,221,-217,219,216,-222,219,222,-221,220,222,-224,221,222,-220,222,221,-225,221,217,-226,225,224,-222,217,218,-226,225,223,-225,220,225,-219,220,223,-226,226,227,-229,229,227,-227,229,226,-231,229,230,-229,229,231,-228,232,227,-232,229,228,-234,231,229,-234,231,233,-233,228,227,-234,232,233,-228,234,235,-237,236,237,-235,235,237,-237,235,234,-238,237,234,-239,239,234,-238,238,239,-238,234,239,-239,238,240,-242,238,241,-240,242,238,-240,241,242,-240,238,242,-241,242,241,-241,243,244,-246,244,243,-247,245,247,-244,248,246,-244,248,243,-248,246,248,-245,247,245,-249,244,248,-246,249,250,-252,250,249,-253,250,253,-252,252,254,-251,254,252,-250,249,251,-255,253,250,-256,255,250,-255,255,256,-254,257,254,-252,254,257,-256,257,251,-254,257,253,-257,256,255,-259,257,258,-256,256,258,-260,258,260,-260,261,257,-257,257,261,-259,261,260,-259,261,256,-260,261,259,-261
- }
- Edges: *660 {
- a: 0,1,2,3,5,6,8,10,14,15,16,17,18,20,23,27,28,29,31,32,33,39,40,41,43,44,45,51,52,53,54,56,58,63,64,65,66,68,69,75,76,77,79,80,81,84,85,87,88,90,92,95,97,99,102,103,107,111,113,114,116,117,123,124,125,126,128,129,130,134,135,141,142,143,145,146,147,149,150,152,153,154,156,158,160,161,162,163,167,170,171,176,177,178,181,183,184,188,191,192,193,196,200,201,203,204,205,208,209,212,213,215,217,219,220,222,224,226,228,230,232,234,235,238,239,240,245,246,249,251,253,257,259,261,263,264,268,269,270,272,275,277,281,282,284,285,286,288,293,294,295,297,299,302,303,304,306,307,311,312,314,317,318,321,322,326,327,330,331,334,335,337,341,342,343,346,347,349,351,357,358,363,364,365,367,368,370,371,373,374,375,377,379,380,381,382,384,386,389,392,393,395,396,401,403,405,407,410,412,413,414,415,418,419,420,422,425,427,430,433,438,439,440,441,442,444,445,448,449,451,454,456,458,459,463,465,466,469,470,471,475,476,477,478,481,482,485,486,490,493,498,499,500,502,503,504,505,508,509,510,511,513,514,518,520,521,522,524,525,526,529,532,533,536,537,542,543,544,546,549,554,555,556,560,563,565,566,567,570,571,573,577,578,579,580,584,585,588,589,592,593,595,597,598,602,605,606,607,609,612,613,616,618,619,621,622,624,629,631,632,633,634,638,639,641,644,646,648,649,651,652,655,659,660,661,663,668,669,670,673,676,677,678,679,682,683,684,686,688,691,695,698,702,703,704,706,707,708,709,711,712,714,716,717,719,722,723,725,728,729,730,732,737,738,740,741,742,744,745,748,749,751,755,757,759,761,762,764,766,767,770,773,775,777,779,780,783,784,788,795,796,797,798,800,801,802,804,808,809,811,812,813,816,818,819,820,823,824,825,826,829,832,833,834,839,841,843,845,847,850,853,855,857,859,862,863,864,866,867,869,871,872,873,876,877,879,880,882,883,887,889,890,891,895,896,897,902,903,906,908,911,913,916,919,921,923,926,928,929,930,934,935,936,938,940,941,943,944,945,948,951,953,955,956,958,959,960,963,967,969,972,974,975,977,979,982,984,988,989,991,993,996,998,999,1001,1004,1007,1008,1009,1012,1014,1015,1017,1019,1022,1023,1024,1026,1028,1030,
- 1033,1035,1041,1042,1043,1044,1045,1046,1048,1049,1050,1053,1058,1065,1066,1067,1069,1070,1071,1073,1074,1076,1079,1081,1083,1086,1087,1090,1091,1094,1095,1096,1100,1103,1104,1106,1107,1108,1111,1114,1115,1116,1117,1121,1122,1123,1126,1127,1128,1132,1133,1135,1136,1137,1141,1143,1144,1146,1152,1153,1154,1155,1157,1159,1160,1162,1163,1164,1165,1167,1169,1171,1172,1175,1177,1180,1185,1186,1187,1188,1189,1191,1198,1199,1200,1202,1203,1209,1210,1211,1213,1215,1217,1218,1222,1227,1228,1229,1231,1232,1233,1234,1236,1238,1241,1243,1246,1251,1252,1253,1255,1256,1257,1258,1260,1261,1265,1267,1270,1271,1274,1275,1276,1278,1280,1282,1286,1289,1291,1292,1293,1297,1298,1299,1300,1302,1304,1306,1308,1313
- }
- GeometryVersion: 124
- LayerElementNormal: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Normals: *3951 {
- a: -0.828313767910004,-0.0946644246578217,-0.552209138870239,-0.487629979848862,-0.00786499958485365,-0.873014986515045,0.824627220630646,-0.565458595752716,-0.0157071854919195,0.331562876701355,0.386823356151581,0.860484600067139,-0.828313767910004,-0.0946644246578217,-0.552209138870239,0.824627220630646,-0.565458595752716,-0.0157071854919195,-0.692055821418762,0.629141628742218,0.353892177343369,0.331562876701355,0.386823356151581,0.860484600067139,0.824627220630646,-0.565458595752716,-0.0157071854919195,0.331562876701355,0.386823356151581,0.860484600067139,-0.692055821418762,0.629141628742218,0.353892177343369,-0.951664984226227,0.235949993133545,-0.196624979376793,-0.455944418907166,-0.0550277754664421,-0.888305485248566,-0.951664984226227,0.235949993133545,-0.196624979376793,-0.692055821418762,0.629141628742218,0.353892177343369,-0.204654648900032,0.865846633911133,-0.456537306308746,-0.662898540496826,0.402474135160446,-0.631331980228424,-0.275368690490723,-0.951988935470581,-0.13375049829483,0.687087178230286,-1.61332062592701e-016,0.726575016975403,-0.275368690490723,-0.951988935470581,-0.13375049829483,-0.662898540496826,0.402474135160446,-0.631331980228424,0.400126159191132,0.776715517044067,0.486427903175354,-0.275368690490723,-0.951988935470581,-0.13375049829483,0.687087178230286,-1.61332062592701e-016,0.726575016975403,0.687087178230286,-1.61332062592701e-016,0.726575016975403,-0.559193789958954,0.51981395483017,-0.645829498767853,0.400126159191132,0.776715517044067,0.486427903175354,-0.118018813431263,0.786792039871216,0.605829894542694,-0.840827107429504,-0.345760703086853,0.416484475135803,-0.070883721113205,-0.960868239402771,0.267782926559448,-0.070883721113205,-0.960868239402771,0.267782926559448,-0.840827107429504,-0.345760703086853,0.416484475135803,0.811501741409302,0.0393932871520519,-0.583020687103271,0.811501741409302,0.0393932871520519,-0.583020687103271,-0.118018813431263,0.786792039871216,0.605829894542694,-0.070883721113205,-0.960868239402771,0.267782926559448,0.811501741409302,0.0393932871520519,-0.583020687103271,
- -0.41725817322731,0.677060425281525,0.60620528459549,-0.118018813431263,0.786792039871216,0.605829894542694,-0.648185908794403,-0.063237652182579,0.758851766586304,0.149190649390221,0.212007775902748,0.965813159942627,-0.149255067110062,-0.298510134220123,-0.942663609981537,-0.648185908794403,-0.063237652182579,0.758851766586304,-0.149255067110062,-0.298510134220123,-0.942663609981537,0.956928968429565,0.29021617770195,0.00784367974847555,0.102279812097549,0.149485886096954,0.983459711074829,0.956928968429565,0.29021617770195,0.00784367974847555,-0.149255067110062,-0.298510134220123,-0.942663609981537,0.956928968429565,0.29021617770195,0.00784367974847555,0.102279812097549,0.149485886096954,0.983459711074829,-0.188695803284645,0.117934882640839,0.974928319454193,-0.90989488363266,-0.109814904630184,-0.400040000677109,-0.964735925197601,0.221414789557457,-0.142338067293167,-0.181327342987061,0.204978734254837,0.961823344230652,0.669374346733093,-0.692999362945557,0.267749726772308,-0.181327342987061,0.204978734254837,0.961823344230652,-0.964735925197601,0.221414789557457,-0.142338067293167,-0.181327342987061,0.204978734254837,0.961823344230652,0.669374346733093,-0.692999362945557,0.267749726772308,0.102511666715145,0.22079436480999,-0.969918131828308,-0.964735925197601,0.221414789557457,-0.142338067293167,0.102511666715145,0.22079436480999,-0.969918131828308,0.669374346733093,-0.692999362945557,0.267749726772308,0.528329372406006,0.0946261584758759,-0.843749940395355,0.67908376455307,-0.623809516429901,-0.38691982626915,0.133490473031998,-0.785238087177277,0.604633331298828,-0.654986500740051,0.749683380126953,0.0946968495845795,0.67908376455307,-0.623809516429901,-0.38691982626915,0.528329372406006,0.0946261584758759,-0.843749940395355,-0.664057552814484,-0.252974301576614,0.703584790229797,-0.654986500740051,0.749683380126953,0.0946968495845795,0.528329372406006,0.0946261584758759,-0.843749940395355,-0.654986500740051,0.749683380126953,0.0946968495845795,-0.664057552814484,-0.252974301576614,0.703584790229797,0.417815327644348,-0.780447483062744,0.465115159749985,
- -0.83227550983429,-0.533912539482117,-0.149181455373764,-0.5894376039505,-0.243634209036827,-0.770198464393616,-0.604409754276276,-0.0784947723150253,-0.792797207832336,-0.5894376039505,-0.243634209036827,-0.770198464393616,-0.83227550983429,-0.533912539482117,-0.149181455373764,0.669270575046539,0.566911518573761,0.480300098657608,0.669270575046539,0.566911518573761,0.480300098657608,-0.604409754276276,-0.0784947723150253,-0.792797207832336,-0.5894376039505,-0.243634209036827,-0.770198464393616,-0.83227550983429,-0.533912539482117,-0.149181455373764,0.346274256706238,-0.716158092021942,0.605979919433594,0.669270575046539,0.566911518573761,0.480300098657608,-0.83227550983429,-0.533912539482117,-0.149181455373764,-0.940366268157959,-0.173849239945412,0.292382806539536,0.346274256706238,-0.716158092021942,0.605979919433594,0.557794213294983,0.628500580787659,-0.542081713676453,-0.604409754276276,-0.0784947723150253,-0.792797207832336,0.669270575046539,0.566911518573761,0.480300098657608,0.557794213294983,0.628500580787659,-0.542081713676453,0.669270575046539,0.566911518573761,0.480300098657608,0.346274256706238,-0.716158092021942,0.605979919433594,-0.604409754276276,-0.0784947723150253,-0.792797207832336,0.557794213294983,0.628500580787659,-0.542081713676453,-0.793775975704193,0.330085068941116,-0.510845959186554,0.557794213294983,0.628500580787659,-0.542081713676453,-0.982912182807922,0.172992557287216,-0.062906377017498,-0.793775975704193,0.330085068941116,-0.510845959186554,0.346274256706238,-0.716158092021942,0.605979919433594,0.860136270523071,0.29197284579277,-0.418231397867203,0.557794213294983,0.628500580787659,-0.542081713676453,-0.982912182807922,0.172992557287216,-0.062906377017498,0.557794213294983,0.628500580787659,-0.542081713676453,0.860136270523071,0.29197284579277,-0.418231397867203,0.346274256706238,-0.716158092021942,0.605979919433594,-0.940366268157959,-0.173849239945412,0.292382806539536,0.860136270523071,0.29197284579277,-0.418231397867203,-0.964772641658783,-0.0470620803534985,-0.258841425180435,
- -0.982912182807922,0.172992557287216,-0.062906377017498,0.860136270523071,0.29197284579277,-0.418231397867203,0.660108983516693,-0.557949244976044,0.50294017791748,-0.964772641658783,-0.0470620803534985,-0.258841425180435,0.860136270523071,0.29197284579277,-0.418231397867203,-0.940366268157959,-0.173849239945412,0.292382806539536,0.660108983516693,-0.557949244976044,0.50294017791748,0.860136270523071,0.29197284579277,-0.418231397867203,-0.940366268157959,-0.173849239945412,0.292382806539536,-0.999721229076386,5.243686086563e-018,-0.023615462705493,0.660108983516693,-0.557949244976044,0.50294017791748,-0.534621596336365,0.180827900767326,-0.825518667697906,-0.28342941403389,-0.110222548246384,-0.952637791633606,0.786524295806885,-0.448318839073181,-0.424723148345947,0.102473460137844,0.0551780164241791,0.993204295635223,0.786524295806885,-0.448318839073181,-0.424723148345947,-0.28342941403389,-0.110222548246384,-0.952637791633606,0.102473460137844,0.0551780164241791,0.993204295635223,-0.307048588991165,0.267683357000351,0.913272678852081,0.786524295806885,-0.448318839073181,-0.424723148345947,-0.566314995288849,0.188771679997444,-0.802279591560364,0.786524295806885,-0.448318839073181,-0.424723148345947,-0.307048588991165,0.267683357000351,0.913272678852081,-0.471856206655502,0.0393213517963886,-0.88079822063446,-0.307048588991165,0.267683357000351,0.913272678852081,0.102473460137844,0.0551780164241791,0.993204295635223,-0.307048588991165,0.267683357000351,0.913272678852081,-0.471856206655502,0.0393213517963886,-0.88079822063446,-0.566314995288849,0.188771679997444,-0.802279591560364,-0.463176220655441,0.28261598944664,0.839997589588165,0.747568130493164,-0.157382771372795,0.645269334316254,0.592316567897797,-0.0157951079308987,0.805550515651703,0.747568130493164,-0.157382771372795,0.645269334316254,-0.463176220655441,0.28261598944664,0.839997589588165,0.502676427364349,0.259192526340485,0.824703514575958,-0.908077120780945,0.300060272216797,-0.292163968086243,0.502676427364349,0.259192526340485,0.824703514575958,-0.463176220655441,0.28261598944664,0.839997589588165,
- -0.503671705722809,0.432842880487442,-0.747637629508972,-0.908077120780945,0.300060272216797,-0.292163968086243,-0.463176220655441,0.28261598944664,0.839997589588165,-0.908077120780945,0.300060272216797,-0.292163968086243,-0.386198073625565,0.701461851596832,0.599001109600067,0.502676427364349,0.259192526340485,0.824703514575958,0.884085118770599,0.370999991893768,0.284170210361481,0.502676427364349,0.259192526340485,0.824703514575958,-0.386198073625565,0.701461851596832,0.599001109600067,-0.908077120780945,0.300060272216797,-0.292163968086243,-0.503671705722809,0.432842880487442,-0.747637629508972,0.252352118492126,-0.315440148115158,-0.91477644443512,-0.503671705722809,0.432842880487442,-0.747637629508972,0.939047932624817,-0.0552381165325642,-0.339319825172424,0.252352118492126,-0.315440148115158,-0.91477644443512,0.939047932624817,-0.0552381165325642,-0.339319825172424,-0.141155853867531,0.948881089687347,-0.282311707735062,0.0471084825694561,0.9343181848526,0.353313624858856,0.939047932624817,-0.0552381165325642,-0.339319825172424,0.0471084825694561,0.9343181848526,0.353313624858856,0.62195086479187,0.133837521076202,0.771533966064453,0.852192044258118,-0.205157324671745,0.481330692768097,0.939047932624817,-0.0552381165325642,-0.339319825172424,0.62195086479187,0.133837521076202,0.771533966064453,0.252352118492126,-0.315440148115158,-0.91477644443512,0.939047932624817,-0.0552381165325642,-0.339319825172424,0.852192044258118,-0.205157324671745,0.481330692768097,0.852192044258118,-0.205157324671745,0.481330692768097,0.511478185653687,-0.684593856334686,-0.519347071647644,0.252352118492126,-0.315440148115158,-0.91477644443512,0.852192044258118,-0.205157324671745,0.481330692768097,0.81278932094574,0.2446259111166,0.52870762348175,0.511478185653687,-0.684593856334686,-0.519347071647644,0.252352118492126,-0.315440148115158,-0.91477644443512,-0.714368522167206,-0.478862434625626,-0.51026326417923,-0.908077120780945,0.300060272216797,-0.292163968086243,-0.714368522167206,-0.478862434625626,-0.51026326417923,0.252352118492126,-0.315440148115158,-0.91477644443512,
- 0.511478185653687,-0.684593856334686,-0.519347071647644,-0.386198073625565,0.701461851596832,0.599001109600067,-0.908077120780945,0.300060272216797,-0.292163968086243,-0.714368522167206,-0.478862434625626,-0.51026326417923,0.81278932094574,0.2446259111166,0.52870762348175,0.355113208293915,-0.536615490913391,-0.765466272830963,0.511478185653687,-0.684593856334686,-0.519347071647644,0.511478185653687,-0.684593856334686,-0.519347071647644,0.355113208293915,-0.536615490913391,-0.765466272830963,-0.714368522167206,-0.478862434625626,-0.51026326417923,0.355113208293915,-0.536615490913391,-0.765466272830963,0.81278932094574,0.2446259111166,0.52870762348175,0.903692722320557,0.314327895641327,0.290753304958344,0.964253664016724,0.079037182033062,-0.252918988466263,0.355113208293915,-0.536615490913391,-0.765466272830963,0.903692722320557,0.314327895641327,0.290753304958344,0.964253664016724,0.079037182033062,-0.252918988466263,0.72910350561142,-0.117597341537476,-0.674224734306335,0.355113208293915,-0.536615490913391,-0.765466272830963,-0.714368522167206,-0.478862434625626,-0.51026326417923,0.355113208293915,-0.536615490913391,-0.765466272830963,-0.971368849277496,-0.229021921753883,-0.0631784573197365,-0.386198073625565,0.701461851596832,0.599001109600067,-0.714368522167206,-0.478862434625626,-0.51026326417923,-0.971368849277496,-0.229021921753883,-0.0631784573197365,-0.551454663276672,-0.645989775657654,-0.527820944786072,0.355113208293915,-0.536615490913391,-0.765466272830963,0.72910350561142,-0.117597341537476,-0.674224734306335,0.355113208293915,-0.536615490913391,-0.765466272830963,-0.551454663276672,-0.645989775657654,-0.527820944786072,-0.971368849277496,-0.229021921753883,-0.0631784573197365,0.72910350561142,-0.117597341537476,-0.674224734306335,-0.212479889392853,-0.495786428451538,-0.842049956321716,-0.551454663276672,-0.645989775657654,-0.527820944786072,-0.717737972736359,0.118308454751968,0.686188995838165,-0.386198073625565,0.701461851596832,0.599001109600067,-0.971368849277496,-0.229021921753883,-0.0631784573197365,
- -0.971368849277496,-0.229021921753883,-0.0631784573197365,-0.551454663276672,-0.645989775657654,-0.527820944786072,-0.717737972736359,0.118308454751968,0.686188995838165,-0.599317669868469,-0.662403702735901,0.44948822259903,-0.551454663276672,-0.645989775657654,-0.527820944786072,-0.212479889392853,-0.495786428451538,-0.842049956321716,-0.551454663276672,-0.645989775657654,-0.527820944786072,-0.599317669868469,-0.662403702735901,0.44948822259903,-0.717737972736359,0.118308454751968,0.686188995838165,-0.212479889392853,-0.495786428451538,-0.842049956321716,-0.709453642368317,-0.567562878131866,-0.417789369821548,-0.599317669868469,-0.662403702735901,0.44948822259903,-0.386198073625565,0.701461851596832,0.599001109600067,-0.717737972736359,0.118308454751968,0.686188995838165,0.590313374996185,0.58244252204895,0.5588299036026,0.590313374996185,0.58244252204895,0.5588299036026,0.884085118770599,0.370999991893768,0.284170210361481,-0.386198073625565,0.701461851596832,0.599001109600067,0.964253664016724,0.079037182033062,-0.252918988466263,0.884085118770599,0.370999991893768,0.284170210361481,0.590313374996185,0.58244252204895,0.5588299036026,0.590313374996185,0.58244252204895,0.5588299036026,0.700743973255157,-0.133849963545799,-0.700743973255157,0.964253664016724,0.079037182033062,-0.252918988466263,0.520865082740784,0.710270583629608,0.473513722419739,0.590313374996185,0.58244252204895,0.5588299036026,-0.717737972736359,0.118308454751968,0.686188995838165,0.590313374996185,0.58244252204895,0.5588299036026,0.520865082740784,0.710270583629608,0.473513722419739,0.700743973255157,-0.133849963545799,-0.700743973255157,0.520865082740784,0.710270583629608,0.473513722419739,-0.717737972736359,0.118308454751968,0.686188995838165,-0.599317669868469,-0.662403702735901,0.44948822259903,0.700743973255157,-0.133849963545799,-0.700743973255157,0.520865082740784,0.710270583629608,0.473513722419739,-0.0552123263478279,-0.157749503850937,-0.985934436321259,0.472792834043503,-0.543711721897125,0.693429529666901,-0.599317669868469,-0.662403702735901,0.44948822259903,
- -0.709453642368317,-0.567562878131866,-0.417789369821548,0.472792834043503,-0.543711721897125,0.693429529666901,0.520865082740784,0.710270583629608,0.473513722419739,-0.599317669868469,-0.662403702735901,0.44948822259903,0.472792834043503,-0.543711721897125,0.693429529666901,-0.709453642368317,-0.567562878131866,-0.417789369821548,-0.919522762298584,-0.385099291801453,-0.0785916894674301,0.110263586044312,0.826976895332336,-0.551317870616913,-0.0552123263478279,-0.157749503850937,-0.985934436321259,0.520865082740784,0.710270583629608,0.473513722419739,0.110263586044312,0.826976895332336,-0.551317870616913,0.520865082740784,0.710270583629608,0.473513722419739,0.472792834043503,-0.543711721897125,0.693429529666901,-0.0552123263478279,-0.157749503850937,-0.985934436321259,0.110263586044312,0.826976895332336,-0.551317870616913,-0.729170739650726,-0.211694732308388,-0.650765240192413,-0.950401842594147,-0.219927683472633,-0.219927683472633,-0.729170739650726,-0.211694732308388,-0.650765240192413,0.110263586044312,0.826976895332336,-0.551317870616913,-0.914719521999359,-0.118282705545425,0.386390149593353,-0.950401842594147,-0.219927683472633,-0.219927683472633,0.110263586044312,0.826976895332336,-0.551317870616913,-0.919522762298584,-0.385099291801453,-0.0785916894674301,0.858880341053009,-0.409741044044495,0.307305812835693,0.472792834043503,-0.543711721897125,0.693429529666901,0.858880341053009,-0.409741044044495,0.307305812835693,0.110263586044312,0.826976895332336,-0.551317870616913,0.472792834043503,-0.543711721897125,0.693429529666901,0.858880341053009,-0.409741044044495,0.307305812835693,-0.919522762298584,-0.385099291801453,-0.0785916894674301,-0.86539089679718,-0.188812553882599,0.464164197444916,-0.86539089679718,-0.188812553882599,0.464164197444916,-0.431654781103134,-0.164813637733459,0.886854350566864,0.858880341053009,-0.409741044044495,0.307305812835693,-0.831660389900208,0.509980380535126,-0.21968387067318,-0.914719521999359,-0.118282705545425,0.386390149593353,0.110263586044312,0.826976895332336,-0.551317870616913,
- -0.431654781103134,-0.164813637733459,0.886854350566864,-0.914719521999359,-0.118282705545425,0.386390149593353,-0.831660389900208,0.509980380535126,-0.21968387067318,-0.831660389900208,0.509980380535126,-0.21968387067318,0.0314648635685444,-0.0314648635685444,0.999009490013123,-0.431654781103134,-0.164813637733459,0.886854350566864,0.858880341053009,-0.409741044044495,0.307305812835693,0.368426382541656,0.282198905944824,-0.885791063308716,0.110263586044312,0.826976895332336,-0.551317870616913,-0.831660389900208,0.509980380535126,-0.21968387067318,0.110263586044312,0.826976895332336,-0.551317870616913,0.368426382541656,0.282198905944824,-0.885791063308716,0.821781516075134,-0.537318646907806,0.189641892910004,0.858880341053009,-0.409741044044495,0.307305812835693,-0.431654781103134,-0.164813637733459,0.886854350566864,0.368426382541656,0.282198905944824,-0.885791063308716,0.858880341053009,-0.409741044044495,0.307305812835693,0.821781516075134,-0.537318646907806,0.189641892910004,0.299509882926941,-0.212809652090073,0.930056929588318,0.821781516075134,-0.537318646907806,0.189641892910004,-0.431654781103134,-0.164813637733459,0.886854350566864,0.821781516075134,-0.537318646907806,0.189641892910004,0.369335323572159,-0.180738553404808,-0.911550998687744,0.368426382541656,0.282198905944824,-0.885791063308716,0.369335323572159,-0.180738553404808,-0.911550998687744,0.821781516075134,-0.537318646907806,0.189641892910004,0.299509882926941,-0.212809652090073,0.930056929588318,0.369335323572159,-0.180738553404808,-0.911550998687744,-0.831660389900208,0.509980380535126,-0.21968387067318,0.368426382541656,0.282198905944824,-0.885791063308716,0.299509882926941,-0.212809652090073,0.930056929588318,0.913499116897583,-0.102374896407127,0.393749624490738,0.369335323572159,-0.180738553404808,-0.911550998687744,0.0314648635685444,-0.0314648635685444,0.999009490013123,-0.831660389900208,0.509980380535126,-0.21968387067318,-0.807725250720978,0.282311707735062,0.51757150888443,-0.831660389900208,0.509980380535126,-0.21968387067318,0.369335323572159,-0.180738553404808,-0.911550998687744,
- -0.807725250720978,0.282311707735062,0.51757150888443,0.671711146831512,-0.142244711518288,0.727028608322144,0.0314648635685444,-0.0314648635685444,0.999009490013123,-0.807725250720978,0.282311707735062,0.51757150888443,-0.807725250720978,0.282311707735062,0.51757150888443,-0.464164197444916,0.188812553882599,0.86539089679718,0.671711146831512,-0.142244711518288,0.727028608322144,0.369335323572159,-0.180738553404808,-0.911550998687744,0.913499116897583,-0.102374896407127,0.393749624490738,-0.118194542825222,-0.126074180006981,-0.984954476356506,0.369335323572159,-0.180738553404808,-0.911550998687744,-0.118194542825222,-0.126074180006981,-0.984954476356506,-0.807725250720978,0.282311707735062,0.51757150888443,-0.118194542825222,-0.126074180006981,-0.984954476356506,-0.464164197444916,0.188812553882599,0.86539089679718,-0.807725250720978,0.282311707735062,0.51757150888443,0.913499116897583,-0.102374896407127,0.393749624490738,0.858001887798309,-0.133816793560982,0.495909333229065,-0.118194542825222,-0.126074180006981,-0.984954476356506,-0.118194542825222,-0.126074180006981,-0.984954476356506,0.897415280342102,-0.425091445446014,-0.118080958724022,-0.464164197444916,0.188812553882599,0.86539089679718,0.858001887798309,-0.133816793560982,0.495909333229065,0.897415280342102,-0.425091445446014,-0.118080958724022,-0.118194542825222,-0.126074180006981,-0.984954476356506,0.487358748912811,-0.801783740520477,-0.345867514610291,-0.884305477142334,-0.465839475393295,-0.0315823368728161,-0.890620112419128,-0.409842848777771,0.197039842605591,-0.884305477142334,-0.465839475393295,-0.0315823368728161,0.487358748912811,-0.801783740520477,-0.345867514610291,0.948624014854431,-0.308302789926529,-0.0711467936635017,-0.884305477142334,-0.465839475393295,-0.0315823368728161,0.948624014854431,-0.308302789926529,-0.0711467936635017,-0.833406507968903,-0.424565553665161,-0.353804647922516,0.948624014854431,-0.308302789926529,-0.0711467936635017,0.487358748912811,-0.801783740520477,-0.345867514610291,0.284738481044769,0.949128329753876,0.134459838271141,
- 0.653624415397644,-0.740249335765839,-0.157499864697456,-0.833406507968903,-0.424565553665161,-0.353804647922516,0.948624014854431,-0.308302789926529,-0.0711467936635017,-0.833406507968903,-0.424565553665161,-0.353804647922516,0.653624415397644,-0.740249335765839,-0.157499864697456,-0.552192032337189,-0.291872948408127,-0.780957341194153,0.284738481044769,0.949128329753876,0.134459838271141,-0.441781163215637,0.820450663566589,0.362891644239426,0.948624014854431,-0.308302789926529,-0.0711467936635017,-0.890620112419128,-0.409842848777771,0.197039842605591,-0.441781163215637,0.820450663566589,0.362891644239426,0.284738481044769,0.949128329753876,0.134459838271141,-0.441781163215637,0.820450663566589,0.362891644239426,-0.890620112419128,-0.409842848777771,0.197039842605591,-0.884305477142334,-0.465839475393295,-0.0315823368728161,-0.441781163215637,0.820450663566589,0.362891644239426,-0.884305477142334,-0.465839475393295,-0.0315823368728161,-0.833406507968903,-0.424565553665161,-0.353804647922516,-0.0313940457999706,0.729911506175995,0.682820439338684,0.948624014854431,-0.308302789926529,-0.0711467936635017,-0.441781163215637,0.820450663566589,0.362891644239426,-0.833406507968903,-0.424565553665161,-0.353804647922516,-0.0313940457999706,0.729911506175995,0.682820439338684,-0.441781163215637,0.820450663566589,0.362891644239426,0.653624415397644,-0.740249335765839,-0.157499864697456,0.948624014854431,-0.308302789926529,-0.0711467936635017,-0.0313940457999706,0.729911506175995,0.682820439338684,-0.833406507968903,-0.424565553665161,-0.353804647922516,-0.573861062526703,-0.298722207546234,-0.762527704238892,-0.0313940457999706,0.729911506175995,0.682820439338684,0.464078038930893,-0.54273533821106,0.700049936771393,-0.552192032337189,-0.291872948408127,-0.780957341194153,0.653624415397644,-0.740249335765839,-0.157499864697456,0.464078038930893,-0.54273533821106,0.700049936771393,0.653624415397644,-0.740249335765839,-0.157499864697456,-0.0313940457999706,0.729911506175995,0.682820439338684,-0.552192032337189,-0.291872948408127,-0.780957341194153,
- 0.464078038930893,-0.54273533821106,0.700049936771393,-0.0157028250396252,0.259096622467041,-0.965723752975464,0.464078038930893,-0.54273533821106,0.700049936771393,0.653867721557617,-0.393896222114563,-0.645989775657654,-0.0157028250396252,0.259096622467041,-0.965723752975464,0.653867721557617,-0.393896222114563,-0.645989775657654,0.464078038930893,-0.54273533821106,0.700049936771393,-0.733102083206177,-0.488734722137451,0.472969084978104,-0.606731951236725,0.756445050239563,0.244268715381622,-0.0313940457999706,0.729911506175995,0.682820439338684,-0.573861062526703,-0.298722207546234,-0.762527704238892,0.464078038930893,-0.54273533821106,0.700049936771393,-0.0313940457999706,0.729911506175995,0.682820439338684,-0.606731951236725,0.756445050239563,0.244268715381622,0.464078038930893,-0.54273533821106,0.700049936771393,-0.606731951236725,0.756445050239563,0.244268715381622,-0.733102083206177,-0.488734722137451,0.472969084978104,-0.573861062526703,-0.298722207546234,-0.762527704238892,-0.0706170126795769,0.306007087230682,-0.949406623840332,-0.606731951236725,0.756445050239563,0.244268715381622,-0.733102083206177,-0.488734722137451,0.472969084978104,-0.606731951236725,0.756445050239563,0.244268715381622,0.0471389964222908,0.133560493588448,-0.989918947219849,0.0471389964222908,0.133560493588448,-0.989918947219849,-0.606731951236725,0.756445050239563,0.244268715381622,-0.0706170126795769,0.306007087230682,-0.949406623840332,-0.251656651496887,-0.605548799037933,-0.754969894886017,-0.458903282880783,-0.561760902404785,-0.688354909420013,-0.598573684692383,0.0945116281509399,0.795472860336304,-0.458903282880783,-0.561760902404785,-0.688354909420013,-0.653017163276672,-0.432722240686417,-0.621546506881714,-0.598573684692383,0.0945116281509399,0.795472860336304,-0.653017163276672,-0.432722240686417,-0.621546506881714,0.0315351895987988,0.53609824180603,0.843566358089447,-0.598573684692383,0.0945116281509399,0.795472860336304,-0.598573684692383,0.0945116281509399,0.795472860336304,0.0315351895987988,0.53609824180603,0.843566358089447,
- 0.9244464635849,0.379260122776031,0.0395062603056431,-0.598573684692383,0.0945116281509399,0.795472860336304,0.9244464635849,0.379260122776031,0.0395062603056431,0.0628616958856583,-0.440031886100769,-0.895779192447662,0.0628616958856583,-0.440031886100769,-0.895779192447662,0.9244464635849,0.379260122776031,0.0395062603056431,-0.458903282880783,-0.561760902404785,-0.688354909420013,0.796535909175873,-0.307573288679123,-0.520508646965027,-0.458903282880783,-0.561760902404785,-0.688354909420013,0.9244464635849,0.379260122776031,0.0395062603056431,0.0315351895987988,0.53609824180603,0.843566358089447,0.796535909175873,-0.307573288679123,-0.520508646965027,0.9244464635849,0.379260122776031,0.0395062603056431,-0.458903282880783,-0.561760902404785,-0.688354909420013,0.796535909175873,-0.307573288679123,-0.520508646965027,-0.536966681480408,-0.489587306976318,-0.687001466751099,0.796535909175873,-0.307573288679123,-0.520508646965027,-0.755086719989777,-0.330350428819656,-0.566314995288849,-0.536966681480408,-0.489587306976318,-0.687001466751099,-0.755086719989777,-0.330350428819656,-0.566314995288849,0.796535909175873,-0.307573288679123,-0.520508646965027,0.951664984226227,-0.298869997262955,-0.0707849934697151,0.0315351895987988,0.53609824180603,0.843566358089447,0.951664984226227,-0.298869997262955,-0.0707849934697151,0.796535909175873,-0.307573288679123,-0.520508646965027,-0.755086719989777,-0.330350428819656,-0.566314995288849,0.951664984226227,-0.298869997262955,-0.0707849934697151,-0.584583103656769,-0.0947972610592842,-0.805776655673981,0.951664984226227,-0.298869997262955,-0.0707849934697151,-0.416754841804504,-0.723423421382904,0.550430834293365,-0.584583103656769,-0.0947972610592842,-0.805776655673981,0.951664984226227,-0.298869997262955,-0.0707849934697151,0.0315351895987988,0.53609824180603,0.843566358089447,-0.369654983282089,0.6370649933815,0.676389992237091,-0.416754841804504,-0.723423421382904,0.550430834293365,0.951664984226227,-0.298869997262955,-0.0707849934697151,-0.369654983282089,0.6370649933815,0.676389992237091,
- -0.653017163276672,-0.432722240686417,-0.621546506881714,-0.369654983282089,0.6370649933815,0.676389992237091,0.0315351895987988,0.53609824180603,0.843566358089447,-0.416754841804504,-0.723423421382904,0.550430834293365,-0.369654983282089,0.6370649933815,0.676389992237091,-0.584583103656769,-0.0947972610592842,-0.805776655673981,-0.653017163276672,-0.432722240686417,-0.621546506881714,-0.748542189598084,-0.228502348065376,-0.622471928596497,-0.369654983282089,0.6370649933815,0.676389992237091,-0.369654983282089,0.6370649933815,0.676389992237091,-0.748542189598084,-0.228502348065376,-0.622471928596497,-0.584583103656769,-0.0947972610592842,-0.805776655673981,0.614382803440094,0.764040112495422,0.196917548775673,-0.911494612693787,0.298593074083328,0.282877624034882,0.0629550591111183,0.613811790943146,0.786938190460205,-0.911494612693787,0.298593074083328,0.282877624034882,0.614382803440094,0.764040112495422,0.196917548775673,-0.346768617630005,0.394055247306824,-0.851159334182739,-0.911494612693787,0.298593074083328,0.282877624034882,0.684022307395935,-0.0943479016423225,0.723333954811096,0.165426135063171,0.0551420450210571,0.984679400920868,0.684022307395935,-0.0943479016423225,0.723333954811096,-0.911494612693787,0.298593074083328,0.282877624034882,-0.565092742443085,0.463062107563019,0.682820379734039,-0.565092742443085,0.463062107563019,0.682820379734039,0.872044563293457,-0.157125145196915,0.463519155979156,0.684022307395935,-0.0943479016423225,0.723333954811096,-0.346768617630005,0.394055247306824,-0.851159334182739,-0.639044523239136,-0.134120464324951,-0.757386147975922,-0.911494612693787,0.298593074083328,0.282877624034882,-0.565092742443085,0.463062107563019,0.682820379734039,-0.911494612693787,0.298593074083328,0.282877624034882,-0.639044523239136,-0.134120464324951,-0.757386147975922,0.872044563293457,-0.157125145196915,0.463519155979156,-0.565092742443085,0.463062107563019,0.682820379734039,0.05489731580019,0.839144706726074,0.541130661964417,0.904167413711548,-0.424565583467484,-0.0471739508211613,0.872044563293457,-0.157125145196915,0.463519155979156,
- 0.05489731580019,0.839144706726074,0.541130661964417,-0.639044523239136,-0.134120464324951,-0.757386147975922,-0.939428150653839,0.213147565722466,-0.26840803027153,-0.565092742443085,0.463062107563019,0.682820379734039,-0.565092742443085,0.463062107563019,0.682820379734039,-0.939428150653839,0.213147565722466,-0.26840803027153,0.05489731580019,0.839144706726074,0.541130661964417,-0.639044523239136,-0.134120464324951,-0.757386147975922,-0.346768617630005,0.394055247306824,-0.851159334182739,0.796932518482208,-0.24460306763649,-0.552329480648041,0.796932518482208,-0.24460306763649,-0.552329480648041,-0.346768617630005,0.394055247306824,-0.851159334182739,0.907172560691834,0.418088227510452,0.0473307408392429,0.189305320382118,0.0867649391293526,0.978077471256256,0.796932518482208,-0.24460306763649,-0.552329480648041,0.907172560691834,0.418088227510452,0.0473307408392429,0.796932518482208,-0.24460306763649,-0.552329480648041,0.189305320382118,0.0867649391293526,0.978077471256256,0.684022307395935,-0.0943479016423225,0.723333954811096,0.796932518482208,-0.24460306763649,-0.552329480648041,0.456862896680832,-0.567140161991119,-0.685294330120087,-0.639044523239136,-0.134120464324951,-0.757386147975922,0.684022307395935,-0.0943479016423225,0.723333954811096,0.456862896680832,-0.567140161991119,-0.685294330120087,0.796932518482208,-0.24460306763649,-0.552329480648041,0.456862896680832,-0.567140161991119,-0.685294330120087,-0.939428150653839,0.213147565722466,-0.26840803027153,-0.639044523239136,-0.134120464324951,-0.757386147975922,0.456862896680832,-0.567140161991119,-0.685294330120087,0.684022307395935,-0.0943479016423225,0.723333954811096,0.897415280342102,-0.118080958724022,0.425091445446014,0.897415280342102,-0.118080958724022,0.425091445446014,-0.345728695392609,-0.832891881465912,-0.432160884141922,0.456862896680832,-0.567140161991119,-0.685294330120087,-0.939428150653839,0.213147565722466,-0.26840803027153,0.456862896680832,-0.567140161991119,-0.685294330120087,-0.345728695392609,-0.832891881465912,-0.432160884141922,
- -0.345728695392609,-0.832891881465912,-0.432160884141922,0.897415280342102,-0.118080958724022,0.425091445446014,0.927840530872345,-0.353837490081787,-0.117945834994316,-0.939428150653839,0.213147565722466,-0.26840803027153,-0.345728695392609,-0.832891881465912,-0.432160884141922,-0.924706161022186,0.25291109085083,0.284524977207184,-0.924706161022186,0.25291109085083,0.284524977207184,0.05489731580019,0.839144706726074,0.541130661964417,-0.939428150653839,0.213147565722466,-0.26840803027153,0.927840530872345,-0.353837490081787,-0.117945834994316,-0.614554464817047,-0.787890315055847,0.0393945164978504,-0.345728695392609,-0.832891881465912,-0.432160884141922,-0.614554464817047,-0.787890315055847,0.0393945164978504,-0.924706161022186,0.25291109085083,0.284524977207184,-0.345728695392609,-0.832891881465912,-0.432160884141922,-0.614554464817047,-0.787890315055847,0.0393945164978504,0.927840530872345,-0.353837490081787,-0.117945834994316,0.613318264484406,-0.133671924471855,-0.7784423828125,-0.924706161022186,0.25291109085083,0.284524977207184,0.556439340114594,0.830740511417389,0.0156743489205837,0.05489731580019,0.839144706726074,0.541130661964417,0.904167413711548,-0.424565583467484,-0.0471739508211613,0.05489731580019,0.839144706726074,0.541130661964417,0.556439340114594,0.830740511417389,0.0156743489205837,0.556439340114594,0.830740511417389,0.0156743489205837,0.75424724817276,-0.235702261328697,-0.612825870513916,0.904167413711548,-0.424565583467484,-0.0471739508211613,0.556439340114594,0.830740511417389,0.0156743489205837,0.0236132685095072,-0.125937432050705,-0.991757214069366,0.75424724817276,-0.235702261328697,-0.612825870513916,-0.924706161022186,0.25291109085083,0.284524977207184,-0.614554464817047,-0.787890315055847,0.0393945164978504,-0.353313595056534,0.0471084751188755,0.934318065643311,-0.924706161022186,0.25291109085083,0.284524977207184,-0.353313595056534,0.0471084751188755,0.934318065643311,0.556439340114594,0.830740511417389,0.0156743489205837,0.613318264484406,-0.133671924471855,-0.7784423828125,-0.434027224779129,-0.852271616458893,0.291981965303421,
- -0.614554464817047,-0.787890315055847,0.0393945164978504,-0.353313595056534,0.0471084751188755,0.934318065643311,-0.614554464817047,-0.787890315055847,0.0393945164978504,-0.434027224779129,-0.852271616458893,0.291981965303421,-0.434027224779129,-0.852271616458893,0.291981965303421,0.613318264484406,-0.133671924471855,-0.7784423828125,-0.0236088763922453,-0.0236088763922453,-0.999442458152771,-0.353313595056534,0.0471084751188755,0.934318065643311,0.189541324973106,0.0710779875516891,0.979296803474426,0.556439340114594,0.830740511417389,0.0156743489205837,-0.434027224779129,-0.852271616458893,0.291981965303421,0.189541324973106,0.0710779875516891,0.979296803474426,-0.353313595056534,0.0471084751188755,0.934318065643311,0.556439340114594,0.830740511417389,0.0156743489205837,0.291176170110703,0.920746207237244,-0.259697645902634,0.0236132685095072,-0.125937432050705,-0.991757214069366,0.556439340114594,0.830740511417389,0.0156743489205837,0.189541324973106,0.0710779875516891,0.979296803474426,0.291176170110703,0.920746207237244,-0.259697645902634,0.291176170110703,0.920746207237244,-0.259697645902634,-0.337319761514664,0.007844646461308,-0.941357553005219,0.0236132685095072,-0.125937432050705,-0.991757214069366,-0.0236088763922453,-0.0236088763922453,-0.999442458152771,-0.205234050750732,-0.734106361865997,0.64727658033371,-0.434027224779129,-0.852271616458893,0.291981965303421,-0.205234050750732,-0.734106361865997,0.64727658033371,0.189541324973106,0.0710779875516891,0.979296803474426,-0.434027224779129,-0.852271616458893,0.291981965303421,-0.205234050750732,-0.734106361865997,0.64727658033371,-0.0236088763922453,-0.0236088763922453,-0.999442458152771,-0.337319761514664,0.007844646461308,-0.941357553005219,-0.205234050750732,-0.734106361865997,0.64727658033371,-0.337319761514664,0.007844646461308,-0.941357553005219,-0.730271458625793,1.5169134534529e-016,-0.683157086372375,0.189541324973106,0.0710779875516891,0.979296803474426,0.810094952583313,0.0707849934697151,0.58201003074646,0.291176170110703,0.920746207237244,-0.259697645902634,
- 0.810094952583313,0.0707849934697151,0.58201003074646,0.189541324973106,0.0710779875516891,0.979296803474426,-0.205234050750732,-0.734106361865997,0.64727658033371,0.433487623929977,0.575356364250183,-0.693580269813538,-0.337319761514664,0.007844646461308,-0.941357553005219,0.291176170110703,0.920746207237244,-0.259697645902634,0.433487623929977,0.575356364250183,-0.693580269813538,0.291176170110703,0.920746207237244,-0.259697645902634,0.810094952583313,0.0707849934697151,0.58201003074646,-0.337319761514664,0.007844646461308,-0.941357553005219,0.433487623929977,0.575356364250183,-0.693580269813538,-0.730181396007538,-0.0157028250396252,-0.683072865009308,0.433487623929977,0.575356364250183,-0.693580269813538,-0.904474973678589,0.0393249988555908,-0.424710005521774,-0.730181396007538,-0.0157028250396252,-0.683072865009308,-0.730271458625793,1.5169134534529e-016,-0.683157086372375,-0.290789216756821,-0.392958402633667,0.872367680072784,-0.205234050750732,-0.734106361865997,0.64727658033371,-0.205234050750732,-0.734106361865997,0.64727658033371,-0.290789216756821,-0.392958402633667,0.872367680072784,0.810094952583313,0.0707849934697151,0.58201003074646,-0.290789216756821,-0.392958402633667,0.872367680072784,-0.730271458625793,1.5169134534529e-016,-0.683157086372375,-0.937211275100708,-0.0393786244094372,-0.346531927585602,0.810094952583313,0.0707849934697151,0.58201003074646,0.849525094032288,0.180917382240295,-0.49555629491806,0.433487623929977,0.575356364250183,-0.693580269813538,-0.290789216756821,-0.392958402633667,0.872367680072784,0.849525094032288,0.180917382240295,-0.49555629491806,0.810094952583313,0.0707849934697151,0.58201003074646,-0.904474973678589,0.0393249988555908,-0.424710005521774,0.433487623929977,0.575356364250183,-0.693580269813538,0.849525094032288,0.180917382240295,-0.49555629491806,-0.937211275100708,-0.0393786244094372,-0.346531927585602,0.329850822687149,0.0549751408398151,0.942430973052979,-0.290789216756821,-0.392958402633667,0.872367680072784,-0.290789216756821,-0.392958402633667,0.872367680072784,
- 0.329850822687149,0.0549751408398151,0.942430973052979,0.849525094032288,0.180917382240295,-0.49555629491806,0.329850822687149,0.0549751408398151,0.942430973052979,-0.937211275100708,-0.0393786244094372,-0.346531927585602,-0.951753377914429,0.00786573067307472,-0.306763470172882,-0.951753377914429,0.00786573067307472,-0.306763470172882,-0.964179635047913,0.148938313126564,-0.21948803961277,0.329850822687149,0.0549751408398151,0.942430973052979,0.329850822687149,0.0549751408398151,0.942430973052979,-0.964179635047913,0.148938313126564,-0.21948803961277,0.0235506091266871,-0.259056687355042,-0.965574979782104,0.24439013004303,-0.21285592019558,-0.94602632522583,-0.904474973678589,0.0393249988555908,-0.424710005521774,0.849525094032288,0.180917382240295,-0.49555629491806,0.849525094032288,0.180917382240295,-0.49555629491806,0.329850822687149,0.0549751408398151,0.942430973052979,0.24439013004303,-0.21285592019558,-0.94602632522583,0.329850822687149,0.0549751408398151,0.942430973052979,0.0235506091266871,-0.259056687355042,-0.965574979782104,0.24439013004303,-0.21285592019558,-0.94602632522583,-0.951753377914429,0.00786573067307472,-0.306763470172882,-0.904474973678589,0.0393249988555908,-0.424710005521774,0.24439013004303,-0.21285592019558,-0.94602632522583,-0.951753377914429,0.00786573067307472,-0.306763470172882,0.24439013004303,-0.21285592019558,-0.94602632522583,0.0235506091266871,-0.259056687355042,-0.965574979782104,-0.968924522399902,0.149671271443367,-0.196935877203941,-0.951753377914429,0.00786573067307472,-0.306763470172882,0.0235506091266871,-0.259056687355042,-0.965574979782104,0.732079267501831,0.259770035743713,0.629745602607727,0.520136713981628,-0.070927731692791,-0.851132810115814,0.505191445350647,-0.13419146835804,-0.852510571479797,0.520136713981628,-0.070927731692791,-0.851132810115814,0.732079267501831,0.259770035743713,0.629745602607727,0.663808703422546,0.466246575117111,0.584783852100372,0.663808703422546,0.466246575117111,0.584783852100372,0.316059917211533,0.126423969864845,-0.940278232097626,
- 0.520136713981628,-0.070927731692791,-0.851132810115814,0.732079267501831,0.259770035743713,0.629745602607727,-0.913499116897583,-0.299249708652496,0.275624722242355,0.663808703422546,0.466246575117111,0.584783852100372,-0.956928968429565,-0.180404648184776,0.227466717362404,-0.913499116897583,-0.299249708652496,0.275624722242355,0.732079267501831,0.259770035743713,0.629745602607727,0.505191445350647,-0.13419146835804,-0.852510571479797,-0.913499116897583,-0.299249708652496,0.275624722242355,-0.956928968429565,-0.180404648184776,0.227466717362404,-0.913499116897583,-0.299249708652496,0.275624722242355,0.505191445350647,-0.13419146835804,-0.852510571479797,0.520136713981628,-0.070927731692791,-0.851132810115814,0.267782956361771,0.141767457127571,0.952992379665375,0.316059917211533,0.126423969864845,-0.940278232097626,0.663808703422546,0.466246575117111,0.584783852100372,0.267782956361771,0.141767457127571,0.952992379665375,0.663808703422546,0.466246575117111,0.584783852100372,-0.913499116897583,-0.299249708652496,0.275624722242355,0.520136713981628,-0.070927731692791,-0.851132810115814,-0.739424347877502,-0.582100033760071,-0.338247299194336,-0.913499116897583,-0.299249708652496,0.275624722242355,-0.739424347877502,-0.582100033760071,-0.338247299194336,0.267782956361771,0.141767457127571,0.952992379665375,-0.913499116897583,-0.299249708652496,0.275624722242355,-0.739424347877502,-0.582100033760071,-0.338247299194336,0.520136713981628,-0.070927731692791,-0.851132810115814,0.173400446772575,0.173400446772575,-0.969466149806976,0.750080525875092,0.36319687962532,-0.552690863609314,0.316059917211533,0.126423969864845,-0.940278232097626,0.267782956361771,0.141767457127571,0.952992379665375,0.750080525875092,0.36319687962532,-0.552690863609314,-0.560376942157745,0.110496863722801,-0.820833802223206,0.316059917211533,0.126423969864845,-0.940278232097626,0.750080525875092,0.36319687962532,-0.552690863609314,0.31598100066185,0.53716766834259,-0.782052993774414,-0.560376942157745,0.110496863722801,-0.820833802223206,-0.739424347877502,-0.582100033760071,-0.338247299194336,
- 0.173400446772575,0.173400446772575,-0.969466149806976,-0.741561114788055,-0.44178107380867,0.504892647266388,-0.739424347877502,-0.582100033760071,-0.338247299194336,-0.741561114788055,-0.44178107380867,0.504892647266388,0.267782956361771,0.141767457127571,0.952992379665375,-0.741561114788055,-0.44178107380867,0.504892647266388,0.173400446772575,0.173400446772575,-0.969466149806976,-0.472792834043503,0.228516533970833,-0.851027071475983,-0.472792834043503,0.228516533970833,-0.851027071475983,0.0629901736974716,0.559037744998932,-0.826746046543121,-0.741561114788055,-0.44178107380867,0.504892647266388,-0.330095231533051,0.59731525182724,-0.73092520236969,-0.741561114788055,-0.44178107380867,0.504892647266388,0.0629901736974716,0.559037744998932,-0.826746046543121,-0.692055821418762,-0.353892177343369,0.629141628742218,-0.741561114788055,-0.44178107380867,0.504892647266388,-0.330095231533051,0.59731525182724,-0.73092520236969,0.750080525875092,0.36319687962532,-0.552690863609314,0.267782956361771,0.141767457127571,0.952992379665375,0.441781163215637,-0.362891644239426,0.820450663566589,0.441781163215637,-0.362891644239426,0.820450663566589,0.267782956361771,0.141767457127571,0.952992379665375,-0.741561114788055,-0.44178107380867,0.504892647266388,0.441781163215637,-0.362891644239426,0.820450663566589,-0.741561114788055,-0.44178107380867,0.504892647266388,-0.692055821418762,-0.353892177343369,0.629141628742218,0.750080525875092,0.36319687962532,-0.552690863609314,0.441781163215637,-0.362891644239426,0.820450663566589,0.31598100066185,0.53716766834259,-0.782052993774414,0.976983845233917,0.015757804736495,-0.21273036301136,0.441781163215637,-0.362891644239426,0.820450663566589,-0.692055821418762,-0.353892177343369,0.629141628742218,0.976983845233917,0.015757804736495,-0.21273036301136,0.31598100066185,0.53716766834259,-0.782052993774414,0.441781163215637,-0.362891644239426,0.820450663566589,-0.692055821418762,-0.353892177343369,0.629141628742218,0.833200514316559,0.0550226718187332,-0.55022668838501,0.976983845233917,0.015757804736495,-0.21273036301136,
- -0.267807871103287,0.543492436408997,-0.79554694890976,0.31598100066185,0.53716766834259,-0.782052993774414,0.976983845233917,0.015757804736495,-0.21273036301136,-0.267286002635956,0.19653382897377,-0.943362414836884,0.976983845233917,0.015757804736495,-0.21273036301136,0.833200514316559,0.0550226718187332,-0.55022668838501,0.976983845233917,0.015757804736495,-0.21273036301136,-0.267286002635956,0.19653382897377,-0.943362414836884,-0.267807871103287,0.543492436408997,-0.79554694890976,-0.315862745046616,0.36324217915535,0.87651914358139,0.706561863422394,0.667308390140533,-0.235520631074905,-0.98507684469223,0.165492907166481,0.0472836866974831,0.244268715381622,-0.0315185450017452,-0.969195246696472,-0.916002035140991,0.39482843875885,-0.0710691213607788,0.706561863422394,0.667308390140533,-0.235520631074905,-0.315862745046616,0.36324217915535,0.87651914358139,0.857284963130951,0.487629979848862,0.165164992213249,0.706561863422394,0.667308390140533,-0.235520631074905,0.857284963130951,0.487629979848862,0.165164992213249,0.244268715381622,-0.0315185450017452,-0.969195246696472,0.706561863422394,0.667308390140533,-0.235520631074905,0.857284963130951,0.487629979848862,0.165164992213249,-0.315862745046616,0.36324217915535,0.87651914358139,-0.17344357073307,0.299584358930588,0.938172042369843,0.244268715381622,-0.0315185450017452,-0.969195246696472,0.857284963130951,0.487629979848862,0.165164992213249,0.409842848777771,-0.197039842605591,-0.890620112419128,0.409842848777771,-0.197039842605591,-0.890620112419128,-0.765251755714417,-0.607467889785767,-0.213008224964142,0.244268715381622,-0.0315185450017452,-0.969195246696472,0.967394948005676,-0.204489976167679,0.149434998631477,0.857284963130951,0.487629979848862,0.165164992213249,-0.17344357073307,0.299584358930588,0.938172042369843,-0.17344357073307,0.299584358930588,0.938172042369843,-0.149899333715439,0.18934653699398,0.970400989055634,0.967394948005676,-0.204489976167679,0.149434998631477,0.967394948005676,-0.204489976167679,0.149434998631477,-0.149899333715439,0.18934653699398,0.970400989055634,
- -0.125956922769547,-0.0157446153461933,0.991910755634308,0.857284963130951,0.487629979848862,0.165164992213249,0.316059917211533,-0.126423969864845,-0.940278232097626,0.409842848777771,-0.197039842605591,-0.890620112419128,0.857284963130951,0.487629979848862,0.165164992213249,0.967394948005676,-0.204489976167679,0.149434998631477,0.316059917211533,-0.126423969864845,-0.940278232097626,-0.765251755714417,-0.607467889785767,-0.213008224964142,0.409842848777771,-0.197039842605591,-0.890620112419128,-0.847848057746887,-0.478877127170563,-0.227662891149521,0.316059917211533,-0.126423969864845,-0.940278232097626,-0.847848057746887,-0.478877127170563,-0.227662891149521,0.409842848777771,-0.197039842605591,-0.890620112419128,-0.268082439899445,0.181349888443947,0.946173369884491,-0.306924909353256,0.377753734588623,0.873555481433868,-0.765251755714417,-0.607467889785767,-0.213008224964142,-0.765251755714417,-0.607467889785767,-0.213008224964142,-0.847848057746887,-0.478877127170563,-0.227662891149521,-0.268082439899445,0.181349888443947,0.946173369884491,-0.960243046283722,0.181029424071312,-0.212512791156769,-0.268082439899445,0.181349888443947,0.946173369884491,-0.847848057746887,-0.478877127170563,-0.227662891149521,-0.847848057746887,-0.478877127170563,-0.227662891149521,0.316059917211533,-0.126423969864845,-0.940278232097626,-0.960243046283722,0.181029424071312,-0.212512791156769,-0.268082439899445,0.181349888443947,0.946173369884491,-0.960243046283722,0.181029424071312,-0.212512791156769,-0.149899333715439,0.18934653699398,0.970400989055634,-0.149899333715439,0.18934653699398,0.970400989055634,-0.960243046283722,0.181029424071312,-0.212512791156769,-0.0869273319840431,-0.0316099375486374,0.99571305513382,-0.802031576633453,0.558276832103729,0.212302476167679,-0.0869273319840431,-0.0316099375486374,0.99571305513382,-0.960243046283722,0.181029424071312,-0.212512791156769,-0.960243046283722,0.181029424071312,-0.212512791156769,0.316059917211533,-0.126423969864845,-0.940278232097626,-0.802031576633453,0.558276832103729,0.212302476167679,
- -0.0869273319840431,-0.0316099375486374,0.99571305513382,-0.802031576633453,0.558276832103729,0.212302476167679,0.0867973417043686,-0.0631253346800804,0.994224011898041,0.410161525011063,0.0946526676416397,0.907087981700897,0.0867973417043686,-0.0631253346800804,0.994224011898041,-0.802031576633453,0.558276832103729,0.212302476167679,0.940219521522522,-0.0237030144780874,0.339743196964264,0.410161525011063,0.0946526676416397,0.907087981700897,-0.802031576633453,0.558276832103729,0.212302476167679,-0.802031576633453,0.558276832103729,0.212302476167679,0.316059917211533,-0.126423969864845,-0.940278232097626,-0.197481960058212,-0.0394963920116425,-0.979510545730591,0.967394948005676,-0.204489976167679,0.149434998631477,-0.197481960058212,-0.0394963920116425,-0.979510545730591,0.316059917211533,-0.126423969864845,-0.940278232097626,-0.802031576633453,0.558276832103729,0.212302476167679,-0.196752861142159,0.724050462245941,0.661089539527893,0.940219521522522,-0.0237030144780874,0.339743196964264,-0.196752861142159,0.724050462245941,0.661089539527893,0.821961045265198,-0.0237104166299105,-0.569049954414368,0.940219521522522,-0.0237030144780874,0.339743196964264,-0.802031576633453,0.558276832103729,0.212302476167679,-0.986149191856384,-0.00788919348269701,-0.165673062205315,-0.196752861142159,0.724050462245941,0.661089539527893,-0.986149191856384,-0.00788919348269701,-0.165673062205315,-0.802031576633453,0.558276832103729,0.212302476167679,-0.197481960058212,-0.0394963920116425,-0.979510545730591,0.821961045265198,-0.0237104166299105,-0.569049954414368,-0.196752861142159,0.724050462245941,0.661089539527893,0.409055888652802,0.660782635211945,0.629316806793213,-0.986149191856384,-0.00788919348269701,-0.165673062205315,0.409055888652802,0.660782635211945,0.629316806793213,-0.196752861142159,0.724050462245941,0.661089539527893,-0.197481960058212,-0.0394963920116425,-0.979510545730591,0.967394948005676,-0.204489976167679,0.149434998631477,0.754410266876221,-0.557949244976044,-0.345771372318268,-0.125956922769547,-0.0157446153461933,0.991910755634308,
- 0.754410266876221,-0.557949244976044,-0.345771372318268,0.967394948005676,-0.204489976167679,0.149434998631477,0.754410266876221,-0.557949244976044,-0.345771372318268,-0.125956922769547,-0.0157446153461933,0.991910755634308,0.0867973417043686,-0.0631253346800804,0.994224011898041,0.463991940021515,0.0943712443113327,0.880798280239105,0.754410266876221,-0.557949244976044,-0.345771372318268,0.0867973417043686,-0.0631253346800804,0.994224011898041,-0.0078444043174386,-0.745218396186829,-0.666774332523346,-0.197481960058212,-0.0394963920116425,-0.979510545730591,0.754410266876221,-0.557949244976044,-0.345771372318268,-0.0078444043174386,-0.745218396186829,-0.666774332523346,0.754410266876221,-0.557949244976044,-0.345771372318268,0.463991940021515,0.0943712443113327,0.880798280239105,-0.197481960058212,-0.0394963920116425,-0.979510545730591,-0.0078444043174386,-0.745218396186829,-0.666774332523346,-0.986149191856384,-0.00788919348269701,-0.165673062205315,0.463991940021515,0.0943712443113327,0.880798280239105,0.971368849277496,0.0631784573197365,0.229021921753883,-0.0078444043174386,-0.745218396186829,-0.666774332523346,0.971368849277496,0.0631784573197365,0.229021921753883,0.805625855922699,-0.00789829343557358,-0.592372000217438,-0.0078444043174386,-0.745218396186829,-0.666774332523346,-0.809619307518005,0.0786038190126419,0.581668317317963,-0.986149191856384,-0.00788919348269701,-0.165673062205315,-0.0078444043174386,-0.745218396186829,-0.666774332523346,0.409055888652802,0.660782635211945,0.629316806793213,-0.986149191856384,-0.00788919348269701,-0.165673062205315,-0.809619307518005,0.0786038190126419,0.581668317317963,-0.0078444043174386,-0.745218396186829,-0.666774332523346,0.805625855922699,-0.00789829343557358,-0.592372000217438,-0.771653532981873,-0.590551197528839,-0.236220479011536,-0.771653532981873,-0.590551197528839,-0.236220479011536,-0.809619307518005,0.0786038190126419,0.581668317317963,-0.0078444043174386,-0.745218396186829,-0.666774332523346,-0.771653532981873,-0.590551197528839,-0.236220479011536,0.805625855922699,-0.00789829343557358,-0.592372000217438,
- 0.268324434757233,-0.0315675809979439,-0.962811231613159,-0.35498058795929,0.0867730304598808,-0.93083792924881,-0.771653532981873,-0.590551197528839,-0.236220479011536,0.268324434757233,-0.0315675809979439,-0.962811231613159,-0.771653532981873,-0.590551197528839,-0.236220479011536,-0.35498058795929,0.0867730304598808,-0.93083792924881,-0.91180431842804,-0.408739864826202,-0.039301909506321,-0.809619307518005,0.0786038190126419,0.581668317317963,-0.771653532981873,-0.590551197528839,-0.236220479011536,-0.0235971882939339,0.0393286496400833,0.99894767999649,-0.91180431842804,-0.408739864826202,-0.039301909506321,-0.0235971882939339,0.0393286496400833,0.99894767999649,-0.771653532981873,-0.590551197528839,-0.236220479011536,-0.0235971882939339,0.0393286496400833,0.99894767999649,0.409055888652802,0.660782635211945,0.629316806793213,-0.809619307518005,0.0786038190126419,0.581668317317963,0.5902219414711,-0.401350885629654,0.700396716594696,-0.0235971882939339,0.0393286496400833,0.99894767999649,-0.91180431842804,-0.408739864826202,-0.039301909506321,0.5902219414711,-0.401350885629654,0.700396716594696,-0.91180431842804,-0.408739864826202,-0.039301909506321,-0.922289669513702,0.0788281783461571,-0.378375262022018,0.409055888652802,0.660782635211945,0.629316806793213,-0.0235971882939339,0.0393286496400833,0.99894767999649,0.881999254226685,0.464624583721161,0.0787499323487282,0.5902219414711,-0.401350885629654,0.700396716594696,0.881999254226685,0.464624583721161,0.0787499323487282,-0.0235971882939339,0.0393286496400833,0.99894767999649,0.881999254226685,0.464624583721161,0.0787499323487282,0.821961045265198,-0.0237104166299105,-0.569049954414368,0.409055888652802,0.660782635211945,0.629316806793213,0.821961045265198,-0.0237104166299105,-0.569049954414368,0.881999254226685,0.464624583721161,0.0787499323487282,0.323306024074554,0.00788551289588213,-0.946261584758759,0.881999254226685,0.464624583721161,0.0787499323487282,-0.35498058795929,0.0867730304598808,-0.93083792924881,0.323306024074554,0.00788551289588213,-0.946261584758759,
- -0.993605554103851,0.0236572753638029,0.11040061712265,0.5902219414711,-0.401350885629654,0.700396716594696,-0.922289669513702,0.0788281783461571,-0.378375262022018,0.69045627117157,0.470765650272369,-0.549226582050323,-0.35498058795929,0.0867730304598808,-0.93083792924881,0.881999254226685,0.464624583721161,0.0787499323487282,0.881999254226685,0.464624583721161,0.0787499323487282,0.5902219414711,-0.401350885629654,0.700396716594696,0.69045627117157,0.470765650272369,-0.549226582050323,-0.35498058795929,0.0867730304598808,-0.93083792924881,0.69045627117157,0.470765650272369,-0.549226582050323,-0.763472020626068,0.0236125364899635,-0.645409286022186,0.69045627117157,0.470765650272369,-0.549226582050323,-0.922289669513702,0.0788281783461571,-0.378375262022018,-0.763472020626068,0.0236125364899635,-0.645409286022186,-0.922289669513702,0.0788281783461571,-0.378375262022018,0.69045627117157,0.470765650272369,-0.549226582050323,0.251773446798325,0.778924107551575,-0.574358224868774,0.69045627117157,0.470765650272369,-0.549226582050323,0.5902219414711,-0.401350885629654,0.700396716594696,0.251773446798325,0.778924107551575,-0.574358224868774,0.251773446798325,0.778924107551575,-0.574358224868774,-0.993605554103851,0.0236572753638029,0.11040061712265,-0.922289669513702,0.0788281783461571,-0.378375262022018,-0.748472511768341,0.110301204025745,0.653928577899933,-0.993605554103851,0.0236572753638029,0.11040061712265,0.251773446798325,0.778924107551575,-0.574358224868774,0.856728792190552,-0.510893285274506,-0.0707390680909157,0.5902219414711,-0.401350885629654,0.700396716594696,-0.993605554103851,0.0236572753638029,0.11040061712265,0.251773446798325,0.778924107551575,-0.574358224868774,0.5902219414711,-0.401350885629654,0.700396716594696,0.856728792190552,-0.510893285274506,-0.0707390680909157,0.856728792190552,-0.510893285274506,-0.0707390680909157,-0.993605554103851,0.0236572753638029,0.11040061712265,-0.748472511768341,0.110301204025745,0.653928577899933,0.251773446798325,0.778924107551575,-0.574358224868774,-0.157499849796295,0.834749221801758,-0.527624487876892,
- -0.748472511768341,0.110301204025745,0.653928577899933,0.251773446798325,0.778924107551575,-0.574358224868774,0.856728792190552,-0.510893285274506,-0.0707390680909157,-0.157499849796295,0.834749221801758,-0.527624487876892,-0.157499849796295,0.834749221801758,-0.527624487876892,-0.339711368083954,0.173805832862854,0.924330949783325,-0.748472511768341,0.110301204025745,0.653928577899933,0.378657728433609,-0.875645995140076,0.299770712852478,0.856728792190552,-0.510893285274506,-0.0707390680909157,-0.748472511768341,0.110301204025745,0.653928577899933,0.378657728433609,-0.875645995140076,0.299770712852478,-0.748472511768341,0.110301204025745,0.653928577899933,-0.339711368083954,0.173805832862854,0.924330949783325,-0.339711368083954,0.173805832862854,0.924330949783325,0.511478185653687,-0.519347071647644,0.684593856334686,0.378657728433609,-0.875645995140076,0.299770712852478,-0.243777304887772,0.306687563657761,-0.920062720775604,-0.157499849796295,0.834749221801758,-0.527624487876892,0.856728792190552,-0.510893285274506,-0.0707390680909157,0.856728792190552,-0.510893285274506,-0.0707390680909157,0.378657728433609,-0.875645995140076,0.299770712852478,-0.243777304887772,0.306687563657761,-0.920062720775604,-0.157499849796295,0.834749221801758,-0.527624487876892,-0.243777304887772,0.306687563657761,-0.920062720775604,-0.339711368083954,0.173805832862854,0.924330949783325,0.511478185653687,-0.519347071647644,0.684593856334686,-0.243777304887772,0.306687563657761,-0.920062720775604,0.378657728433609,-0.875645995140076,0.299770712852478,-0.243777304887772,0.306687563657761,-0.920062720775604,0.511478185653687,-0.519347071647644,0.684593856334686,-0.339711368083954,0.173805832862854,0.924330949783325,0.392958402633667,0.730902671813965,-0.558000922203064,-0.740432977676392,0.661663472652435,-0.11815420538187,-0.708859205245972,-0.283543676137924,0.645849525928497,-0.740432977676392,0.661663472652435,-0.11815420538187,0.0787304043769836,0.724319696426392,-0.684954464435577,-0.86368203163147,-0.478950947523117,-0.157033085823059,
- -0.708859205245972,-0.283543676137924,0.645849525928497,-0.740432977676392,0.661663472652435,-0.11815420538187,0.425473928451538,-0.898222744464874,0.110308058559895,-0.86368203163147,-0.478950947523117,-0.157033085823059,0.425473928451538,-0.898222744464874,0.110308058559895,-0.740432977676392,0.661663472652435,-0.11815420538187,0.425473928451538,-0.898222744464874,0.110308058559895,0.526906073093414,0.534770369529724,-0.660598695278168,-0.708859205245972,-0.283543676137924,0.645849525928497,0.425473928451538,-0.898222744464874,0.110308058559895,-0.86368203163147,-0.478950947523117,-0.157033085823059,0.818086445331573,0.574233829975128,0.0314648672938347,0.526906073093414,0.534770369529724,-0.660598695278168,0.425473928451538,-0.898222744464874,0.110308058559895,0.0945732519030571,0.914208054542542,-0.394055187702179,0.818086445331573,0.574233829975128,0.0314648672938347,0.0945732519030571,0.914208054542542,-0.394055187702179,0.425473928451538,-0.898222744464874,0.110308058559895,0.747799694538116,0.118073642253876,-0.653340816497803,0.386246085166931,-0.0157651454210281,0.92226105928421,0.71671324968338,0.220527172088623,-0.661581456661224,0.386246085166931,-0.0157651454210281,0.92226105928421,0.747799694538116,0.118073642253876,-0.653340816497803,-0.141890704631805,0.291664272546768,0.945938169956207,0.772252261638641,-0.0788012519478798,-0.630410015583038,-0.141890704631805,0.291664272546768,0.945938169956207,0.747799694538116,0.118073642253876,-0.653340816497803,-0.575588822364807,-0.520395338535309,-0.630782246589661,0.386246085166931,-0.0157651454210281,0.92226105928421,-0.141890704631805,0.291664272546768,0.945938169956207,0.550703287124634,0.165210992097855,-0.818187773227692,0.386246085166931,-0.0157651454210281,0.92226105928421,-0.575588822364807,-0.520395338535309,-0.630782246589661,0.550703287124634,0.165210992097855,-0.818187773227692,-0.575588822364807,-0.520395338535309,-0.630782246589661,0.738419830799103,0.0942663550376892,-0.667720019817352,-0.575588822364807,-0.520395338535309,-0.630782246589661,
- 0.772252261638641,-0.0788012519478798,-0.630410015583038,0.738419830799103,0.0942663550376892,-0.667720019817352,-0.575588822364807,-0.520395338535309,-0.630782246589661,0.764823436737061,-0.236543342471123,-0.5992431640625,0.772252261638641,-0.0788012519478798,-0.630410015583038,-0.575588822364807,-0.520395338535309,-0.630782246589661,-0.141890704631805,0.291664272546768,0.945938169956207,-0.978229522705078,-0.205112636089325,-0.0315557904541492,0.764823436737061,-0.236543342471123,-0.5992431640625,-0.575588822364807,-0.520395338535309,-0.630782246589661,-0.978229522705078,-0.205112636089325,-0.0315557904541492,0.772252261638641,-0.0788012519478798,-0.630410015583038,0.537772119045258,0.498230040073395,0.680123507976532,-0.141890704631805,0.291664272546768,0.945938169956207,-0.978229522705078,-0.205112636089325,-0.0315557904541492,-0.141890704631805,0.291664272546768,0.945938169956207,0.537772119045258,0.498230040073395,0.680123507976532,0.537772119045258,0.498230040073395,0.680123507976532,0.772252261638641,-0.0788012519478798,-0.630410015583038,0.764823436737061,-0.236543342471123,-0.5992431640625,0.737442016601563,-0.34518563747406,-0.580539524555206,0.537772119045258,0.498230040073395,0.680123507976532,0.764823436737061,-0.236543342471123,-0.5992431640625,-0.978229522705078,-0.205112636089325,-0.0315557904541492,-0.653340816497803,-0.118073642253876,-0.747799694538116,0.764823436737061,-0.236543342471123,-0.5992431640625,0.764823436737061,-0.236543342471123,-0.5992431640625,-0.653340816497803,-0.118073642253876,-0.747799694538116,0.774225890636444,-0.260708719491959,-0.576719343662262,0.774225890636444,-0.260708719491959,-0.576719343662262,-0.653340816497803,-0.118073642253876,-0.747799694538116,0.607014715671539,0.149782851338387,-0.780447483062744,0.537772119045258,0.498230040073395,0.680123507976532,-0.797031760215759,0.071022629737854,0.599746704101563,-0.978229522705078,-0.205112636089325,-0.0315557904541492,-0.653340816497803,-0.118073642253876,-0.747799694538116,-0.978229522705078,-0.205112636089325,-0.0315557904541492,
- -0.797031760215759,0.071022629737854,0.599746704101563,-0.653340816497803,-0.118073642253876,-0.747799694538116,-0.660353660583496,0.133643001317978,-0.73896723985672,0.607014715671539,0.149782851338387,-0.780447483062744,0.607014715671539,0.149782851338387,-0.780447483062744,-0.660353660583496,0.133643001317978,-0.73896723985672,0.638171255588531,0.236359730362892,-0.73271518945694,-0.797031760215759,0.071022629737854,0.599746704101563,-0.660353660583496,0.133643001317978,-0.73896723985672,-0.653340816497803,-0.118073642253876,-0.747799694538116,-0.660353660583496,0.133643001317978,-0.73896723985672,-0.797031760215759,0.071022629737854,0.599746704101563,0.0868379026651382,-0.331562876701355,0.939428150653839,-0.797031760215759,0.071022629737854,0.599746704101563,0.537772119045258,0.498230040073395,0.680123507976532,0.718767046928406,0.0157970786094666,0.695071458816528,0.718767046928406,0.0157970786094666,0.695071458816528,0.0868379026651382,-0.331562876701355,0.939428150653839,-0.797031760215759,0.071022629737854,0.599746704101563,0.537772119045258,0.498230040073395,0.680123507976532,0.737442016601563,-0.34518563747406,-0.580539524555206,0.718767046928406,0.0157970786094666,0.695071458816528,0.718767046928406,0.0157970786094666,0.695071458816528,0.638171255588531,0.236359730362892,-0.73271518945694,0.0868379026651382,-0.331562876701355,0.939428150653839,0.607014715671539,0.149782851338387,-0.780447483062744,0.718767046928406,0.0157970786094666,0.695071458816528,0.737442016601563,-0.34518563747406,-0.580539524555206,0.607014715671539,0.149782851338387,-0.780447483062744,0.638171255588531,0.236359730362892,-0.73271518945694,0.718767046928406,0.0157970786094666,0.695071458816528,-0.86368203163147,-0.478950947523117,0.157033085823059,-0.559384703636169,-0.488476783037186,0.669685900211334,0.678745329380035,-0.260448813438416,0.686637699604034,-0.204908728599548,0.252195358276367,-0.945732593536377,-0.559384703636169,-0.488476783037186,0.669685900211334,-0.86368203163147,-0.478950947523117,0.157033085823059,-0.204908728599548,0.252195358276367,-0.945732593536377,
- -0.86368203163147,-0.478950947523117,0.157033085823059,0.275752991437912,0.583020687103271,-0.764229774475098,-0.204908728599548,0.252195358276367,-0.945732593536377,0.275752991437912,0.583020687103271,-0.764229774475098,0.884636402130127,0.205362021923065,0.418622583150864,-0.204908728599548,0.252195358276367,-0.945732593536377,0.102397128939629,-0.35445162653923,-0.929450869560242,-0.559384703636169,-0.488476783037186,0.669685900211334,-0.497763335704803,0.102713063359261,0.861209571361542,-0.559384703636169,-0.488476783037186,0.669685900211334,0.102397128939629,-0.35445162653923,-0.929450869560242,-0.204908728599548,0.252195358276367,-0.945732593536377,0.884636402130127,0.205362021923065,0.418622583150864,0.848816394805908,0.526580512523651,-0.0471564643085003,0.102397128939629,-0.35445162653923,-0.929450869560242,-0.204908728599548,0.252195358276367,-0.945732593536377,0.848816394805908,0.526580512523651,-0.0471564643085003,0.102397128939629,-0.35445162653923,-0.929450869560242,0.848816394805908,0.526580512523651,-0.0471564643085003,-0.497763335704803,0.102713063359261,0.861209571361542,0.884636402130127,0.205362021923065,0.418622583150864,0.0550277754664421,-0.369472205638886,0.92761105298996,0.848816394805908,0.526580512523651,-0.0471564643085003,-0.497763335704803,0.102713063359261,0.861209571361542,0.848816394805908,0.526580512523651,-0.0471564643085003,0.0550277754664421,-0.369472205638886,0.92761105298996,-0.615606188774109,-0.102601028978825,0.781346321105957,-0.693623423576355,0.662095010280609,-0.283755004405975,0.180688336491585,-0.840593576431274,0.510640919208527,0.180688336491585,-0.840593576431274,0.510640919208527,0.898390054702759,-0.0709255263209343,-0.433433800935745,-0.615606188774109,-0.102601028978825,0.781346321105957,-0.283754974603653,0.662094950675964,-0.69362336397171,0.898390054702759,-0.0709255263209343,-0.433433800935745,0.180688336491585,-0.840593576431274,0.510640919208527,-0.283754974603653,0.662094950675964,-0.69362336397171,-0.966677665710449,0.243634209036827,-0.0785916820168495,
- 0.898390054702759,-0.0709255263209343,-0.433433800935745,0.898390054702759,-0.0709255263209343,-0.433433800935745,-0.966677665710449,0.243634209036827,-0.0785916820168495,-0.926838159561157,0.102109283208847,-0.361309796571732,0.989186525344849,0.141312345862389,0.0392534323036671,-0.615606188774109,-0.102601028978825,0.781346321105957,0.898390054702759,-0.0709255263209343,-0.433433800935745,-0.926838159561157,0.102109283208847,-0.361309796571732,0.989186525344849,0.141312345862389,0.0392534323036671,0.898390054702759,-0.0709255263209343,-0.433433800935745,-0.615606188774109,-0.102601028978825,0.781346321105957,0.989186525344849,0.141312345862389,0.0392534323036671,-0.833819031715393,-0.416909515857697,0.361845970153809,-0.926838159561157,0.102109283208847,-0.361309796571732,-0.991757094860077,-0.0236132647842169,-0.125937417149544,0.118132218718529,0.370147615671158,-0.921431243419647,-0.926838159561157,0.102109283208847,-0.361309796571732,0.118132218718529,0.370147615671158,-0.921431243419647,0.989186525344849,0.141312345862389,0.0392534323036671,0.441382944583893,-0.346800893545151,0.82759302854538,-0.833819031715393,-0.416909515857697,0.361845970153809,0.989186525344849,0.141312345862389,0.0392534323036671,0.118132218718529,0.370147615671158,-0.921431243419647,0.441382944583893,-0.346800893545151,0.82759302854538,0.989186525344849,0.141312345862389,0.0392534323036671,-0.833819031715393,-0.416909515857697,0.361845970153809,0.441382944583893,-0.346800893545151,0.82759302854538,-0.990989983081818,-0.00786499958485365,-0.133704990148544,0.441382944583893,-0.346800893545151,0.82759302854538,0.118132218718529,0.370147615671158,-0.921431243419647,-0.990989983081818,-0.00786499958485365,-0.133704990148544,0.730361521244049,-0.651827991008759,-0.204187080264091,-0.858880341053009,0.307305812835693,0.409741044044495,-0.689671277999878,-0.125394776463509,0.713182806968689,-0.858880341053009,0.307305812835693,0.409741044044495,0.730361521244049,-0.651827991008759,-0.204187080264091,0.569192171096802,0.561286747455597,-0.600813984870911,
- -0.689671277999878,-0.125394776463509,0.713182806968689,0.267451345920563,-0.645029723644257,0.71582567691803,0.730361521244049,-0.651827991008759,-0.204187080264091,-0.353498876094818,0.816975116729736,-0.455620735883713,0.569192171096802,0.561286747455597,-0.600813984870911,0.730361521244049,-0.651827991008759,-0.204187080264091,-0.353498876094818,0.816975116729736,-0.455620735883713,0.730361521244049,-0.651827991008759,-0.204187080264091,0.267451345920563,-0.645029723644257,0.71582567691803,0.569192171096802,0.561286747455597,-0.600813984870911,-0.353498876094818,0.816975116729736,-0.455620735883713,-0.858880341053009,0.307305812835693,0.409741044044495,0.267451345920563,-0.645029723644257,0.71582567691803,-0.701745271682739,-0.0630782321095467,0.709630072116852,-0.353498876094818,0.816975116729736,-0.455620735883713,-0.858880341053009,0.307305812835693,0.409741044044495,-0.353498876094818,0.816975116729736,-0.455620735883713,-0.701745271682739,-0.0630782321095467,0.709630072116852,-0.0471389964222908,-0.48710298538208,-0.872071444988251,0.582550764083862,-0.582550764083862,0.566806137561798,0.321987330913544,-0.329840660095215,-0.887428462505341,0.582550764083862,-0.582550764083862,0.566806137561798,-0.0471389964222908,-0.48710298538208,-0.872071444988251,0.266865760087967,-0.204073831439018,0.941879272460938,0.582550764083862,-0.582550764083862,0.566806137561798,0.732260763645172,-0.125980347394943,-0.669270575046539,0.321987330913544,-0.329840660095215,-0.887428462505341,0.266865760087967,-0.204073831439018,0.941879272460938,-0.645269334316254,0.692484200000763,0.322634667158127,0.582550764083862,-0.582550764083862,0.566806137561798,-0.645269334316254,0.692484200000763,0.322634667158127,0.266865760087967,-0.204073831439018,0.941879272460938,-0.0471389964222908,-0.48710298538208,-0.872071444988251,-0.0471389964222908,-0.48710298538208,-0.872071444988251,0.362835168838501,-0.244519352912903,-0.899200141429901,-0.645269334316254,0.692484200000763,0.322634667158127,0.732260763645172,-0.125980347394943,-0.669270575046539,
- 0.582550764083862,-0.582550764083862,0.566806137561798,-0.11026357114315,-0.33079069852829,0.937240362167358,-0.11026357114315,-0.33079069852829,0.937240362167358,0.582550764083862,-0.582550764083862,0.566806137561798,-0.645269334316254,0.692484200000763,0.322634667158127,-0.11026357114315,-0.33079069852829,0.937240362167358,0.921688556671143,-0.18906432390213,-0.338740229606628,0.732260763645172,-0.125980347394943,-0.669270575046539,-0.433326184749603,0.464840799570084,-0.772108435630798,-0.645269334316254,0.692484200000763,0.322634667158127,0.362835168838501,-0.244519352912903,-0.899200141429901,-0.645269334316254,0.692484200000763,0.322634667158127,-0.433326184749603,0.464840799570084,-0.772108435630798,-0.11026357114315,-0.33079069852829,0.937240362167358,-0.433326184749603,0.464840799570084,-0.772108435630798,0.362835168838501,-0.244519352912903,-0.899200141429901,0.732260763645172,-0.125980347394943,-0.669270575046539,-0.433326184749603,0.464840799570084,-0.772108435630798,0.732260763645172,-0.125980347394943,-0.669270575046539,0.921688556671143,-0.18906432390213,-0.338740229606628,0.921688556671143,-0.18906432390213,-0.338740229606628,-0.11026357114315,-0.33079069852829,0.937240362167358,-0.471259117126465,-0.557656586170197,0.6833256483078,-0.433326184749603,0.464840799570084,-0.772108435630798,-0.471259117126465,-0.557656586170197,0.6833256483078,-0.11026357114315,-0.33079069852829,0.937240362167358,0.921688556671143,-0.18906432390213,-0.338740229606628,-0.471259117126465,-0.557656586170197,0.6833256483078,0.98777973651886,-0.134338036179543,-0.0790223777294159,-0.471259117126465,-0.557656586170197,0.6833256483078,0.41072404384613,0.86883932352066,-0.276448875665665,0.98777973651886,-0.134338036179543,-0.0790223777294159,-0.842180371284485,0.448638111352921,-0.299092084169388,-0.433326184749603,0.464840799570084,-0.772108435630798,0.921688556671143,-0.18906432390213,-0.338740229606628,-0.433326184749603,0.464840799570084,-0.772108435630798,-0.842180371284485,0.448638111352921,-0.299092084169388,-0.471259117126465,-0.557656586170197,0.6833256483078,
- -0.842180371284485,0.448638111352921,-0.299092084169388,0.41072404384613,0.86883932352066,-0.276448875665665,-0.471259117126465,-0.557656586170197,0.6833256483078,-0.842180371284485,0.448638111352921,-0.299092084169388,0.921688556671143,-0.18906432390213,-0.338740229606628,0.988851487636566,0.0470881685614586,-0.141264483332634,-0.842180371284485,0.448638111352921,-0.299092084169388,0.988851487636566,0.0470881685614586,-0.141264483332634,0.41072404384613,0.86883932352066,-0.276448875665665
- }
- NormalsW: *1317 {
- 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
- }
- }
- LayerElementBinormal: 0 {
- Version: 102
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *3951 {
- a: -0.54783833026886,-0.0695804059505463,0.833685696125031,-0.645321130752563,-0.670259118080139,0.366488009691238,-0.563208162784576,-0.823303282260895,0.0704862251877785,-0.681457340717316,-0.532562792301178,0.501988887786865,0.328631937503815,-0.88034999370575,-0.342030793428421,0.524277627468109,0.774409115314484,-0.354151695966721,-0.645486831665039,-0.758829474449158,0.0867448002099991,-0.564904808998108,-0.649097204208374,0.509465754032135,0.210089534521103,0.280363351106644,0.936620950698853,-0.363642126321793,-0.789202332496643,0.494898021221161,-0.414075940847397,-0.747583329677582,0.51928836107254,-0.30226269364357,-0.833096981048584,0.463235259056091,-0.430457532405853,-0.8599494099617,0.274214029312134,-0.292312115430832,-0.892297267913818,0.344034045934677,-0.620141863822937,-0.769108831882477,0.154582619667053,-0.79173070192337,0.127828046679497,0.597346246242523,-0.692892789840698,-0.0103066116571426,0.720966935157776,0.806292533874512,-0.152945518493652,-0.571401834487915,-0.427791744470596,0.808294415473938,0.404542148113251,0.779310882091522,-0.13959276676178,-0.610891580581665,-0.748101413249969,-0.390028178691864,0.536863505840302,-0.784944713115692,0.0164919793605804,0.61934632062912,-0.914002060890198,0.30238339304924,-0.270489513874054,-0.726467192173004,-0.0172274820506573,0.686985194683075,0.133086353540421,0.983081340789795,-0.125853389501572,-0.816459774971008,-0.210120990872383,0.537812888622284,-0.837099432945251,0.0936982333660126,0.538966834545136,0.57801365852356,-0.441655337810516,0.686178386211395,0.536971569061279,-0.435636043548584,0.722414553165436,0.846545159816742,-0.199938714504242,-0.493341684341431,0.528093874454498,0.191598162055016,0.827288925647736,0.534149289131165,-0.405302405357361,0.741899251937866,0.478444397449493,-0.617616832256317,0.624211966991425,0.550584256649017,-0.385787755250931,0.740286946296692,-0.0197501908987761,-0.611832797527313,0.790740489959717,-0.932658910751343,-0.0313562862575054,-0.359394073486328,-0.019014110788703,0.99897688627243,0.0410328507423401,
- 0.490048557519913,-0.394131034612656,0.777504444122314,0.467379450798035,-0.494279563426971,0.732969462871552,0.379846185445786,-0.890560209751129,0.250238597393036,0.985130727291107,0.0522959381341934,-0.163654267787933,-0.903769135475159,-0.345585018396378,0.252532035112381,-0.0125539619475603,-0.995522975921631,-0.0936834290623665,-0.186414957046509,0.944741785526276,-0.269652515649796,0.261551976203918,-0.873511075973511,0.41057151556015,0.994720101356506,-0.00701233465224504,-0.102385014295578,-0.278986185789108,0.926704823970795,-0.251763671636581,0.234947040677071,-0.936745822429657,0.259436219930649,0.216557964682579,-0.731529057025909,0.646504402160645,0.143840417265892,-0.980476558208466,0.134073048830032,0.146094918251038,-0.97834438085556,0.146624550223351,0.0817499309778214,-0.992882072925568,0.0866148471832275,-0.230929404497147,-0.971470177173615,0.0540123805403709,-0.830506563186646,-0.555701375007629,-0.0381427407264709,0.323674350976944,-0.0523648411035538,-0.944718480110168,-0.504528403282166,-0.858906030654907,0.0879295319318771,-0.0117251425981522,-0.576369822025299,-0.817104935646057,0.931085288524628,0.350594371557236,0.100815631449223,-0.697777032852173,-0.710168182849884,-0.0936399400234222,0.993703186511993,-0.0670607313513756,0.0897596776485443,-0.257870137691498,-0.686554312705994,0.679813325405121,-0.432530432939529,-0.868159592151642,-0.24334442615509,0.358264893293381,0.616828262805939,0.700834631919861,-0.34876361489296,-0.881869494915009,-0.317285925149918,-0.733990490436554,-0.584333658218384,-0.346139073371887,-0.853809118270874,-0.400880992412567,-0.332121342420578,0.669747591018677,0.517928302288055,0.532154560089111,-0.733792126178741,-0.562619745731354,-0.380799293518066,-0.689588844776154,-0.531921863555908,-0.491453379392624,-0.0172835290431976,-0.935576915740967,-0.352699756622314,-0.693626999855042,-0.546774387359619,-0.468955636024475,0.643635451793671,0.603467166423798,0.470702618360519,-0.601018309593201,-0.440894961357117,-0.666624784469604,-0.578585982322693,-0.422158539295197,-0.697868525981903,
- -0.760634481906891,-0.580454766750336,-0.290701627731323,0.0413678698241711,0.208538889884949,-0.977138817310333,0.806341648101807,-0.234985783696175,-0.542765974998474,0.78642612695694,-0.217883884906769,-0.577979862689972,0.751685261726379,-0.514612913131714,-0.412483662366867,-0.502696931362152,0.840311408042908,-0.202910631895065,0.729630589485168,-0.623600423336029,-0.280645430088043,0.479408800601959,0.164386242628098,-0.862058281898499,0.659574508666992,-0.607434391975403,-0.442701905965805,0.605165719985962,-0.764743328094482,-0.221228435635567,0.362983167171478,-0.321455717086792,-0.874590992927551,-0.111279673874378,-0.672737538814545,-0.731465041637421,-0.600464522838593,0.0319398492574692,0.799013257026672,0.339833348989487,-0.278766483068466,-0.898221909999847,-0.143205612897873,-0.577327787876129,-0.803856194019318,-0.525603115558624,-0.683143675327301,-0.507006943225861,0.122234925627708,-0.708212077617645,-0.69533759355545,-0.287126868963242,-0.906793594360352,0.308680236339569,0.380474060773849,0.29375547170639,-0.876896440982819,0.000402331352233887,-0.653331518173218,-0.757071852684021,0.734589338302612,-0.407755792140961,-0.542322516441345,-0.0317261703312397,-0.654512345790863,-0.755385458469391,0.0538136027753353,-0.996883988380432,0.0576751716434956,-0.13579785823822,-0.575215816497803,-0.806650936603546,-0.0575373098254204,-0.876903533935547,-0.477210491895676,-0.27071875333786,-0.479634016752243,-0.834663093090057,-0.120142787694931,-0.861821293830872,-0.492777824401855,-0.0954034924507141,-0.89709347486496,-0.431418031454086,0.116446137428284,-0.608135402202606,-0.785246193408966,-0.182625830173492,-0.589310884475708,-0.786994695663452,-0.0949191898107529,-0.600535929203033,-0.793944001197815,-0.125400841236115,-0.879466354846954,-0.459144592285156,-0.25458687543869,-0.492079019546509,-0.832492589950562,-0.262430429458618,-0.449781358242035,-0.853713691234589,0.0151673704385757,-0.641584098339081,-0.766902804374695,0.0544397830963135,-0.925371944904327,-0.375131100416183,-0.0432898253202438,0.858787059783936,0.510500550270081,
- 0.0921262800693512,-0.982009768486023,-0.164832547307014,-0.116703569889069,-0.849928677082062,-0.513810813426971,-0.487766861915588,0.231052994728088,-0.84184205532074,0.558028519153595,-0.0839664861559868,-0.825562715530396,0.119609475135803,-0.95477157831192,-0.272222310304642,-0.157898306846619,0.932098627090454,0.325976133346558,0.0860995724797249,0.709901452064514,0.69901841878891,-0.0790741443634033,-0.717436611652374,-0.692121386528015,-0.165095791220665,-0.616451978683472,-0.769889831542969,0.141376778483391,-0.981526494026184,-0.128912091255188,0.00161621766164899,-0.99765533208847,-0.0684198811650276,0.735599160194397,0.615765810012817,-0.282358705997467,-0.592508435249329,-0.776735723018646,0.21357761323452,-0.577759325504303,-0.773230314254761,0.261359989643097,-0.61739194393158,-0.586837470531464,-0.523878812789917,-0.134014621376991,0.990123450756073,-0.0411799550056458,-0.367724418640137,-0.892518401145935,0.261131584644318,-0.0739128664135933,-0.987907350063324,0.136293932795525,-0.67417311668396,-0.730316400527954,0.110130682587624,-0.764967262744904,-0.640307307243347,-0.0695110261440277,-0.0181576311588287,-0.704235434532166,0.709734320640564,-0.430873095989227,-0.897613644599915,0.0929424837231636,0.452365547418594,0.886435508728027,-0.0979679003357887,-0.465730160474777,-0.879133284091949,0.101095281541348,0.0234634708613157,-0.998091161251068,-0.0571273565292358,-0.509323418140411,-0.856857061386108,0.0799097046256065,-0.603017151355743,-0.790635526180267,0.106140248477459,-0.302570104598999,-0.93729555606842,0.172998398542404,-0.389984667301178,-0.90527218580246,0.168506428599358,-0.508222937583923,-0.846305191516876,0.159614980220795,-0.253751486539841,-0.950403451919556,0.179842859506607,-0.27340179681778,-0.958311319351196,0.0830114930868149,-0.255975335836411,-0.951697051525116,0.169556438922882,-0.405455708503723,-0.877629637718201,0.255679249763489,-0.722725689411163,-0.669023931026459,-0.173420116305351,-0.227998271584511,-0.880465865135193,0.415688186883926,-0.335093110799789,-0.939024984836578,0.07710150629282,
- -0.836491465568542,0.386600166559219,0.388358533382416,-0.381784200668335,-0.918969631195068,0.0986695140600204,-0.730899155139923,-0.674868285655975,0.101681992411613,-0.304625242948532,-0.951971232891083,-0.0308920592069626,-0.490584999322891,-0.871101021766663,0.0225712209939957,0.417905211448669,0.603561222553253,-0.679020762443542,-0.548588395118713,-0.696721076965332,0.462201952934265,-0.515819132328033,-0.675626873970032,0.52674388885498,-0.0932817831635475,-0.455744236707687,0.885209381580353,-0.337310403585434,-0.819566309452057,0.463176727294922,-0.250111967325211,-0.704688727855682,0.663971245288849,-0.370161563158035,-0.901363074779511,0.224777847528458,-0.536446630954742,-0.835060596466064,-0.122060552239418,-0.381359577178955,-0.901277244091034,0.205582618713379,-0.204788938164711,-0.900580942630768,-0.383425891399384,-0.198465257883072,-0.893031716346741,-0.403863847255707,-0.328560084104538,-0.91713958978653,0.22561776638031,-0.101544365286827,-0.987535953521729,-0.120256468653679,0.988750815391541,0.120876580476761,-0.0880957394838333,0.994311273097992,-0.0100340284407139,-0.106040418148041,-0.0367978513240814,-0.997486889362335,0.0605456978082657,0.987356185913086,-0.0971495285630226,0.125259026885033,0.115762948989868,-0.990174412727356,0.0784458369016647,-0.218289420008659,-0.975444614887238,-0.0292836278676987,-0.0572477951645851,-0.998351693153381,0.00409243907779455,0.153850421309471,-0.986966848373413,0.0471862442791462,-0.541486859321594,-0.829526305198669,0.136667847633362,-0.0589829459786415,-0.998258709907532,-0.000724632234778255,-0.264005541801453,-0.96283358335495,0.0570316389203072,-0.239197969436646,-0.970922768115997,0.00966215133666992,-0.717005908489227,-0.673117756843567,0.181149363517761,-0.567354559898376,-0.814054071903229,0.124196708202362,-0.495220422744751,-0.613201439380646,0.615419209003448,-0.261340886354446,-0.658001840114594,0.706211447715759,-0.144678667187691,-0.664366960525513,0.733269870281219,-0.402216166257858,-0.894026637077332,0.197328895330429,-0.0459634475409985,-0.695502996444702,0.71705162525177,
- -0.375604391098022,-0.892078995704651,0.251229882240295,-0.211506843566895,-0.547325074672699,0.809753119945526,-0.32092159986496,-0.919148862361908,0.228417783975601,-0.259017914533615,-0.699105262756348,0.666454434394836,-0.409459233283997,-0.712265193462372,0.570106565952301,-0.417186558246613,-0.709333002567291,0.568156719207764,0.0942354500293732,-0.788377046585083,0.607931911945343,-0.195197939872742,-0.740738272666931,0.642809987068176,0.0705934390425682,-0.80110365152359,0.594347953796387,-0.286228120326996,-0.705605089664459,0.648224472999573,-0.222603589296341,-0.689316272735596,0.68941330909729,-0.239102706313133,-0.843736231327057,0.480561167001724,-0.202589556574821,-0.556432962417603,0.805816292762756,0.0351354144513607,-0.810595035552979,0.584552109241486,-0.165201008319855,-0.773519575595856,0.61186283826828,0.100082099437714,-0.815293908119202,0.570332765579224,0.212919965386391,-0.79927396774292,0.561984241008759,0.137125074863434,-0.780076801776886,0.610472679138184,0.0485095158219337,-0.749828040599823,0.659852087497711,0.245624154806137,-0.624708473682404,0.741220712661743,0.497218161821365,-0.585933864116669,0.63988721370697,0.495338618755341,-0.586422562599182,0.640896558761597,0.0931243225932121,-0.787757277488709,0.608905851840973,0.0880239307880402,-0.796002864837646,0.598858416080475,0.127569183707237,-0.727145433425903,0.674526274204254,-0.397514969110489,-0.712552666664124,0.578144133090973,0.103735089302063,-0.793598890304565,0.599532961845398,0.147839903831482,-0.790868699550629,0.593860328197479,0.550142288208008,-0.75725257396698,0.352011293172836,0.533717453479767,-0.555882394313812,0.637291610240936,0.52804708480835,-0.530057668685913,0.663479626178741,0.0892574265599251,-0.795630931854248,0.599169969558716,0.14719595015049,-0.698146104812622,0.700660645961761,0.128878325223923,-0.731365978717804,0.669697165489197,0.585239231586456,-0.403612315654755,0.703272521495819,0.63815826177597,-0.722988426685333,0.264654159545898,0.635351538658142,-0.73525607585907,0.236065536737442,0.336851209402084,-0.803478956222534,0.490869522094727,
- 0.150347009301186,-0.592829823493958,0.791169226169586,0.0485093593597412,-0.451523095369339,0.890939891338348,0.112285181879997,-0.676918089389801,0.727443397045136,0.100872561335564,-0.679717838764191,0.72650420665741,0.565358877182007,-0.476250648498535,0.67346465587616,0.695941388607025,-0.708610653877258,-0.116346448659897,0.785246431827545,-0.615541517734528,-0.0670573711395264,0.904894649982452,-0.42507004737854,0.0219369810074568,0.0950323492288589,-0.677251994609833,0.729588031768799,0.74707955121994,-0.261117190122604,0.611301839351654,0.593639254570007,-0.411085724830627,0.691809952259064,0.939250826835632,-0.341334968805313,-0.0360342711210251,0.693417549133301,-0.668053030967712,-0.269957900047302,0.572841465473175,-0.747095942497253,-0.337194800376892,0.377415865659714,-0.472371906042099,0.796506285667419,0.441483020782471,-0.684746205806732,0.579840838909149,0.462550431489944,-0.811473786830902,0.357151865959167,-0.19401627779007,-0.569645822048187,0.79866224527359,-0.158480510115623,-0.334029108285904,0.929144024848938,-0.209340214729309,-0.699090540409088,0.683702528476715,0.183473169803619,-0.887812614440918,0.422050029039383,0.230854853987694,-0.875413298606873,0.424685537815094,0.398641735315323,-0.812373399734497,0.425598651170731,0.188221499323845,-0.772570490837097,0.606388926506042,0.485219687223434,-0.630645394325256,0.605680048465729,0.222258672118187,-0.760939002037048,0.609567821025848,0.421544283628464,-0.696362137794495,0.580844461917877,0.439494580030441,-0.812633633613586,0.382715493440628,0.423913449048996,-0.707549214363098,0.565394997596741,0.25830402970314,-0.792233467102051,0.552851855754852,0.513971269130707,-0.703825771808624,0.490370243787766,0.383555024862289,-0.75752067565918,0.528249979019165,0.365986526012421,-0.686941027641296,0.627826333045959,0.41075274348259,-0.723801255226135,0.554431259632111,0.616229295730591,-0.740158915519714,-0.269121438264847,0.109156705439091,-0.950559973716736,0.29072430729866,0.841991424560547,-0.336152076721191,-0.421962410211563,0.343936115503311,-0.930014431476593,0.129541888833046,
- 0.800717353820801,-0.063425786793232,-0.5956751704216,0.507092893123627,-0.748622059822083,-0.427108645439148,0.695319890975952,-0.467037886381149,-0.546265363693237,0.472998917102814,-0.507361590862274,-0.720316767692566,0.441898047924042,-0.698940873146057,0.56232351064682,0.592920005321503,-0.744568288326263,-0.306698560714722,0.511334776878357,-0.47160530090332,-0.718418657779694,0.593070864677429,-0.160563066601753,-0.788978099822998,0.361217975616455,-0.749198138713837,-0.555179119110107,0.704344630241394,-0.456381976604462,-0.543704152107239,0.404340088367462,-0.906384468078613,0.122378461062908,0.608422756195068,0.0801909044384956,-0.789551377296448,0.702150523662567,-0.457405626773834,-0.545678377151489,0.83606219291687,-0.312477469444275,-0.450952172279358,0.115784466266632,-0.741783142089844,-0.660569310188293,0.911692202091217,-0.410612881183624,0.0146432965993881,-0.16671846807003,-0.531451225280762,-0.830520629882813,0.610011339187622,-0.632061064243317,-0.477896451950073,0.310977578163147,-0.659623801708221,-0.684243679046631,0.512762188911438,-0.798773884773254,-0.314698666334152,0.20688770711422,-0.561647057533264,-0.80109304189682,-0.401502847671509,0.158023715019226,-0.902121901512146,0.310960084199905,-0.657481849193573,-0.686310052871704,0.19945615530014,-0.561827182769775,-0.802849590778351,0.344843655824661,-0.694539904594421,-0.631424844264984,0.512171030044556,0.68983268737793,-0.511675536632538,0.441248059272766,-0.535084664821625,-0.72040581703186,-0.0849108770489693,-0.705608487129211,-0.703496158123016,0.969090104103088,-0.21262514591217,-0.125119730830193,0.186189830303192,-0.707529544830322,-0.68171501159668,0.0197681486606598,-0.573033273220062,-0.819293737411499,0.0706706419587135,0.0347039513289928,-0.996895849704742,-0.0287187285721302,-0.906084895133972,-0.422120332717896,-0.0297723822295666,-0.90528529882431,-0.423759460449219,-0.0501769110560417,-0.977257013320923,-0.206036522984505,0.0208659172058105,-0.571509480476379,-0.820330142974854,0.127707272768021,-0.20935446023941,-0.969464659690857,
- -0.287014037370682,-0.482916682958603,-0.827293395996094,0.313522070646286,0.497438699007034,0.808862566947937,-0.487163811922073,-0.784858286380768,-0.38297376036644,-0.0976573452353477,-0.863147974014282,-0.495417803525925,-0.391436874866486,-0.819037735462189,-0.419469177722931,-0.32480001449585,-0.767655789852142,-0.552457749843597,-0.848044395446777,-0.529830455780029,0.0100224865600467,-0.534605860710144,-0.745148777961731,-0.398685336112976,-0.0980510413646698,0.457363426685333,0.883857905864716,-0.215126305818558,-0.901074051856995,-0.376545131206512,0.0447690561413765,-0.558269679546356,-0.828450798988342,-0.202357083559036,-0.646765768527985,-0.73535418510437,-0.236608326435089,-0.516912043094635,-0.822689771652222,-0.0566901788115501,-0.944222092628479,-0.324393212795258,-0.32866695523262,-0.718861043453217,-0.612549483776093,-0.254027545452118,-0.861789226531982,-0.439077794551849,-0.174411088228226,-0.949364125728607,-0.261320859193802,-0.524699687957764,-0.723428606987,-0.448710739612579,-0.193550631403923,-0.815163850784302,-0.545935869216919,-0.391402006149292,-0.774182021617889,-0.497440159320831,-0.154763340950012,-0.972733616828918,-0.172735616564751,-0.347152441740036,-0.736046493053436,-0.581137537956238,-0.20426008105278,-0.93976902961731,-0.274065971374512,-0.350472778081894,-0.739060699939728,-0.575289726257324,-0.759491145610809,-0.623949825763702,-0.184010699391365,-0.522467613220215,-0.725256323814392,-0.448364645242691,-0.57042932510376,-0.818456530570984,-0.0688420459628105,-0.536762535572052,-0.841682374477386,-0.0587955489754677,-0.484977543354034,-0.873435378074646,-0.043674647808075,0.100618116557598,-0.967360556125641,0.232571929693222,-0.181235536932945,-0.62325245141983,-0.760730087757111,-0.0501086413860321,-0.945401906967163,-0.322031617164612,-0.5047607421875,-0.862556934356689,-0.0348146818578243,-0.125838249921799,-0.991462290287018,0.0341645739972591,-0.508805930614471,-0.86014449596405,-0.0356082580983639,-0.201462790369987,-0.979189872741699,-0.0244953390210867,0.0143092442303896,0.415175318717957,0.909628987312317,
- -0.214013054966927,-0.958415269851685,0.188781812787056,-0.492992758750916,-0.860186040401459,-0.130530536174774,0.437320500612259,-0.831697881221771,0.342095851898193,-0.358796656131744,-0.931989371776581,-0.0515824183821678,-0.254795998334885,-0.965879499912262,0.0464329160749912,-0.241245597600937,-0.970192492008209,-0.0229589566588402,-0.265749424695969,-0.957994699478149,0.10781230032444,-0.547517597675323,-0.0336250625550747,-0.836118340492249,-0.843407452106476,-0.39267897605896,-0.366697639226913,-0.649063348770142,-0.586071968078613,0.48501181602478,-0.529268383979797,-0.847180962562561,-0.0464694313704968,-0.0423918664455414,-0.98650598526001,-0.158142402768135,-0.9693363904953,-0.200562059879303,0.141992315649986,-0.0974704399704933,-0.983028292655945,0.155418440699577,-0.111464858055115,-0.983953773975372,0.139321878552437,-0.520984828472137,-0.752719283103943,-0.402477949857712,-0.992988765239716,0.0131188379600644,0.11747944355011,0.101102627813816,-0.959336340427399,0.263537526130676,-0.14498345553875,-0.946052432060242,0.289766490459442,-0.183441460132599,-0.96750283241272,0.174033463001251,-0.262060850858688,-0.944401741027832,0.198568373918533,-0.0598807334899902,-0.989197194576263,0.133802935481071,-0.646558165550232,-0.743059694766998,0.172698616981506,-0.428861618041992,-0.903340518474579,-0.00732221454381943,0.410260170698166,0.911723792552948,0.0211271028965712,-0.220433354377747,-0.967969179153442,0.120186686515808,-0.388146966695786,-0.887956857681274,0.246727764606476,-0.265088528394699,-0.951902627944946,0.153654173016548,0.213453561067581,-0.274683922529221,0.937542676925659,0.173606291413307,-0.390841633081436,0.903937935829163,0.262251794338226,-0.108915768563747,0.958833336830139,-0.0822856202721596,0.0889059081673622,0.992635309696198,-0.196867048740387,-0.486783683300018,0.851049423217773,-0.238875433802605,-0.84529310464859,0.477931082248688,-0.153104513883591,0.225407958030701,0.962159156799316,-0.113416597247124,-0.54124653339386,0.833180010318756,-0.119814172387123,-0.486157864332199,0.865618348121643,
- -0.00843871291726828,-0.249431937932968,0.968355536460876,0.263849765062332,-0.24235862493515,0.933619618415833,0.357590913772583,-0.235308095812798,0.903747141361237,0.119185782968998,-0.10483006387949,0.987322330474854,0.116571038961411,-0.760825514793396,0.638401031494141,0.107536382973194,0.102676995098591,0.988884925842285,-0.506519436836243,0.330707669258118,0.796285510063171,-0.642556428909302,-0.652746915817261,0.401301383972168,-0.691468298435211,-0.362998276948929,0.624582946300507,0.0969937369227409,-0.168071880936623,0.980991363525391,-0.116717115044594,-0.453632235527039,0.883512854576111,-0.0505830384790897,-0.369738131761551,0.927758097648621,0.376861214637756,-0.422700047492981,0.824196815490723,0.209270805120468,-0.299100309610367,0.930991291999817,0.0106807313859463,-0.143398582935333,0.989607393741608,-0.653886675834656,-0.571427226066589,0.495886355638504,0.451161235570908,-0.742028117179871,0.495830506086349,0.383681118488312,-0.763556957244873,0.519393503665924,-0.174487754702568,-0.475362777709961,0.862313330173492,0.325357168912888,-0.663315951824188,0.673909962177277,-0.0985920280218124,-0.51569926738739,0.85107809305191,-0.279757022857666,-0.662268757820129,0.695080041885376,-0.0863707140088081,-0.46863853931427,0.879157543182373,-0.0481188371777534,-0.425594329833984,0.903633773326874,-0.308970302343369,-0.172861576080322,0.935230553150177,0.823573529720306,-0.368199408054352,0.431457906961441,0.176823869347572,-0.316937267780304,0.931817650794983,-0.492371529340744,-0.573969721794128,0.654315650463104,-0.116940036416054,-0.550561010837555,0.826563715934753,-0.600598812103271,-0.559842884540558,0.570838987827301,0.227960750460625,-0.847272753715515,0.47975292801857,-0.353581845760345,-0.749472796916962,0.55970561504364,-0.72970312833786,-0.483593434095383,0.483395129442215,0.0933676362037659,0.815876603126526,0.570638120174408,-0.699064075946808,-0.348339378833771,0.624475181102753,-0.674170196056366,-0.664062678813934,0.323288530111313,-0.866439163684845,-0.442439943552017,0.231365770101547,
- -0.46788701415062,-0.558814227581024,0.684695959091187,-0.635512471199036,-0.541859984397888,0.550010740756989,-0.826959729194641,0.310767620801926,0.468573451042175,-0.800618588924408,-0.595148503780365,0.069339893758297,-0.370802223682404,-0.898481130599976,-0.235026627779007,-0.792962431907654,-0.606759250164032,0.0552628859877586,-0.592966318130493,-0.797093033790588,-0.114165291190147,-0.407710939645767,-0.883559286594391,-0.230423048138618,-0.596696496009827,-0.793416261672974,-0.120182812213898,-0.678802609443665,-0.725639343261719,-0.112581580877304,-0.502836525440216,0.857741296291351,0.106936104595661,-0.552307844161987,-0.622168362140656,0.554853618144989,-0.857361078262329,-0.370815634727478,0.356970220804214,-0.437819540500641,-0.674967408180237,0.593913316726685,-0.615046501159668,-0.766172766685486,-0.186271637678146,-0.76313328742981,-0.458684742450714,0.455231577157974,-0.743572592735291,-0.648727774620056,0.162025064229965,-0.622461080551147,-0.762095034122467,-0.178194984793663,-0.74321848154068,-0.648832082748413,0.163227677345276,-0.0839771553874016,-0.625052630901337,-0.776052355766296,-0.116925626993179,-0.891676366329193,0.437312126159668,-0.821537017822266,-0.557675004005432,-0.118640437722206,-0.789339959621429,-0.609634935855865,-0.0727168619632721,0.677921652793884,-0.580958187580109,0.450455158948898,-0.771641075611115,-0.486675500869751,-0.40953266620636,-0.380600422620773,-0.913861691951752,-0.141422629356384,-0.826158046722412,-0.551827728748322,-0.113793805241585,-0.788100123405457,-0.612558662891388,-0.0605828538537025,-0.827357769012451,-0.549646437168121,-0.115619763731956,0.821441769599915,-0.546133577823639,0.164230734109879,0.466160655021667,-0.811782360076904,0.351715296506882,0.374177306890488,-0.845043063163757,0.381960362195969,0.201291725039482,-0.820340394973755,0.535278677940369,0.102634251117706,-0.863686203956604,0.493469625711441,0.76527988910675,-0.226027831435204,0.602708995342255,-0.0551412180066109,-0.791349291801453,0.608872532844543,0.2380730509758,-0.823723495006561,0.514587938785553,
- 0.430536568164825,-0.799448192119598,0.418952077627182,0.11284676939249,-0.973164975643158,0.200537979602814,0.193820685148239,-0.831245601177216,0.52102255821228,0.238115534186363,-0.65509831905365,0.717040657997131,-0.356186002492905,0.858053088188171,-0.369968086481094,0.338053315877914,-0.863090813159943,0.37522554397583,0.0131831020116806,-0.897109985351563,0.441610783338547,0.247392430901527,-0.862671375274658,0.441129267215729,0.360660135746002,-0.903306484222412,0.232296898961067,0.176027908921242,-0.816877543926239,0.549295246601105,0.105610758066177,-0.776905298233032,0.620696842670441,0.153687134385109,-0.813260674476624,0.561237394809723,0.360484719276428,-0.903022110462189,0.233670368790627,0.0775627791881561,-0.842753648757935,0.532682240009308,-0.021508514881134,-0.874797463417053,0.484011232852936,0.278137773275375,-0.741556525230408,0.610518932342529,0.0655880570411682,-0.794055283069611,0.604296743869781,0.0680808275938034,-0.809820294380188,0.582714438438416,0.0726854205131531,-0.838187217712402,0.540517330169678,0.0624157190322876,-0.814493060112,0.576806306838989,0.109420865774155,-0.915162146091461,0.38795006275177,0.0721752271056175,-0.838041305541992,0.540812075138092,-0.421828031539917,-0.416458576917648,0.805371642112732,-0.366830825805664,-0.93021422624588,-0.0116902440786362,-0.30707773566246,-0.930432856082916,-0.199995011091232,0.0476245060563087,-0.843833446502686,0.53448760509491,-0.258129805326462,-0.903174877166748,0.342993199825287,0.000728040933609009,-0.860437989234924,0.509554743766785,-0.48813009262085,-0.293385565280914,0.82198166847229,-0.298220217227936,-0.954291224479675,0.0198242776095867,-0.441897749900818,-0.795713543891907,0.41420590877533,-0.199892103672028,-0.777668178081512,0.596049785614014,-0.730997741222382,0.626641511917114,0.270116239786148,0.802387773990631,-0.214627385139465,-0.556874215602875,-0.116585291922092,-0.564731657505035,0.816998302936554,-0.331328153610229,-0.790658175945282,0.514860510826111,-0.308133661746979,-0.770806670188904,0.557593703269959,
- -0.485956847667694,-0.334425002336502,-0.807468831539154,-0.150856018066406,-0.65559458732605,0.739890694618225,-0.279718637466431,-0.770480334758759,0.572815477848053,-0.0702455788850784,-0.782548308372498,0.618614435195923,-0.146009922027588,-0.758734226226807,0.634825587272644,0.229419752955437,-0.825334668159485,0.515935301780701,0.896854400634766,-0.228496983647347,0.378736644983292,-0.00283955037593842,-0.728722631931305,0.684803187847137,-0.582228541374207,-0.642650067806244,0.498007029294968,0.225215941667557,-0.894520699977875,0.386148303747177,0.00210820138454437,-0.939563632011414,0.342367917299271,-0.898587107658386,-0.430329501628876,-0.0857779532670975,-0.632019817829132,-0.706002235412598,0.319549381732941,-0.0251610577106476,-0.928284168243408,0.37101948261261,-0.36212819814682,-0.858249425888062,0.363691002130508,-0.685198664665222,0.640407264232636,-0.346960157155991,-0.408704817295074,-0.580194294452667,-0.704510450363159,-0.707586228847504,0.583516180515289,-0.39853572845459,-0.403285562992096,-0.783993303775787,-0.471927165985107,-0.712212562561035,0.644436001777649,-0.278308272361755,-0.166400596499443,-0.918917894363403,-0.357632130384445,-0.346494346857071,-0.928005814552307,-0.136920064687729,-0.726551651954651,-0.176593765616417,0.664031147956848,-0.555222153663635,-0.819971263408661,0.139195710420609,-0.539182662963867,-0.733274698257446,0.414234697818756,-0.410483509302139,-0.704000055789948,-0.5795578956604,-0.563066184520721,-0.821381568908691,0.0910430699586868,-0.437438100576401,-0.869888722896576,0.227906823158264,-0.483684688806534,-0.132032811641693,0.865226268768311,-0.473036080598831,-0.812214314937592,0.341386586427689,-0.0437164679169655,-0.913270950317383,-0.405000239610672,0.428353369235992,-0.879908800125122,-0.20560596883297,-0.404720664024353,-0.773728370666504,-0.487386584281921,-0.53411865234375,-0.836118340492249,0.124993532896042,-0.270300149917603,-0.953232705593109,0.135222971439362,0.049741517752409,-0.989825069904327,0.133312106132507,-0.418879359960556,-0.729439914226532,0.540793478488922,
- -0.582879900932312,-0.809808135032654,0.0667968094348907,-0.201711297035217,-0.521453976631165,0.829095005989075,-0.391796797513962,-0.868212163448334,0.304471403360367,-0.356550335884094,-0.852730274200439,0.381737023591995,-0.021520184352994,-0.540827691555023,0.840858101844788,0.264725983142853,-0.962874174118042,-0.0528535768389702,-0.231470122933388,-0.972092151641846,0.0381899364292622,-0.556781053543091,-0.824791729450226,0.0985572189092636,-0.163961827754974,-0.874157607555389,0.457126975059509,-0.334243923425674,-0.743063449859619,0.579773962497711,-0.574201822280884,-0.416838705539703,0.704654455184937,-0.378399878740311,-0.802461504936218,0.461377412080765,-0.426108717918396,-0.874601602554321,-0.231308311223984,-0.426432728767395,-0.875416934490204,-0.227596819400787,-0.339060872793198,-0.937859177589417,-0.0738787576556206,0.0454959832131863,-0.899332165718079,-0.434892863035202,0.348948508501053,-0.684717655181885,-0.639841139316559,0.591301739215851,-0.805302917957306,-0.0430073291063309,-0.601030349731445,-0.229489713907242,-0.765569806098938,0.414906293153763,-0.870179891586304,-0.265781491994858,-0.471105337142944,-0.823978126049042,-0.314833045005798,0.504007160663605,-0.863445341587067,-0.0209538191556931,0.0583163574337959,-0.981353878974915,-0.183149665594101,-0.232677325606346,-0.968096494674683,0.0930083468556404,-0.396369814872742,-0.819477438926697,0.41394168138504,-0.434336423873901,-0.749742031097412,0.499238163232803,0.2709980905056,-0.887765407562256,-0.372065424919128,-0.872851014137268,-0.434334963560104,-0.222451061010361,-0.493232011795044,-0.791362583637238,-0.361202716827393,-0.450474798679352,-0.811812400817871,0.37152823805809,-0.3322713971138,-0.758480787277222,0.560626924037933,-0.392701119184494,-0.789783239364624,0.471198976039886,-0.535962343215942,-0.790357768535614,0.296781033277512,-0.410920888185501,-0.869135499000549,0.275222718715668,-0.236905097961426,-0.941797733306885,0.238522499799728,-0.23706266283989,-0.941664457321167,0.238892167806625,-0.932738959789276,0.254826009273529,0.255071938037872,
- -0.526083409786224,-0.793489515781403,0.305958718061447,-0.334333270788193,-0.397434592247009,0.854556679725647,-0.614908337593079,-0.758039236068726,0.217403903603554,-0.290854752063751,-0.342754542827606,0.893265247344971,0.100180231034756,-0.490692734718323,0.865554451942444,-0.361775785684586,0.354519248008728,0.86222642660141,-0.0046956310980022,-0.327284425497055,0.944914221763611,-0.342736274003983,-0.590071558952332,0.730990707874298,0.199755519628525,-0.515333652496338,0.833384096622467,0.108989134430885,-0.54023689031601,0.834425210952759,-0.104284591972828,-0.887111961841583,0.449619054794312,-0.468964576721191,-0.456784665584564,0.755923390388489,-0.340922296047211,-0.661781132221222,0.667695879936218,0.218000933527946,0.257894277572632,0.941257834434509,0.548991858959198,-0.391284495592117,0.738582730293274,0.59030294418335,-0.551063179969788,0.58980667591095,0.234981417655945,-0.135157659649849,0.962557077407837,0.267334252595901,-0.100680239498615,0.958329796791077,-0.0820756778120995,-0.431953847408295,0.898153364658356,0.727531671524048,-0.54675281047821,0.414438247680664,0.34244242310524,0.682850897312164,0.645327866077423,0.760619640350342,-0.165621042251587,0.62771612405777,0.142082661390305,-0.464108020067215,0.874309122562408,0.0822880789637566,-0.0738696902990341,0.993867158889771,0.152424052357674,-0.542639017105103,0.826020479202271,-0.32445901632309,-0.754382371902466,0.570643186569214,0.903862476348877,-0.272052347660065,0.330182075500488,0.721689403057098,-0.492572128772736,0.486350834369659,0.562230825424194,-0.390344351530075,0.72905957698822,0.485882133245468,-0.427402824163437,0.762394547462463,-0.229932248592377,-0.576768398284912,0.783881008625031,0.581936299800873,-0.403113782405853,0.706292808055878,0.842805027961731,0.536073923110962,-0.0480060987174511,0.435936272144318,-0.518175661563873,0.735835313796997,0.270562499761581,-0.0891429930925369,0.95856636762619,0.19415807723999,-0.102664142847061,0.975583255290985,0.933031141757965,0.0903287753462791,0.348272562026978,0.377973735332489,0.520981848239899,0.765319526195526,
- 0.926898777484894,0.152786761522293,0.342804431915283,0.70867931842804,-0.464664310216904,-0.530905485153198,0.776979446411133,-0.0749923810362816,0.625043213367462,0.811868906021118,-0.229539692401886,0.536824345588684,0.773816883563995,-0.592361688613892,0.224310263991356,0.856155753135681,-0.386250913143158,0.34323126077652,0.711704075336456,-0.532203435897827,0.458515912294388,0.885905265808105,-0.344880282878876,0.310208708047867,0.895720541477203,-0.373536378145218,0.241154104471207,0.768010556697845,0.331018298864365,0.548257827758789,0.73099285364151,-0.682384192943573,-0.00114823691546917,0.866299748420715,0.393462210893631,0.307753920555115,0.886344015598297,-0.441511601209641,-0.139505282044411,0.815524876117706,-0.542442440986633,-0.20168149471283,0.871432423591614,-0.314955294132233,0.376043528318405,0.979059219360352,-0.0891323089599609,-0.183026075363159,0.885267734527588,-0.306045383214951,0.350196003913879,0.33263224363327,-0.240008428692818,0.912004232406616,0.837252795696259,-0.113926641643047,0.534816324710846,0.999153912067413,0.0363896228373051,0.0191684756428003,0.772383093833923,-0.510213255882263,-0.378294438123703,0.971056699752808,-0.161202624440193,-0.176246285438538,0.883927404880524,-0.362762123346329,-0.29508650302887,0.950069487094879,-0.31014084815979,-0.0343607813119888,0.940610945224762,-0.0378671884536743,-0.337367802858353,0.917012751102448,-0.392368048429489,0.071658156812191,0.726689636707306,-0.686965346336365,-0.00093837094027549,0.818786561489105,0.233518421649933,0.524459362030029,0.895149111747742,-0.371417373418808,0.246489882469177,0.964640021324158,-0.26347690820694,0.00704007502645254,0.981111168861389,-0.0529870167374611,-0.186046659946442,0.900843977928162,-0.406967669725418,0.151186808943748,0.326433598995209,-0.674828886985779,-0.661851346492767,0.761341094970703,0.6474968791008,-0.0332796350121498,0.883828938007355,0.346939504146576,-0.31381419301033,0.835090756416321,-0.476243913173676,-0.275345414876938,0.235284328460693,-0.967527091503143,-0.0923729315400124,
- 0.0236775521188974,-0.999399185180664,-0.0253104902803898,0.981867671012878,-0.0105054909363389,-0.189276412129402,0.501238107681274,-0.598581194877625,-0.624868750572205,0.784046113491058,-0.385220646858215,-0.486700147390366,0.278921842575073,-0.919684290885925,-0.276375532150269,0.296157240867615,-0.955063819885254,0.0119983945041895,0.194888979196548,-0.678764164447784,-0.7080237865448,0.707496583461761,-0.69399082660675,-0.133511602878571,0.731810450553894,-0.626834094524384,-0.267455667257309,0.715920448303223,-0.389780104160309,-0.579249024391174,0.363924264907837,-0.815870463848114,-0.449349015951157,0.767063796520233,-0.386920362710953,-0.511767268180847,0.399650782346725,-0.792994260787964,-0.459825426340103,0.673688471317291,-0.696442306041718,-0.247208684682846,0.678009271621704,-0.715229392051697,-0.16955953836441,0.584434986114502,-0.532233595848084,-0.612505674362183,0.599881768226624,-0.75858211517334,-0.254352241754532,0.379922658205032,-0.378306001424789,-0.84412282705307,0.537623882293701,-0.630174696445465,-0.560214698314667,0.00408657407388091,-0.999982118606567,-0.00436840718612075,0.874667525291443,-0.478743314743042,0.0759056955575943,0.976614594459534,-0.196894407272339,0.0863512456417084,0.150951743125916,-0.677184283733368,-0.720163285732269,0.260468244552612,-0.909844219684601,-0.323016971349716,0.270752757787704,-0.925661981105804,-0.264278054237366,-0.326295703649521,-0.816379547119141,-0.476503729820251,0.662845373153687,0.242033809423447,-0.708558917045593,0.340681880712509,-0.316010147333145,-0.885479271411896,0.36576920747757,-0.836834490299225,-0.407333940267563,0.010669007897377,-0.945057153701782,-0.326731145381927,0.413439691066742,-0.810848951339722,-0.414236277341843,0.293747276067734,-0.90440034866333,-0.309471786022186,-0.279544353485107,-0.64225822687149,-0.713694155216217,0.298177510499954,-0.904459834098816,-0.305028975009918,0.0604625903069973,-0.973864316940308,-0.218935534358025,0.0211437493562698,-0.775934934616089,-0.630458474159241,0.0577950105071068,-0.965620279312134,-0.253450870513916,
- 0.273811101913452,-0.698494672775269,-0.661160171031952,-0.849652528762817,-0.41781222820282,0.32175076007843,-0.18316987156868,-0.872039794921875,-0.453867316246033,-0.362720489501953,-0.79843270778656,-0.480561196804047,0.288859277963638,-0.956298530101776,-0.0453166626393795,0.09580297768116,-0.97664487361908,-0.192319214344025,-0.909408450126648,-0.249386683106422,0.332840472459793,0.140396788716316,-0.952139854431152,-0.271511763334274,0.0710315257310867,-0.966874063014984,-0.245171517133713,0.0232663657516241,-0.994944274425507,-0.0976967811584473,-0.214508086442947,-0.924558937549591,0.314924091100693,-0.0844084322452545,-0.992586970329285,0.0874438583850861,0.0785291418433189,0.993245124816895,-0.0854244977235794,-0.118932887911797,-0.982381165027618,-0.144160553812981,-0.044755294919014,-0.965147733688354,0.257850468158722,0.0537339448928833,-0.971137940883636,0.232387289404869,-0.00211476534605026,-0.996141910552979,-0.087731696665287,-0.0650455355644226,-0.896268665790558,-0.438715845346451,0.132558599114418,-0.982424139976501,-0.131419450044632,0.515290915966034,-0.846952378749847,-0.13094624876976,-0.758406817913055,-0.649884104728699,-0.0496978461742401,-0.475143373012543,-0.852970242500305,0.216056764125824,-0.47803795337677,-0.851185977458954,0.216707497835159,-0.2298294454813,-0.960525572299957,0.15674564242363,-0.0675688907504082,-0.980507969856262,0.184495598077774,-0.103556007146835,-0.986193656921387,0.129221707582474,-0.053291879594326,-0.977083563804626,0.206076741218567,-0.101156271994114,-0.951836824417114,0.289437741041183,-0.174931898713112,-0.96928083896637,0.172897458076477,-0.123980917036533,-0.959143757820129,0.254307299852371,-0.156013250350952,-0.987608671188354,0.0170025713741779,-0.0463630743324757,-0.991881608963013,0.118411555886269,0.113654144108295,-0.958887279033661,0.260034471750259,0.161651477217674,-0.964278936386108,0.209845185279846,0.197775900363922,-0.959456562995911,0.200817763805389,0.115483619272709,-0.968441009521484,0.220874518156052,0.300563216209412,-0.917598426342011,0.260144054889679,
- 0.0441477000713348,-0.940587043762207,0.336670428514481,0.430666893720627,-0.877547264099121,0.21080094575882,0.418996423482895,-0.87951135635376,0.22561439871788,0.709990561008453,-0.688904762268066,0.146026432514191,0.283162951469421,-0.925861358642578,0.250199109315872,0.419324606657028,-0.900387763977051,-0.116054967045784,0.378886550664902,-0.872542500495911,0.308406442403793,0.386589586734772,-0.883245706558228,0.265377968549728,0.192177101969719,-0.98088538646698,0.0305255837738514,0.233793213963509,-0.940565526485443,-0.246327906847,0.155194237828255,-0.963728070259094,0.217124491930008,0.322440415620804,-0.886948585510254,0.330688059329987,0.399000734090805,-0.791330575942993,0.463243544101715,0.220001995563507,-0.961837530136108,0.162688940763474,0.317127555608749,-0.948135912418365,0.0216466505080462,0.525812327861786,-0.735450088977814,0.427357792854309,0.502497315406799,-0.780401647090912,0.372115164995193,0.0843575671315193,-0.98876678943634,0.12338549643755,0.659249901771545,-0.741988003253937,0.12183353304863,0.492062538862228,-0.861099243164063,0.127994611859322,0.429968327283859,-0.902743399143219,0.013474864885211,0.400030434131622,-0.881994068622589,0.249122858047485,0.382923513650894,-0.861281037330627,0.334012806415558,0.504749000072479,-0.778369724750519,0.373321861028671,0.48532909154892,-0.809082627296448,0.331422746181488,0.319222539663315,-0.94721782207489,0.0295868217945099,0.608702600002289,-0.792690396308899,0.0335126668214798,0.760209560394287,-0.638762652873993,-0.118590049445629,0.362624764442444,-0.90604692697525,0.218134060502052,0.563346803188324,-0.810068845748901,0.162569746375084,0.628624379634857,-0.64282613992691,0.4377281665802,0.465411067008972,-0.881953358650208,-0.0745035111904144,0.506565928459167,-0.85278457403183,0.12708106637001,0.636289179325104,-0.763388693332672,0.111238211393356,-0.0312232598662376,-0.98731917142868,0.155647411942482,0.252784729003906,-0.929698944091797,-0.267880082130432,0.267108201980591,-0.913996577262878,-0.30539071559906,0.174323096871376,-0.981946766376495,-0.0734304636716843,
- -0.0261347144842148,-0.818774342536926,-0.573520302772522,-0.0259939730167389,-0.819073915481567,-0.57309877872467,0.0864587873220444,-0.977841854095459,-0.190657317638397,0.569160401821136,-0.808842539787292,0.147750467061996,0.538791239261627,-0.840706884860992,-0.0540011674165726,-0.566121757030487,0.815891981124878,-0.117585852742195,0.625470876693726,-0.779838502407074,-0.0252608209848404,0.543201327323914,-0.837050974369049,0.0654073506593704,0.667901694774628,-0.740196883678436,-0.0775629058480263,0.043435737490654,-0.782613575458527,-0.620990633964539,0.716306507587433,0.653367221355438,0.244982287287712,0.796149611473084,-0.303124129772186,-0.523699820041656,0.502489984035492,-0.723448097705841,-0.473420321941376,-0.441664755344391,0.758471965789795,0.479220807552338,0.185129463672638,-0.858107447624207,-0.478935122489929,-0.126463279128075,-0.79533177614212,-0.592836081981659,0.272433668375015,0.489434599876404,0.828392267227173,-0.110010378062725,-0.819453716278076,-0.562488496303558,0.177518010139465,-0.928247690200806,-0.326869547367096,0.416127949953079,-0.893203973770142,-0.170365571975708,-0.272046327590942,-0.801672518253326,-0.532270610332489,0.0416776426136494,-0.86000382900238,-0.508582890033722,0.801718711853027,-0.581363797187805,-0.138792425394058,0.173816725611687,-0.862582325935364,-0.475120425224304,0.0266878865659237,-0.908814489841461,-0.416346043348312,-0.0345499068498611,-0.987066507339478,0.15654456615448,0.049710750579834,-0.786691129207611,-0.615342140197754,0.0584482327103615,-0.900949716567993,-0.429969102144241,0.112013295292854,-0.82354474067688,-0.55608206987381,0.06142208725214,-0.897284746170044,-0.437158346176147,0.15925107896328,-0.910306453704834,-0.382074922323227,-0.283911675214767,-0.924084782600403,-0.255854278802872,0.376922845840454,-0.827518224716187,-0.416104257106781,-0.0791358277201653,-0.899327576160431,-0.430055439472198,-0.034070011228323,-0.92066216468811,-0.388870596885681,-0.678126692771912,0.0200308561325073,-0.734672069549561,-0.035495463758707,-0.97135466337204,-0.234968394041061,
- 0.639114022254944,-0.729717791080475,-0.242992386221886,-0.402601361274719,-0.89746880531311,-0.180171981453896,-0.237287849187851,0.934670805931091,0.264735668897629,0.139637336134911,-0.98372495174408,0.113078348338604,0.080906443297863,-0.950125515460968,0.30119064450264,0.115303263068199,-0.801694691181183,-0.586507320404053,0.0848914906382561,-0.836985945701599,-0.540599822998047,-0.0526150166988373,-0.948653697967529,-0.311909973621368,0.0593994744122028,-0.973758339881897,-0.219696149230003,0.0109815578907728,-0.999660849571228,-0.0236151292920113,0.0216900389641523,-0.997523427009583,-0.0669074282050133,-0.0528299883008003,-0.948324620723724,-0.312872856855392,-0.169339373707771,-0.973325312137604,-0.154796615242958,0.191761463880539,-0.779120564460754,-0.596823811531067,0.945205330848694,0.200860276818275,0.257375150918961,0.67494410276413,-0.735499680042267,-0.0590833202004433,0.172053173184395,0.939457595348358,0.29633954167366,0.528926253318787,-0.833370506763458,0.160408094525337,0.389206320047379,0.831674098968506,-0.396026074886322,0.69767028093338,-0.712584972381592,0.0740202888846397,0.946261286735535,0.0530021004378796,0.319030225276947,0.507305145263672,-0.745393335819244,-0.432470113039017,0.552425801753998,-0.72813355922699,-0.405767649412155,0.2734454870224,-0.703076660633087,0.656437993049622,0.792172968387604,-0.569961190223694,0.218188673257828,0.70372861623764,-0.627592742443085,0.333006381988525,0.506324052810669,-0.856653928756714,-0.0988940969109535,0.738165974617004,-0.486324936151505,0.467545807361603,0.711865603923798,-0.620150804519653,0.329636782407761,0.590012967586517,-0.788346588611603,0.174339726567268,0.432513952255249,-0.856151223182678,0.282731115818024,0.325222104787827,-0.880655348300934,0.344494968652725,0.911175429821014,0.0431726761162281,0.409750461578369,0.642936408519745,-0.704813957214355,-0.29978358745575,0.951983273029327,-0.182425916194916,0.245863273739815,-0.0602045357227325,-0.758769512176514,-0.648570954799652,0.509076118469238,-0.850757658481598,-0.130586624145508,
- 0.746695697307587,-0.581134915351868,0.323617070913315,0.271394699811935,-0.901186048984528,0.337947547435761,0.141999542713165,-0.967192053794861,0.21065528690815,-0.186874985694885,-0.974548935890198,-0.123823508620262,-0.09262715280056,-0.834795475006104,-0.542712569236755,0.287154108285904,-0.930845379829407,0.225985512137413,0.195019796490669,-0.980756282806396,0.00919685699045658,0.436385303735733,-0.858462810516357,0.269461691379547,0.444219380617142,-0.856011629104614,0.264411449432373,0.315799325704575,-0.885355472564697,0.341198682785034,0.495501518249512,-0.694365739822388,-0.521856725215912,-0.164339780807495,-0.955752372741699,-0.243987709283829,-0.476218342781067,-0.878324449062347,-0.0419793426990509,0.626873433589935,-0.778461933135986,-0.0320427045226097,0.822378516197205,-0.342586994171143,0.454233199357986,0.518670499324799,-0.838213205337524,-0.168462291359901,0.803600370883942,-0.491148352622986,0.336154520511627,0.518297910690308,-0.839084088802338,-0.165243059396744,0.819752991199493,-0.348649382591248,0.454366236925125,0.642933487892151,-0.697742640972137,0.315898478031158,0.44782018661499,-0.752580881118774,0.482782602310181,0.464425534009933,-0.750128030776978,0.470762073993683,0.602179050445557,-0.792486846446991,0.0966708809137344,0.447109490633011,-0.8764808177948,0.178534597158432,0.271958589553833,-0.927933216094971,0.2549087703228,-0.255677402019501,-0.875926315784454,0.409123748540878,0.264344662427902,-0.930581390857697,0.253259092569351,0.449382394552231,-0.876850426197052,0.170847371220589,0.338182866573334,-0.819066643714905,0.463424503803253,0.198556542396545,-0.960319817066193,0.195860326290131,-0.103579632937908,-0.937942385673523,-0.330961465835571,-0.230761155486107,-0.965620338916779,0.119694903492928,-0.206613257527351,-0.972780883312225,0.104920700192451,-0.270381033420563,-0.951927065849304,0.14397569000721,-0.734455704689026,-0.678392946720123,0.0189168527722359,-0.105889499187469,-0.940545260906219,-0.322741568088531,-0.600484251976013,-0.795853793621063,-0.0776884257793427,
- -0.52962201833725,-0.829060852527618,0.179328471422195,-0.25764200091362,-0.964779198169708,-0.0531204640865326,-0.155539214611053,-0.979075491428375,-0.131220459938049,-0.0866648107767105,-0.916939854621887,-0.389500379562378,0.221167758107185,-0.953958034515381,0.202605366706848,-0.413932800292969,-0.263286173343658,-0.871401190757751,-0.287526935338974,-0.956165730953217,-0.0554560273885727,-0.36478915810585,-0.739303767681122,0.566002547740936,-0.292135030031204,-0.955729961395264,-0.0351774096488953,-0.346857756376266,-0.9036705493927,0.251136094331741,-0.0398151390254498,-0.997412919998169,-0.0598518773913383,-0.461349487304688,-0.804796874523163,0.373441636562347,-0.255949288606644,0.608915984630585,0.750807225704193,-0.36623951792717,-0.893787205219269,0.258868724107742,-0.434926718473434,-0.789502203464508,0.433041632175446,-0.58435183763504,-0.806986153125763,-0.0854770019650459,0.482469081878662,0.874779105186462,0.0445571281015873,-0.159846991300583,-0.984517991542816,0.0719255208969116,-0.183418780565262,-0.97251695394516,-0.143417254090309,-0.547138929367065,-0.824638724327087,0.143561810255051,-0.374800175428391,-0.927104711532593,-0.00133051723241806,0.588108599185944,0.67608642578125,0.443886756896973,0.0614327974617481,-0.663840353488922,0.745346903800964,-0.190910890698433,-0.862784743309021,0.468140482902527,-0.00452386541292071,-0.674932658672333,0.737865567207336,0.526659727096558,0.411997735500336,0.743564069271088,-0.198273465037346,-0.849183022975922,0.489464938640594,-0.101535946130753,-0.477713257074356,0.872628629207611,-0.146277546882629,-0.429479420185089,0.891151130199432,0.0938398391008377,-0.657267272472382,0.747792661190033,-0.0130162872374058,-0.99210649728775,0.124721065163612,-0.582331597805023,-0.809921145439148,-0.0701271593570709,-0.17459300160408,-0.981796264648438,0.0747887566685677,0.506984889507294,-0.42479333281517,0.750011265277863,0.19101682305336,-0.633041083812714,0.750180959701538,0.0330324172973633,-0.69992595911026,0.713451206684113,-0.149087607860565,-0.395552694797516,0.906262099742889,
- 0.733312547206879,-0.648484647274017,0.204255774617195,0.266014218330383,-0.609555244445801,0.746779084205627,-0.535816371440887,-0.832377791404724,0.141591116786003,-0.137840867042542,-0.920069515705109,-0.366704165935516,-0.541829645633698,-0.826671481132507,0.151773288846016,0.0430521331727505,-0.999018907546997,-0.0103905042633414,-0.631901741027832,-0.474741816520691,-0.612634003162384,-0.171369269490242,-0.962933301925659,-0.208307549357414,-0.310888856649399,-0.767652332782745,0.5604088306427,-0.870744466781616,-0.477331608533859,-0.118147417902946,-0.809674680233002,-0.585923135280609,0.0334844179451466,-0.440127938985825,-0.83833920955658,0.321675181388855,-0.475413888692856,-0.827657043933868,0.298270851373672,-0.77872222661972,-0.626735329627991,0.0281909629702568,-0.736822664737701,-0.446486711502075,0.507683098316193,-0.531630396842957,-0.8351811170578,0.140860199928284,-0.541102826595306,-0.826812505722046,0.153586655855179,0.615243256092072,0.522052586078644,-0.59070873260498,0.19411838054657,-0.313566237688065,0.929512917995453,-0.736395478248596,-0.51157420873642,0.442734092473984,-0.381441354751587,-0.917349874973297,0.113893419504166,-0.0757586881518364,-0.664435625076294,0.74349582195282,-0.111119635403156,-0.710134208202362,0.695242345333099,-0.702610909938812,0.644756019115448,0.301044404506683,-0.226226985454559,-0.0484159588813782,0.972870588302612,0.397798120975494,-0.614088296890259,0.681654036045074,-0.223914578557014,-0.0787254273891449,0.971423983573914,0.388344436883926,-0.748072624206543,0.538122713565826,0.261421054601669,-0.645133793354034,0.71795642375946,0.581004917621613,-0.0334288664162159,0.813213229179382,-0.116198040544987,-0.67990905046463,0.724031627178192,-0.0862593501806259,-0.66380512714386,0.74291467666626,0.241199418902397,-0.743423163890839,0.623814761638641,-0.150435671210289,0.463198870420456,0.873393356800079,0.269500643014908,-0.830574452877045,0.487355500459671,-0.0607356652617455,-0.665208756923676,0.74418318271637,0.348007649183273,-0.802894055843353,0.483995616436005,
- -0.513885378837585,0.797706305980682,-0.315573513507843,0.288768410682678,-0.656187653541565,0.697158932685852,0.481925547122955,-0.476678729057312,0.73520416021347,0.316411405801773,-0.634383976459503,0.705294907093048,0.400271356105804,-0.739506781101227,0.541213989257813,0.440241605043411,-0.661118984222412,0.607543408870697,0.0922743827104568,-0.994025051593781,0.0583067908883095,0.149987369775772,-0.977499127388,-0.148321390151978,0.36171543598175,-0.712936043739319,0.600736379623413,0.235232472419739,-0.967060267925262,0.0972634851932526,0.46760168671608,-0.778481900691986,0.418705940246582,0.498731017112732,-0.824587821960449,-0.267062395811081,0.147671416401863,-0.237094148993492,-0.960197627544403,0.20794665813446,-0.888304114341736,0.409480303525925,0.580416321754456,-0.805694460868835,0.118209585547447,0.649295747280121,-0.759190082550049,0.0452270694077015,0.379895836114883,-0.87602561712265,0.297083050012589,0.765923678874969,-0.641468584537506,0.043347354978323,0.55616956949234,-0.8066765666008,0.19987091422081,0.325498759746552,-0.944477081298828,0.044873084872961,0.24209463596344,-0.743528008460999,0.623342871665955,0.273765504360199,-0.826027631759644,0.492677271366119,0.780377447605133,0.0617168247699738,-0.622255682945251,0.752903163433075,-0.656682908535004,0.0436387732625008,0.341853559017181,-0.808634579181671,0.478796750307083,0.764849066734314,0.000569507479667664,-0.644209325313568,0.36853688955307,-0.772379279136658,-0.517311215400696,0.0356852971017361,-0.957431137561798,-0.286447733640671,0.446432113647461,-0.746401786804199,0.493541061878204,0.0660879760980606,-0.996978878974915,0.0408122688531876,0.391365379095078,-0.815271377563477,0.426808714866638,-0.211673781275749,-0.914230942726135,-0.345508307218552,0.387148350477219,-0.809681355953217,0.441058039665222,0.0906407609581947,-0.995026290416718,0.041315384209156,0.265009820461273,-0.62720251083374,0.732384443283081,0.496185481548309,-0.46069473028183,0.735907912254334,0.0873736590147018,-0.714849174022675,0.693798661231995,0.202689573168755,-0.921543598175049,0.331171482801437,
- 0.456883519887924,-0.884033501148224,0.0987019613385201,0.420439541339874,-0.897043585777283,0.136174812912941,0.434360891580582,-0.86633825302124,0.246553599834442,0.925228178501129,-0.110050573945045,-0.363100200891495,0.538880586624146,-0.823521912097931,0.177254855632782,-0.067221611738205,-0.909565627574921,-0.410087585449219,0.515901505947113,-0.479787468910217,-0.709682822227478,0.162046745419502,-0.809913396835327,-0.563720881938934,0.578736901283264,-0.814999103546143,0.0289842784404755,0.786335468292236,-0.510809361934662,-0.347491532564163,0.445201307535172,-0.87631767988205,0.184019505977631,0.43319445848465,-0.865160167217255,0.252666801214218,-0.673485457897186,-0.723161995410919,0.153147712349892,0.664812326431274,-0.712231397628784,0.225280001759529,0.567157506942749,-0.771535158157349,-0.288211673498154,0.612082600593567,-0.784853935241699,0.0967433750629425,0.465387403964996,-0.67278254032135,-0.575133264064789,0.496360331773758,-0.860639214515686,-0.113694921135902,0.298590630292892,-0.476285070180893,-0.827040731906891,0.431711703538895,-0.724602282047272,-0.537193238735199,0.0384455248713493,-0.955414116382599,-0.292755573987961,-0.32919180393219,-0.471595048904419,-0.818065404891968,-0.320232510566711,-0.492993086576462,-0.808955430984497,0.291960716247559,-0.876026749610901,-0.383843779563904,-0.298013925552368,-0.914687156677246,-0.273011207580566,0.781224727630615,-0.513869822025299,-0.354437291622162,0.0305102840065956,-0.599569797515869,-0.799740791320801,-0.111210122704506,-0.0361801013350487,-0.993138194084167,0.124446257948875,-0.866278648376465,-0.48381245136261,-0.658633172512054,-0.238731518387794,-0.713589310646057,-0.107630260288715,-0.493886291980743,-0.86283951997757,0.966475129127502,-0.171484097838402,0.191099673509598,-0.507288992404938,-0.809916317462921,-0.294437319040298,-0.442749708890915,-0.88644552230835,-0.134859412908554,-0.0498733259737492,0.785276472568512,-0.617133438587189,-0.886786580085754,-0.0519971624016762,-0.459245055913925,0.74316269159317,-0.0686208754777908,-0.665582776069641,
- -0.1441929936409,-0.105567932128906,-0.983902394771576,-0.499398112297058,-0.787419497966766,-0.361347794532776,-0.0546376332640648,0.754941701889038,-0.653511941432953,-0.530945897102356,-0.69049197435379,-0.491240680217743,-0.790741741657257,-0.176598653197289,-0.58612322807312,-0.567575097084045,-0.513746917247772,-0.643368244171143,-0.625056803226471,-0.446790635585785,-0.640064179897308,-0.523146390914917,-0.38975578546524,-0.757897317409515,0.213217556476593,0.475708365440369,-0.853369772434235,-0.594038188457489,-0.506900191307068,-0.624636709690094,-0.498341619968414,-0.528456091880798,-0.687306225299835,-0.894948065280914,0.242505446076393,-0.37451183795929,-0.639498293399811,-0.38113009929657,-0.66766893863678,-0.612271010875702,-0.479880750179291,-0.628361999988556,-0.43905970454216,-0.794386446475983,0.419734060764313,-0.614419162273407,-0.486406952142715,-0.621206402778625,-0.827522337436676,-0.465367138385773,-0.314070522785187,-0.639104187488556,0.143235206604004,-0.755664944648743,-0.803065955638886,-0.565165400505066,-0.188873440027237,-0.850242555141449,-0.476911723613739,-0.222806602716446,-0.852420568466187,-0.407239615917206,0.327925533056259,-0.806357324123383,-0.471103250980377,-0.357560813426971,-0.954738974571228,-0.242602497339249,0.172097533941269,-0.949434816837311,-0.274948984384537,-0.151580572128296,-0.168580591678619,-0.147758990526199,-0.974550127983093,-0.500712990760803,-0.856757581233978,0.123502619564533,-0.677385687828064,-0.0414876900613308,0.73445725440979,-0.193745225667953,-0.944960474967957,-0.263652622699738,-0.950595557689667,0.0165788754820824,0.309989154338837,-0.935690999031067,0.175121635198593,0.306291997432709,-0.270257323980331,-0.95936906337738,0.0810688510537148,-0.828148245811462,-0.510482966899872,0.23146852850914,0.616368353366852,-0.683453142642975,-0.391128987073898,-0.906793117523193,-0.28613805770874,0.309598624706268,-0.946070730686188,0.133507937192917,0.295170962810516,0.83547055721283,0.486864626407623,-0.254856556653976,-0.278950035572052,-0.957176327705383,0.0774617791175842,
- -0.504337668418884,-0.336100578308105,-0.795411825180054,-0.340359270572662,-0.520693421363831,-0.782964825630188,-0.640020310878754,-0.126294136047363,-0.757907509803772,0.103786572813988,-0.0611291937530041,-0.992719292640686,0.475118488073349,-0.631296217441559,-0.612966299057007,0.447945177555084,-0.586531102657318,-0.674778819084167,-0.532690048217773,-0.384983599185944,-0.753676950931549,0.019348993897438,-0.154734462499619,-0.987766623497009,0.880099356174469,0.382315069437027,-0.28153195977211,0.184534028172493,-0.0105467522516847,-0.98276960849762,0.0182604715228081,-0.113345317542553,-0.993387937545776,0.103903487324715,-0.0609976463019848,-0.992715239524841,0.582576930522919,0.365132808685303,0.726142048835754,-0.696720659732819,-0.173381552100182,-0.696074187755585,-0.441623151302338,-0.535551965236664,-0.719828605651855,0.150470167398453,-0.0499782264232636,-0.987350463867188,0.101152122020721,0.140512019395828,-0.984898328781128,-0.189329251646996,0.217259362339973,0.957576632499695,-0.605553567409515,-0.30917951464653,-0.733289182186127,-0.104661010205746,-0.169913083314896,-0.979885578155518,-0.525061190128326,-0.29049089550972,-0.799953579902649,0.0294035114347935,0.012876357883215,-0.999484777450562,-0.456885248422623,-0.311822324991226,-0.833080232143402,0.480508357286453,0.327517420053482,0.813538134098053,0.206595614552498,-0.976586699485779,0.0599732771515846,-0.845318078994751,-0.406169265508652,0.347079038619995,0.311075866222382,-0.95016884803772,0.0202758759260178,-0.0160442721098661,-0.999817490577698,-0.0103715006262064,0.647976696491241,0.0845932066440582,0.756947994232178,0.267429113388062,-0.908777356147766,0.320320755243301,0.00447151437401772,-0.991579174995422,0.129425004124641,0.655730605125427,-0.688170731067657,0.310545563697815,0.348519772291183,-0.907383680343628,0.234923169016838,0.402621358633041,-0.851745843887329,0.335298299789429,0.809393346309662,0.485317170619965,-0.330680668354034,0.438677221536636,-0.838118612766266,0.324221462011337,0.127831920981407,-0.98534631729126,-0.112923435866833,
- 0.24413700401783,-0.962448954582214,-0.11869752407074,-0.735897898674011,0.666000485420227,0.122056469321251,0.429428488016129,-0.896621108055115,0.107989929616451,0.388601958751678,-0.852776885032654,0.348941564559937,0.3958600461483,-0.862210392951965,0.316050857305527,0.589188516139984,-0.798824191093445,0.121395394206047,0.634714484214783,0.0525281354784966,0.770959317684174,0.673732340335846,-0.0610602162778378,0.736448526382446,0.646071016788483,0.183466464281082,-0.740899682044983,0.550297021865845,-0.243790626525879,0.798585832118988,0.599934995174408,-0.236065521836281,0.764428555965424,0.478256165981293,-0.839920163154602,0.256525367498398,0.267569988965988,-0.908733248710632,0.320328265428543,0.182426899671555,-0.922407865524292,0.340417474508286,0.324867218732834,-0.661628723144531,0.67580235004425,0.266684800386429,-0.848657608032227,0.456792652606964,0.193250671029091,-0.955768287181854,0.221723079681396,-0.0148364901542664,-0.994244158267975,0.106105819344521,0.608208179473877,-0.78791618347168,0.0962856709957123,0.838734865188599,0.542948782444,-0.0415990054607391,0.186235561966896,-0.934751510620117,0.302582114934921,0.18034616112709,-0.93199622631073,0.31441742181778,0.0339141935110092,-0.818834006786346,0.573027670383453,0.261492341756821,-0.86548900604248,0.427259624004364,0.260426938533783,-0.865814983844757,0.427249848842621,0.0439394116401672,-0.908836603164673,0.414831846952438,-0.120476096868515,-0.912978649139404,0.38981494307518,0.261313855648041,-0.865477323532104,0.427392214536667,0.042603075504303,-0.909548938274384,0.413407444953918,0.193743914365768,-0.957133948802948,0.215308859944344,0.140239477157593,-0.989543318748474,0.0337186679244041,0.299220830202103,-0.693314909934998,0.655577182769775,0.15650749206543,-0.834070563316345,0.528991341590881,0.125247538089752,-0.99100935459137,0.0470483750104904,0.157511606812477,-0.803180575370789,0.574535489082336,-0.0903962850570679,-0.947427690029144,0.306935280561447,-0.0523757636547089,-0.978346824645996,0.200235724449158,0.066508874297142,-0.98820686340332,-0.137926742434502,
- 0.0234376490116119,-0.815226078033447,0.578668415546417,0.167460232973099,-0.9281325340271,0.332456260919571,0.187035456299782,-0.937272667884827,0.29417297244072,0.163134500384331,-0.98651510477066,0.0132375005632639,0.204851388931274,-0.978727519512177,0.0113359317183495,-0.0713600143790245,-0.997179627418518,0.0232533439993858,0.24190229177475,-0.968540549278259,-0.0584187656641006,0.182312026619911,-0.926066994667053,-0.330397337675095,0.254096239805222,-0.967104196548462,0.0120245590806007,0.227930426597595,-0.973630309104919,-0.0095791220664978,0.216458708047867,-0.90839695930481,-0.357715725898743,0.22753718495369,-0.967098116874695,-0.113789580762386,0.0204228963702917,-0.989323556423187,0.144297674298286,-0.374454438686371,-0.911573052406311,0.169759914278984,0.0128192752599716,-0.989346742630005,0.14501266181469,0.152399361133575,-0.939710736274719,-0.306134343147278,-0.19709475338459,-0.969279050827026,-0.14714552462101,0.246654376387596,-0.906474709510803,-0.342732191085815,-0.081888884305954,-0.996599078178406,0.00919229164719582,-0.250074774026871,-0.676133811473846,0.693040907382965,-0.119429707527161,-0.982075750827789,0.145821079611778,-5.83464279770851e-005,-0.999740481376648,0.0227817110717297,0.0158469974994659,-0.942411303520203,-0.33408060669899,-0.00406637089326978,-0.993669807910919,0.112267419695854,0.658680617809296,-0.751826763153076,0.029939591884613,-0.376134634017944,-0.923802673816681,0.0714954510331154,-0.0424075797200203,-0.996884167194366,0.0665097460150719,0.226971536874771,-0.950298666954041,-0.213111490011215,0.033537533134222,-0.95933985710144,-0.280254364013672,-0.10872346162796,-0.940511882305145,-0.321895301342011,0.429411590099335,-0.888180375099182,0.16352790594101,-0.188876211643219,-0.957706391811371,0.217081218957901,-0.267768353223801,-0.938519835472107,0.217900604009628,0.0760202333331108,-0.988517880439758,-0.130588710308075,0.235626116394997,-0.966002821922302,-0.106391094624996,0.139076247811317,-0.982802271842957,-0.12148106098175,0.301869809627533,-0.741014420986176,-0.599810183048248,
- 0.256890445947647,-0.870297312736511,-0.420226037502289,0.297649353742599,-0.757188856601715,-0.581437706947327,-0.463284730911255,-0.876133382320404,-0.133257210254669,0.535262227058411,-0.829752564430237,-0.158129870891571,0.455606192350388,-0.875093460083008,-0.163200959563255,0.65695720911026,-0.680810153484344,-0.323890119791031,0.21599268913269,-0.633184432983398,-0.743252754211426,0.698262929916382,-0.66789436340332,-0.257577180862427,-0.960817873477936,-0.236094325780869,0.145218715071678,-0.268400639295578,-0.716730177402496,-0.643629491329193,0.461784601211548,-0.510244846343994,-0.725537896156311,-0.422911763191223,-0.894197404384613,-0.14682175219059,0.9425288438797,0.333313137292862,-0.0232730340212584,0.472256600856781,-0.85177755355835,-0.226823389530182,0.836710333824158,-0.204572573304176,0.508001804351807,0.823215007781982,-0.23285436630249,0.517779946327209,-0.446551918983459,-0.851303100585938,0.275453150272369,0.30912372469902,-0.900105774402618,-0.307005017995834,0.38369819521904,-0.830735981464386,-0.40330308675766,0.442724794149399,-0.756721258163452,-0.481007009744644,-0.165959388017654,-0.927354097366333,0.335368365049362,0.339071482419968,-0.888114273548126,-0.310295969247818,0.447892367839813,-0.763622283935547,-0.46505206823349,-0.562664866447449,-0.791163444519043,0.239726364612579,-0.444324314594269,0.662189185619354,-0.603391647338867,0.83028507232666,-0.2306057959795,0.507393002510071,0.231388732790947,-0.972790360450745,-0.0117545127868652,0.013970572501421,-0.928642868995667,-0.370711922645569,0.472045361995697,-0.714688062667847,0.516133964061737,0.57756644487381,-0.701512396335602,0.417489409446716,0.514714002609253,-0.802715837955475,0.30119264125824,0.000609952898230404,-0.929006040096283,-0.370064049959183,-0.507465064525604,-0.70694625377655,-0.492652267217636,-0.452798187732697,-0.707117557525635,-0.543100893497467,0.239224672317505,-0.466033905744553,-0.851812303066254,-0.406225085258484,-0.53661584854126,-0.739611148834229,0.414850234985352,0.461060047149658,0.78442519903183,
- -0.283258855342865,-0.896416127681732,-0.340884864330292,-0.494719058275223,-0.720733880996704,-0.485588073730469,-0.355609863996506,-0.696637749671936,-0.623087048530579,-0.0629243329167366,0.508243024349213,0.85891181230545,-0.286971539258957,-0.748837769031525,-0.597402155399323,-0.213856264948845,-0.937300086021423,-0.275198400020599,-0.223061189055443,-0.923803269863129,-0.311177223920822,0.230869337916374,0.915791451931,0.328672379255295,-0.206464812159538,-0.92349374294281,-0.323313593864441,-0.000482864677906036,-0.962632775306702,-0.270809710025787,0.143144056200981,-0.988507747650146,-0.0486027374863625,0.78711473941803,-0.0316599644720554,0.615993618965149,-0.232833251357079,-0.913697302341461,-0.333085715770721,0.374090075492859,0.333303928375244,-0.865427732467651,0.146502256393433,-0.964579403400421,-0.219371512532234,-0.0125810392200947,-0.990625500679016,0.136025279760361,0.119568049907684,-0.992170214653015,-0.0360798537731171,-0.143476158380508,0.987879574298859,0.0592334158718586,0.341667026281357,-0.904587388038635,-0.254922389984131,0.194348022341728,-0.692886710166931,-0.694360733032227,0.109010174870491,-0.672039806842804,-0.732447504997253,0.788735508918762,-0.598720490932465,-0.139391705393791,-0.16070993244648,-0.977589726448059,0.135980576276779,-0.155819594860077,-0.90952330827713,-0.385340958833694,0.0154251027852297,0.165918424725533,-0.986018836498261,-0.00320717692375183,-0.92289924621582,-0.38502824306488,-0.51364141702652,0.345731526613235,-0.785265684127808,0.145467802882195,-0.979430675506592,-0.139838695526123,-0.437065869569778,-0.813828885555267,-0.382956802845001,0.352424412965775,-0.781184673309326,-0.515313267707825,0.141329124569893,-0.846914052963257,-0.51260381937027,0.2370475679636,-0.862368285655975,-0.447358250617981,0.292897462844849,-0.816096067428589,-0.498195081949234,0.0423943139612675,-0.965366423130035,-0.257430464029312,0.275300443172455,-0.825478792190552,-0.492741793394089,-0.113161504268646,0.926901876926422,0.357837349176407,0.0479974634945393,-0.952826261520386,-0.29969733953476,
- -0.67695540189743,-0.650857388973236,-0.343680292367935,0.136204674839973,0.908236026763916,-0.395671099424362,-0.705527663230896,-0.105400890111923,-0.700800538063049,-0.281313240528107,0.385481655597687,-0.878787159919739,0.221719294786453,-0.0565104559063911,0.973471760749817,0.0404113940894604,-0.748950302600861,-0.66139280796051,-0.613981306552887,-0.420888245105743,-0.667742550373077,-0.630598664283752,-0.678876936435699,-0.376126945018768,-0.632015585899353,-0.531494617462158,-0.563976883888245,-0.589561462402344,-0.572734832763672,-0.569554388523102,-0.411462634801865,-0.438197612762451,-0.799175500869751,-0.670567750930786,-0.627307772636414,-0.39600995182991,-0.47079399228096,-0.576266586780548,-0.668034374713898,-0.681285977363586,-0.673619270324707,-0.286507576704025,0.654975652694702,0.66657292842865,0.35593193769455,0.00969646964222193,-0.735267162322998,-0.677708148956299,-0.0754094272851944,-0.510371387004852,-0.856641411781311,-0.270669460296631,0.406826734542847,-0.872485041618347,0.439011633396149,0.742874622344971,0.505377173423767,-0.443458080291748,-0.740902841091156,-0.504388809204102,-0.74226438999176,-0.541396200656891,-0.394884556531906,-0.480924665927887,-0.75905579328537,-0.438800275325775,-0.803511381149292,-0.514583706855774,-0.299287647008896,-0.393410176038742,-0.796120285987854,-0.459805190563202,-0.980116426944733,-0.145904824137688,0.134475648403168,-0.65803188085556,-0.747370779514313,-0.0918204709887505,-0.768504977226257,-0.638495206832886,-0.041521281003952,-0.780832886695862,-0.594744205474854,0.191257789731026,-0.998457252979279,0.0486232005059719,0.0268117543309927,-0.883351266384125,-0.442552000284195,0.154396563768387,-0.670963108539581,-0.738258063793182,-0.0691642835736275,-0.30969226360321,-0.936849594116211,-0.162491619586945,-0.762296438217163,-0.646203398704529,-0.0364036709070206,-0.774779856204987,-0.626660287380219,0.0837445482611656,-0.763899564743042,-0.589955031871796,-0.261554151773453,-0.766756594181061,-0.625244438648224,0.145443111658096,0.663149952888489,0.717397212982178,-0.213479533791542,
- -0.868805050849915,-0.473910391330719,0.143480837345123,-0.982842028141022,0.178476020693779,-0.0465627238154411,-0.363427430391312,-0.804844379425049,0.469197452068329,-0.872486591339111,-0.42805877327919,-0.235654056072235,-0.68620628118515,-0.710998058319092,0.15363210439682,-0.509735643863678,-0.753096222877502,-0.415951490402222,-0.431068062782288,-0.81263929605484,-0.392170459032059,-0.304072082042694,-0.886548280715942,-0.348672538995743,-0.737771511077881,-0.604628920555115,-0.300195068120956,-0.765712857246399,-0.627239167690277,0.142320141196251,-0.760362148284912,-0.623062551021576,-0.18341913819313,-0.307295620441437,-0.885440587997437,-0.348660856485367,-0.309856414794922,-0.884175181388855,-0.349604576826096,-0.509720385074615,-0.753118216991425,-0.415930658578873,-0.759222865104675,-0.649898111820221,0.0348292738199234,-0.690893113613129,-0.709195137023926,0.140388876199722,-0.863229751586914,-0.451643407344818,-0.225505501031876,-0.763955235481262,-0.584868311882019,-0.272583276033401,-0.296962589025497,-0.882520794868469,-0.364650875329971,-0.520511507987976,-0.784114420413971,-0.337982922792435,0.568548858165741,-0.523734331130981,-0.634393036365509,-0.0553990192711353,-0.968912363052368,0.241122201085091,-0.00515712797641754,-0.983738660812378,0.179531842470169,-0.294911652803421,-0.882689952850342,-0.36590376496315,-0.285332202911377,-0.949080348014832,-0.133536577224731,-0.293644368648529,-0.910632491111755,-0.290725827217102,-0.280248939990997,-0.928287446498871,-0.244423866271973,-0.339027225971222,-0.873916029930115,-0.348326504230499,-0.521866619586945,-0.448276817798615,-0.725743174552917,-0.545731902122498,-0.817131638526917,-0.185668468475342,0.295542299747467,-0.829802870750427,-0.473373174667358,-0.198655411601067,-0.91662734746933,-0.346886724233627,-0.384414464235306,-0.327825903892517,-0.862992346286774,0.267346799373627,-0.828618049621582,-0.491851419210434,-0.14334212243557,-0.583978414535522,-0.799013316631317,-0.654821991920471,0.740237593650818,0.152500554919243,0.909755885601044,-0.410620301961899,0.0611163005232811,
- -0.155402570962906,-0.887589514255524,-0.433629989624023,-0.405127853155136,-0.160456866025925,0.90006947517395,-0.734755396842957,-0.678320527076721,0.00398609042167664,-0.385929614305496,-0.535460352897644,-0.751226007938385,0.62065190076828,-0.467271566390991,-0.629641652107239,0.00794966518878937,-0.544308543205261,-0.838847458362579,-0.555438756942749,-0.414180248975754,-0.721070408821106,0.537233769893646,0.650906920433044,-0.536376893520355,0.386482506990433,-0.440520912408829,-0.810291647911072,-0.125325471162796,0.809227406978607,0.573972582817078,-0.0626448541879654,-0.632356703281403,-0.772140264511108,-0.241492584347725,-0.963005065917969,-0.119593232870102,-0.0747736170887947,-0.663376212120056,-0.744540750980377,0.0700791478157043,-0.45892071723938,-0.885709226131439,-0.00761933904141188,-0.931439876556396,-0.363815397024155,0.0815168395638466,-0.336981981992722,-0.937975585460663
- }
- BinormalsW: *1317 {
- 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
- }
- }
- LayerElementBinormal: 1 {
- Version: 102
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Binormals: *3951 {
- a: -0.54996383190155,-0.0507475771009922,0.833645403385162,-0.658392548561096,-0.653386950492859,0.373637169599533,-0.564484417438507,-0.824373602867126,0.0420179925858974,-0.68111377954483,-0.532958984375,0.502034604549408,0.328546524047852,-0.88043737411499,-0.341887682676315,0.524207592010498,0.774315595626831,-0.354459851980209,-0.646573126316071,-0.758257031440735,0.0836029276251793,-0.565969228744507,-0.648173391819,0.509460628032684,0.211272001266479,0.282109767198563,0.935830235481262,-0.344721078872681,-0.799338579177856,0.492164015769959,-0.410327404737473,-0.746221959590912,0.524198770523071,-0.302700579166412,-0.828956067562103,0.470323592424393,-0.408286154270172,-0.873936235904694,0.26370045542717,-0.290109902620316,-0.900756657123566,0.323223978281021,-0.632617115974426,-0.764730751514435,0.122403435409069,-0.802014768123627,0.119055479764938,0.585318744182587,-0.697887659072876,-0.0267855525016785,0.7157062292099,0.826461970806122,-0.163364320993423,-0.538769721984863,-0.43034890294075,0.805719017982483,0.406960338354111,0.778787434101105,-0.139339536428452,-0.611616373062134,-0.748169124126434,-0.388113886117935,0.53815495967865,-0.748054623603821,-0.0298296809196472,0.66296648979187,-0.882182359695435,0.305522561073303,-0.358343839645386,-0.725939035415649,-0.0418323874473572,0.686485707759857,0.133545458316803,0.982963442802429,-0.126287549734116,-0.812389135360718,-0.188247516751289,0.551893770694733,-0.829184770584106,0.0807641744613647,0.553109169006348,0.556546628475189,-0.452857971191406,0.696545422077179,0.538082599639893,-0.450072854757309,0.712672233581543,0.842994809150696,-0.201217487454414,-0.498870044946671,0.534641861915588,0.190040677785873,0.823433578014374,0.536740124225616,-0.432855576276779,0.724255561828613,0.524748682975769,-0.488113045692444,0.69741278886795,0.54494321346283,-0.411203235387802,0.730718016624451,0.148736268281937,-0.589204907417297,0.794175803661346,-0.939018487930298,-0.0262796469032764,-0.342861294746399,-0.0277641136199236,0.999197602272034,0.0288687031716108,
- 0.494495779275894,-0.390506267547607,0.77651709318161,0.47150507569313,-0.492531210184097,0.731502532958984,0.392162531614304,-0.881951808929443,0.261476159095764,0.983598947525024,0.0683117359876633,-0.166933313012123,-0.927765727043152,-0.287472605705261,0.237929224967957,0.00757598783820868,-0.997031986713409,-0.0766148492693901,-0.197337090969086,0.94315642118454,-0.267421156167984,0.264024406671524,-0.881167471408844,0.392218291759491,0.993634462356567,0.0315747559070587,-0.108137346804142,-0.27761647105217,0.922620892524719,-0.267768204212189,-0.0516786128282547,-0.949684381484985,0.308915823698044,0.213879987597466,-0.722980678081512,0.656927883625031,0.139516949653625,-0.981028079986572,0.134606510400772,0.141535520553589,-0.979131937026978,0.145837351679802,0.411961883306503,-0.125819981098175,-0.90247255563736,0.13679426908493,-0.0402556546032429,-0.989781200885773,-0.927872657775879,0.288397133350372,-0.236388474702835,-0.286348432302475,0.0918918401002884,0.95370888710022,-0.926492273807526,0.292333453893662,-0.236967146396637,0.135836958885193,-0.0443976745009422,-0.989735960960388,-0.964736878871918,0.152674525976181,-0.214413806796074,-0.188115850090981,0.190552517771721,0.963484406471252,0.981626510620117,-0.18020798265934,0.0627261847257614,0.0850418582558632,-0.249570265412331,-0.964615345001221,0.966402173042297,-0.25315123796463,0.0445121340453625,-0.117462918162346,0.257144421339035,0.959207653999329,-0.353686213493347,-0.878910005092621,-0.3200364112854,-0.734012961387634,-0.583069801330566,-0.348216325044632,-0.852236151695251,-0.402350306510925,-0.334376841783524,0.675298690795898,0.524499356746674,0.518528819084167,-0.733880519866943,-0.565266191959381,-0.37668764591217,-0.688487708568573,-0.533788442611694,-0.490973174571991,0.0195759981870651,-0.946582198143005,-0.321867942810059,-0.700076997280121,-0.554873168468475,-0.449453115463257,0.599919378757477,0.661612987518311,0.449849992990494,-0.630650579929352,-0.473300993442535,-0.615033388137817,-0.575898468494415,-0.427075028419495,-0.697099685668945,
- -0.754900276660919,-0.583074748516083,-0.300248891115189,0.0382083244621754,0.213217779994011,-0.976257383823395,0.806737065315247,-0.226748242974281,-0.545674383640289,0.78739857673645,-0.210265517234802,-0.579475581645966,0.750261664390564,-0.518539190292358,-0.410152167081833,-0.503365337848663,0.840577244758606,-0.200132936239243,0.732546865940094,-0.611590564250946,-0.298884660005569,0.454117268323898,0.199540376663208,-0.868309378623962,0.651705503463745,-0.621087312698364,-0.435351014137268,0.594272375106812,-0.776594996452332,-0.209142714738846,0.357298880815506,-0.310878545045853,-0.880733788013458,-0.149989411234856,-0.679896116256714,-0.717805325984955,-0.595507025718689,0.0226843375712633,0.803029894828796,0.330535411834717,-0.261895716190338,-0.906728744506836,-0.150877490639687,-0.557194948196411,-0.816559672355652,-0.583363473415375,-0.670245230197906,-0.458757430315018,0.121604144573212,-0.707964837551117,-0.695699870586395,-0.287386655807495,-0.906648874282837,0.308863967657089,0.380103409290314,0.294202268123627,-0.876907348632813,-0.0193932522088289,-0.643079042434692,-0.765554308891296,0.732817351818085,-0.396883189678192,-0.55268669128418,0.0164287090301514,-0.64121401309967,-0.767186224460602,0.0725582093000412,-0.996422171592712,0.0433389991521835,-0.109978839755058,-0.591397702693939,-0.798845171928406,-0.0370309501886368,-0.864587426185608,-0.501116037368774,-0.223236680030823,-0.515450358390808,-0.827330946922302,-0.108390361070633,-0.82014387845993,-0.56179666519165,-0.070008896291256,-0.883921086788177,-0.462365925312042,0.165842711925507,-0.589038968086243,-0.790904223918915,-0.194606229662895,-0.570080399513245,-0.79820853471756,-0.129405602812767,-0.579283058643341,-0.804789066314697,-0.127296462655067,-0.88565719127655,-0.446550130844116,-0.261891752481461,-0.486479431390762,-0.833517014980316,-0.271727085113525,-0.431621313095093,-0.860155522823334,0.0195179581642151,-0.640302777290344,-0.767874598503113,0.0586253777146339,-0.929502964019775,-0.364125609397888,-0.047687903046608,0.862399458885193,0.503977298736572,
- 0.0899069234728813,-0.983614265918732,-0.156268686056137,-0.118237905204296,-0.855267107486725,-0.504517555236816,-0.489038467407227,0.239069908857346,-0.83886045217514,0.560515940189362,-0.0798701345920563,-0.824283123016357,0.113761618733406,-0.961758852005005,-0.249155357480049,-0.16252213716507,0.934102773666382,0.317865788936615,0.0891166776418686,0.703606724739075,0.704979300498962,-0.0772288739681244,-0.71640419960022,-0.693397998809814,-0.178669273853302,-0.595538914203644,-0.783205449581146,0.147771522402763,-0.982973873615265,-0.109205827116966,0.00110151374246925,-0.998911678791046,-0.0466307513415813,0.736976385116577,0.610588133335114,-0.28991025686264,0.591260135173798,0.777982652187347,-0.212496042251587,0.576282382011414,0.774433016777039,-0.261059701442719,0.617319524288177,0.589922904968262,0.52048796415329,0.131887912750244,-0.990399181842804,0.0414146967232227,0.368168592453003,0.892562091350555,-0.260355174541473,0.0794095322489738,0.987263977527618,-0.137854859232903,0.673562467098236,0.730884373188019,-0.110099226236343,0.764225602149963,0.641248881816864,0.0689857080578804,0.0190592259168625,0.705038726329803,-0.70891261100769,0.427012205123901,0.899785161018372,-0.0897061973810196,-0.453336000442505,-0.886167049407959,0.0958874523639679,0.468954771757126,0.877592861652374,-0.0995596498250961,-0.025183167308569,0.99799633026123,0.0580443888902664,0.5102618932724,0.856342077255249,-0.0794432163238525,0.606325387954712,0.788074493408203,-0.106339290738106,0.306934654712677,0.936203956604004,-0.171211034059525,0.387324810028076,0.906688690185547,-0.16701827943325,0.50648158788681,0.84763777256012,-0.158072218298912,0.248514667153358,0.951185464859009,-0.182993561029434,0.269699990749359,0.95974987745285,-0.078371986746788,0.252044677734375,0.953260779380798,-0.16663558781147,0.403798609972,0.879049897193909,-0.253413021564484,0.717950284481049,0.675353288650513,0.16865748167038,0.225252568721771,0.881767630577087,-0.414423763751984,0.335594832897186,0.938687324523926,-0.0790077149868011,0.836408495903015,-0.386936277151108,-0.388202369213104,
- 0.380304962396622,0.919476509094238,-0.0996557027101517,0.728181540966034,0.678367018699646,-0.0978256165981293,0.30359810590744,0.952182650566101,0.0343016535043716,0.493593096733093,0.869454622268677,-0.0203586220741272,-0.41789248585701,-0.603220820426941,0.679330945014954,0.548932492733002,0.6966512799263,-0.461898356676102,0.515998005867004,0.675448834896088,-0.526796996593475,0.0935540720820427,0.455263018608093,-0.885428249835968,0.337650984525681,0.819347620010376,-0.463315546512604,0.250717610120773,0.704761326313019,-0.66366571187973,0.369804710149765,0.901929438114166,-0.223087072372437,0.535571873188019,0.835498332977295,0.122903272509575,0.37961745262146,0.901857078075409,-0.206263154745102,0.206225693225861,0.90064811706543,0.382496893405914,0.199052229523659,0.89209520816803,0.405640691518784,0.329637467861176,0.916850447654724,-0.22522084414959,0.100841544568539,0.987848877906799,0.118260510265827,-0.988948404788971,-0.122091338038445,0.0841116234660149,-0.994709849357605,0.0115544339641929,0.102072924375534,0.0372221507132053,0.99754124879837,-0.0593803003430367,-0.987729728221893,0.0962957590818405,-0.122951492667198,-0.117318212985992,0.99009096622467,-0.0771776139736176,0.216755121946335,0.975697875022888,0.0321080014109612,0.0584331341087818,0.998291075229645,-0.000802209484390914,-0.156558126211166,0.986645460128784,-0.0449477545917034,0.540142714977264,0.83029717206955,-0.137304455041885,0.0586644038558006,0.99827778339386,-0.000160017967573367,0.264629155397415,0.962590038776398,-0.0582394897937775,0.239497274160385,0.970843195915222,-0.0102259889245033,0.7167888879776,0.673245787620544,-0.181531921029091,0.566788136959076,0.814406275749207,-0.12447439879179,0.495230436325073,0.613156318664551,-0.615456104278564,0.261373341083527,0.657957434654236,-0.706240773200989,0.144570648670197,0.664328694343567,-0.733325839042664,0.399495303630829,0.895005166530609,-0.198416858911514,0.044504176825285,0.696620881557465,-0.716057777404785,0.374966353178024,0.893233418464661,-0.248061031103134,0.212749987840652,0.546044588088989,-0.810291767120361,
- 0.32250189781189,0.918738961219788,-0.22784049808979,0.260927140712738,0.699584424495697,-0.665205776691437,0.412394315004349,0.712171494960785,-0.56810450553894,0.417126297950745,0.710368573665619,-0.566905856132507,-0.095719039440155,0.789201676845551,-0.606628835201263,0.194086879491806,0.742002725601196,-0.641687095165253,-0.0685555040836334,0.801681280136108,-0.593807458877563,0.287593454122543,0.705912470817566,-0.647284924983978,0.224616676568985,0.689889311790466,-0.688186168670654,0.240863114595413,0.843710541725159,-0.479726493358612,0.204281225800514,0.554715633392334,-0.806572914123535,-0.0432619862258434,0.808524191379547,-0.586870491504669,0.169082194566727,0.769434750080109,-0.615939438343048,-0.0976073741912842,0.812390804290771,-0.574886083602905,-0.21370068192482,0.796305358409882,-0.565888464450836,-0.142305582761765,0.778261244297028,-0.611603260040283,-0.0449209921061993,0.744892776012421,-0.665670216083527,-0.245362013578415,0.626748025417328,-0.739583969116211,-0.495904356241226,0.588168144226074,-0.638856112957001,-0.491585344076157,0.589284241199493,-0.641161501407623,-0.0891977176070213,0.785551786422729,-0.612333357334137,-0.0815612152218819,0.797927618026733,-0.597209572792053,-0.125597670674324,0.720764398574829,-0.681706666946411,0.400288224220276,0.71249920129776,-0.576293528079987,-0.105520322918892,0.794564723968506,-0.597940027713776,-0.148170635104179,0.791877448558807,-0.592432081699371,-0.547986268997192,0.757578611373901,-0.354662835597992,-0.5315842628479,0.557643055915833,-0.637536227703094,-0.526307642459869,0.533400297164917,-0.662181556224823,-0.0829261168837547,0.797524392604828,-0.597560107707977,-0.143172457814217,0.696625828742981,-0.703003644943237,-0.127146735787392,0.725780725479126,-0.676074028015137,-0.582606256008148,0.410293519496918,-0.701590538024902,-0.633987247943878,0.725682318210602,-0.267292827367783,-0.631550312042236,0.736674904823303,-0.241773426532745,-0.337474554777145,0.802881598472595,-0.491418480873108,-0.151190638542175,0.592462778091431,-0.791283309459686,
- -0.0478474088013172,0.449067503213882,-0.8922159075737,-0.111371070146561,0.673861026763916,-0.730416178703308,-0.0959267616271973,0.677631676197052,-0.729118227958679,-0.567649781703949,0.471313029527664,-0.675009489059448,-0.695797801017761,0.708698868751526,0.116667866706848,-0.785318434238434,0.615426063537598,0.0672739595174789,-0.905008614063263,0.424835801124573,-0.0217703115195036,-0.0906097888946533,0.675363600254059,-0.731897473335266,-0.745806336402893,0.258023321628571,-0.61416357755661,-0.59622997045517,0.404602885246277,-0.693401992321014,-0.941127061843872,0.335699200630188,0.0398259647190571,-0.694315493106842,0.664532661437988,0.27626496553421,-0.566019415855408,0.747712731361389,0.347199827432632,-0.377478718757629,0.472332060337067,-0.796500146389008,-0.441541343927383,0.684668302536011,-0.579888463020325,-0.462618499994278,0.811468839645386,-0.357074797153473,0.194645687937737,0.569179773330688,-0.79884135723114,0.158947572112083,0.333108156919479,-0.929394721984863,0.210059329867363,0.699201345443726,-0.683368563652039,-0.18380831182003,0.88701605796814,-0.423576682806015,-0.230162903666496,0.874884605407715,-0.426148056983948,-0.397183805704117,0.812312602996826,-0.427075356245041,-0.185590296983719,0.77171915769577,-0.608281016349792,-0.487409621477127,0.627432525157928,-0.607256293296814,-0.222676768898964,0.759065628051758,-0.611747145652771,-0.421384364366531,0.696339905261993,-0.580987095832825,-0.43934965133667,0.81263792514801,-0.382873058319092,-0.423790693283081,0.707703948020935,-0.565293312072754,-0.255547285079956,0.791572630405426,-0.555075109004974,-0.511297345161438,0.703773140907288,-0.493232607841492,-0.385375648736954,0.755581498146057,-0.529700219631195,-0.351656973361969,0.683979868888855,-0.639147102832794,-0.406073331832886,0.729416728019714,-0.550504922866821,-0.611011147499084,0.741295158863068,0.277753382921219,-0.105828918516636,0.951871573925018,-0.287647068500519,-0.841270327568054,0.333021759986877,0.425864696502686,-0.335076600313187,0.933104991912842,-0.130532503128052,
- -0.828452408313751,-0.00615775585174561,0.560025691986084,-0.534334659576416,0.749126672744751,0.39152991771698,-0.701571643352509,0.512513875961304,0.495102822780609,-0.467182755470276,0.512563347816467,0.72042989730835,-0.435215920209885,0.698148608207703,-0.568485379219055,-0.585034787654877,0.745692431926727,0.318868696689606,-0.522853076457977,0.460336536169052,0.717436373233795,-0.597947120666504,0.170997768640518,0.783083021640778,-0.36321422457695,0.756185591220856,0.544296562671661,-0.697594344615936,0.459506809711456,0.549741446971893,-0.396727204322815,0.909614980220795,-0.123321652412415,-0.596131026744843,-0.0943840891122818,0.797320246696472,-0.739904046058655,0.438664197921753,0.510015487670898,-0.839312672615051,0.32491397857666,0.435873001813889,-0.0665083974599838,0.762675106525421,0.643353223800659,-0.914340198040009,0.404720097780228,-0.0135521627962589,0.152462422847748,0.534061551094055,0.831584930419922,-0.612086296081543,0.627026379108429,0.481859266757965,-0.311008989810944,0.679112195968628,0.664891004562378,-0.50468510389328,0.808587193489075,0.302456170320511,-0.18725711107254,0.562051475048065,0.805625855922699,0.400585293769836,-0.139778807759285,0.90553492307663,-0.311006277799606,0.679693579673767,0.664297938346863,-0.173543497920036,0.562198281288147,0.808588743209839,-0.345690220594406,0.697272300720215,0.627940893173218,-0.512168526649475,-0.690403461456299,0.510907471179962,-0.446016281843185,0.531024754047394,0.72047358751297,0.0975331217050552,0.719865083694458,0.687227427959442,-0.977469205856323,0.190680354833603,0.0905266776680946,-0.14867739379406,0.726433932781219,0.670961141586304,-0.0314454585313797,0.556682825088501,0.830129742622375,-0.076861672103405,-0.0199105013161898,0.996842920780182,0.0206891298294067,0.912042558193207,0.409573346376419,0.0206891298294067,0.912042558193207,0.409573346376419,0.0402820929884911,0.978663623332977,0.201481848955154,-0.0314454585313797,0.556682825088501,0.830129742622375,-0.114730425179005,0.229272782802582,0.966576933860779,0.283674865961075,0.493009626865387,0.822478115558624,
- -0.298907399177551,-0.501429319381714,-0.811925530433655,0.450532108545303,0.812361836433411,0.370255440473557,0.0853912755846977,0.878025770187378,0.470934212207794,0.405613750219345,0.828124642372131,0.386894166469574,0.352913558483124,0.790885031223297,0.49995294213295,0.820541858673096,0.571532607078552,-0.00784280896186829,0.500909268856049,0.773848950862885,0.387618064880371,0.189843714237213,-0.3025783598423,-0.934026598930359,0.194825500249863,0.908219814300537,0.370377957820892,-0.0677804946899414,0.559665441513062,0.825942099094391,0.192796409130096,0.636208295822144,0.74703985452652,0.223773539066315,0.519802153110504,0.824458062648773,0.0415922254323959,0.946857511997223,0.31895312666893,0.336118519306183,0.725869119167328,0.600115358829498,0.261005938053131,0.866395831108093,0.425716161727905,0.189920842647552,0.944522202014923,0.267970025539398,0.501218855381012,0.742177844047546,0.444917619228363,0.202525615692139,0.822795748710632,0.531027793884277,0.399104177951813,0.780324101448059,0.48146665096283,0.163444116711617,0.97184145450592,0.169735953211784,0.352725595235825,0.74109274148941,0.571284770965576,0.21727791428566,0.935220956802368,0.27955687046051,0.365239024162292,0.752180397510529,0.548475205898285,0.748154401779175,0.639674603939056,0.176299482584,0.502961933612823,0.740821778774261,0.445210576057434,0.476693391799927,0.878866732120514,0.0188849549740553,0.540847897529602,0.840298593044281,0.0371717624366283,0.515603363513947,0.856305778026581,0.0298926085233688,-0.112069755792618,0.965082883834839,-0.236760199069977,0.172611832618713,0.613455712795258,0.770634412765503,0.0353189036250114,0.947878301143646,0.316669106483459,0.534626543521881,0.844824016094208,0.0211393237113953,0.133980453014374,0.989535808563232,-0.0535553619265556,0.445984065532684,0.895035028457642,0.0032365913502872,0.186177641153336,0.98219621181488,0.0250714495778084,-0.00350913451984525,-0.400442987680435,-0.916315078735352,0.200121879577637,0.957062065601349,-0.209722355008125,0.494434505701065,0.86017370223999,0.125043749809265,
- -0.416155099868774,0.844883799552917,-0.336134642362595,0.353847771883011,0.934333264827728,0.0425806604325771,0.2465980052948,0.968357920646667,-0.0383737571537495,0.234475940465927,0.971844494342804,0.0232242029160261,0.260551005601883,0.958445370197296,-0.11617086827755,0.547551512718201,0.0337738655507565,0.836090087890625,0.840421676635742,0.402422547340393,0.362970352172852,0.644214987754822,0.596718966960907,-0.478449165821075,0.551806449890137,0.831908822059631,0.0586292967200279,0.0333916060626507,0.983423709869385,0.178221628069878,0.975013792514801,0.173151358962059,-0.139165043830872,0.100214414298534,0.982930660247803,-0.154287308454514,0.11307816952467,0.983745992183685,-0.139488875865936,0.519120872020721,0.756694197654724,0.397400885820389,0.992935001850128,-0.0045213159173727,-0.118573471903801,-0.07669797539711,0.964778304100037,-0.251635104417801,0.155209228396416,0.948752164840698,-0.275280684232712,0.172759428620338,0.973841726779938,-0.147603020071983,0.247717350721359,0.953572332859039,-0.171277225017548,0.163047343492508,0.975980460643768,-0.144491195678711,0.65119868516922,0.738987982273102,-0.172734305262566,0.429263770580292,0.903109669685364,0.0112097077071667,-0.413290202617645,-0.91030740737915,-0.0230613220483065,0.195906907320023,0.977741479873657,-0.0751150548458099,0.393130987882614,0.891963005065918,-0.22327134013176,0.305574804544449,0.939155161380768,-0.156880840659142,0.236545413732529,-0.26005619764328,0.936171531677246,0.184520974755287,-0.410809576511383,0.892853677272797,0.273147165775299,-0.135708391666412,0.952351748943329,-0.0800209864974022,0.0845687165856361,0.993199229240417,-0.193613111972809,-0.485454678535461,0.85255366563797,-0.236721813678741,-0.840745449066162,0.48693922162056,-0.153176218271255,0.225547060370445,0.962115168571472,-0.113487124443054,-0.541433215141296,0.83304899930954,-0.119925409555435,-0.48600035905838,0.865691423416138,-0.018039308488369,-0.277192831039429,0.960644960403442,0.213340789079666,-0.274754613637924,0.93754768371582,0.447789251804352,-0.255715757608414,0.85679304599762,
- 0.119634211063385,-0.104431569576263,0.987310409545898,0.117039427161217,-0.761250734329224,0.63780802488327,0.107870109379292,0.1037378013134,0.988737821578979,-0.508814573287964,0.339546501636505,0.791085243225098,-0.648235261440277,-0.654994130134583,0.388296186923981,-0.699833333492279,-0.346828639507294,0.624454438686371,0.102748841047287,-0.169676244258881,0.980128884315491,-0.106320574879646,-0.449537366628647,0.886911571025848,-0.0566939376294613,-0.386843174695969,0.920401215553284,0.382713079452515,-0.441497504711151,0.811548352241516,0.197258770465851,-0.305769950151443,0.931447148323059,-0.020074900239706,-0.13433139026165,0.99073314666748,-0.654725074768066,-0.57140177488327,0.494808197021484,0.451266825199127,-0.743016600608826,0.494251549243927,0.384213984012604,-0.764452278614044,0.517679691314697,-0.178617253899574,-0.476848751306534,0.860645771026611,0.32717964053154,-0.666501879692078,0.669872224330902,-0.0942682772874832,-0.52159571647644,0.847969055175781,-0.274770736694336,-0.663138329982758,0.696238875389099,-0.0901150405406952,-0.478804290294647,0.873284459114075,-0.0396420769393444,-0.421963930130005,0.905745506286621,-0.30647611618042,-0.177687704563141,0.935146808624268,0.822132349014282,-0.369661033153534,0.432954072952271,0.172195553779602,-0.319435507059097,0.931831359863281,-0.491875767707825,-0.573667585849762,0.654953300952911,-0.116792365908623,-0.550171315670013,0.826844096183777,-0.601647913455963,-0.559327125549316,0.57023948431015,0.230306327342987,-0.84875214099884,0.476003170013428,-0.346281409263611,-0.755261600017548,0.556479215621948,-0.737320303916931,-0.478143304586411,0.477218896150589,0.109625354409218,0.819422364234924,0.562609493732452,-0.709381818771362,-0.327649414539337,0.62403792142868,-0.682686269283295,-0.666518211364746,0.299487739801407,-0.866491675376892,-0.44223627448082,0.231558471918106,-0.467533648014069,-0.558592140674591,0.685118436813354,-0.636159896850586,-0.541509985923767,0.549606800079346,-0.826484799385071,0.314751297235489,0.466748833656311,-0.792950391769409,-0.606776833534241,0.0552412569522858,
- -0.381302833557129,-0.894406676292419,-0.233762741088867,-0.782917380332947,-0.62099027633667,0.0375707298517227,-0.596046090126038,-0.794063687324524,-0.119129702448845,-0.423499673604965,-0.87665331363678,-0.228313505649567,-0.600889921188354,-0.789176166057587,-0.12701290845871,-0.672390937805176,-0.730327486991882,-0.120466664433479,-0.501722753047943,0.858126044273376,0.109059900045395,-0.55592405796051,-0.623435914516449,0.549796521663666,-0.875973701477051,-0.349083125591278,0.332883179187775,-0.432626783847809,-0.679998636245728,0.591976284980774,-0.632932722568512,-0.756072819232941,-0.166584178805351,-0.769120097160339,-0.453938245773315,0.449882507324219,-0.74762225151062,-0.647433161735535,0.147957131266594,-0.642825543880463,-0.750087141990662,-0.155385449528694,-0.747215270996094,-0.647572100162506,0.149398192763329,-0.0897184014320374,-0.619849681854248,-0.779574871063232,-0.12024599313736,-0.890275120735168,0.439262002706528,-0.824686288833618,-0.553353786468506,-0.117013409733772,-0.788623034954071,-0.611372470855713,-0.0655553415417671,0.67790699005127,-0.581132709980011,0.450252085924149,-0.772236347198486,-0.488044321537018,-0.406772375106812,-0.385471403598785,-0.911824345588684,-0.141379699110985,-0.830524623394012,-0.545371770858765,-0.113130696117878,-0.787210702896118,-0.614441812038422,-0.0525422841310501,-0.830921232700348,-0.544640064239502,-0.113741092383862,0.778968095779419,-0.589668452739716,0.213307201862335,0.425779610872269,-0.819039821624756,0.384558767080307,0.39367339015007,-0.830125391483307,0.39485827088356,0.202375769615173,-0.820473909378052,0.534664988517761,0.103488519787788,-0.863979935646057,0.492776602506638,0.764805793762207,-0.227962344884872,0.602582156658173,-0.0360509008169174,-0.802002191543579,0.596232175827026,0.202260538935661,-0.829947769641876,0.519882261753082,0.422380328178406,-0.806525826454163,0.413655608892441,0.110404953360558,-0.973806262016296,0.198776751756668,0.191903874278069,-0.831531345844269,0.521275877952576,0.236903071403503,-0.652436912059784,0.71986311674118,
- -0.365298926830292,0.851552069187164,-0.37605294585228,0.336282193660736,-0.859731137752533,0.384417235851288,0.0540263280272484,-0.894737899303436,0.44331169128418,0.244346216320992,-0.86345237493515,0.441299140453339,0.361631006002426,-0.904869019985199,0.224577456712723,0.171115010976791,-0.816126525402069,0.551957607269287,0.104289278388023,-0.77812272310257,0.619393944740295,0.149599075317383,-0.812543094158173,0.563377201557159,0.36123326420784,-0.904231369495392,0.227763578295708,0.104543060064316,-0.841125965118408,0.530639171600342,-0.0447098016738892,-0.888535559177399,0.456624209880829,0.281834781169891,-0.749384582042694,0.599159359931946,0.0822909027338028,-0.798293471336365,0.596620261669159,0.0822136998176575,-0.797826707363129,0.597254931926727,0.0898341611027718,-0.842920005321503,0.530486464500427,0.0773961693048477,-0.801969110965729,0.592330455780029,0.132053330540657,-0.92270839214325,0.362175464630127,0.0943435728549957,-0.844107627868652,0.527808248996735,-0.434164941310883,-0.395290583372116,0.809472799301147,-0.374493211507797,-0.926882088184357,-0.0253849737346172,-0.307134181261063,-0.924872934818268,-0.224229276180267,0.0785600990056992,-0.84270453453064,0.532613694667816,-0.261696338653564,-0.909676730632782,0.322495400905609,-0.029402419924736,-0.879614531993866,0.474777579307556,-0.494752913713455,-0.279660522937775,0.822805881500244,-0.299894452095032,-0.953963756561279,-0.00406726077198982,-0.456649541854858,-0.782462060451508,0.423349142074585,-0.199749901890755,-0.777330875396729,0.596537351608276,-0.730946481227875,0.626668989658356,0.270191133022308,0.802242696285248,-0.215796440839767,-0.556631445884705,-0.106987968087196,-0.538609504699707,0.835735321044922,-0.340565353631973,-0.787718296051025,0.513337433338165,-0.320633351802826,-0.77069503068924,0.550657331943512,-0.487547993659973,-0.333172470331192,-0.807027339935303,-0.144590973854065,-0.639284133911133,0.755254447460175,-0.292602956295013,-0.770727097988129,0.566006422042847,-0.0459601134061813,-0.796538054943085,0.60283899307251,
- -0.162024438381195,-0.760993480682373,0.628201425075531,0.196442574262619,-0.830849230289459,0.520672678947449,0.896886885166168,-0.228640273213387,0.378572940826416,0.00183932483196259,-0.727448344230652,0.686160027980804,-0.583243012428284,-0.641282677650452,0.498582124710083,0.221559524536133,-0.893942475318909,0.38958728313446,-0.00105872750282288,-0.938335180282593,0.345725297927856,-0.897849202156067,-0.432311564683914,-0.0835078358650208,-0.625856876373291,-0.708761215209961,0.325516164302826,-0.0295574963092804,-0.926316857337952,0.375584185123444,-0.36845675110817,-0.853810369968414,0.367760092020035,-0.682039618492126,0.639759302139282,-0.354302197694778,-0.408316314220428,-0.574028253555298,-0.70976710319519,-0.702375054359436,0.587422847747803,-0.401999801397324,-0.40267550945282,-0.788003325462341,-0.46572870016098,-0.714662075042725,0.644642412662506,-0.271466851234436,-0.170249372720718,-0.918836414813995,-0.356026381254196,-0.347560703754425,-0.926918685436249,-0.141503497958183,-0.726759552955627,-0.173405587673187,0.664643585681915,-0.559543550014496,-0.816933572292328,0.139751598238945,-0.535137176513672,-0.738769471645355,0.40969243645668,-0.410193264484406,-0.710592806339264,-0.571663677692413,-0.558011054992676,-0.82413387298584,0.0970931649208069,-0.435322046279907,-0.870398223400116,0.23000356554985,-0.484303027391434,-0.140353128314018,0.86356908082962,-0.469091475009918,-0.816271066665649,0.337127238512039,-0.0537105947732925,-0.914320349693298,-0.40141436457634,0.424141407012939,-0.882888436317444,-0.201524466276169,-0.404194831848145,-0.777638673782349,-0.48156476020813,-0.532321453094482,-0.836954414844513,0.127047911286354,-0.269611835479736,-0.953126549720764,0.137328922748566,0.0471777617931366,-0.989660859107971,0.135446205735207,-0.419324517250061,-0.728266298770905,0.542028725147247,-0.583925783634186,-0.809160947799683,0.0654924064874649,-0.203153342008591,-0.521225214004517,0.828886687755585,-0.393634170293808,-0.870967626571655,0.294053465127945,-0.355263382196426,-0.854632258415222,0.378671050071716,
- -0.0182338505983353,-0.541015028953552,0.840815246105194,0.264162540435791,-0.963056683540344,-0.0523458272218704,-0.231644749641418,-0.972024202346802,0.0388551130890846,-0.556272625923157,-0.825062274932861,0.0991614758968353,-0.169924259185791,-0.875213861465454,0.452908843755722,-0.333302527666092,-0.750676453113556,0.570433437824249,-0.581629931926727,-0.413633942604065,0.70043820142746,-0.371719360351563,-0.808205962181091,0.456757992506027,-0.418022304773331,-0.877287805080414,-0.235846385359764,-0.419731944799423,-0.881790637969971,-0.215105935931206,-0.334668010473251,-0.939979672431946,-0.066601388156414,0.067725270986557,-0.89457893371582,-0.441748708486557,0.350944548845291,-0.689793109893799,-0.633264064788818,0.582859575748444,-0.811547040939331,-0.0408194661140442,-0.601545095443726,-0.237864956259727,-0.762603402137756,0.415996432304382,-0.874335408210754,-0.249969244003296,-0.471347779035568,-0.823650240898132,-0.315328061580658,0.504721879959106,-0.863023400306702,-0.0211295764893293,0.0587593466043472,-0.98125171661377,-0.183555245399475,-0.226629734039307,-0.968628525733948,0.101969793438911,-0.388662219047546,-0.820235967636108,0.419707834720612,-0.420401573181152,-0.763683259487152,0.489949375391006,0.273388028144836,-0.886168956756592,-0.374117195606232,-0.873319625854492,-0.432407528162003,-0.224358588457108,-0.494477808475494,-0.789350986480713,-0.363891065120697,-0.448308736085892,-0.812201261520386,0.373294055461884,-0.332097828388214,-0.759745419025421,0.559015214443207,-0.391799032688141,-0.790598452091217,0.470582216978073,-0.527097284793854,-0.793176531791687,0.3050237596035,-0.422447353601456,-0.85962837934494,0.287362813949585,-0.241709113121033,-0.937639057636261,0.24981951713562,-0.242288649082184,-0.937124371528625,0.251185894012451,-0.931968569755554,0.251239061355591,0.261368632316589,-0.515527725219727,-0.796635627746582,0.315599530935287,-0.334266066551209,-0.396641105413437,0.854951500892639,-0.615263044834137,-0.757861375808716,0.217020198702812,-0.291250675916672,-0.342561662197113,0.893210291862488,
- 0.0991386324167252,-0.490406662225723,0.865836501121521,-0.36194321513176,0.353903889656067,0.862408936023712,-0.00503006530925632,-0.328070014715195,0.944640100002289,-0.342704713344574,-0.596281886100769,0.725948631763458,0.213097259402275,-0.518220186233521,0.828273832798004,0.10538338124752,-0.548133254051209,0.829725503921509,-0.107639081776142,-0.890616655349731,0.44183224439621,-0.479423463344574,-0.45323783159256,0.751484274864197,-0.34025052189827,-0.674285650253296,0.655414760112762,0.218697041273117,0.259963244199753,0.940526843070984,0.551490366458893,-0.393382459878922,0.735600888729095,0.591792225837708,-0.550957441329956,0.588411450386047,0.24002480506897,-0.13918249309063,0.960737407207489,0.263501435518265,-0.114184774458408,0.957877278327942,-0.0753210932016373,-0.434441953897476,0.897544980049133,0.732320368289948,-0.551218330860138,0.399831593036652,0.343693464994431,0.688290059566498,0.638851821422577,0.76631760597229,-0.138008698821068,0.62746387720108,0.144673645496368,-0.457858383655548,0.877174556255341,0.0859856382012367,-0.0763369351625443,0.993367552757263,0.155802249908447,-0.542508661746979,0.825475633144379,-0.325602501630783,-0.756441175937653,0.567256450653076,0.907082080841064,-0.268441051244736,0.324255377054214,0.723397791385651,-0.493647694587708,0.482708632946014,0.565886616706848,-0.39271542429924,0.724946141242981,0.482978940010071,-0.43311071395874,0.761016726493835,-0.231955423951149,-0.58068835735321,0.780383050441742,0.583513915538788,-0.404134809970856,0.704405128955841,0.84355628490448,0.534905731678009,-0.0478398613631725,0.433748751878738,-0.521826326847076,0.734547078609467,0.269449055194855,-0.0931394696235657,0.95849996805191,0.197949260473251,-0.105675466358662,0.9744992852211,0.933264672756195,0.0868270918726921,0.348537415266037,0.378444314002991,0.529818058013916,0.75899463891983,0.924659430980682,0.169221639633179,0.341128975152969,0.706163704395294,-0.462887197732925,-0.535787642002106,0.780970633029938,-0.0446192249655724,0.622972071170807,0.827497184276581,-0.249006479978561,0.503233730792999,
- 0.778609216213226,-0.597770869731903,0.190886676311493,0.853303909301758,-0.393148839473724,0.342500627040863,0.713567852973938,-0.533902049064636,0.453618168830872,0.886720597743988,-0.346862137317657,0.305635750293732,0.897502720355988,-0.380932658910751,0.222214072942734,0.765536308288574,0.34319269657135,0.544217765331268,0.74496454000473,-0.667101562023163,-0.0018392838537693,0.862790167331696,0.402459681034088,0.305973142385483,0.892210602760315,-0.428860396146774,-0.141558974981308,0.814066350460052,-0.541299939155579,-0.210452705621719,0.873501598834991,-0.318791091442108,0.367922961711884,0.978511273860931,-0.096134141087532,-0.182411819696426,0.883176207542419,-0.312548816204071,0.349732995033264,0.332559496164322,-0.239960461854935,0.912043392658234,0.837170481681824,-0.113860331475735,0.534959197044373,0.999149799346924,0.0365080386400223,0.0191533416509628,0.770915508270264,-0.509147167205811,-0.382699012756348,0.972163558006287,-0.153499811887741,-0.177019596099854,0.881582975387573,-0.363668024539948,-0.300926983356476,0.951035857200623,-0.308008790016174,-0.0257181823253632,0.940923511981964,-0.0286710914224386,-0.337403148412704,0.92113721370697,-0.382792681455612,0.0705404356122017,0.7405646443367,-0.671983242034912,-0.00162003398872912,0.830784678459167,0.218936860561371,0.511726021766663,0.897019922733307,-0.378784865140915,0.227765709161758,0.964264571666718,-0.264888107776642,0.00532058626413345,0.980965197086334,-0.0565826967358589,-0.18575744330883,0.90086555480957,-0.407760709524155,0.148904010653496,0.325868666172028,-0.674874901771545,-0.662082672119141,0.761054992675781,0.647833228111267,-0.033280823379755,0.883541584014893,0.347769945859909,-0.313704282045364,0.833050966262817,-0.478168368339539,-0.278174757957459,0.311517298221588,-0.942698657512665,-0.119482845067978,0.0270843114703894,-0.999213874340057,-0.0289521981030703,0.981774032115936,0.000426012964453548,-0.190051719546318,0.504310071468353,-0.590422809123993,-0.630136847496033,0.776102125644684,-0.386068940162659,-0.498614609241486,
- 0.270326137542725,-0.925966501235962,-0.263647198677063,0.287543326616287,-0.957667469978333,0.0138545650988817,0.183681890368462,-0.678494215011597,-0.711271166801453,0.721603751182556,-0.68264102935791,-0.115279495716095,0.750562071800232,-0.601332783699036,-0.273962497711182,0.736362755298615,-0.389003604650497,-0.553575694561005,0.348793029785156,-0.816787540912628,-0.4595667719841,0.757168173789978,-0.387722611427307,-0.525706708431244,0.411353528499603,-0.775968670845032,-0.478184998035431,0.67701917886734,-0.692789018154144,-0.248371735215187,0.681528210639954,-0.712856829166412,-0.165392071008682,0.586523354053497,-0.527205407619476,-0.614853620529175,0.603332281112671,-0.756999373435974,-0.250882804393768,0.380889683961868,-0.373665422201157,-0.845752537250519,0.539847433567047,-0.626058459281921,-0.562686145305634,0.00685937562957406,-0.999949634075165,-0.00733243674039841,0.872441649436951,-0.483212858438492,0.0731504186987877,0.976463079452515,-0.198404639959335,0.0845903530716896,0.145285546779633,-0.676879227161407,-0.721614003181458,0.25484961271286,-0.910640001296997,-0.325248330831528,0.266627877950668,-0.928574979305267,-0.258182376623154,-0.339370161294937,-0.810124456882477,-0.478044301271439,0.661636650562286,0.249019384384155,-0.707266807556152,0.342046320438385,-0.297832816839218,-0.891235172748566,0.374176532030106,-0.826656997203827,-0.420273900032043,0.00410246849060059,-0.941594481468201,-0.336723923683167,0.400098532438278,-0.812515616416931,-0.423957049846649,0.335832327604294,-0.895676493644714,-0.29151377081871,-0.301015138626099,-0.605197250843048,-0.736971020698547,0.308167546987534,-0.895906925201416,-0.319974213838577,0.0683984681963921,-0.969481408596039,-0.235430181026459,0.0306368358433247,-0.778617560863495,-0.626750588417053,0.0682996138930321,-0.969169676303864,-0.236738801002502,0.276265025138855,-0.690272510051727,-0.668731272220612,-0.853421270847321,-0.409407824277878,0.322579562664032,-0.196359246969223,-0.867850065231323,-0.456376522779465,-0.341231554746628,-0.809217095375061,-0.478256046772003,
- 0.299494624137878,-0.95282644033432,-0.0492415651679039,0.0823777243494987,-0.973327040672302,-0.214122653007507,-0.910188555717468,-0.246391445398331,0.33293879032135,0.141751199960709,-0.950844049453735,-0.275322079658508,0.0722879096865654,-0.965791285037994,-0.249041765928268,0.0263732243329287,-0.993875920772552,-0.107308626174927,-0.213282763957977,-0.927270293235779,0.307701617479324,-0.087858535349369,-0.992182433605194,0.0886277928948402,0.0727665275335312,0.993852257728577,-0.0834430009126663,-0.115308329463005,-0.980548024177551,-0.158838823437691,-0.0387416183948517,-0.965353846549988,0.258052468299866,0.0602131448686123,-0.970395743846893,0.233894109725952,0.00254520052112639,-0.995225429534912,-0.0975708365440369,-0.0571609288454056,-0.902260065078735,-0.427386730909348,0.132073000073433,-0.982380032539368,-0.132235825061798,0.516874074935913,-0.84589159488678,-0.131562247872353,-0.759298264980316,-0.648805856704712,-0.0501707196235657,-0.426538228988647,-0.881913542747498,0.200733333826065,-0.488610833883286,-0.8456090092659,0.214953348040581,-0.237581923604012,-0.959017395973206,0.154403567314148,-0.0625828877091408,-0.983636498451233,0.168945983052254,-0.0972196459770203,-0.988537132740021,0.11551059782505,-0.0349749773740768,-0.976909935474396,0.210769534111023,-0.0940202698111534,-0.959067821502686,0.26711243391037,-0.149000599980354,-0.972266614437103,0.180268153548241,-0.101552180945873,-0.961466789245605,0.255477607250214,-0.15621554851532,-0.987558305263519,0.0180362351238728,-0.0466657355427742,-0.991754472255707,0.119353830814362,0.1123176664114,-0.959042370319366,0.260043501853943,-0.161966353654861,0.964303493499756,-0.20948925614357,-0.19744299352169,0.959565877914429,-0.20062343776226,-0.115130700170994,0.968527615070343,-0.220679014921188,-0.303244948387146,0.916280388832092,-0.261673033237457,-0.0410922020673752,0.939594864845276,-0.339813143014908,-0.427851676940918,0.878052353858948,-0.214399293065071,-0.417971134185791,0.879667639732361,-0.226902931928635,-0.711263239383698,0.687458217144012,-0.146648719906807,
- -0.284584045410156,0.925205051898956,-0.251012891530991,-0.418814718723297,0.900718748569489,0.115325704216957,-0.378632336854935,0.873202264308929,-0.306847602128983,-0.385901510715485,0.883298873901367,-0.2662014067173,-0.195017665624619,0.979843497276306,-0.0433018170297146,-0.237191766500473,0.942161083221436,0.236796498298645,-0.162205517292023,0.964321970939636,-0.209218874573708,-0.325371742248535,0.885323107242584,-0.332169264554977,-0.398604452610016,0.793946325778961,-0.459090173244476,-0.219025760889053,0.962881922721863,-0.157753735780716,-0.317775070667267,0.947860062122345,-0.0240922123193741,-0.52494341135025,0.73629242181778,-0.42697548866272,-0.501520216464996,0.781279444694519,-0.371591210365295,-0.112058237195015,0.986985564231873,-0.11533685028553,-0.640110552310944,0.759929120540619,-0.112987883388996,-0.499143064022064,0.858467042446136,-0.117858603596687,-0.429128050804138,0.903138637542725,-0.0137697663158178,-0.398954480886459,0.882109522819519,-0.250436276197433,-0.382583647966385,0.862290501594543,-0.331790506839752,-0.503866195678711,0.779167890548706,-0.372848898172379,-0.484969019889832,0.809019982814789,-0.33210214972496,-0.319748550653458,0.946975588798523,-0.0315931662917137,-0.607556283473969,0.793402910232544,-0.0372448116540909,-0.764319658279419,0.633472621440887,0.120531879365444,-0.363037347793579,0.905373871326447,-0.220232173800468,-0.566948175430298,0.809337258338928,-0.153437823057175,-0.634669899940491,0.634769678115845,-0.440751284360886,-0.473364412784576,0.877890110015869,0.072354182600975,-0.502379417419434,0.856417536735535,-0.119011998176575,-0.622302711009979,0.775718986988068,-0.104879051446915,0.00165442726574838,0.989046454429626,-0.147595748305321,-0.252758204936981,0.929696381092072,0.267914354801178,-0.267056852579117,0.914022207260132,0.305359154939651,-0.174288064241409,0.981952130794525,0.0734429582953453,0.0250623226165771,0.819494783878326,0.572538375854492,0.0251791216433048,0.819246768951416,0.572888255119324,-0.0870707333087921,0.977709531784058,0.19105726480484,
- -0.573485016822815,0.807771921157837,-0.13645413517952,-0.544876515865326,0.836888134479523,0.052229717373848,0.573344051837921,-0.808116555213928,0.134997099637985,-0.625616669654846,0.779703497886658,0.0258117765188217,-0.543089210987091,0.837142705917358,-0.0651623979210854,-0.667453169822693,0.740621089935303,0.077373780310154,-0.0408054739236832,0.780884623527527,0.623341083526611,-0.718318462371826,-0.651167273521423,-0.244948670268059,-0.798445463180542,0.297457605600357,0.523453712463379,-0.507267236709595,0.71912282705307,0.474912941455841,0.433347821235657,-0.76154500246048,-0.481932461261749,-0.18328869342804,0.857357144355774,0.480982273817062,0.122758269309998,0.79491662979126,0.594170093536377,-0.266207695007324,-0.497027605772018,-0.825891733169556,0.105620346963406,0.820004940032959,0.562526702880859,-0.186409905552864,0.929630279541016,0.317866116762161,-0.420208930969238,0.892525315284729,0.163777768611908,0.276317179203033,0.801554203033447,0.530245125293732,-0.0284345149993896,0.852643489837646,0.521718919277191,-0.809427857398987,0.569615125656128,0.142706379294395,-0.190911009907722,0.855559229850769,0.481218695640564,-0.0194396805018187,0.910448253154755,0.413165807723999,0.0410883724689484,0.986535310745239,-0.158302813768387,-0.0439223647117615,0.782932162284851,0.620554685592651,-0.0530290529131889,0.902373075485229,0.427680671215057,-0.108832836151123,0.821825087070465,0.559248745441437,-0.0581460073590279,0.896073579788208,0.44008082151413,-0.15579716861248,0.909225642681122,0.38605210185051,0.264867395162582,0.92652839422226,0.267189741134644,-0.369937479496002,0.828799486160278,0.419806689023972,0.0816036090254784,0.893799722194672,0.440979510545731,0.0277902670204639,0.919632136821747,0.391796380281448,0.669898509979248,0.00977760553359985,0.742388367652893,0.0368418470025063,0.969816207885742,0.241037800908089,-0.6318598985672,0.734035074710846,0.248888731002808,0.390959680080414,0.90100234746933,0.188003480434418,0.247809901833534,-0.935083866119385,-0.253393769264221,-0.148494273424149,0.980751991271973,-0.126787573099136,
- -0.085563063621521,0.942474126815796,-0.323143362998962,-0.127473294734955,0.79846179485321,0.588395595550537,-0.0937602519989014,0.837929487228394,0.537664532661438,0.0498153120279312,0.95283830165863,0.299362033605576,-0.0587186962366104,0.973839342594147,0.219520151615143,-0.0106866182759404,0.999631226062775,0.0249674767255783,-0.0212284289300442,0.997486472129822,0.06760273873806,0.0501212887465954,0.952390193939209,0.300734043121338,0.154010131955147,0.975108683109283,0.15951144695282,-0.203736931085587,0.775090515613556,0.59810197353363,0.94788271188736,0.161528751254082,0.274639517068863,0.675819873809814,-0.735007405281067,-0.0550612732768059,0.171916931867599,0.932900547981262,0.316450953483582,0.528926253318787,-0.833370506763458,0.160408094525337,0.389206320047379,0.831674098968506,-0.396026074886322,0.69767028093338,-0.712584972381592,0.0740202888846397,0.94517970085144,0.0397833995521069,0.324118465185165,0.50845330953598,-0.75151389837265,-0.420359432697296,0.56102329492569,-0.731074512004852,-0.388307839632034,0.278423398733139,-0.708958268165588,0.647965013980865,0.786541402339935,-0.578142106533051,0.217035382986069,0.70446902513504,-0.631756722927094,0.323429971933365,0.506568193435669,-0.856207072734833,-0.101480595767498,0.739566802978516,-0.484453409910202,0.467275053262711,0.713493227958679,-0.618412971496582,0.329382747411728,0.578426659107208,-0.797456204891205,0.17171585559845,0.436328619718552,-0.858429789543152,0.269658386707306,0.313948631286621,-0.886263787746429,0.340547949075699,0.911456346511841,0.0502252541482449,0.408319413661957,0.642689228057861,-0.702155470848084,-0.306477189064026,0.95381361246109,-0.17240746319294,0.24599876999855,-0.059883676469326,-0.757962465286255,-0.649543702602386,0.509254395961761,-0.850296974182129,-0.13287216424942,0.747811913490295,-0.579817295074463,0.323402673006058,0.268519759178162,-0.90213268995285,0.337718307971954,0.138976827263832,-0.967710614204407,0.210289537906647,-0.187227487564087,-0.974736452102661,-0.121798187494278,-0.0950397849082947,-0.839993834495544,-0.5342076420784,
- 0.279124200344086,-0.933461129665375,0.225255489349365,0.186175554990768,-0.982483565807343,0.00804636534303427,0.438937366008759,-0.859920740127563,0.260519742965698,0.436112493276596,-0.860806822776794,0.262331157922745,0.307632654905319,-0.889326870441437,0.338319182395935,0.493940234184265,-0.68852573633194,-0.530994772911072,-0.160575613379478,-0.951476216316223,-0.262504190206528,-0.49057799577713,-0.870079040527344,-0.0479147657752037,0.62528395652771,-0.780096411705017,-0.0216710492968559,0.817598283290863,-0.353552877902985,0.454459547996521,0.517580509185791,-0.84069812297821,-0.159176290035248,0.800352871417999,-0.496660053730011,0.335804015398026,0.517580509185791,-0.84069812297821,-0.159176290035248,0.817598283290863,-0.353552877902985,0.454459547996521,0.656668126583099,-0.684230327606201,0.317200094461441,0.465057969093323,-0.741288125514984,0.483955770730972,0.452703982591629,-0.743095397949219,0.492816776037216,0.606826066970825,-0.791171371936798,0.0762246251106262,0.452914923429489,-0.877319395542145,0.158678144216537,0.24638856947422,-0.936554431915283,0.249316364526749,-0.254315733909607,-0.881223022937775,0.398458898067474,0.24638856947422,-0.936554431915283,0.249316364526749,0.452914923429489,-0.877319395542145,0.158678144216537,0.341536402702332,-0.821641862392426,0.456352442502975,0.207302734255791,-0.957930982112885,0.198479026556015,-0.101681306958199,-0.935754418373108,-0.337675273418427,-0.232062518596649,-0.965360164642334,0.11927630007267,-0.206345692276955,-0.972985923290253,0.103537023067474,-0.271855741739273,-0.951552450656891,0.143674790859222,-0.736424505710602,-0.676274955272675,0.0181994661688805,-0.105177387595177,-0.939749777317047,-0.32528156042099,-0.603877305984497,-0.793261289596558,-0.0779023468494415,-0.53033572435379,-0.829139411449432,0.176838725805283,-0.261127114295959,-0.963826537132263,-0.0533944815397263,-0.154700249433517,-0.978733122348785,-0.134719669818878,-0.0832352787256241,-0.912277698516846,-0.401025295257568,0.230854257941246,-0.951046049594879,0.205469816923141,
- -0.411103904247284,-0.25812765955925,-0.874279081821442,-0.269322723150253,-0.961532771587372,-0.0540371537208557,-0.352226197719574,-0.72914719581604,0.586754679679871,-0.273210018873215,-0.961235761642456,-0.0371791683137417,-0.324419766664505,-0.914403855800629,0.242110207676888,-0.026209332048893,-0.997789680957794,-0.0610636100172997,-0.457081943750381,-0.802494406700134,0.383508920669556,-0.256517797708511,0.606904625892639,0.752240240573883,-0.345153450965881,-0.904512166976929,0.250453263521194,-0.424779534339905,-0.78302675485611,0.454347491264343,-0.58493584394455,-0.806056439876556,-0.0901277884840965,0.655182659626007,0.745888531208038,0.119941920042038,-0.152210414409637,-0.985834836959839,0.0704389810562134,-0.178478553891182,-0.96903532743454,-0.17063444852829,-0.583086967468262,-0.798488020896912,0.14975494146347,-0.396789610385895,-0.917855501174927,-0.00996550917625427,0.584792375564575,0.661672115325928,0.469263166189194,0.0890504196286201,-0.658285558223724,0.747482538223267,-0.183657705783844,-0.875381052494049,0.447188943624496,0.0221377592533827,-0.670816719532013,0.741292715072632,0.52882319688797,0.402774542570114,0.747073411941528,-0.191320210695267,-0.862050533294678,0.469324499368668,-0.111111238598824,-0.488700389862061,0.865347445011139,-0.144143268465996,-0.453379333019257,0.879585027694702,0.0763351693749428,-0.660910069942474,0.746572732925415,-0.012515913695097,-0.992480635643005,0.121760465204716,-0.582805991172791,-0.809268176555634,-0.0736363083124161,-0.16819666326046,-0.983006000518799,0.0735479518771172,0.506158113479614,-0.427665740251541,0.748936653137207,0.200296700000763,-0.630366146564484,0.750013113021851,0.0357447266578674,-0.700729131698608,0.712531507015228,-0.146960660815239,-0.421507000923157,0.894837617874146,0.682985305786133,-0.679064512252808,0.269077360630035,0.230415195226669,-0.621238708496094,0.748980283737183,-0.532804310321808,-0.834398090839386,0.141065299510956,-0.138791963458061,-0.921558260917664,-0.362584263086319,-0.540743708610535,-0.826880931854248,0.15448072552681,
- 0.0140534192323685,-0.999802112579346,-0.0140853133052588,-0.635574817657471,-0.48926368355751,-0.597214996814728,-0.17538195848465,-0.966528952121735,-0.187251031398773,-0.348042607307434,-0.786633431911469,0.509974658489227,-0.851390302181244,-0.511492788791656,-0.116231992840767,-0.787674248218536,-0.615376114845276,0.0296937115490437,-0.435330867767334,-0.841667294502258,0.319504708051682,-0.479563862085342,-0.828180551528931,0.290061116218567,-0.774353623390198,-0.632156729698181,0.0274653732776642,-0.735701680183411,-0.447306543588638,0.508586168289185,-0.529467284679413,-0.836617708206177,0.140482008457184,-0.540440917015076,-0.826937913894653,0.155233174562454,0.616192817687988,0.521552324295044,-0.590160727500916,0.194564372301102,-0.313019633293152,0.929603934288025,-0.736684799194336,-0.511072099208832,0.442832767963409,-0.39752796292305,-0.910120189189911,0.116845160722733,-0.0977145805954933,-0.663032472133636,0.742185890674591,-0.115268394351006,-0.685625731945038,0.718770205974579,-0.703153192996979,0.643992722034454,0.301411807537079,-0.227146849036217,-0.0355134829878807,0.973212778568268,0.408197462558746,-0.611095488071442,0.678186774253845,-0.224990680813789,-0.064967043697834,0.972192704677582,0.394216656684875,-0.739247441291809,0.545991241931915,0.275181114673615,-0.642658650875092,0.71502810716629,0.583324670791626,-0.00230186432600021,0.812235832214355,-0.119312487542629,-0.660116076469421,0.741627514362335,-0.12125438451767,-0.661165714263916,0.740376472473145,0.241172879934311,-0.74342006444931,0.623828709125519,-0.150437474250793,0.463176101446152,0.87340521812439,0.269482553005219,-0.830593705177307,0.487332880496979,-0.0710393488407135,-0.664694786071777,0.743729948997498,0.344927221536636,-0.806698501110077,0.479856997728348,-0.519654512405396,0.799509763717651,-0.301236301660538,0.287523984909058,-0.655155122280121,0.69864284992218,0.48345622420311,-0.472660601139069,0.736791729927063,0.312980830669403,-0.635122358798981,0.706160485744476,0.399972826242447,-0.739311575889587,0.541701138019562,
- 0.437415271997452,-0.666430175304413,0.603770434856415,0.0915999114513397,-0.994098305702209,0.0581212267279625,0.151566833257675,-0.977168619632721,-0.148892909288406,0.362742811441422,-0.713677704334259,0.599234402179718,0.237159639596939,-0.966536998748779,0.0977834016084671,0.464636713266373,-0.77700674533844,0.424703687429428,0.497018665075302,-0.825795710086823,-0.266521990299225,0.15037976205349,-0.243326365947723,-0.958216190338135,0.210643574595451,-0.886067986488342,0.412931948900223,0.578117787837982,-0.806065142154694,0.126644790172577,0.654895663261414,-0.754368245601654,0.0451695136725903,0.379228264093399,-0.874927043914795,0.301145493984222,0.770500063896179,-0.635971784591675,0.0432390458881855,0.554543852806091,-0.806545734405518,0.204854428768158,0.32521778345108,-0.944574058055878,0.0448702648282051,0.241749376058578,-0.743487656116486,0.623524963855743,0.273525565862656,-0.826285362243652,0.492378115653992,0.780694127082825,0.0631222128868103,-0.621717214584351,0.755433797836304,-0.653773903846741,0.0435840226709843,0.341075122356415,-0.807185590267181,0.4817875623703,0.766370713710785,0.00601626932621002,-0.642370462417603,0.36899009346962,-0.773596704006195,-0.51516455411911,0.0340912416577339,-0.958572864532471,-0.282800048589706,0.448482036590576,-0.746195554733276,0.491992026567459,0.0690694153308868,-0.996774137020111,0.0408746376633644,0.392236828804016,-0.816417098045349,0.423808306455612,-0.209470167756081,-0.914069890975952,-0.347272992134094,0.388085007667542,-0.810929358005524,0.437931030988693,0.0946213081479073,-0.994652390480042,0.04139469191432,0.265561461448669,-0.628087162971497,0.731425762176514,0.495588064193726,-0.462585628032684,0.735123813152313,0.0889760106801987,-0.715251684188843,0.693179845809937,0.216865941882133,-0.910838186740875,0.351202398538589,0.451803714036942,-0.881221413612366,0.139004290103912,0.445969074964523,-0.883223116397858,0.145012557506561,0.431084930896759,-0.862987399101257,0.263473927974701,0.927024722099304,-0.0960791930556297,-0.362482964992523,
- 0.553490817546844,-0.812650680541992,0.182337269186974,-0.0660422071814537,-0.914857625961304,-0.398338913917542,0.613560497760773,-0.340784996747971,-0.712326645851135,0.154045045375824,-0.822890281677246,-0.546920239925385,0.578053772449493,-0.815529346466064,0.0276710689067841,0.785202383995056,-0.512721359729767,-0.347237706184387,0.445563524961472,-0.876614511013031,0.181714281439781,0.429757177829742,-0.861593544483185,0.270120978355408,-0.678123712539673,-0.717216730117798,0.160463154315948,0.669965505599976,-0.70249217748642,0.240106195211411,0.55528050661087,-0.781449139118195,-0.284606486558914,0.599846303462982,-0.796960473060608,0.0709836259484291,0.457616299390793,-0.685401856899261,-0.566402316093445,0.484750866889954,-0.864672958850861,-0.131747126579285,0.293365478515625,-0.494590312242508,-0.818118035793304,0.42248272895813,-0.737591683864594,-0.526751279830933,0.0273654386401176,-0.963205099105835,-0.267370969057083,-0.362913906574249,-0.431356817483902,-0.825969040393829,-0.342968463897705,-0.483147084712982,-0.805569052696228,0.292412132024765,-0.876097917556763,-0.383337289094925,-0.298833936452866,-0.914634585380554,-0.272290050983429,0.781615555286407,-0.513623654842377,-0.353932112455368,0.0161676872521639,-0.596778869628906,-0.802242994308472,-0.111944109201431,-0.0789929255843163,-0.990569949150085,0.115912742912769,-0.877503871917725,-0.465350598096848,-0.654805779457092,-0.278999894857407,-0.702416300773621,-0.106208115816116,-0.527627766132355,-0.842810034751892,0.885466873645782,0.0541165173053741,0.461540699005127,-0.510173678398132,-0.81928414106369,-0.261718183755875,-0.452092945575714,-0.883154511451721,-0.125100031495094,-0.0495523810386658,0.787231206893921,-0.61466383934021,-0.892437338829041,-0.0427226163446903,-0.449144244194031,0.748258233070374,-0.0535533279180527,-0.661242544651031,-0.132601991295815,-0.0856377184391022,-0.987462937831879,-0.503142416477203,-0.797699511051178,-0.332450270652771,-0.0541160777211189,0.75838565826416,-0.649555861949921,-0.548548102378845,-0.657104253768921,-0.51701945066452,
- -0.783933579921722,-0.183865487575531,-0.592993915081024,-0.56074333190918,-0.515398740768433,-0.648020923137665,-0.627231121063232,-0.437932014465332,-0.644047141075134,-0.528521239757538,-0.386497139930725,-0.75583416223526,0.218518003821373,0.483780026435852,-0.847470819950104,-0.600043058395386,-0.505243718624115,-0.620223462581635,-0.486138164997101,-0.530607402324677,-0.694352567195892,-0.892032623291016,0.251968532800674,-0.375219732522964,-0.641978979110718,-0.367769837379456,-0.672761797904968,-0.632524192333221,-0.481279134750366,-0.606863796710968,-0.428349167108536,-0.78119158744812,0.454155057668686,-0.623283982276917,-0.453801721334457,-0.636852502822876,-0.828947603702545,-0.464918792247772,-0.310960501432419,-0.638408541679382,0.147072225809097,-0.755515992641449,-0.805544257164001,-0.561058580875397,-0.19055649638176,-0.84289824962616,-0.492279350757599,-0.217217773199081,-0.849176287651062,-0.4274001121521,0.310207515954971,-0.767800033092499,-0.478050291538239,-0.426557332277298,-0.954964280128479,-0.241381198167801,0.172564327716827,-0.950313687324524,-0.273394882678986,-0.148859456181526,-0.167851507663727,-0.146492496132851,-0.974867105484009,-0.500331342220306,-0.856537818908691,0.12653711438179,-0.676809549331665,-0.0410483777523041,0.735012888908386,-0.190020591020584,-0.945399701595306,-0.264785885810852,-0.948530316352844,0.0207706838846207,0.316004484891891,-0.931211709976196,0.191028773784637,0.310407549142838,-0.259546935558319,-0.96193927526474,0.0854884460568428,-0.827154397964478,-0.513426423072815,0.228493005037308,0.617663979530334,-0.682305037975311,-0.391089558601379,-0.907175421714783,-0.286944091320038,0.307727038860321,-0.944589197635651,0.139950633049011,0.296925991773605,0.836526870727539,0.483124494552612,-0.25848314166069,-0.275028258562088,-0.958177506923676,0.079091377556324,-0.517715930938721,-0.325654774904251,-0.791150569915771,-0.343372344970703,-0.523495495319366,-0.779774248600006,-0.633144319057465,-0.147783428430557,-0.759795010089874,0.108890630304813,-0.0553801357746124,-0.992509961128235,
- 0.482107102870941,-0.629060924053192,-0.609799265861511,0.435259193181992,-0.551603078842163,-0.711536049842834,-0.527173757553101,-0.39536452293396,-0.752179980278015,0.000133119523525238,-0.175646305084229,-0.984453320503235,0.866388976573944,0.369085997343063,-0.33637136220932,0.19017881155014,-0.0211349353194237,-0.981521964073181,0.123549990355968,-0.0630958452820778,-0.990330398082733,0.0754712745547295,-0.0928328633308411,-0.992817282676697,0.581830382347107,0.364868938922882,0.726872801780701,-0.691941916942596,-0.181436076760292,-0.698782861232758,-0.444325536489487,-0.531629025936127,-0.721072375774384,0.14780704677105,-0.0512808933854103,-0.987685859203339,0.0956000834703445,0.150235012173653,-0.984017312526703,-0.184975877404213,0.210933327674866,0.959839165210724,-0.599959492683411,-0.316507577896118,-0.734759509563446,-0.160937920212746,-0.195049449801445,-0.967499256134033,-0.510330021381378,-0.295342296361923,-0.807673275470734,0.0342803709208965,0.00592357106506824,-0.999394714832306,-0.448494225740433,-0.314257860183716,-0.836716890335083,0.451875269412994,0.316474378108978,0.834058046340942,0.204147219657898,-0.977276682853699,0.057046189904213,-0.842493057250977,-0.413090020418167,0.345777601003647,0.30868536233902,-0.951004922389984,0.0174074769020081,-0.0137105975300074,-0.999841570854187,-0.0113492617383599,0.648217976093292,0.0829366818070412,0.756924748420715,0.270696967840195,-0.907748341560364,0.320493638515472,0.00246616476215422,-0.991898655891418,0.127008393406868,0.661376059055328,-0.683075726032257,0.309821397066116,0.346549451351166,-0.908783197402954,0.232415050268173,0.395352900028229,-0.852322697639465,0.342406660318375,0.810696601867676,0.482732713222504,-0.331270664930344,0.454715669155121,-0.829611420631409,0.324004173278809,0.12285678088665,-0.985584020614624,-0.116320103406906,0.254158169031143,-0.959329843521118,-0.122841112315655,-0.737326383590698,0.663845121860504,0.125138103961945,0.426972657442093,-0.898024022579193,0.106053650379181,0.385341495275497,-0.852968573570251,0.352074891328812,
- 0.39382004737854,-0.864061653614044,0.313533484935761,0.590291261672974,-0.798235237598419,0.119903266429901,0.634769976139069,0.0545726716518402,0.770771622657776,0.673624336719513,-0.0574649721384048,0.736836552619934,0.649354100227356,0.177977278828621,-0.739366888999939,0.553725600242615,-0.234068989753723,0.799124240875244,0.60193657875061,-0.226650565862656,0.765703618526459,0.472257554531097,-0.841274380683899,0.263116359710693,0.281905919313431,-0.904129445552826,0.321059167385101,0.181958705186844,-0.920855641365051,0.344841867685318,0.335562765598297,-0.647747874259949,0.683973968029022,0.274103701114655,-0.849528789520264,0.450741589069366,0.194855570793152,-0.960141658782959,0.200397923588753,-0.0144595932215452,-0.994201004505157,0.106562122702599,0.607827067375183,-0.788152277469635,0.0967598706483841,0.838461816310883,0.543357610702515,-0.0417660176753998,0.183028385043144,-0.924391567707062,0.334665417671204,0.19266177713871,-0.9291952252388,0.31540110707283,0.0549974367022514,-0.825715899467468,0.561398684978485,0.254628211259842,-0.865013241767883,0.432338565587997,0.265069901943207,-0.861820816993713,0.432438224554062,0.0492027029395103,-0.905991673469543,0.420426428318024,-0.114346623420715,-0.910935282707214,0.396386027336121,0.254476189613342,-0.865002036094666,0.432450532913208,0.0483043342828751,-0.906481623649597,0.419473260641098,0.195386931300163,-0.961542308330536,0.193029850721359,0.146173641085625,-0.988850593566895,0.0284246988594532,0.307929784059525,-0.682800889015198,0.662542223930359,0.153511226177216,-0.836448907852173,0.526105999946594,0.122734308242798,-0.991215467453003,0.0492766872048378,0.154570117592812,-0.805740237236023,0.571743786334991,-0.089533619582653,-0.947171449661255,0.30797752737999,-0.0505786091089249,-0.978748559951782,0.198728993535042,0.0674817562103271,-0.988245189189911,-0.137177422642708,0.042779415845871,-0.821789503097534,0.56818300485611,0.174725621938705,-0.923475980758667,0.341560125350952,0.184202268719673,-0.928227424621582,0.323207885026932,0.155858218669891,-0.987581729888916,0.0197630897164345,
- 0.204643726348877,-0.978680670261383,0.0174684338271618,-0.066741093993187,-0.997336864471436,0.0294102691113949,0.246847689151764,-0.967005550861359,-0.0629818364977837,0.187209516763687,-0.92367148399353,-0.334340572357178,0.260639309883118,-0.965278327465057,0.0174640417098999,0.228782773017883,-0.973437011241913,-0.00887908786535263,0.217290356755257,-0.907938122749329,-0.358375906944275,0.228426814079285,-0.966983616352081,-0.112977810204029,0.025317657738924,-0.988258957862854,0.150676488876343,-0.380736142396927,-0.907767772674561,0.176061511039734,0.0038496027700603,-0.988268315792084,0.152679041028023,0.143583804368973,-0.943412482738495,-0.298926055431366,-0.195082232356071,-0.970102787017822,-0.144373416900635,0.255885809659958,-0.903929173946381,-0.342687129974365,-0.0830246284604073,-0.996518015861511,0.00767334643751383,-0.251657843589783,-0.675064980983734,0.693509697914124,-0.121679842472076,-0.9814532995224,0.148133754730225,-0.00133100722450763,-0.999708831310272,0.0240970402956009,0.0145442709326744,-0.942467927932739,-0.333980143070221,-0.00517058419063687,-0.993827283382416,0.110818631947041,0.652440845966339,-0.756858110427856,0.0385590940713882,-0.368728160858154,-0.925900101661682,0.0821507722139359,-0.053596805781126,-0.995507836341858,0.0780491456389427,0.226961687207222,-0.950303256511688,-0.213101208209991,0.0335656255483627,-0.959345400333405,-0.280231654644012,-0.1087576597929,-0.94050931930542,-0.321891248226166,0.437466740608215,-0.882862150669098,0.170813739299774,-0.198367416858673,-0.953526020050049,0.226800978183746,-0.260303020477295,-0.938389301300049,0.227305993437767,0.0753786116838455,-0.9885014295578,-0.131084576249123,0.235094994306564,-0.966078400611877,-0.10687804967165,0.13941678404808,-0.982710123062134,-0.121835298836231,0.295542865991592,-0.733590126037598,-0.611964166164398,0.249527633190155,-0.86967146396637,-0.425919622182846,0.286938160657883,-0.766616940498352,-0.57442581653595,-0.469895750284195,-0.872950851917267,-0.130976155400276,0.538068175315857,-0.828545093536377,-0.154905393719673,
- 0.456276625394821,-0.875305771827698,-0.160161077976227,0.65332305431366,-0.684238255023956,-0.324016839265823,0.220085233449936,-0.638634383678436,-0.737366080284119,0.691393136978149,-0.672643303871155,-0.263678848743439,-0.960362017154694,-0.238371700048447,0.14451265335083,-0.275785326957703,-0.713642537593842,-0.643938541412354,0.462135463953018,-0.505609273910522,-0.728553414344788,-0.434679836034775,-0.889170467853546,-0.14293147623539,0.943545699119568,0.330505013465881,-0.0220900997519493,0.476356863975525,-0.850619673728943,-0.222553968429565,0.83856064081192,-0.196557581424713,0.508115291595459,0.822852969169617,-0.229762405157089,0.51973283290863,-0.450413286685944,-0.849612772464752,0.274383068084717,0.311087846755981,-0.899352192878723,-0.30722963809967,0.382316887378693,-0.833412289619446,-0.399071156978607,0.443304777145386,-0.757498502731323,-0.479246258735657,-0.163888171315193,-0.927605211734772,0.335692286491394,0.342138826847076,-0.8868248462677,-0.310616731643677,0.448721677064896,-0.764724552631378,-0.462434023618698,-0.566117107868195,-0.78905576467514,0.238542288541794,-0.443312019109726,0.660306692123413,-0.606192708015442,0.832089006900787,-0.223552733659744,0.507594466209412,0.231914490461349,-0.972650170326233,-0.0129343345761299,0.0153499394655228,-0.928595840930939,-0.370775043964386,0.472258538007736,-0.715100347995758,0.515367269515991,0.580345511436462,-0.698471128940582,0.418732911348343,0.515118062496185,-0.803654849529266,0.297980725765228,0.00210253894329071,-0.928973734378815,-0.370139688253403,-0.512631297111511,-0.700902104377747,-0.495928943157196,-0.437638700008392,-0.700219333171844,-0.564061522483826,0.220168933272362,-0.471441924571991,-0.8539719581604,-0.392390102148056,-0.537688136100769,-0.746271729469299,0.373203277587891,0.643566370010376,0.668237805366516,-0.262067705392838,-0.908404588699341,-0.325763046741486,-0.509071230888367,-0.717015445232391,-0.476167380809784,-0.357340633869171,-0.691805899143219,-0.627465069293976,-0.0512840449810028,0.510428071022034,0.858389854431152,
- -0.274108111858368,-0.749178409576416,-0.602989614009857,-0.209163665771484,-0.928692996501923,-0.306235313415527,-0.194450438022614,-0.949113965034485,-0.247733175754547,0.239827230572701,0.905974209308624,0.348846107721329,-0.203495040535927,-0.917582094669342,-0.34151554107666,0.00773955136537552,-0.9569091796875,-0.29028445482254,0.143997251987457,-0.986572265625,-0.0770710930228233,0.787768542766571,-0.05343833938241,0.613649010658264,-0.24960869550705,-0.894455432891846,-0.371005356311798,0.37406200170517,0.334120899438858,-0.865124762058258,0.14640386402607,-0.967316389083862,-0.207038968801498,-0.0101406164467335,-0.989961266517639,0.140974909067154,0.131790846586227,-0.990929007530212,-0.0262867696583271,-0.14275985956192,0.98906934261322,0.0368990115821362,0.348466336727142,-0.905877947807312,-0.240741342306137,0.196675777435303,-0.687685072422028,-0.69886189699173,0.109527140855789,-0.666301667690277,-0.737594664096832,0.793918669223785,-0.592560946941376,-0.136252880096436,-0.158438742160797,-0.978798151016235,0.129812955856323,-0.15275314450264,-0.910109996795654,-0.385183483362198,0.0159377492964268,0.162486344575882,-0.986582159996033,0.027463186532259,-0.916642427444458,-0.398763865232468,-0.504276216030121,0.308533549308777,-0.806543588638306,0.146324053406715,-0.96908038854599,-0.198677211999893,-0.465613096952438,-0.798948347568512,-0.380639046430588,0.383463174104691,-0.760937809944153,-0.523382902145386,0.140835553407669,-0.840534448623657,-0.52313220500946,0.230869337916374,-0.858753323554993,-0.457429945468903,0.266401737928391,-0.830066382884979,-0.489918291568756,0.0448361486196518,-0.960158705711365,-0.27583509683609,0.241967797279358,-0.842130243778229,-0.481942176818848,-0.0959301292896271,0.927842497825623,0.360424369573593,0.0507373064756393,-0.945919036865234,-0.320410698652267,-0.67702579498291,-0.651158928871155,-0.342969655990601,0.136113330721855,0.908183455467224,-0.395823180675507,-0.705664992332459,-0.104568690061569,-0.700787007808685,-0.279164016246796,0.389838516712189,-0.877549648284912,
- 0.218769267201424,-0.0599603205919266,0.973932683467865,0.0454748459160328,-0.751107931137085,-0.658611476421356,-0.613521695137024,-0.42196261882782,-0.667486965656281,-0.629904389381409,-0.679210782051086,-0.376687198877335,-0.631117701530457,-0.529624581336975,-0.566734731197357,-0.580738723278046,-0.573506295681,-0.577782928943634,-0.407240331172943,-0.442347347736359,-0.799052119255066,-0.672802448272705,-0.634885847568512,-0.37981179356575,-0.464107751846313,-0.576068341732025,-0.672866463661194,-0.681775808334351,-0.677326917648315,-0.276423692703247,0.650413393974304,0.668963968753815,0.359791070222855,0.0207385551184416,-0.740303814411163,-0.671952545642853,-0.066110759973526,-0.507669746875763,-0.85901153087616,-0.26385885477066,0.420186877250671,-0.86822897195816,0.439589738845825,0.742753744125366,0.505052268505096,-0.44327974319458,-0.741116642951965,-0.50423139333725,-0.742486715316772,-0.541318595409393,-0.394572883844376,-0.480649411678314,-0.759949862957001,-0.437552750110626,-0.804678797721863,-0.513946413993835,-0.297239303588867,-0.392237782478333,-0.797306060791016,-0.458751261234283,0.976520419120789,0.161248877644539,-0.142851829528809,0.667688846588135,0.740653693675995,0.0749916881322861,0.758263885974884,0.651105999946594,0.0331183075904846,0.78039425611496,0.595816254615784,-0.18970513343811,0.998289227485657,-0.0532063692808151,-0.0242427065968513,0.882021427154541,0.445551186800003,-0.153369963169098,0.679948091506958,0.731354415416718,0.0528342574834824,0.300422847270966,0.941707730293274,0.151435315608978,0.751358807086945,0.659318089485168,0.0275606513023376,0.776477873325348,0.624424815177917,-0.0847100242972374,0.76395308971405,0.585885047912598,0.270396739244461,0.767985105514526,0.622856438159943,-0.14916005730629,-0.660105168819427,-0.71798187494278,0.220824092626572,0.87469756603241,0.461576133966446,-0.147822812199593,0.987508952617645,-0.154130265116692,0.032711923122406,0.370103627443314,0.802387237548828,-0.468185871839523,0.875531136989594,0.419843286275864,0.239116609096527,
- 0.682199537754059,0.712390124797821,-0.164633557200432,0.511328458786011,0.750809609889984,0.418124616146088,0.429798513650894,0.812667191028595,0.393503934144974,0.299378573894501,0.888140261173248,0.348682284355164,0.739685297012329,0.602540969848633,0.299683332443237,0.767009615898132,0.624756217002869,-0.146204948425293,0.760977327823639,0.619874238967896,0.19149261713028,0.302218854427338,0.887179732322693,0.348677396774292,0.310416042804718,0.8831467628479,0.351701259613037,0.511347234249115,0.750782489776611,0.418150275945663,0.761581897735596,0.646958231925964,-0.0379231721162796,0.686583161354065,0.710860133171082,-0.152582436800003,0.866883158683777,0.442569375038147,0.229447156190872,0.763946235179901,0.582848489284515,0.276900380849838,0.288328409194946,0.883197486400604,0.369903981685638,0.580708384513855,0.743850409984589,0.330854058265686,-0.569053649902344,0.523218750953674,0.634365916252136,0.0538953877985477,0.968850135803223,-0.241711989045143,0.00409803539514542,0.983538389205933,-0.180652916431427,0.292536556720734,0.882879316806793,0.367350697517395,0.282742828130722,0.950280070304871,0.130477696657181,0.290968000888824,0.914438188076019,0.281319469213486,0.284634858369827,0.922879874706268,0.259375870227814,0.334818601608276,0.875510215759277,0.348394006490707,0.518642246723175,0.451435059309006,0.726096868515015,0.537777304649353,0.820846915245056,0.192369550466537,-0.293620467185974,0.82975172996521,0.474656820297241,0.203754380345345,0.915439069271088,0.34706723690033,0.384040594100952,0.321344822645187,0.865592420101166,-0.278731793165207,0.829208254814148,0.484481394290924,0.142933487892151,0.578660428524017,0.802945911884308,0.643402576446533,-0.747285008430481,-0.166127353906631,-0.909409880638123,0.412135362625122,-0.0558407083153725,0.15548749268055,0.884253680706024,0.440362423658371,0.405410259962082,0.161154985427856,-0.899817526340485,0.735380470752716,0.677637815475464,-0.00474792718887329,0.385984063148499,0.534314036369324,0.752013921737671,-0.622992873191834,0.46456977725029,0.629328846931458,
- -0.0104160010814667,0.541060149669647,0.840919375419617,0.561277508735657,0.408013314008713,0.720064401626587,-0.536828279495239,-0.645734012126923,0.542994439601898,-0.382288724184036,0.439369082450867,0.812902450561523,0.121769219636917,-0.808467924594879,-0.575805425643921,0.0634884834289551,0.633350849151611,0.77125608921051,0.241725936532021,0.962857127189636,0.120310798287392,0.0749140605330467,0.662561058998108,0.745252192020416,-0.0690204054117203,0.460438311100006,0.88500440120697,0.00797328352928162,0.930578470230103,0.36600586771965,-0.0806404650211334,0.336631864309311,0.938177108764648
- }
- BinormalsW: *1317 {
- 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
- }
- }
- LayerElementTangent: 0 {
- Version: 102
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *3951 {
- a: 0.117343336343765,-0.993074715137482,-0.00577358901500702,0.5880286693573,-0.742085576057434,-0.321763008832932,0.0527885220944881,0.0492786504328251,0.997389197349548,0.652443051338196,-0.752824425697327,0.0870255902409554,-0.453759104013443,-0.464782357215881,0.760315775871277,0.212421774864197,0.28380823135376,0.935056090354919,-0.323118358850479,0.168400302529335,-0.931255102157593,-0.755611419677734,0.655011832714081,-0.00330185168422759,0.52521812915802,0.775662064552307,-0.349992215633392,-0.870534598827362,0.47699823975563,0.121004939079285,-0.591269791126251,-0.21283832192421,-0.777881801128387,0.0545073300600052,-0.500277101993561,-0.864147961139679,0.778987169265747,-0.507404148578644,-0.368402004241943,0.0942730754613876,-0.384880989789963,-0.918138980865479,-0.369436025619507,0.112483650445938,-0.922423124313354,-0.575568437576294,-0.483704149723053,-0.659356713294983,-0.283663660287857,-0.9153733253479,-0.28570368885994,-0.523511648178101,0.265188276767731,-0.809697926044464,-0.587286770343781,-0.588778495788574,0.555368483066559,0.562891364097595,-0.272453606128693,0.780334770679474,-0.0301635153591633,0.828186333179474,0.55964058637619,-0.473033756017685,0.629635572433472,-0.616277635097504,-0.297947019338608,-0.0477641858160496,0.953386664390564,-0.0125170685350895,0.999851584434509,0.0118367681279778,0.714282512664795,-0.183169484138489,-0.675462424755096,-0.143860310316086,-0.828035473823547,-0.541905581951141,-0.373046457767487,0.622843265533447,-0.687679171562195,-0.807447671890259,-0.431159913539886,0.40265291929245,0.0683469250798225,-0.831066071987152,-0.55195826292038,-0.527576506137848,-0.191720455884933,-0.827590644359589,0.846222400665283,-0.200055837631226,-0.493847459554672,0.0877174288034439,-0.846273899078369,-0.525477051734924,0.335493206977844,0.78549200296402,0.52004486322403,0.195759907364845,0.921746134757996,0.334756731987,-0.992815017700195,-0.0813570991158485,-0.0877471417188644,-0.353727072477341,0.27522537112236,0.893939793109894,-0.584040284156799,0.0222126226872206,-0.811420679092407,
- -0.765341758728027,-0.621490120887756,0.16733805835247,-0.876143932342529,-0.369656652212143,0.309396177530289,-0.659978687763214,-0.450448095798492,-0.60126918554306,0.0852043405175209,-0.975867450237274,0.201055034995079,0.401154100894928,-0.889641404151917,0.218205958604813,0.761378645896912,-0.0702508687973022,0.644490003585815,0.971067667007446,0.135479599237442,-0.196654230356216,0.126006036996841,-0.390836238861084,-0.911794662475586,-0.00840890407562256,0.988738894462585,-0.149415165185928,-0.0803346633911133,0.238731667399406,0.967756986618042,-0.960480690002441,-0.182754173874855,0.20994707942009,-0.193363904953003,0.616960167884827,0.762869954109192,-0.984301149845123,-0.127748280763626,0.121785044670105,-0.971107721328735,-0.170099496841431,-0.167379766702652,0.406704157590866,-0.0461071617901325,-0.912395656108856,0.126318037509918,-0.0849777236580849,-0.988343358039856,-0.526668131351471,0.805716931819916,-0.270999819040298,-0.668709814548492,-0.719034075737,-0.189254388213158,-0.844139516353607,0.469323128461838,-0.259160727262497,0.262958586215973,0.786621451377869,-0.558640718460083,0.31654480099678,-0.913820207118988,0.254424899816513,-0.255039751529694,0.124149441719055,0.95892733335495,0.0452249720692635,0.973012149333954,0.226278707385063,-0.052798043936491,-0.692545056343079,-0.71943986415863,0.895772755146027,-0.444464713335037,-0.00650379154831171,0.650833487510681,0.373195439577103,-0.661166369915009,0.774100780487061,-0.46190071105957,0.432915359735489,0.0101654641330242,-0.519052922725677,0.854681789875031,-0.503180325031281,0.471906453371048,0.723957180976868,-0.349901169538498,-0.411977171897888,0.841334640979767,-0.0198574978858233,-0.542513310909271,0.839812457561493,0.495313376188278,-0.841489791870117,0.215776801109314,-0.747481644153595,0.246373355388641,-0.616904675960541,0.299790441989899,0.372843891382217,-0.878130495548248,-0.55371618270874,0.79175341129303,-0.25792470574379,0.458005964756012,0.493544936180115,-0.739353716373444,-0.473567128181458,0.870509147644043,-0.13397017121315,
- -0.496855646371841,0.232322975993156,0.836158156394959,-0.552817046642303,0.819419741630554,0.15147490799427,0.0487493425607681,0.94096976518631,-0.334961861371994,0.127369314432144,0.972813010215759,-0.193421453237534,-0.295858979225159,-0.822080254554749,0.486468434333801,0.233695775270462,-0.0938842073082924,-0.967766523361206,0.140413850545883,0.538269102573395,-0.830993711948395,0.567665696144104,-0.807210147380829,0.161763623356819,0.44682252407074,0.79048216342926,-0.418912410736084,0.535105407238007,0.596498131752014,-0.598207592964172,-0.418999791145325,0.782050967216492,-0.461340934038162,-0.931510090827942,-0.185854136943817,0.31264540553093,-0.437629133462906,0.823159277439117,-0.361786663532257,-0.437985062599182,0.798264861106873,-0.413451731204987,-0.308550506830215,0.797790110111237,-0.518003404140472,-0.777068614959717,0.142941623926163,0.612969875335693,0.820928871631622,-0.321593970060349,0.471861302852631,0.743133246898651,-0.414202719926834,-0.525536954402924,0.638213455677032,-0.769622623920441,0.0190932583063841,0.829979121685028,-0.422072261571884,0.364677459001541,0.111603751778603,-0.715783834457397,0.689346134662628,-0.937596619129181,-0.242345243692398,0.249361857771873,0.794854044914246,0.00780383823439479,-0.60675048828125,0.81879460811615,-0.523558735847473,0.235502988100052,0.605482578277588,0.349405467510223,-0.715057075023651,0.784587264060974,-0.612321972846985,0.0973901674151421,0.139460951089859,0.476799547672272,-0.867878377437592,0.600681185722351,0.293712764978409,-0.743582487106323,-0.930878281593323,-0.342474669218063,0.127187892794609,0.476249366998672,-0.753302454948425,0.453565835952759,0.824533700942993,-0.494311362504959,0.275318711996078,0.134752631187439,0.443410247564316,-0.886131525039673,0.789969205856323,-0.60236644744873,0.114470794796944,0.437373757362366,-0.844066739082336,0.310250759124756,-0.938010811805725,-0.274749845266342,0.21130183339119,-0.335779130458832,0.336843311786652,-0.879652738571167,-0.50822389125824,0.420994877815247,-0.751313388347626,0.246427446603775,0.182872027158737,-0.951751708984375,
- 0.142351388931274,0.497689515352249,-0.855594098567963,0.149161100387573,-0.928098380565643,-0.341151595115662,0.502852201461792,0.825616478919983,0.25592452287674,-0.234322994947433,-0.293592482805252,0.926766514778137,0.485009074211121,-0.21434585750103,0.847833871841431,0.329086750745773,-0.682507395744324,0.652599096298218,-0.746996283531189,-0.417105972766876,0.517705678939819,0.482607007026672,-0.73125821352005,0.482028961181641,-0.309392780065537,0.0798884555697441,-0.947572767734528,0.023560194298625,0.0684389695525169,-0.997377097606659,0.152151569724083,-0.556349873542786,-0.816899478435516,0.602589011192322,-0.60330992937088,-0.522401750087738,0.765416264533997,-0.624472558498383,-0.155474111437798,0.0143787292763591,-0.674264013767242,0.738350391387939,0.985666871070862,0.128883987665176,-0.108856588602066,0.49614343047142,0.049205269664526,0.866845190525055,0.956140518188477,-0.109041899442673,-0.271855145692825,-0.731430053710938,0.680876970291138,0.0376383736729622,-0.566168010234833,0.719966769218445,-0.401374697685242,0.61729234457016,0.550511300563812,0.562038660049438,0.702592074871063,-0.398315370082855,-0.589668750762939,-0.420410484075546,0.115075975656509,-0.900006949901581,-0.829949855804443,0.394297480583191,-0.394604504108429,0.881363272666931,0.0476224981248379,-0.47003310918808,-0.803934693336487,0.440615028142929,-0.399433881044388,-0.79111909866333,0.609795868396759,0.0477469898760319,-0.902315258979797,0.223210200667381,-0.368787705898285,0.790736138820648,-0.423008561134338,-0.442493051290512,0.648842573165894,-0.498129278421402,-0.575213491916656,-0.849163234233856,0.129851713776588,-0.511918544769287,-0.605304360389709,0.238474547863007,0.759431719779968,-0.763961851596832,0.30663213133812,0.567749083042145,-0.526067972183228,0.452765822410584,0.719899713993073,-0.51296728849411,0.687411963939667,-0.51412969827652,-0.833866477012634,0.396987557411194,0.38349387049675,0.251214206218719,-0.167916268110275,-0.953255355358124,0.218171194195747,0.88507616519928,-0.411146551370621,-0.799817860126495,0.274996429681778,-0.533543229103088,
- 0.46054470539093,-0.597662150859833,-0.656276226043701,0.287401169538498,-0.0609481483697891,-0.955869197845459,-0.738101780414581,0.401635766029358,-0.542120516300201,0.0274083353579044,0.738700091838837,0.673476874828339,-0.741553664207459,0.150103509426117,-0.653886139392853,-0.693719804286957,0.690179526805878,0.205925226211548,-0.45792144536972,0.809108316898346,0.368309170007706,-0.795951068401337,0.511009037494659,0.324548363685608,-0.88785982131958,-0.10660707205534,-0.447593450546265,0.1958988904953,-0.312263488769531,-0.929577946662903,0.677155733108521,-0.339589178562164,-0.65279346704483,0.889316201210022,-0.296979546546936,0.347735375165939,0.839271247386932,0.0400129295885563,-0.542238652706146,0.280714362859726,-0.446590572595596,0.849562406539917,0.910146534442902,-0.243623912334442,0.335083156824112,0.328447788953781,-0.147382572293282,0.932952523231506,0.0494674853980541,0.291571199893951,0.955269157886505,0.0955303087830544,-0.356299102306366,0.929475605487823,0.34181159734726,0.0443690679967403,0.938720643520355,-0.151356011629105,-0.342945665121078,0.927081227302551,-0.774452149868011,-0.0405255928635597,0.63133317232132,-0.475519180297852,0.0801141187548637,0.876049816608429,0.33898663520813,-0.0155823193490505,0.940662145614624,-0.767793715000153,-0.0893533006310463,0.634435832500458,0.801941633224487,-0.460851043462753,0.380139380693436,0.338688939809799,-0.0206945464015007,0.940670788288116,-0.451740920543671,0.175675883889198,0.874681711196899,-0.465352684259415,0.123367339372635,0.876485824584961,0.473595499992371,-0.279720991849899,0.835142910480499,0.783854126930237,-0.487661272287369,0.384394645690918,-0.168894931674004,0.762820184230804,0.624163508415222,-0.520648241043091,0.71217405796051,0.470886081457138,0.847029089927673,0.299912989139557,0.438855230808258,0.880079984664917,-0.318141490221024,0.35248464345932,0.698258578777313,-0.535692512989044,-0.474835246801376,0.185249224305153,-0.337874174118042,-0.922780454158783,0.667040109634399,-0.686386346817017,-0.289709180593491,0.912867844104767,-0.235929802060127,0.333180725574493,
- 0.819328844547272,0.206356734037399,0.534899175167084,-0.826555728912354,0.0250924993306398,-0.562295496463776,0.0367602780461311,-0.637817025184631,-0.769310176372528,0.693395733833313,-0.386202394962311,-0.60831743478775,-0.548881947994232,0.625671684741974,0.554313600063324,0.932154178619385,0.26509752869606,0.246600747108459,0.810224413871765,0.182900860905647,0.55685156583786,0.829962432384491,0.237011387944222,0.504963278770447,0.903728187084198,-0.012371389195323,0.427928179502487,0.669802248477936,-0.679023802280426,-0.300485700368881,0.93416291475296,0.23447696864605,0.268998563289642,-0.558643221855164,0.584658563137054,0.588295936584473,-0.41632091999054,0.486306369304657,0.768233716487885,0.157733887434006,0.595746874809265,0.78753137588501,0.924711644649506,0.321751445531845,0.203432038426399,-0.425424993038177,0.582199215888977,0.692862033843994,0.09941665828228,0.776847839355469,0.621790945529938,0.470300137996674,0.801780760288239,0.368734866380692,0.792801678180695,0.606755554676056,-0.0575602129101753,0.693545579910278,-0.387465268373489,-0.607342720031738,0.930669844150543,0.280041933059692,0.235436215996742,0.200421214103699,-0.647154152393341,-0.73554253578186,-0.832365870475769,0.0148337623104453,-0.554028034210205,0.692038297653198,-0.375355094671249,-0.616596758365631,0.185972899198532,-0.567517101764679,-0.802083790302277,0.627089560031891,0.0962583497166634,-0.772976875305176,0.767489612102509,0.634853303432465,-0.088999830186367,0.435401380062103,0.839767694473267,0.324369996786118,0.930552423000336,0.281096786260605,0.234642282128334,0.821115791797638,-0.308689475059509,-0.480083018541336,0.199581891298294,-0.642380595207214,-0.739942073822021,0.354828327894211,0.907341182231903,0.225452601909637,0.740004301071167,0.481127440929413,-0.470010697841644,0.540579497814178,0.205172434449196,-0.815890967845917,-0.609412372112274,-0.583459258079529,-0.536835014820099,-0.910080671310425,-0.395606011152267,-0.123487040400505,0.232571303844452,-0.862366557121277,-0.449705183506012,0.209367126226425,-0.699521839618683,-0.683252930641174,
- 0.828083634376526,-0.347391486167908,-0.439996242523193,-0.406474590301514,-0.871314287185669,-0.274936437606812,-0.395580470561981,-0.243088975548744,-0.885677039623261,0.281577318906784,0.451448619365692,-0.846704423427582,0.368806302547455,0.757305383682251,-0.538953363895416,0.828774273395538,-0.352174669504166,-0.434863746166229,0.287559509277344,-0.702167451381683,-0.651360392570496,-0.363929480314255,-0.90388697385788,-0.224819257855415,0.269555807113647,0.798552632331848,-0.538194596767426,0.125887364149094,0.481225073337555,-0.867510676383972,-0.559169888496399,-0.0553986802697182,-0.82720011472702,-0.841669976711273,-0.533681631088257,0.0823137015104294,-0.53846538066864,-0.719114661216736,-0.439237207174301,-0.661496222019196,-0.0476554669439793,0.748432874679565,-0.783509910106659,0.579883098602295,0.223266243934631,-0.439633280038834,0.866477906703949,0.236513957381248,-0.898347318172455,-0.138649582862854,-0.416831642389297,0.191187039017677,0.453367173671722,0.870577812194824,-0.406324684619904,0.309855997562408,0.859586834907532,-0.701865315437317,0.0284636300057173,0.711740732192993,-0.784922182559967,0.252775639295578,0.565686881542206,0.522991240024567,0.76444137096405,0.376974254846573,0.144277423620224,0.643991410732269,0.751304924488068,-0.742293775081635,0.102934591472149,0.66212123632431,-0.677033722400665,-0.019680630415678,0.735688805580139,-0.552403450012207,-0.696690201759338,-0.457682400941849,-0.764728188514709,0.182007774710655,0.618113219738007,-0.681566655635834,0.0120442723855376,0.731656908988953,0.601534307003021,0.638941824436188,0.479489177465439,-0.771202623844147,0.153713181614876,0.617753028869629,-0.562258303165436,-0.679790377616882,-0.47090408205986,-0.51095974445343,-0.115698575973511,-0.851782858371735,0.705012559890747,0.280214190483093,0.651488482952118,0.140534862875938,-0.61847996711731,0.773131608963013,0.937368512153625,0.331946164369583,-0.105604059994221,-0.367856919765472,-0.836872100830078,-0.40537217259407,-0.619415163993835,0.0280414652079344,-0.784562647342682,
- -0.114916443824768,0.678047239780426,-0.725979447364807,-0.743464171886444,-0.668552041053772,-0.0172981508076191,-0.730359971523285,0.0836498588323593,0.677921116352081,-0.537832915782928,-0.0827006623148918,-0.838985323905945,-0.717637598514557,-0.694237768650055,-0.0550470910966396,-0.380713075399399,0.807522118091583,-0.450517028570175,-0.154918074607849,0.538888573646545,-0.828009366989136,0.701242208480835,0.328366935253143,0.632798969745636,0.912940800189972,0.39189600944519,-0.113828063011169,0.598766565322876,-0.69934618473053,0.39037612080574,0.703439295291901,0.32694011926651,0.631097018718719,0.17233569920063,-0.630772173404694,0.756588995456696,-0.873533606529236,-0.392600774765015,0.287756353616714,0.407147347927094,0.898060202598572,-0.166489869356155,0.97981983423233,-0.183491826057434,-0.0792721062898636,0.310155183076859,0.745442271232605,-0.590016603469849,-0.00541462237015367,0.718698978424072,-0.695300281047821,0.453194200992584,0.563156843185425,-0.690991580486298,0.972131371498108,0.0257293079048395,0.233020663261414,-0.0456465408205986,0.98032534122467,0.19203819334507,-0.00634016841650009,0.720659077167511,-0.693260729312897,0.973683297634125,0.0214384682476521,0.226894825696945,-0.188575923442841,0.607711315155029,-0.771444141864777,0.0023351761046797,-0.596861183643341,-0.802341103553772,-0.762736558914185,-0.646577179431915,0.013072450645268,-0.505088865756989,-0.578125476837158,0.640824735164642,0.220695272088051,0.520481407642365,0.824859201908112,-0.861278295516968,-0.451419472694397,0.233281269669533,-0.511794686317444,-0.709750175476074,0.48406720161438,-0.386630862951279,0.92222261428833,0.00469589373096824,-0.500273764133453,0.378629237413406,-0.778695106506348,-0.5002121925354,0.380536913871765,-0.777804374694824,-0.900642335414886,0.133436277508736,-0.413567870855331,-0.511751055717468,-0.710977673530579,0.482308655977249,0.540399730205536,0.834320545196533,-0.108983613550663,-0.284448802471161,0.867640972137451,-0.407784581184387,-0.943157434463501,0.262038171291351,0.204426229000092,
- -0.759174287319183,0.597355782985687,-0.258496582508087,-0.39211118221283,0.490902125835419,-0.777987062931061,0.393850415945053,0.262863546609879,-0.88078635931015,0.450384199619293,0.388103902339935,-0.80407053232193,-0.52899032831192,0.847519814968109,0.0433546788990498,-0.726547181606293,0.646211922168732,-0.233536660671234,0.502703070640564,0.789259910583496,-0.352644979953766,0.904423952102661,-0.329286128282547,0.271271020174026,0.992893695831299,-0.0666659027338028,0.0985797494649887,0.517100214958191,0.567110359668732,-0.641087591648102,0.96532815694809,-0.221159160137177,-0.13867299258709,0.92792683839798,-0.169730663299561,0.331878423690796,-0.465460181236267,-0.441052854061127,0.767345547676086,-0.444741070270538,-0.29905116558075,0.844259440898895,-0.885016918182373,0.267477631568909,-0.381052255630493,0.767432272434235,-0.63009113073349,0.118460454046726,-0.474196940660477,-0.409414350986481,0.779433846473694,-0.414101272821426,-0.3345607817173,0.846515953540802,-0.941457450389862,0.0922027006745338,0.324278473854065,-0.451841026544571,-0.411733508110046,0.791400790214539,-0.878607988357544,0.299450814723969,-0.371990948915482,-0.449270963668823,-0.406297892332077,0.795661747455597,0.535504221916199,-0.760276556015015,0.367715954780579,0.768953561782837,-0.627986490726471,0.119763754308224,0.733622908592224,-0.545401394367218,0.40538227558136,-0.191210135817528,0.0534755550324917,0.980091333389282,-0.821639001369476,0.437975734472275,0.364810407161713,0.923832952976227,0.177615568041801,0.339094936847687,0.52487587928772,0.59285444021225,-0.610760927200317,0.928305506706238,-0.163030728697777,0.334170401096344,-0.809636116027832,0.45902892947197,0.365762293338776,-0.386890321969986,0.0807580724358559,0.918582618236542,0.777630031108856,-0.476954072713852,0.409641742706299,-0.97899067401886,0.200492486357689,0.0371490754187107,-0.555100202560425,-0.753358840942383,0.35258224606514,-0.549343407154083,-0.0417168736457825,-0.834554672241211,0.255537003278732,0.000254512822721154,-0.966799259185791,0.819963991641998,0.524988293647766,0.22813668847084,
- -0.467809110879898,0.227367430925369,-0.85408353805542,-0.695617079734802,0.216433450579643,0.685035347938538,-0.969953894615173,0.240284234285355,0.038117740303278,-0.526267111301422,0.0504615306854248,-0.848820686340332,0.218642845749855,0.958733201026917,-0.181730583310127,-0.270583719015121,0.900085031986237,-0.341513425111771,-0.357100695371628,0.797675430774689,0.485996901988983,0.763849854469299,-0.49961793422699,0.40855273604393,-0.404626160860062,-0.127771154046059,0.905512154102325,0.215446069836617,-0.971534967422485,0.098503053188324,0.924170255661011,-0.0314476750791073,0.380684107542038,0.986714661121368,-0.126254916191101,-0.102245159447193,-0.275962918996811,0.594738841056824,-0.755069673061371,0.00188964291010052,-0.99193412065506,0.126740604639053,-0.879960119724274,-0.209817975759506,-0.426200151443481,-0.571454346179962,-0.159012377262115,-0.805080890655518,-0.3631372153759,0.23120941221714,0.902592718601227,-0.441766023635864,0.300330460071564,0.845366418361664,0.991183340549469,-0.0747945532202721,-0.109368160367012,-0.75365287065506,0.657242357730865,0.00631127040833235,-0.10355468839407,0.057211447507143,-0.99297696352005,-0.785008490085602,0.364841908216476,-0.500651895999908,-0.463942348957062,0.212435409426689,0.860016703605652,0.209732636809349,0.175584495067596,0.961863994598389,0.956952631473541,-0.279261201620102,-0.0790888369083405,0.846710681915283,0.530746340751648,-0.0372739508748055,0.433433592319489,-0.793874323368073,-0.426496058702469,0.371510177850723,-0.90563029050827,-0.204484567046165,0.459600806236267,-0.880391597747803,0.116951867938042,0.850720167160034,0.346676468849182,0.395083069801331,0.207487389445305,0.436381667852402,0.875511288642883,0.441092729568481,-0.855678021907806,0.270651608705521,0.295379668474197,0.782305359840393,0.548406064510345,0.539516627788544,-0.763802886009216,-0.354298204183578,0.316293030977249,0.918005049228668,0.239218831062317,0.832385122776031,0.546264708042145,-0.0934348925948143,-0.889411509037018,0.20924985408783,0.406400889158249,0.747375309467316,0.664109766483307,-0.0197076890617609,
- 0.540226578712463,-0.490804195404053,-0.683568954467773,0.29757085442543,0.945730865001678,-0.130555629730225,0.221069425344467,-0.842838406562805,0.490664601325989,0.399870485067368,0.161097913980484,0.902303218841553,0.465784817934036,-0.88489693403244,0.00137594365514815,-0.953685581684113,0.266284227371216,0.139916032552719,-0.889497756958008,-0.347963958978653,-0.296166926622391,0.312336087226868,0.876494765281677,0.366337358951569,0.254502475261688,-0.808302819728851,-0.530919015407562,-0.872373342514038,-0.487236887216568,0.0395595170557499,-0.958545684814453,0.280343264341354,0.0509684942662716,-0.614216446876526,0.0182169545441866,-0.788927316665649,0.0570035092532635,-0.530493378639221,-0.845770418643951,0.266068905591965,-0.447184920310974,-0.853951394557953,-0.879990696907043,-0.317633479833603,-0.353164792060852,0.334882974624634,-0.585666716098785,-0.738138139247894,0.5437952876091,-0.744176268577576,-0.387928307056427,-0.959557414054871,0.169202342629433,-0.224989205598831,0.304388880729675,0.827845096588135,0.47119015455246,-0.895831286907196,-0.381746828556061,-0.227498829364777,0.458225935697556,-0.888742327690125,-0.0128857921808958,-0.566340088844299,-0.575897812843323,0.589576601982117,-0.879524290561676,-0.475827127695084,0.00505844177678227,0.574757099151611,0.350128054618835,0.739638268947601,0.294002562761307,0.775778293609619,0.558328330516815,-0.798933982849121,0.392179816961288,-0.45595994591713,0.503455638885498,-0.319175601005554,-0.802906811237335,0.738690316677094,-0.590809285640717,-0.324470579624176,-0.68304306268692,0.483080714941025,-0.547800302505493,0.880859851837158,0.199458584189415,-0.429304301738739,0.454305410385132,-0.890769302845001,0.0116874929517508,0.343903750181198,0.105127669870853,0.93310159444809,-0.184159681200981,0.713922441005707,0.675573825836182,0.594859004020691,0.37384158372879,0.71160751581192,-0.771452128887177,0.416673481464386,-0.480879247188568,-0.105932474136353,-0.904562771320343,0.412970334291458,-0.379000514745712,0.592652201652527,0.710719466209412,
- 0.928579092025757,-0.354401916265488,-0.11018230766058,-0.394768595695496,0.580759525299072,0.711952328681946,0.469944655895233,-0.457699149847031,0.754760563373566,0.912976026535034,-0.390117824077606,-0.119510918855667,0.465199261903763,-0.464043468236923,0.753825783729553,-0.569085776805878,0.422949075698853,0.705163419246674,0.457948565483093,0.15943107008934,0.874565660953522,-0.571692526340485,-0.201735898852348,-0.795279979705811,-0.513757169246674,0.574217677116394,-0.637438356876373,0.692096471786499,-0.67467325925827,-0.256551116704941,-0.637455403804779,0.344118744134903,0.689371407032013,-0.645478069782257,0.506791412830353,-0.571419775485992,-0.28102695941925,0.0833257734775543,-0.956075668334961,-0.630217313766479,0.353057444095612,0.691503167152405,-0.281962186098099,0.0825095921754837,-0.955871164798737,-0.674914240837097,0.608644068241119,-0.417184799909592,0.810562670230865,-0.340115398168564,-0.476770013570786,0.565765142440796,-0.771594643592834,-0.290777444839478,-0.0939083993434906,0.236930683255196,-0.966977298259735,-0.0546222291886806,-0.650865614414215,-0.757225453853607,0.190909370779991,0.436964333057404,-0.878985643386841,0.923537373542786,-0.383430033922195,-0.0077546346001327,0.561463117599487,-0.823193728923798,-0.0843294635415077,-0.103801302611828,0.229265704751015,-0.96781325340271,0.557218492031097,-0.777334332466125,-0.291991710662842,0.511764049530029,0.578833878040314,-0.634861290454865,0.756374299526215,0.159480690956116,-0.634400367736816,-0.708308458328247,-0.526279270648956,-0.470456421375275,0.865383982658386,-0.107081010937691,-0.489534705877304,0.750356554985046,-0.258452177047729,-0.608414113521576,-0.236761972308159,-0.969525158405304,-0.062966525554657,0.755333185195923,-0.431877076625824,-0.492903858423233,-0.970735251903534,-0.184602826833725,0.153606817126274,-0.675535202026367,-0.59325385093689,-0.437837958335876,-0.793079555034637,-0.20980329811573,-0.571845591068268,-0.980530023574829,-0.147070035338402,0.130120396614075,-0.297824889421463,0.653458714485168,0.695910930633545,
- 0.717524230480194,0.504789471626282,0.479944318532944,-0.176405638456345,0.333520650863647,0.926091253757477,0.997935175895691,0.0395695120096207,0.0505927987396717,0.966874122619629,0.249339148402214,-0.0546315871179104,-0.123787835240364,0.200497433543205,0.971842348575592,0.870874226093292,-0.130903735756874,-0.473753392696381,0.595295667648315,0.549378633499146,0.586349904537201,0.875093162059784,-0.151762396097183,-0.459543406963348,-0.124297440052032,0.201774090528488,0.971512913703918,-0.996488630771637,-0.0486311092972755,0.0681576728820801,0.604208588600159,0.374336928129196,0.703422963619232,-0.260841518640518,0.553403854370117,0.79101574420929,0.88606208562851,-0.23216587305069,-0.401239365339279,0.600745797157288,0.499589651823044,0.624111115932465,0.840466320514679,-0.240304782986641,-0.485664486885071,0.601360857486725,0.49193486571312,0.629575550556183,0.646429538726807,-0.230969324707985,-0.72717410326004,0.840510308742523,-0.240813553333282,-0.485336273908615,0.501901566982269,-0.847012937068939,-0.175111278891563,0.480588912963867,-0.200250297784805,0.853776395320892,0.00608809432014823,-0.21206471323967,0.977236688137054,-0.998367488384247,-0.023319261148572,0.0521418787539005,0.16644161939621,0.308142870664597,0.936667025089264,0.604590892791748,0.406257569789886,0.685145735740662,0.437690675258636,-0.897102952003479,-0.060277596116066,0.0734743177890778,-0.00224342732690275,0.99729460477829,0.680432975292206,-0.598208606243134,-0.423269897699356,0.233188614249229,0.553090333938599,0.799821317195892,0.540331184864044,0.289791405200958,0.789976716041565,0.120151698589325,0.972084760665894,-0.201531603932381,0.284150868654251,0.769256055355072,0.572279155254364,-0.942988455295563,0.295733511447906,-0.152690872550011,-0.876589298248291,0.00230119936168194,-0.481233716011047,-0.768219709396362,0.604002177715302,0.212179318070412,0.267537474632263,0.693449676036835,0.668992698192596,-0.88606584072113,-0.022545212879777,-0.463010877370834,0.754078388214111,-0.447626680135727,-0.480620592832565,-0.917625367641449,-0.135906755924225,-0.373487651348114,
- -0.972816586494446,-0.177260681986809,0.149018600583076,0.148215174674988,-0.651496529579163,-0.744032621383667,-0.929164826869965,-0.251220166683197,-0.271184831857681,0.565042078495026,-0.760272622108459,-0.320488721132278,0.723081171512604,-0.112179279327393,-0.681593298912048,0.663083851337433,-0.254964530467987,-0.703784704208374,-0.236424446105957,0.639503598213196,-0.731531739234924,-0.681106626987457,0.309368908405304,-0.663614928722382,0.6626096367836,-0.293385773897171,-0.689110457897186,0.726034224033356,-0.504402101039886,-0.467389404773712,0.391198933124542,-0.0782387405633926,-0.916974544525146,0.0462379418313503,0.757770895957947,-0.650880396366119,0.703817009925842,0.531736791133881,-0.471060067415237,-0.0808599889278412,0.544239521026611,-0.835023939609528,0.339539438486099,-0.0307406857609749,-0.940089344978333,0.923072338104248,-0.0176178850233555,-0.384222716093063,-0.221628665924072,0.222817376255989,-0.949333012104034,-0.0650861784815788,0.979751527309418,0.189342826604843,-0.815084517002106,0.569742500782013,0.105028577148914,-0.491320252418518,0.673354864120483,0.552447021007538,-0.0260938704013824,0.644380509853363,-0.764259815216064,-0.603014647960663,0.333025306463242,-0.724891364574432,-0.699512779712677,0.169903174042702,-0.694128811359406,0.074749268591404,0.978712916374207,0.191137626767159,-0.555292963981628,0.575679063796997,0.600202739238739,0.936931490898132,0.103231564164162,-0.333920121192932,0.63885486125946,0.455820351839066,-0.619751930236816,-0.0733401775360107,0.558736681938171,-0.826095998287201,-0.628798425197601,0.294074177742004,-0.719814538955688,-0.31002488732338,-0.0467931516468525,-0.949576318264008,0.76755964756012,-0.0475188456475735,-0.639213681221008,-0.253137081861496,0.665754556655884,0.701920568943024,-0.583884537220001,0.360255897045136,-0.727526307106018,-0.977905333042145,0.154667273163795,-0.140638500452042,0.170225188136101,0.256810486316681,0.951352715492249,-0.335276275873184,0.498159527778625,0.799641728401184,-0.998260080814362,0.0578061118721962,0.0116314562037587,
- 0.722178816795349,0.234275579452515,-0.650824666023254,0.252777248620987,-0.0980051457881927,-0.962548017501831,-0.608822703361511,0.324487447738647,-0.723908007144928,-0.808570802211761,-0.146362662315369,-0.569904625415802,0.0758667811751366,-0.634369790554047,-0.769298017024994,-0.816871345043182,0.34940180182457,-0.458955138921738,0.669653415679932,-0.581435561180115,-0.462057501077652,0.835573375225067,-0.282475858926773,-0.47119477391243,0.427847772836685,-0.416910707950592,0.801954984664917,0.499936282634735,-0.246149688959122,0.830345749855042,0.936846494674683,0.189531728625298,-0.293932676315308,0.235101848840714,-0.596962332725525,0.767048299312592,-0.783917009830475,-0.586480319499969,0.203752249479294,-0.0605068169534206,-0.942074179649353,0.329901695251465,0.0699338838458061,-0.260747492313385,0.962870717048645,0.378098249435425,-0.511106073856354,0.771888792514801,-0.842698276042938,-0.496924668550491,0.207184597849846,-0.727126359939575,-0.167460650205612,0.665765881538391,0.557458341121674,-0.0543931685388088,0.828421115875244,0.796346187591553,-0.0825154110789299,0.599186062812805,0.634802341461182,-0.647995829582214,-0.420865118503571,-0.677254438400269,-0.450523138046265,0.581683158874512,0.17148631811142,-0.69978940486908,0.69346034526825,0.348741590976715,-0.560280799865723,0.751308679580688,0.767039060592651,-0.138970389962196,0.626369297504425,0.0840860828757286,-0.615853011608124,-0.783361077308655,0.661368250846863,-0.598543465137482,-0.452037334442139,0.709944128990173,-0.23170368373394,0.66505092382431,-0.602708578109741,0.48549148440361,0.633277535438538,-0.372185260057449,0.314760088920593,0.873157739639282,-0.372084885835648,0.315158784389496,0.873056590557098,0.102321453392506,-0.491279155015945,0.864971280097961,0.717295348644257,-0.220740810036659,0.660878956317902,-0.0754720345139503,-0.892532289028168,-0.444623559713364,0.642778396606445,-0.322069406509399,0.69505912065506,0.892118513584137,-0.434523433446884,0.123750507831573,0.932971298694611,-0.255953252315521,-0.253085941076279,
- 0.252515584230423,0.927562952041626,-0.275432169437408,0.372947692871094,0.876175820827484,0.305329203605652,0.0025710507761687,-0.778706431388855,-0.627383232116699,0.916825890541077,-0.201797917485237,-0.344540178775787,-0.364746272563934,-0.8026083111763,-0.471995830535889,-0.366119146347046,-0.38609391450882,-0.846692562103271,-0.881509244441986,0.295269221067429,-0.368452906608582,0.0353096276521683,-0.718758583068848,-0.694362580776215,0.302634537220001,0.899049341678619,-0.316421568393707,0.566507279872894,-0.475526928901672,-0.673010885715485,0.729393005371094,0.0511925742030144,-0.682176828384399,0.753064870834351,-0.600800633430481,-0.268201291561127,-0.271018236875534,-0.962236821651459,-0.0254878550767899,0.934738218784332,-0.345987170934677,-0.0809786096215248,0.304992645978928,-0.283355802297592,-0.909224390983582,0.147801578044891,0.63915091753006,-0.754745543003082,0.212834432721138,0.977088272571564,-9.50484318309464e-005,-0.353172838687897,-0.848905026912689,-0.393229216337204,-0.826803386211395,0.551737070083618,0.109464034438133,-0.986789345741272,-0.0371350273489952,0.157695263624191,0.277862668037415,0.500650942325592,0.819842040538788,-0.424286425113678,-0.470981448888779,0.773406445980072,-0.411752104759216,0.259312599897385,0.873623013496399,-0.611777722835541,0.396864622831345,0.684270799160004,0.441621631383896,0.872795104980469,0.207843869924545,0.360017329454422,0.697912812232971,0.619116485118866,-0.593064546585083,0.383887529373169,0.707746386528015,-0.537700831890106,0.834724187850952,-0.118799358606339,0.490989565849304,0.822154819965363,0.288081437349319,-0.267795473337173,-0.963374018669128,-0.0140028167515993,0.764608263969421,-0.607197523117065,-0.216067969799042,0.0679892152547836,-0.994797229766846,0.075868047773838,-0.0453254394233227,-0.81523859500885,0.577348828315735,0.126602441072464,-0.987135767936707,0.0976464599370956,0.433761477470398,-0.306524574756622,0.8472860455513,0.141927972435951,0.98818427324295,-0.0578661412000656,0.390498727560043,-0.470047473907471,-0.791559278964996,
- 0.153395861387253,-0.168335244059563,-0.973721206188202,-0.377050250768662,-0.921190023422241,-0.0961355417966843,0.340294390916824,-0.309820085763931,-0.887812614440918,0.163683265447617,-0.393307387828827,-0.904719352722168,0.0964629054069519,-0.36620169878006,-0.925522148609161,-0.184392035007477,0.93410861492157,-0.305681049823761,0.681976616382599,0.730612397193909,-0.0333682633936405,0.35312095284462,-0.918133080005646,0.179825648665428,-0.422455161809921,-0.894435822963715,0.146683931350708,0.159042596817017,-0.12500624358654,0.979325830936432,0.228529959917068,-0.417655676603317,-0.879396259784698,-0.074277825653553,-0.993480443954468,0.0864839255809784,-0.302440941333771,-0.950850665569305,-0.0664264112710953,-0.761400938034058,0.502260982990265,0.409881144762039,-0.462843656539917,0.37315833568573,0.804070055484772,-0.0336756370961666,0.991370558738709,-0.126690208911896,0.306267291307449,-0.222604408860207,0.925552606582642,-0.145338028669357,-0.984358608722687,0.099575012922287,0.365908265113831,0.14363169670105,0.919500470161438,0.112180396914482,0.236725762486458,0.965078473091125,0.0382930301129818,0.999252080917358,-0.00539476936683059,0.39815828204155,0.911146104335785,-0.106221348047256,0.686560153961182,0.726306617259979,-0.0333748236298561,0.536159873008728,-0.637618482112885,-0.553150296211243,0.101629137992859,-0.368350714445114,-0.924115419387817,-0.165374264121056,-0.625833690166473,-0.762222766876221,-0.0386661365628242,-0.996062397956848,0.0797789171338081,0.0100250076502562,-0.328649371862412,-0.944398820400238,-0.922670125961304,-0.0754585117101669,-0.378134697675705,-0.647921621799469,0.761702299118042,-0.00268774898722768,-0.324132204055786,0.937854707241058,0.123963169753551,-0.510394334793091,-0.484024494886398,-0.710786819458008,0.911515295505524,0.252645790576935,-0.324514925479889,0.682746648788452,0.0346590168774128,-0.729832708835602,0.00316535076126456,-0.997415482997894,0.0717801749706268,-0.30414891242981,-0.797928631305695,0.520387709140778,0.548168122768402,0.0618994571268559,0.834074437618256,
- -0.515702188014984,-0.386225700378418,0.764775097370148,-0.936143696308136,-0.287751585245132,0.202074348926544,-0.959112763404846,0.0191635582596064,-0.282374769449234,0.558155059814453,0.432830005884171,0.70789909362793,0.592172980308533,0.779113292694092,-0.205702871084213,0.634566307067871,0.01725934445858,0.772675693035126,0.824407458305359,0.0576234795153141,0.563055872917175,0.571690082550049,0.050190232694149,0.818933069705963,-0.428981870412827,-0.605103015899658,0.670689880847931,0.657540380954742,0.717570006847382,-0.229638963937759,0.593626081943512,0.396751821041107,0.700139999389648,0.35393625497818,0.846451938152313,-0.397804319858551,0.672480702400208,0.305807560682297,0.673981726169586,0.193865448236465,0.924844920635223,-0.327227830886841,0.421658277511597,0.776294589042664,-0.468584030866623,0.683144867420197,0.00598189514130354,-0.730258405208588,-0.387812405824661,-0.785104215145111,-0.482921242713928,-0.0640541613101959,-0.649861991405487,-0.757348299026489,-0.967001855373383,0.0500945597887039,-0.249795913696289,-0.920650839805603,-0.133294209837914,-0.366926044225693,-0.520037591457367,-0.371671110391617,0.769039332866669,-0.899429142475128,0.42321190237999,-0.109173700213432,-0.165347099304199,0.970267832279205,0.176750391721725,0.0746386870741844,0.94793826341629,-0.309583842754364,-0.458212941884995,-0.542860507965088,0.703806340694427,0.527440369129181,-0.27227920293808,0.804779946804047,0.800722301006317,0.107187330722809,0.589368045330048,-0.910579025745392,-0.166264519095421,-0.378420352935791,0.447394877672195,-0.744831085205078,0.495040029287338,-0.504813194274902,-0.420644730329514,0.753804802894592,0.422219485044479,0.223700746893883,-0.878458142280579,0.900911450386047,-0.258631080389023,0.348523408174515,0.524372816085815,-0.186672195792198,0.83077472448349,0.21601514518261,0.714531004428864,-0.665419340133667,-0.411447495222092,0.906868636608124,0.0911059007048607,-0.939090251922607,0.291771173477173,-0.181601569056511,-0.885367512702942,0.456167727708817,-0.0896416753530502,-0.898754000663757,-0.28717765212059,0.331315934658051,
- 0.518776416778564,-0.115904219448566,0.84701669216156,-0.253327697515488,0.966842293739319,0.0322654359042645,0.319255083799362,0.30311581492424,-0.897884726524353,0.298530220985413,0.255132675170898,-0.919666826725006,0.305981814861298,0.100120507180691,-0.946758270263672,0.156025320291519,-0.350725322961807,-0.923389315605164,-0.94025194644928,0.108392551541328,0.322765231132507,-0.940761208534241,0.102185636758804,0.323305577039719,-0.237091958522797,-0.11289232224226,0.964905560016632,-0.998720347881317,0.0371420532464981,-0.0343239828944206,0.968187034130096,0.107626885175705,0.225898921489716,0.426521450281143,0.0784529596567154,-0.901068568229675,0.523522853851318,-0.404933840036392,0.749634861946106,0.510622501373291,-0.0459538660943508,0.858576059341431,-0.790995359420776,-0.528818845748901,0.307696223258972,0.604228973388672,-0.729618489742279,0.320256680250168,-0.815743207931519,0.519056379795074,0.255232244729996,0.878023386001587,-0.456477910280228,0.143884763121605,0.942046642303467,-0.17911759018898,0.283663541078568,0.299332648515701,-0.196321934461594,-0.93373316526413,0.413764655590057,-0.160859063267708,-0.896059811115265,0.968211472034454,-5.24050337844528e-005,0.250133067369461,0.28971192240715,-0.306504338979721,-0.906709492206573,0.953767538070679,-0.123235777020454,0.274117976427078,0.992005109786987,-0.113723754882813,0.0547065250575542,0.19195082783699,-0.0471988208591938,-0.980269014835358,0.303341537714005,-0.126921087503433,-0.944391310214996,0.993241310119629,0.115865588188171,-0.00686044106259942,-0.661761939525604,0.0518239922821522,0.747920751571655,0.830868542194366,0.272786259651184,0.485020786523819,0.855245769023895,0.210034936666489,0.473751217126846,0.799449563026428,0.391129672527313,0.455958336591721,-0.679787516593933,0.218667581677437,0.700052440166473,-0.611460626125336,-0.111915551126003,0.783320367336273,-0.619515955448151,-0.0952575355768204,0.779182910919189,0.629300892353058,0.713741719722748,0.307494908571243,0.805777013301849,0.371147006750107,0.461490362882614,-0.536867558956146,-0.349029213190079,0.768083214759827,
- -0.148203730583191,-0.38615956902504,-0.910448610782623,-0.640239417552948,-0.0499111600220203,0.76655238866806,-0.217611834406853,-0.0729247108101845,-0.973307311534882,-0.332956612110138,0.16058112680912,-0.929168224334717,-0.663305878639221,0.0612194836139679,0.745840191841125,0.800508439540863,0.441944599151611,0.404810070991516,-0.0794847756624222,-0.533146977424622,-0.842280507087708,-0.189436167478561,-0.205724895000458,-0.960099577903748,-0.254851967096329,-0.107182398438454,-0.961021542549133,0.684326708316803,0.664158046245575,0.30098357796669,0.690618753433228,0.621242702007294,0.370274573564529,-0.959779381752014,-0.0473516695201397,0.276733458042145,0.682272493839264,0.658385038375854,0.317857533693314,-0.563233971595764,-0.202786281704903,0.801027595996857,-0.862217783927917,-0.406148165464401,0.302694857120514,-0.631928503513336,-0.0685613751411438,0.771988153457642,-0.137437090277672,-0.410663574934006,-0.901369214057922,0.688974797725677,0.623786807060242,0.369057923555374,0.466591149568558,-0.0809008255600929,-0.880765438079834,-0.252222836017609,-0.115013167262077,-0.960809886455536,0.287633150815964,0.181111961603165,-0.940460324287415,-0.591923534870148,-0.756230175495148,0.278823286294937,-0.18445235490799,-0.299213588237762,-0.936188340187073,0.368635416030884,0.0703424662351608,-0.926908791065216,0.578177511692047,0.762721300125122,0.289770573377609,0.867942869663239,0.438281297683716,0.233633622527123,0.425170749425888,0.375295341014862,0.82364022731781,0.703734576702118,0.633446753025055,0.321718662977219,-0.962973415851593,0.0714351311326027,0.259960025548935,0.611129343509674,-0.0612198151648045,0.789159715175629,0.783984005451202,0.390385329723358,-0.482667982578278,0.93258661031723,0.140703797340393,0.332392632961273,0.660829961299896,-0.444630801677704,0.604654610157013,0.948409378528595,-0.201416984200478,0.244848668575287,0.823712646961212,0.17780826985836,-0.538406610488892,0.359594285488129,0.0832666233181953,-0.929386138916016,0.824400663375854,0.512976050376892,0.239205613732338,
- 0.359990686178207,0.373027831315994,0.85513561964035,0.249073997139931,0.230242356657982,-0.940718114376068,-0.393725126981735,-0.3227618932724,-0.860700488090515,-0.694405913352966,-0.657275140285492,0.29289922118187,-0.669477760791779,0.438572108745575,-0.599544882774353,-0.675897419452667,0.736914932727814,0.0109137650579214,0.377640902996063,0.925146579742432,0.0386183597147465,0.723858237266541,0.651462316513062,-0.227213934063911,-0.894966185092926,-0.334958374500275,-0.29468360543251,-0.64483654499054,0.261689126491547,-0.718125760555267,0.935437977313995,0.103257171809673,-0.33807361125946,0.613079965114594,-0.751853227615356,0.242589622735977,0.991932451725006,-0.126381888985634,-0.00988242588937283,-0.699676036834717,0.114527836441994,-0.705221116542816,-0.526236355304718,-0.0837634280323982,-0.846202731132507,0.903895974159241,-0.0231455359607935,-0.427125662565231,0.660031914710999,-0.358443260192871,0.66020929813385,-0.534359097480774,-0.801198065280914,0.269336760044098,-0.880123496055603,-0.352507144212723,0.317995727062225,-0.89672577381134,-0.205829948186874,0.391812384128571,-0.962859570980072,0.0748457610607147,0.259421557188034,-0.669041097164154,0.431215196847916,-0.605340838432312,-0.895216763019562,-0.237906217575073,0.376812398433685,-0.661468148231506,0.355814158916473,-0.660194039344788,-0.719226062297821,0.263894826173782,-0.642707943916321,0.641886472702026,-0.198570355772972,0.740642666816711,-0.851013779640198,0.119904316961765,0.511271417140961,0.870680868625641,0.163292616605759,0.463950842618942,0.19809091091156,-0.436991780996323,0.877381443977356,-0.896475732326508,-0.143842905759811,0.419094830751419,-0.247391656041145,0.935072124004364,0.253845483064651,0.210339218378067,-0.237111300230026,0.94843852519989,0.701205611228943,0.42304003238678,0.57388836145401,-0.801711916923523,0.250718176364899,0.542584955692291,-0.68172812461853,0.0339242368936539,-0.730818688869476,-0.535049855709076,-0.171049132943153,-0.827323317527771,-0.197374522686005,-0.31146964430809,-0.929532110691071,
- 0.956548035144806,0.248800441622734,-0.152033716440201,0.944959998130798,-0.104429617524147,0.310072600841522,0.206722557544708,-0.315923869609833,0.925990343093872,0.961784720420837,0.114756941795349,-0.248597964644432,0.213030427694321,-0.0207354873418808,0.976825535297394,0.552545428276062,-0.0438128635287285,0.832330465316772,0.206667676568031,-0.316910296678543,0.925665378570557,0.948621392250061,-0.118373446166515,-0.29343718290329,0.944196224212646,0.312389373779297,-0.10443376749754,0.0825683772563934,-0.909785926342011,0.40678283572197,0.212652176618576,0.117217272520065,0.970071732997894,-0.00462106615304947,-0.300052523612976,0.953911483287811,0.812754511833191,0.551815450191498,0.18689526617527,0.0972560197114944,0.39042130112648,0.915484964847565,0.118434064090252,0.216615617275238,0.969046473503113,-0.0694278851151466,-0.930186033248901,0.360463470220566,0.0877724885940552,-0.454539149999619,0.886391639709473,0.442262679338455,-0.156592160463333,0.883109629154205,-0.436222463846207,0.517590761184692,0.73607724905014,0.559280633926392,0.821066915988922,0.114255510270596,-0.0744069665670395,0.401032209396362,0.913037240505219,-0.093265525996685,-0.168407440185547,0.9812952876091,-0.596105575561523,-0.794696986675262,0.114521093666554,-0.680562078952789,-0.725025713443756,0.105702474713326,0.769556701183319,0.614423453807831,0.173972010612488,-0.279274344444275,0.17094498872757,0.944872319698334,0.852208614349365,0.430838108062744,0.29684853553772,0.0422867052257061,0.979444563388824,-0.197231858968735,-0.0319777429103851,0.366360664367676,-0.929923295974731,0.184555560350418,0.982714295387268,0.0145558761432767,-0.246013000607491,-0.618427574634552,0.746341049671173,-0.076837457716465,-0.196031510829926,0.977582573890686,-0.642155051231384,-0.756658256053925,0.122904062271118,-0.946711242198944,-0.31322979927063,-0.0749996230006218,-0.978450953960419,-0.169373586773872,-0.118094325065613,-0.170952409505844,-0.0918605625629425,0.980987727642059,-0.235726982355118,-0.511175632476807,0.826518177986145,-0.946082830429077,-0.312529712915421,-0.0851614624261856,
- -0.972677826881409,-0.194600611925125,-0.126603528857231,-0.273185580968857,0.158929884433746,0.948741793632507,0.838316977024078,0.501259624958038,0.21439091861248,0.855745196342468,0.421095103025436,0.300631552934647,0.139788091182709,-0.529219448566437,0.836890697479248,-0.192715838551521,-0.211474344134331,0.958195805549622,0.820562183856964,-0.46104571223259,0.337808519601822,0.146353885531425,0.158049926161766,-0.976524829864502,0.39461687207222,0.918591022491455,-0.0216344576328993,0.110157310962677,0.260912448167801,-0.959056973457336,0.504314064979553,0.861852824687958,0.0536380000412464,0.111897155642509,0.258098185062408,-0.959616780281067,0.400042355060577,0.916307210922241,-0.0186325032263994,-0.71747362613678,-0.693013310432434,-0.0704566091299057,-0.839794099330902,-0.539373815059662,-0.0618201158940792,0.445756256580353,-0.261325031518936,-0.856160402297974,0.227530628442764,0.0542915277183056,-0.972256243228912,0.28503829240799,-0.0495799779891968,-0.957233011722565,-0.924213469028473,-0.325656563043594,-0.199442937970161,0.112082116305828,-0.447192937135696,-0.887387216091156,-0.926419854164124,-0.318010181188583,-0.201533630490303,0.281441211700439,-0.0425449013710022,-0.958634853363037,0.408394426107407,-0.315921872854233,-0.856392085552216,0.927729189395905,0.248601987957954,0.278416305780411,0.259238451719284,0.295791447162628,-0.919403553009033,-0.935350775718689,0.186251923441887,-0.300714313983917,0.187734678387642,-0.144657328724861,-0.971509099006653,-0.951012253761292,0.24079617857933,-0.193888947367668,-0.661895036697388,0.709880888462067,-0.240757286548615,0.258303642272949,0.287407457828522,-0.922321081161499,-0.794897794723511,0.604663252830505,-0.0502001196146011,-0.276126593351364,-0.0313870348036289,-0.960608661174774,-0.962322354316711,0.261155098676682,-0.0757215917110443,0.231820866465569,0.0929494500160217,-0.968307554721832,0.265372425317764,0.355597645044327,-0.89617395401001,0.922600090503693,0.271994650363922,0.273547023534775,0.430586785078049,0.786770224571228,-0.442252904176712,
- -0.953819632530212,0.291114956140518,-0.0740282237529755,-0.47294208407402,-0.376506268978119,-0.796598255634308,-0.952430248260498,0.287394374608994,0.101395927369595,-0.843479156494141,0.417636871337891,0.337820321321487,-0.995430052280426,0.0343901850283146,0.0890861004590988,-0.379344165325165,-0.201566323637962,-0.903033256530762,0.224671512842178,0.792880535125732,-0.566447854042053,-0.835246086120605,0.438389420509338,0.33193176984787,-0.409370362758636,-0.25497704744339,-0.876015186309814,-0.123605325818062,0.19261460006237,-0.973458468914032,-0.816903352737427,0.467738151550293,-0.337475836277008,0.967186570167542,-0.170775815844536,-0.188111156225204,-0.17465540766716,-0.111331939697266,0.978315234184265,0.813412487506866,-0.564279198646545,-0.141241252422333,0.871568143367767,-0.352836966514587,0.34040430188179,-0.104276865720749,-0.480868190526962,0.870570123195648,-0.978526592254639,-0.187261804938316,-0.086132138967514,-0.282028883695602,0.50501549243927,0.81573224067688,-0.980442762374878,-0.14218658208847,-0.136070519685745,-0.216817051172256,0.910876333713531,-0.351133346557617,-0.276902318000793,0.52756655216217,0.803118109703064,-0.588587999343872,-0.678319275379181,-0.439826220273972,0.0781836733222008,-0.903042197227478,-0.422376751899719,-0.975952088832855,-0.209166809916496,-0.0613743662834167,0.165349259972572,-0.1251500248909,-0.978262305259705,-0.132797881960869,0.179874628782272,-0.974684476852417,0.964633703231812,-0.185785114765167,-0.186991259455681,0.259511709213257,0.904979825019836,0.337142765522003,-0.961665570735931,-0.273879885673523,0.0137528097257018,-0.911911308765411,0.271053493022919,0.30813604593277,0.0726821273565292,-0.918409407138824,-0.388897776603699,-0.5430708527565,-0.377933740615845,0.749826729297638,-0.943676233291626,-0.322789996862412,0.0726760700345039,0.820915281772614,-0.55279952287674,-0.14321680366993,-0.212477847933769,-0.334149539470673,0.918257713317871,0.370521038770676,-0.0728498175740242,0.925962746143341,-0.991101086139679,-0.041395116597414,-0.12651115655899,
- -0.177666500210762,-0.680670917034149,0.710719168186188,-0.186492770910263,-0.175907105207443,0.966580152511597,0.578111946582794,0.315281599760056,0.752584934234619,-0.475330501794815,0.878582179546356,-0.0464136675000191,-0.580425143241882,0.807904362678528,0.101967580616474,-0.768764555454254,0.536918580532074,0.347447127103806,0.45260015130043,0.0606340318918228,0.889649748802185,-0.621335744857788,0.77667111158371,0.103556081652641,0.676040589809418,-0.495276868343353,0.545591354370117,0.82363224029541,-0.54855489730835,-0.143935725092888,0.371581614017487,-0.0712305158376694,0.925663709640503,-0.788298368453979,0.414862245321274,-0.454395473003387,0.627043306827545,0.768354594707489,0.128249332308769,-0.492375075817108,0.854040920734406,0.167871758341789,0.903052270412445,-0.396117746829987,-0.166094496846199,0.997095346450806,-0.0563462302088737,0.0512446686625481,0.123134955763817,-0.704022169113159,-0.699421584606171,0.539489984512329,0.758540570735931,-0.365467876195908,-0.0725527852773666,0.996827244758606,0.0327370874583721,0.917439460754395,0.259894400835037,-0.301263630390167,-0.0794029161334038,0.994892358779907,0.0623248517513275,0.447387516498566,0.663569927215576,0.599599361419678,0.965192973613739,0.168676897883415,-0.199876457452774,-0.0833662077784538,-0.996345400810242,0.0186045616865158,0.118354611098766,-0.733254075050354,-0.669574975967407,0.996241927146912,-0.0633432418107986,0.059074904769659,-0.880054593086243,0.103384278714657,0.463482022285461,-0.0698491185903549,-0.886219263076782,0.45796999335289,-0.521426916122437,-0.551332473754883,-0.651265442371368,0.998123049736023,-0.0463346540927887,0.0400431603193283,0.479434758424759,0.59606945514679,0.644083619117737,-0.374796897172928,0.122123159468174,0.919028520584106,0.566713035106659,-0.469752162694931,-0.676882028579712,-0.335058778524399,-0.875556290149689,-0.348047077655792,0.948589622974396,0.205442354083061,-0.240771919488907,0.494301199913025,-0.323077380657196,-0.807023763656616,0.396427035331726,0.750239491462708,0.529137313365936,
- 0.958899080753326,0.10448794811964,0.263808310031891,0.922763526439667,0.192265138030052,-0.333978354930878,0.523175656795502,-0.378115713596344,-0.763751089572906,0.934166848659515,0.252582639455795,0.252060174942017,0.431160628795624,-0.212638840079308,-0.876861035823822,0.790731430053711,0.559039711952209,-0.249436274170876,-0.383153021335602,0.881316006183624,-0.276542663574219,-0.548885047435761,-0.452479124069214,-0.702842712402344,0.260130345821381,0.0458893813192844,-0.964482545852661,-0.760169982910156,-0.649679720401764,0.0076212165877223,0.155859172344208,-0.255950957536697,-0.954042494297028,-0.642498314380646,-0.766140520572662,0.0149859525263309,0.308587521314621,-0.0228524561971426,-0.950921416282654,-0.945247948169708,-0.326215118169785,-0.00948557537049055,-0.879808783531189,0.102627873420715,0.464116454124451,-0.519200384616852,-0.558121740818024,-0.647248864173889,-0.206516563892365,-0.913842737674713,-0.349631786346436,-0.65770810842514,-0.75314062833786,0.0141148278489709,0.227484226226807,-0.42313340306282,-0.877045631408691,-0.258154988288879,-0.915924251079559,-0.307308852672577,-0.181089699268341,0.486170768737793,-0.854894459247589,0.384848326444626,0.277690201997757,-0.88021582365036,-0.795846521854401,-0.0790613889694214,0.600314617156982,-0.99753475189209,-0.0669814795255661,-0.0209267791360617,-0.262508183717728,0.345625013113022,0.900906682014465,-0.778994381427765,-0.0556709654629231,0.624554634094238,-0.268688529729843,0.358525007963181,0.894016921520233,-0.995604157447815,-0.0915203094482422,-0.0199150759726763,-0.389675885438919,0.625092923641205,0.676322102546692,0.279606968164444,0.887241899967194,0.366908311843872,-0.908316671848297,0.228816688060761,0.35014820098877,0.532256484031677,0.387550503015518,0.752667009830475,-0.115477181971073,0.0510753728449345,0.991996228694916,0.847764015197754,0.441871881484985,0.293334990739822,-0.18277907371521,0.183254107832909,0.965924322605133,0.133946537971497,0.990130960941315,0.0412189848721027,0.777869522571564,0.567229688167572,0.270499020814896,
- -0.0907150730490685,0.414886564016342,-0.905339658260345,-0.620872974395752,-0.780206322669983,0.0761240050196648,0.350888192653656,0.58122843503952,-0.734200954437256,0.433974355459213,0.337870061397552,0.835170686244965,0.505633592605591,0.855303585529327,-0.113094724714756,-0.15451018512249,0.127245336771011,0.979762852191925,-0.185526505112648,0.188737839460373,0.964343369007111,-0.445034295320511,0.56209808588028,0.697129964828491,0.285122334957123,0.520678579807281,0.804735422134399,0.743183135986328,0.630241274833679,-0.224666014313698,0.38551914691925,0.402969121932983,0.830054759979248,0.447800278663635,0.739463448524475,-0.50266170501709,0.526209592819214,0.194112911820412,0.827903151512146,0.24540863931179,0.875750362873077,-0.415735393762589,0.480349332094193,0.688762664794922,-0.543019831180573,0.384582489728928,0.284552276134491,-0.87813800573349,0.644129633903503,-0.745639264583588,0.17064356803894,0.913269639015198,-0.387601733207703,-0.125314265489578,0.661837637424469,-0.104674756526947,0.742303252220154,-0.750217199325562,0.0475907921791077,0.659476518630981,0.571225106716156,0.359464943408966,0.737893521785736,0.967305243015289,-0.183829665184021,0.174720957875252,0.019500806927681,0.999065220355988,-0.0385796949267387,0.365916520357132,0.49330261349678,-0.789149940013886,-0.0774036273360252,0.964800953865051,-0.251331984996796,-0.0341129079461098,0.869204640388489,-0.493274420499802,-0.0503588505089283,0.603216707706451,0.79598593711853,-0.0931329801678658,-0.28813824057579,0.953049123287201,-0.674989461898804,0.23050345480442,0.700897574424744,0.101294629275799,0.618693232536316,0.779075145721436,0.387582004070282,-0.62495881319046,-0.677647888660431,-0.315194070339203,-0.913350224494934,-0.257767468690872,-0.495201408863068,-0.853137493133545,0.164110317826271,-0.128908470273018,-0.344904184341431,0.929743885993958,0.0988062769174576,0.655365109443665,0.74882173538208,-0.397347867488861,0.714880764484406,-0.57537829875946,0.557976424694061,-0.601739287376404,-0.571464955806732,0.808116555213928,-0.198136165738106,-0.554697871208191,
- -0.221569374203682,0.887813031673431,-0.403355032205582,0.814203917980194,-0.491291850805283,-0.309361189603806,-0.469632714986801,-0.716023087501526,-0.516484320163727,0.788867950439453,-0.215048894286156,-0.575709640979767,0.852554678916931,-0.15468667447567,-0.499221980571747,0.289247632026672,0.954454123973846,-0.0731653422117233,-0.175587207078934,0.917918026447296,-0.355802774429321,-0.694076776504517,-0.0543932504951954,0.717843174934387,0.270634084939957,0.328539192676544,0.904886305332184,-0.24955552816391,0.866742134094238,-0.431833416223526,-0.414518058300018,0.129141703248024,0.900831520557404,0.177016392350197,0.983522891998291,0.0367136038839817,-0.489572614431381,0.806461155414581,-0.331570655107498,-0.402099251747131,0.861595571041107,-0.309789478778839,-0.108486540615559,0.751288533210754,0.650996327400208,-0.454319506883621,0.106328852474689,0.884470462799072,0.170429334044456,-0.920373141765594,-0.351947546005249,0.271601527929306,-0.477070987224579,-0.835844397544861,-0.487438887357712,-0.846850156784058,0.212716057896614,0.123702712357044,0.0703883767127991,0.989819765090942,0.630687773227692,0.481168389320374,0.608859658241272,0.950281739234924,-0.113985195755959,-0.289779186248779,-0.267510592937469,-0.550380766391754,-0.79089766740799,-0.255058795213699,-0.93556147813797,-0.244273960590363,-0.900864660739899,0.222267180681229,-0.372880876064301,-0.229261070489883,0.685336351394653,0.691197156906128,0.74877405166626,0.662445962429047,0.022421894595027,0.185322985053062,0.389061957597733,0.902378082275391,-0.213360875844955,-0.942400395870209,-0.257601767778397,0.200945571064949,-0.70231157541275,-0.68291974067688,-0.898211121559143,0.231527537107468,-0.373646885156631,0.768912971019745,-0.593984723091125,-0.236548110842705,0.579581379890442,0.539518117904663,-0.610741913318634,-0.296466886997223,0.950606524944305,0.0919489488005638,0.664068758487701,0.747304916381836,0.0234097149223089,0.876392602920532,0.27717536687851,0.39383989572525,-0.231081455945969,0.653136372566223,-0.721120238304138,
- -0.462341815233231,0.878288447856903,-0.121858283877373,0.671851575374603,0.733661234378815,-0.101767994463444,-0.210705667734146,-0.216867282986641,-0.953190386295319,-0.469042181968689,0.877778291702271,-0.0974917784333229,-0.90478640794754,-0.424675226211548,0.0318235419690609,0.664050400257111,0.747315764427185,0.0235844608396292,-0.692514359951019,-0.244691550731659,0.678638279438019,-0.486775457859039,0.8270183801651,0.281229823827744,0.549988806247711,-0.79547917842865,0.254411488771439,-0.892373621463776,-0.43668994307518,-0.113891296088696,-0.493782818317413,0.866523265838623,0.0729108229279518,-0.543036878108978,0.789337575435638,-0.286456167697906,0.596384882926941,-0.786402404308319,-0.160923540592194,-0.898898363113403,-0.405370533466339,0.16630245745182,0.845793604850769,-0.282557398080826,-0.452542543411255,0.574343085289001,-0.818590044975281,0.00635051773861051,0.884483993053436,-0.258825182914734,-0.388198167085648,0.766866087913513,0.293135434389114,-0.570953607559204,0.630962669849396,0.179825350642204,0.754684686660767,-0.369122445583344,0.91366183757782,0.170207619667053,0.624142646789551,0.220333993434906,0.749599158763886,-0.922256231307983,0.0107910549268126,0.386428505182266,-0.144643858075142,0.989395081996918,0.0132502410560846,-0.953073382377625,-0.2984219789505,-0.0509475879371166,0.635300278663635,0.102767638862133,0.765396893024445,-0.741541922092438,-0.664344131946564,0.0936079993844032,0.565092504024506,0.403377652168274,0.719692230224609,0.711753904819489,0.060972522944212,-0.699777662754059,0.442375898361206,-0.87419605255127,-0.200211986899376,-0.887372195720673,-0.460965484380722,0.00902536232024431,-0.824854493141174,-0.0424032062292099,-0.5637526512146,0.889500617980957,0.271004527807236,-0.367893218994141,0.356583654880524,0.534445643424988,-0.766300201416016,0.71576327085495,0.410823553800583,0.56471848487854,0.719503998756409,0.0442763045430183,-0.693075478076935,0.545922160148621,0.49770188331604,0.673989534378052,0.56705766916275,0.3017757833004,-0.76640522480011,0.0276383217424154,0.995505452156067,-0.0905812978744507,
- -0.0286512207239866,0.993672728538513,0.10859839618206,-0.501288115978241,0.833983659744263,-0.230611130595207,0.33499002456665,0.940538883209229,0.0562876760959625,0.20905601978302,0.968536853790283,0.135026529431343,0.663301348686218,0.154022395610809,-0.732330858707428,-0.953033745288849,-0.298556208610535,-0.05090007558465,0.0989312455058098,-0.327249854803085,-0.939744830131531,0.556333005428314,0.711543917655945,0.429183959960938,0.773030877113342,-0.0947047024965286,-0.627259373664856,0.0756383240222931,-0.210797876119614,-0.974598944187164,0.635142743587494,0.0725873857736588,0.768976449966431,-0.583852767944336,-0.361876904964447,0.726746916770935,0.525728940963745,-0.78748881816864,0.321668207645416,0.0915601402521133,-0.290117979049683,-0.952600836753845,-0.973315119743347,-0.21520921587944,-0.0796410590410233,-0.842407822608948,0.28509247303009,0.457243174314499,-0.801512897014618,0.0519212000072002,0.5957190990448,0.579486191272736,0.494120359420776,0.648105561733246,0.642739832401276,0.343603491783142,0.684705913066864,0.66457861661911,0.217524752020836,0.714855372905731,-0.801571071147919,0.0521139055490494,0.595623970031738,0.642829775810242,0.341713279485703,0.685566842556,0.0743657946586609,-0.204507723450661,-0.976036012172699,0.743961453437805,0.0828412547707558,-0.663067638874054,0.570536613464355,0.680706799030304,0.459484785795212,0.624940395355225,0.498371005058289,0.600895881652832,0.746631681919098,0.062921442091465,-0.66225528717041,0.612996220588684,0.535660266876221,0.580778539180756,0.626420617103577,0.185503959655762,0.757090151309967,0.755250096321106,-0.169988751411438,-0.633009731769562,0.791902601718903,-0.0318168736994267,0.609817981719971,-0.842764377593994,0.295251250267029,0.450083196163177,-0.580256342887878,-0.365411907434464,-0.72785758972168,0.0899148732423782,-0.281866639852524,-0.955231130123138,0.739278614521027,0.113343320786953,-0.663792431354523,0.0332096628844738,-0.00462489575147629,-0.999437808990479,-0.599706649780273,0.0242642778903246,-0.799851953983307,0.717376530170441,0.219061806797981,-0.661349296569824,
- 0.728488385677338,0.352901697158813,-0.587166965007782,0.752972900867462,0.20560784637928,0.625105738639832,0.761302053928375,0.172073036432266,0.625147998332977,0.719081819057465,0.396174788475037,-0.570935070514679,0.73550271987915,0.0941027030348778,0.670954823493958,-0.603591978549957,-0.12725841999054,-0.787071943283081,0.650935411453247,-0.38881117105484,-0.652003824710846,0.75695538520813,-0.0851564407348633,-0.647894263267517,0.735328137874603,0.314775079488754,-0.600174307823181,-0.570871293544769,0.235486626625061,-0.786544501781464,-0.965205073356628,-0.261476218700409,-0.00306504848413169,-0.598359942436218,0.0417860485613346,-0.800137102603912,-0.805148303508759,0.542779803276062,0.239011168479919,-0.684916436672211,0.187823578715324,0.703997015953064,-0.695251047611237,0.0164152979850769,0.718579590320587,-0.996096432209015,-0.0438979752361774,0.076582744717598,-0.603923738002777,-0.087041899561882,-0.792275130748749,-0.52625185251236,-0.431883484125137,0.732485949993134,0.560983121395111,-0.165637254714966,0.811087071895599,-0.69395637512207,0.0772813186049461,0.715857625007629,-0.65715891122818,-0.31093892455101,0.686628818511963,0.76916366815567,-0.15427677333355,0.620149910449982,-0.990271985530853,0.0741851851344109,0.117720730602741,0.668684482574463,0.434397011995316,0.603456974029541,-0.669103622436523,0.287313312292099,0.685384154319763,0.62006402015686,0.00523892976343632,0.784533739089966,0.791046261787415,-0.0199394579976797,0.611431360244751,0.732951462268829,0.104751095175743,0.672167658805847,-0.681198716163635,-0.183984503149986,0.708602845668793,-0.403643369674683,0.470641732215881,-0.784581661224365,-0.788096487522125,0.0630321130156517,-0.612316012382507,-0.671349048614502,-0.599025428295136,0.436416119337082,0.862195014953613,-0.410838186740875,-0.296364575624466,-0.632916331291199,-0.270002156496048,-0.725614011287689,-0.215583875775337,0.0694084763526917,-0.974015414714813,0.725547850131989,0.687673628330231,0.0261777490377426,-0.455412596464157,0.608016014099121,-0.650319874286652,
- 0.660597622394562,0.462605655193329,0.591275572776794,0.186658531427383,-0.938433170318604,-0.290691912174225,0.922995865345001,-0.382602542638779,0.0411573871970177,-0.0646020621061325,-0.835150718688965,0.546214163303375,0.88269966840744,-0.369876801967621,-0.289883464574814,-0.318047374486923,0.873651206493378,-0.368211150169373,-0.68122136592865,-0.189382031559944,-0.707157671451569,0.228358551859856,0.973447442054749,0.0158871319144964,-0.0969841778278351,0.840933680534363,0.5323765873909,-0.888879299163818,0.386842429637909,-0.24545219540596,0.92868447303772,0.355256408452988,-0.106480196118355,-0.264941692352295,-0.517401397228241,0.813696444034576,0.288973182439804,-0.387409299612045,0.875447630882263,0.98080188035965,-0.119910344481468,0.153782933950424,0.918173670768738,0.384253293275833,-0.096470333635807,0.280897080898285,-0.373622864484787,0.88402658700943,-0.820318877696991,0.498421996831894,-0.280450463294983,-0.28650775551796,0.533121466636658,0.796049535274506,0.250716060400009,0.967611014842987,0.029505530372262,-0.404818087816238,-0.107263028621674,0.908084213733673,-0.998387098312378,-0.0333587042987347,0.0459393933415413,-0.238083869218826,0.460363000631332,0.855208873748779,-0.647030532360077,-0.705216646194458,-0.289863884449005,-0.12074888497591,0.279929339885712,0.9523965716362,-0.99848473072052,-0.0209295935928822,0.0508957579731941,-0.602916479110718,0.699785709381104,-0.383134037256241,0.560232818126678,0.248223423957825,-0.790268540382385,-0.954003810882568,-0.276070386171341,-0.116883844137192,-0.895730495452881,0.0737960562109947,0.438430488109589,-0.14420348405838,0.884530067443848,-0.443635165691376,-0.735386610031128,0.431174129247665,-0.522776782512665,0.821423292160034,-0.205360695719719,-0.532062768936157,0.25775358080864,-0.713908553123474,0.651074230670929,0.981525599956512,0.187327072024345,-0.0389397852122784,0.914948344230652,-0.029534325003624,-0.402488857507706,0.140711769461632,0.249220833182335,-0.9581698179245,0.378337264060974,-0.376240789890289,0.845756351947784,-0.373623669147491,0.395342528820038,-0.839112401008606,
- 0.151349186897278,0.296313613653183,-0.943022727966309,0.375460833311081,0.250822305679321,-0.892254054546356,-0.0319341607391834,-0.0536960698664188,0.998046576976776,0.0384647808969021,-0.994218528270721,-0.100249610841274,0.372402936220169,-0.400158673524857,0.837370336055756,-0.0320580564439297,0.937273859977722,0.347116738557816,-0.00686313351616263,-0.222750023007393,0.974851429462433,0.439018249511719,0.116750702261925,0.890860378742218,-0.778930485248566,-0.0712130814790726,-0.623053967952728,0.0304072424769402,0.0642248243093491,-0.997472107410431,-0.433600723743439,0.0889283046126366,-0.896706283092499,0.321247458457947,0.713779926300049,-0.622349143028259,0.0673394948244095,0.740138471126556,-0.669074296951294,0.603275239467621,0.710298895835876,0.36267676949501,0.339327722787857,-0.184098035097122,-0.922477424144745,0.980696201324463,-0.189098224043846,0.0497677512466908,0.145849525928497,-0.975962042808533,-0.161944508552551,-0.897313117980957,-0.167290657758713,0.408464223146439,-0.202282428741455,0.840628862380981,0.502419114112854,-0.0186850894242525,-0.144036665558815,0.989395916461945,0.891638040542603,-0.447965741157532,-0.0656395331025124,-0.825213968753815,-0.519114434719086,0.222580522298813,0.0391929633915424,-0.512608408927917,0.857727527618408,-0.498552292585373,0.287241131067276,-0.817886412143707,-0.848169922828674,-0.462294697761536,0.258633762598038,0.127049654722214,0.260779321193695,-0.957001864910126,-0.854043781757355,-0.445324540138245,0.268877774477005,-0.986528992652893,-0.0619984269142151,-0.151383429765701,0.125040531158447,0.303414553403854,-0.944618701934814,-0.0911236926913261,-0.38923642039299,0.916619598865509,0.493733733892441,0.284025490283966,0.821922600269318,-0.163046792149544,0.986492276191711,0.0157774649560452,-0.428003996610641,-0.870038568973541,-0.244633421301842,-0.646074771881104,-0.756258487701416,0.10324976593256,-0.821210920810699,0.352179884910584,-0.448979049921036,-0.383901685476303,0.898403823375702,-0.213284522294998,-0.728570580482483,0.350803107023239,0.588321447372437,
- -0.259091436862946,-0.540956497192383,0.800148546695709,0.726261556148529,-0.0672795102000237,-0.684118151664734,0.711841881275177,-0.702096939086914,0.018470149487257,-0.130042314529419,-0.42615157365799,0.895256280899048,0.808326363563538,0.0216460060328245,-0.588336586952209,-0.0492093823850155,-0.348363816738129,0.936066806316376,0.70673668384552,-0.373653918504715,-0.600754499435425,0.822147369384766,-0.379920363426209,0.423950761556625,0.932390451431274,0.268463671207428,-0.242023333907127,0.434813290834427,0.860264599323273,0.266237199306488,0.857752025127411,-0.179091930389404,-0.481858432292938,-0.557582914829254,0.668643653392792,-0.491952389478683,0.569282174110413,-0.198599830269814,-0.79779440164566,-0.176170453429222,0.573931574821472,-0.79972916841507,0.478965550661087,-0.260298669338226,-0.838353514671326,-0.593954682350159,0.601841807365417,-0.533857941627502,0.192742899060249,-0.861070513725281,0.470539778470993,-0.47710445523262,0.31948646903038,0.818718492984772,0.552923440933228,-0.695362508296967,0.459071576595306,-0.225687280297279,0.553998172283173,0.801343441009521,-0.0293428208678961,-0.871989965438843,0.488643527030945,-0.385322272777557,0.873213410377502,0.298370808362961,-0.45874086022377,0.34001424908638,0.8209428191185,0.606535136699677,-0.326254159212112,0.725033342838287,0.56145191192627,-0.688205122947693,0.459505707025528,-0.573148250579834,0.752097606658936,0.32534646987915,-0.00921780895441771,0.415233314037323,-0.909668266773224,-0.269664406776428,0.519330441951752,0.810911357402802,-0.379288375377655,0.0762033835053444,-0.922135233879089,0.417085736989975,-0.856599688529968,-0.303770810365677,0.178324669599533,0.854913473129272,-0.487158387899399,0.93042916059494,-0.339052140712738,0.139087036252022,0.327288568019867,-0.870043694972992,0.368654578924179,-0.335780411958694,0.122259862720966,-0.933972179889679,0.451623409986496,-0.645736038684845,0.615679562091827,-0.689068138599396,0.0158728044480085,0.724522709846497,-0.946246325969696,0.323434501886368,0.00283014075830579,-0.665984392166138,0.724569857120514,0.177379444241524,
- -0.272614330053329,0.516919434070587,0.811465203762054,-0.074006699025631,0.363673895597458,-0.928581893444061,-0.945204377174377,0.326454490423203,0.0040186014957726,0.233407974243164,-0.427187353372574,0.873516857624054,0.451640695333481,-0.645710468292236,0.615693628787994,0.485601752996445,-0.601294815540314,-0.634535610675812,-0.326028019189835,0.132317438721657,-0.936054408550262,0.350977420806885,-0.858037710189819,0.374948441982269,6.08181399002206e-005,0.422368079423904,-0.906424522399902,0.850906372070313,-0.0712745487689972,-0.520459711551666,-0.846705317497253,0.525111377239227,0.0857215970754623,0.699271500110626,0.713880479335785,0.0373369194567204,0.930205225944519,0.0376728102564812,0.365101635456085,0.681004822254181,0.128012612462044,0.72100293636322,0.851619362831116,-0.0691480860114098,-0.519579648971558,0.618368625640869,-0.288748055696487,0.730920553207397,0.253501743078232,-0.367427736520767,0.894837260246277,0.268236696720123,-0.320214301347733,0.908576846122742,-0.934292495250702,0.356157720088959,0.0157859288156033,-0.711034536361694,0.698617935180664,0.0797678306698799,0.717220425605774,-0.340909123420715,-0.60776299238205,-0.831005156040192,0.0211298037320375,-0.555863261222839,-0.973847031593323,0.224436804652214,-0.0353571586310863,-0.0521131828427315,-0.925626754760742,0.374832421541214,-0.840500235557556,0.0491044856607914,-0.539581418037415,-0.0611904747784138,-0.800576388835907,0.596098303794861,0.590866267681122,0.375589370727539,0.714009582996368,0.0604152828454971,0.276602923870087,0.959083318710327,0.0118864439427853,-0.440611183643341,0.897619366645813,-0.355814099311829,-0.879191339015961,-0.316889405250549,0.521884143352509,-0.569038152694702,-0.635478317737579,0.0393518805503845,-0.823126256465912,0.566493213176727,0.653467416763306,0.752050757408142,0.0860233157873154,0.539137303829193,0.708838522434235,-0.454839468002319,-0.685129642486572,0.719356596469879,0.114557787775993,-0.0459579937160015,-0.612408459186554,-0.7892045378685,-0.825794756412506,0.225963607430458,-0.51672375202179,
- -0.873045444488525,0.184851720929146,-0.451244384050369,0.535544395446777,0.631544828414917,-0.560663282871246,0.303597629070282,-0.192030936479568,0.933248400688171,0.128770053386688,-0.746803045272827,0.652459621429443,0.534622430801392,0.766887009143829,-0.355053842067719,0.148709982633591,-0.360835731029511,0.920696973800659,0.908108353614807,-0.362713873386383,0.209231644868851
- }
- TangentsW: *1317 {
- 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
- }
- }
- LayerElementTangent: 1 {
- Version: 102
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "Direct"
- Tangents: *3951 {
- a: -0.106939844787121,0.994214951992035,-0.0100271077826619,-0.573355257511139,0.75698322057724,0.313432842493057,-0.036707729101181,-0.0257829185575247,-0.998993396759033,-0.652801692485809,0.752543985843658,-0.0867613181471825,0.453821003437042,0.464616715908051,-0.760380208492279,-0.212594568729401,-0.284063458442688,-0.934939324855804,0.320939093828201,-0.170959055423737,0.931542336940765,0.754814565181732,-0.655926108360291,0.00401990814134479,-0.524743497371674,-0.77502852678299,0.352100968360901,0.878198981285095,-0.459810435771942,-0.131684824824333,0.59387731552124,0.217563107609749,0.77458119392395,-0.0520206280052662,0.507108986377716,0.860310614109039,-0.790833175182343,0.482915580272675,0.375999242067337,-0.1008465513587,0.364643782377243,0.925669968128204,0.347641408443451,-0.139168322086334,0.927241981029511,-0.561149477958679,-0.485937744379044,-0.670056521892548,-0.271142661571503,-0.915039420127869,-0.298637837171555,-0.491052716970444,0.258900076150894,-0.831767976284027,-0.585415542125702,-0.592297971248627,0.553598940372467,0.563615322113037,-0.272583246231079,0.779766857624054,-0.028435193002224,0.829085171222687,0.558398842811584,-0.529446363449097,0.629144728183746,-0.569090008735657,-0.382003217935562,-0.0193159226328135,0.923959136009216,-0.0303943790495396,0.999124646186829,0.0287424847483635,0.714196801185608,-0.183801338076591,-0.675381362438202,-0.16530629992485,-0.833280444145203,-0.527558088302612,-0.390322476625443,0.624652087688446,-0.676356494426727,-0.822391271591187,-0.419378012418747,0.384440690279007,0.0589657016098499,-0.823337137699127,-0.564481198787689,-0.533231019973755,-0.190377876162529,-0.824269950389862,0.842100739479065,-0.201535984873772,-0.500249564647675,0.0701414421200752,-0.832517623901367,-0.549540340900421,0.257106214761734,0.871890962123871,0.416776418685913,0.210954606533051,0.910692095756531,0.355159223079681,-0.981809079647064,-0.183836653828621,0.0474871844053268,-0.336481750011444,0.275756388902664,0.900410175323486,-0.583689749240875,0.00723996525630355,-0.811944484710693,
- -0.762475907802582,-0.62377405166626,0.171861559152603,-0.873930513858795,-0.371982932090759,0.312848478555679,-0.652735471725464,-0.467078328132629,-0.596468150615692,0.101367764174938,-0.974877297878265,0.198340684175491,0.34201443195343,-0.910082697868347,0.234042003750801,0.761444568634033,-0.0439116172492504,0.646741211414337,0.968907117843628,0.146108523011208,-0.199677959084511,0.120739668607712,-0.373254060745239,-0.919838726520538,-0.0472176223993301,0.988259375095367,-0.145306035876274,-0.084947407245636,0.254057615995407,0.963451445102692,-0.987447500228882,0.0948224887251854,0.126317650079727,-0.196321919560432,0.62695574760437,0.753912568092346,-0.984923303127289,-0.123441763222218,0.121195159852505,-0.971782684326172,-0.16550587117672,-0.168066084384918,0.0487719215452671,-0.985956490039825,0.159722536802292,-0.22488209605217,-0.974348485469818,0.00854780338704586,-0.325841695070267,-0.93531322479248,0.137899875640869,-0.685523629188538,-0.715057909488678,-0.136929243803024,-0.329746335744858,-0.934090375900269,0.136903151869774,-0.225461632013321,-0.974168539047241,0.0127557190135121,-0.190796181559563,-0.966785490512848,0.170066475868225,-0.718714475631714,-0.695299685001373,-0.00281320326030254,-0.160937413573265,-0.958527505397797,-0.235210999846458,-0.249103426933289,-0.942703664302826,0.221939846873283,-0.235707953572273,-0.941893994808197,-0.239327102899551,-0.733580589294434,-0.673519611358643,0.0907241329550743,0.771864056587219,-0.467507362365723,0.430886000394821,0.00838062260299921,-0.520472228527069,0.853837490081787,-0.505839824676514,0.470654249191284,0.722918152809143,-0.339063882827759,-0.403578132390976,0.849800169467926,-0.0162686742842197,-0.539755344390869,0.841664731502533,0.496842920780182,-0.840307056903839,0.216867193579674,-0.747425138950348,0.199965447187424,-0.633537292480469,0.284402757883072,0.360680788755417,-0.888270497322083,-0.60080349445343,0.743850886821747,-0.292781531810761,0.416260033845901,0.462559372186661,-0.782793998718262,-0.47683185338974,0.868107795715332,-0.137914925813675,
- -0.505525350570679,0.225666925311089,0.832777619361877,-0.553044438362122,0.81821483373642,0.157055974006653,0.0416962280869484,0.942988753318787,-0.330202728509903,0.121212109923363,0.974488079547882,-0.18889319896698,-0.29945096373558,-0.819609403610229,0.488435834646225,0.232252418994904,-0.0914726927876472,-0.968344748020172,0.1243055164814,0.551876783370972,-0.824609220027924,0.588094055652618,-0.799246311187744,0.123897954821587,0.45822349190712,0.779800713062286,-0.426546692848206,0.547177970409393,0.58098429441452,-0.602539360523224,-0.423857420682907,0.786315500736237,-0.449502885341644,-0.926065564155579,-0.157666802406311,0.342846512794495,-0.444351583719254,0.823466300964355,-0.352781742811203,-0.445043802261353,0.80395781993866,-0.394446313381195,-0.304872542619705,0.811979293823242,-0.497737467288971,-0.734698116779327,0.19465084373951,0.649869024753571,0.821022570133209,-0.322137981653214,0.471326917409897,0.743032813072205,-0.41451969742775,-0.525429010391235,0.638434290885925,-0.769451975822449,0.018584106117487,0.829752624034882,-0.437534511089325,0.346517115831375,0.122701413929462,-0.721869170665741,0.681064784526825,-0.937989413738251,-0.275612473487854,0.210270494222641,0.793362557888031,0.0313294306397438,-0.607942700386047,0.822660505771637,-0.505208671092987,0.260756433010101,0.607081890106201,0.378856778144836,-0.698512077331543,0.799394190311432,-0.582492887973785,0.1472108066082,0.148778930306435,0.54537832736969,-0.824880182743073,0.604167640209198,0.331251233816147,-0.724744260311127,-0.923358142375946,-0.374367207288742,0.0851994901895523,0.471480786800385,-0.767958581447601,0.433527082204819,0.819829165935516,-0.519055187702179,0.241789296269417,0.132963344454765,0.430911809206009,-0.892544567584991,0.787577509880066,-0.6068976521492,0.106756262481213,0.431659549474716,-0.853495836257935,0.291916310787201,-0.937930285930634,-0.27772268652916,0.207742422819138,-0.335073709487915,0.325270384550095,-0.884265244007111,-0.507830083370209,0.413544595241547,-0.755704641342163,0.24724580347538,0.174035370349884,-0.95319527387619,
- 0.141079545021057,0.488458544015884,-0.861106753349304,0.144937634468079,-0.926065683364868,-0.348418533802032,0.500077962875366,0.826022684574127,0.260016411542892,-0.237217172980309,-0.269824475049973,0.933232426643372,0.483479231595993,-0.205436006188393,0.850907683372498,0.328282564878464,-0.688994944095612,0.64615523815155,-0.747189283370972,-0.418876737356186,0.515994608402252,0.477748274803162,-0.748388290405273,0.46007776260376,-0.306390017271042,0.0594876296818256,-0.950045466423035,0.0235898606479168,0.046643752604723,-0.998633027076721,0.145334154367447,-0.562027454376221,-0.81425017118454,-0.603813946247101,0.601701200008392,0.522842645645142,-0.766528785228729,0.622980356216431,0.15597777068615,-0.017209330573678,0.671566307544708,-0.740744590759277,-0.985953688621521,-0.12674768269062,0.108767502009869,-0.495813965797424,-0.0484059490263462,-0.86707878112793,-0.955699682235718,0.114720650017262,0.271066963672638,0.731992423534393,-0.680267214775085,-0.0377302765846252,0.567168593406677,-0.719128251075745,0.401465326547623,-0.617265164852142,-0.549482107162476,-0.563074707984924,-0.704945266246796,0.393385142087936,0.590169727802277,0.41936382651329,-0.117124490439892,0.900231003761292,0.828132092952728,-0.397713989019394,0.394994735717773,-0.8813157081604,-0.0495699048042297,0.469920694828033,0.80333936214447,-0.441615343093872,0.399526923894882,0.788586378097534,-0.613101959228516,-0.0473020039498806,0.900840044021606,-0.227745085954666,0.369620889425278,-0.792042374610901,0.419963628053665,0.443056911230087,-0.650202810764313,0.495858490467072,0.575639307498932,-0.850710451602936,0.123993463814259,-0.510800719261169,-0.60696280002594,0.232617557048798,0.759924530982971,-0.765267670154572,0.301735728979111,0.568613231182098,-0.527341067790985,0.450002312660217,0.720700562000275,-0.519629895687103,0.681194722652435,-0.515711724758148,-0.834612369537354,0.394087582826614,0.384859919548035,0.250543534755707,-0.1697938144207,-0.953099131584167,0.218488872051239,0.884929299354553,-0.411294013261795,-0.80052238702774,0.273297101259232,-0.533359944820404,
- 0.464829713106155,-0.593688011169434,-0.656862139701843,0.288486003875732,-0.0575518757104874,-0.955752909183502,-0.736093461513519,0.405187398195267,-0.542208075523376,0.0276008453220129,0.73897796869278,0.673163950443268,-0.741298973560333,0.150426909327507,-0.654100596904755,-0.693586707115173,0.690353691577911,0.205789357423782,-0.45786589384079,0.80937922000885,0.367782711982727,-0.795806646347046,0.511359691619873,0.324350148439407,-0.887688994407654,-0.106126315891743,-0.448046296834946,0.196571692824364,-0.31062388420105,-0.929985165596008,0.677847743034363,-0.338510751724243,-0.652635335922241,0.890061259269714,-0.295214146375656,0.347332149744034,0.838919341564178,0.0384708642959595,-0.542894423007965,0.280298411846161,-0.4484583735466,0.848715424537659,0.90975683927536,-0.244709610939026,0.335350036621094,0.328664243221283,-0.145269811153412,0.933207631111145,0.0453440919518471,0.291064620018005,0.955628216266632,0.0912862420082092,-0.356253057718277,0.92991977930069,0.341765642166138,0.0431307256221771,0.93879497051239,-0.148898407816887,-0.343186378479004,0.927390098571777,-0.774218022823334,-0.0425143018364906,0.631489455699921,-0.476220518350601,0.076968714594841,0.875950813293457,0.338784366846085,-0.0190742127597332,0.940670788288116,-0.767246186733246,-0.0928346291184425,0.634598314762115,0.802847623825073,-0.459460765123367,0.37990990281105,0.338744252920151,-0.0197557304054499,0.94067108631134,-0.451375901699066,0.177005365490913,0.874602138996124,-0.46519872546196,0.123991906642914,0.876479387283325,0.473923861980438,-0.279412597417831,0.835059762001038,0.784263789653778,-0.487073004245758,0.384304791688919,-0.168865621089935,0.762856364250183,0.62412703037262,-0.520631909370422,0.712215006351471,0.470842063426971,0.847047567367554,0.299997717142105,0.438761711120605,0.881318271160126,-0.315377980470657,0.351873338222504,0.698353111743927,-0.534237921237946,-0.476332634687424,0.186537370085716,-0.334810227155685,-0.923637449741364,0.666644632816315,-0.687405467033386,-0.288199126720428,0.912310779094696,-0.237521097064018,0.333575755357742,
- 0.81872284412384,0.204726532101631,0.536451280117035,-0.825095176696777,0.0276237763464451,-0.564318120479584,0.0374381616711617,-0.636663496494293,-0.770232439041138,0.693192481994629,-0.384514451026917,-0.609616935253143,-0.549275815486908,0.624171555042267,0.555613100528717,0.932306349277496,0.263345658779144,0.24789947271347,0.809740781784058,0.181711241602898,0.5579434633255,0.829419910907745,0.23533821105957,0.506634533405304,0.90326052904129,-0.0140153411775827,0.428863644599915,0.669288218021393,-0.680427491664886,-0.298448801040649,0.933821856975555,0.24152085185051,0.263902336359024,-0.557480812072754,0.590023994445801,0.584026396274567,-0.4169080555439,0.49114066362381,0.764832377433777,0.156674519181252,0.59970897436142,0.784730672836304,0.923928499221802,0.326118409633636,0.200007349252701,-0.425818800926209,0.588500380516052,0.687274098396301,0.100061871111393,0.775203287601471,0.62373685836792,0.471685290336609,0.800143182277679,0.370518386363983,0.795134365558624,0.603976666927338,-0.0545299164950848,0.694061517715454,-0.391917377710342,-0.603886902332306,0.9312584400177,0.274509429931641,0.239587739109993,0.201662555336952,-0.654253542423248,-0.728892683982849,-0.831035733222961,0.0172096379101276,-0.555952727794647,0.691768348217011,-0.37330624461174,-0.61814159154892,0.18570950627327,-0.566108822822571,-0.803139328956604,0.628974497318268,0.0936581566929817,-0.771763861179352,0.768968641757965,0.633307337760925,-0.0872299149632454,0.437502413988113,0.837648510932922,0.327011674642563,0.931137919425964,0.275678694248199,0.238712131977081,0.821826875209808,-0.31210520863533,-0.47664549946785,0.200689479708672,-0.648684322834015,-0.73412013053894,0.359135180711746,0.904339611530304,0.230633527040482,0.743580877780914,0.477054566144943,-0.468515157699585,0.545015573501587,0.200018391013145,-0.814217805862427,-0.609067440032959,-0.584281027317047,-0.536332488059998,-0.909940898418427,-0.396155446767807,-0.122753508388996,0.232708364725113,-0.863647699356079,-0.447168231010437,0.209854811429977,-0.702467262744904,-0.680074036121368,
- 0.828671097755432,-0.351443529129028,-0.435650855302811,-0.40326914191246,-0.873994946479797,-0.271121472120285,-0.395833015441895,-0.242831781506538,-0.885634779930115,0.281376451253891,0.451606065034866,-0.846687257289886,0.368526428937912,0.757436811923981,-0.538960099220276,0.829269349575043,-0.35578253865242,-0.430965423583984,0.29084575176239,-0.703310251235962,-0.648662805557251,-0.359669387340546,-0.906807363033295,-0.219859778881073,0.262930303812027,0.800938129425049,-0.537927269935608,0.120836928486824,0.486074805259705,-0.865522801876068,-0.56607449054718,-0.0463360659778118,-0.823050796985626,-0.841641783714294,-0.533716917037964,0.0823731794953346,-0.538417518138886,-0.719188749790192,-0.439174383878708,-0.66144859790802,-0.0477390140295029,0.748469591140747,-0.783353805541992,0.580340564250946,0.222624525427818,-0.439464569091797,0.866832256317139,0.235526472330093,-0.898179352283478,-0.13808985054493,-0.417378813028336,0.190864875912666,0.454923927783966,0.869836091995239,-0.406717032194138,0.311345636844635,0.858862698078156,-0.702691376209259,0.0301500782370567,0.710855662822723,-0.785548448562622,0.255363017320633,0.56365180015564,0.520950853824615,0.767080545425415,0.374429762363434,0.143631339073181,0.646198630332947,0.749531507492065,-0.742384552955627,0.103084571659565,0.661996066570282,-0.677127778530121,-0.0195066053420305,0.735606849193573,-0.552497625350952,-0.696532964706421,-0.457808017730713,-0.765653789043427,0.184860780835152,0.616117477416992,-0.683574855327606,0.0148013448342681,0.729730308055878,0.600369513034821,0.641233861446381,0.477886587381363,-0.777841210365295,0.166394993662834,0.60603278875351,-0.565647125244141,-0.673761308193207,-0.475488185882568,-0.517188310623169,-0.108179822564125,-0.849007308483124,0.705519795417786,0.275725901126862,0.652853012084961,0.144788801670074,-0.620171070098877,0.770989000797272,0.940571784973145,0.32315656542778,-0.104377098381519,-0.300222516059875,-0.839249491691589,-0.453350603580475,-0.596074461936951,-0.00552633870393038,-0.802910149097443,
- -0.0668791085481644,0.644361674785614,-0.761790812015533,-0.74713271856308,-0.664572417736053,-0.0116764502599835,-0.734361410140991,0.0900234431028366,0.672762274742126,-0.546399712562561,-0.07186259329319,-0.834435820579529,-0.709289491176605,-0.701760530471802,-0.0666375011205673,-0.373007744550705,0.805377066135406,-0.460687518119812,-0.150178074836731,0.529038727283478,-0.835203289985657,0.707957684993744,0.323979705572128,0.627561211585999,0.916274607181549,0.384338140487671,-0.112805493175983,0.611005306243896,-0.697572469711304,0.37425297498703,0.663614451885223,0.3516865670681,0.660251796245575,0.155736565589905,-0.624457120895386,0.76537549495697,-0.878660142421722,-0.350291639566422,0.324425905942917,0.401165336370468,0.900731205940247,-0.166582241654396,0.982138991355896,-0.175749555230141,-0.0671948194503784,0.306039869785309,0.749682128429413,-0.586784720420837,0.00312759843654931,0.700313091278076,-0.713828980922699,0.462172031402588,0.548973679542542,-0.696437299251556,0.976102888584137,0.0144068170338869,0.216831237077713,-0.0530998818576336,0.983092606067657,0.175240680575371,0.00338589935563505,0.699748814105988,-0.714380919933319,0.978634119033813,0.00651953648775816,0.205506592988968,-0.187019541859627,0.6045743227005,-0.77428263425827,0.00282529322430491,-0.59620076417923,-0.802830398082733,-0.759958148002625,-0.649915635585785,0.00856042094528675,-0.502804040908813,-0.560273587703705,0.658241271972656,0.179989024996758,0.528915166854858,0.829368829727173,-0.868540167808533,-0.420322895050049,0.262615084648132,-0.511210024356842,-0.72264552116394,0.465239465236664,-0.385447889566422,0.922660648822784,-0.0112911770120263,-0.50067013502121,0.364044189453125,-0.785366952419281,-0.50067013502121,0.364044189453125,-0.785366952419281,-0.9011390209198,0.122694954276085,-0.415805786848068,-0.511210024356842,-0.72264552116394,0.465239465236664,0.543302774429321,0.829068183898926,-0.132166832685471,-0.287779003381729,0.861945927143097,-0.417411655187607,-0.94789057970047,0.254318594932556,0.191900223493576,
- -0.781469762325287,0.559378862380981,-0.276406019926071,-0.394963890314102,0.4637670814991,-0.793047070503235,0.379234045743942,0.232657745480537,-0.895573496818542,0.428710848093033,0.338261634111404,-0.837726712226868,-0.570719718933105,0.819975852966309,0.0438014678657055,-0.750176012516022,0.611550748348236,-0.251478910446167,0.475692927837372,0.86055725812912,-0.182091906666756,0.909013211727142,-0.309031695127487,0.279632598161697,0.991588532924652,-0.0537026710808277,0.117763563990593,0.520740389823914,0.57892918586731,-0.627431631088257,0.968383967876434,-0.214278131723404,-0.127740249037743,0.928726077079773,-0.154352754354477,0.337109982967377,-0.460108131170273,-0.429421633481979,0.777108490467072,-0.4406818151474,-0.285430580377579,0.851075172424316,-0.88181871175766,0.28410267829895,-0.376405984163284,0.782969772815704,-0.607894539833069,0.131994441151619,-0.470433801412582,-0.393852025270462,0.78966611623764,-0.40668323636055,-0.319973409175873,0.855701923370361,-0.939989268779755,0.101174734532833,0.325858592987061,-0.447503954172134,-0.402579784393311,0.798542261123657,-0.875479519367218,0.313365936279297,-0.367882251739502,-0.437351107597351,-0.381461948156357,0.814377546310425,0.551231861114502,-0.747094392776489,0.371474653482437,0.781851232051849,-0.609546482563019,0.131002962589264,0.79771900177002,-0.441505402326584,0.410752236843109,-0.179328873753548,0.0720203369855881,0.981149435043335,-0.802774548530579,0.470587372779846,0.366197407245636,0.922513782978058,0.189601212739944,0.336183995008469,0.527774751186371,0.602986097335815,-0.598215460777283,0.928985774517059,-0.147954419255257,0.339256435632706,-0.790233075618744,0.490901678800583,0.36680680513382,-0.384146630764008,0.101677529513836,0.917656302452087,0.815285384654999,-0.407732725143433,0.411173701286316,-0.982012152671814,0.185204356908798,0.0367627255618572,-0.555273532867432,-0.761291980743408,0.334822118282318,-0.554554760456085,-0.0658207386732101,-0.829540014266968,0.252736121416092,-0.00462536653503776,-0.967524170875549,0.83090615272522,0.503493309020996,0.236832201480865,
- -0.471563547849655,0.217535078525543,-0.854579627513886,-0.698565363883972,0.205059856176376,0.685534000396729,-0.971612572669983,0.233512938022614,0.037956714630127,-0.528860151767731,0.0410195402801037,-0.84771716594696,0.218557879328728,0.958727955818176,-0.181860357522964,-0.279719471931458,0.895771145820618,-0.345472306013107,-0.365774929523468,0.789742410182953,0.492458999156952,0.747730791568756,-0.524653553962708,0.406985700130463,-0.405468106269836,-0.149657353758812,0.901775062084198,0.188091352581978,-0.976792752742767,0.102458618581295,0.923876821994781,-0.034366711974144,0.381144016981125,0.986530959606171,-0.127863675355911,-0.102017194032669,-0.279453545808792,0.589673221111298,-0.75775408744812,0.010495737195015,-0.992010533809662,0.125717639923096,-0.8824223279953,-0.183173760771751,-0.433334082365036,-0.568762063980103,-0.142019212245941,-0.810148298740387,-0.368338942527771,0.202859163284302,0.907289683818817,-0.449965834617615,0.269801527261734,0.851315379142761,0.979512989521027,-0.177672281861305,-0.0947993621230125,-0.749646842479706,0.661817312240601,0.00524495774880052,-0.101874880492687,0.0607476234436035,-0.992940723896027,-0.783417403697968,0.368361800909042,-0.500566422939301,-0.47481980919838,0.161600947380066,0.865119218826294,0.200234562158585,0.153945833444595,0.967577815055847,0.944803833961487,-0.31951978802681,-0.0724778771400452,0.840552031993866,0.538064777851105,-0.0629175752401352,0.428900748491287,-0.783727705478668,-0.449238240718842,0.36357456445694,-0.902004599571228,-0.232812032103539,0.460000544786453,-0.880818903446198,0.112061522901058,0.851466596126556,0.348535031080246,0.391826421022415,0.209941104054451,0.445080280303955,0.870533466339111,0.441067904233933,-0.855641484260559,0.270808041095734,0.295352607965469,0.782176196575165,0.548605024814606,0.539491832256317,-0.763903021812439,-0.354119688272476,0.315890908241272,0.910007417201996,0.268513351678848,0.846739172935486,0.530709624290466,-0.0371491387486458,-0.847590029239655,0.183752149343491,0.497821539640427,0.747303664684296,0.6641725897789,-0.020300105214119,
- 0.54012531042099,-0.4901442527771,-0.684122264385223,0.297450035810471,0.94561505317688,-0.131664827466011,0.215734392404556,-0.839316546916962,0.499005377292633,0.390597343444824,0.151702970266342,0.907975733280182,0.453119516372681,-0.89135867357254,0.0127461841329932,-0.953082740306854,0.265264809131622,0.145835191011429,-0.89080023765564,-0.35323828458786,-0.285828053951263,0.311284869909287,0.869081020355225,0.384447574615479,0.245614752173424,-0.798191010951996,-0.550058841705322,-0.875167727470398,-0.483079224824905,0.0267577227205038,-0.958395004272461,0.284799188375473,0.0191956702619791,-0.613322675228119,0.0189975369721651,-0.78960394859314,0.0561615899205208,-0.529107868671417,-0.846693992614746,0.265298873186111,-0.445652633905411,-0.854991495609283,-0.879161775112152,-0.315398186445236,-0.357209354639053,0.333102643489838,-0.582038521766663,-0.741804420948029,0.544561445713043,-0.74005538225174,-0.394678175449371,-0.960997104644775,0.165761232376099,-0.221376985311508,0.303301423788071,0.822007238864899,0.481987953186035,-0.896246373653412,-0.385755866765976,-0.218940243124962,0.459897875785828,-0.887790024280548,-0.0179668646305799,-0.568430185317993,-0.574960708618164,0.588478803634644,-0.880442142486572,-0.474153608083725,0.000157464965013787,0.575181484222412,0.350622862577438,0.739073753356934,0.294061243534088,0.776054739952087,0.55791312456131,-0.798144221305847,0.392915010452271,-0.456709504127502,0.50238698720932,-0.31522062420845,-0.805135548114777,0.742140591144562,-0.583390951156616,-0.329973310232162,-0.674813568592072,0.488475799560547,-0.553189098834991,0.878984570503235,0.184351459145546,-0.439773410558701,0.438019841909409,-0.898585677146912,0.0261238068342209,0.326671987771988,0.0882296189665794,0.941010594367981,-0.183912500739098,0.714048624038696,0.675507783889771,0.595136761665344,0.374173372983933,0.711200773715973,-0.770918309688568,0.4171282351017,-0.481340825557709,-0.109576091170311,-0.903184354305267,0.415031462907791,-0.394792675971985,0.580741107463837,0.711953997612,0.924316823482513,-0.364562422037125,-0.112838990986347,
- -0.41433322429657,0.565517008304596,0.713104963302612,0.466032356023788,-0.462934792041779,0.753993034362793,0.905760169029236,-0.405398517847061,-0.123493276536465,0.459769815206528,-0.471218407154083,0.752705097198486,-0.576647222042084,0.414801269769669,0.703859269618988,0.459168434143066,0.157347336411476,0.874303221702576,-0.568176746368408,-0.197784289717674,-0.798784554004669,-0.481336325407028,0.587682902812958,-0.65034157037735,0.695354223251343,-0.66960209608078,-0.260989516973495,-0.619699776172638,0.36577644944191,0.694391667842865,-0.638332724571228,0.51104724407196,-0.575640559196472,-0.270069122314453,0.0928504168987274,-0.958353519439697,-0.609431624412537,0.377899020910263,0.696983098983765,-0.271193116903305,0.0918766781687737,-0.958129942417145,-0.674175024032593,0.613941967487335,-0.410564571619034,0.810076773166656,-0.343766272068024,-0.474974095821381,0.561164677143097,-0.774699449539185,-0.291436016559601,-0.0997501313686371,0.232410430908203,-0.967489182949066,-0.0548040084540844,-0.650709807872772,-0.757346212863922,0.188486978411675,0.435434967279434,-0.880266487598419,0.921514928340912,-0.388249933719635,-0.00850124657154083,0.554983615875244,-0.827484905719757,-0.0852169841527939,-0.110343560576439,0.224170029163361,-0.968283176422119,0.551890552043915,-0.780850172042847,-0.292728632688522,0.574349761009216,0.534417152404785,-0.620097279548645,0.779820203781128,0.116612210869789,-0.615046381950378,-0.69766092300415,-0.549508273601532,-0.459684550762177,0.865131139755249,-0.106053158640862,-0.490204960107803,0.750239133834839,-0.257468640804291,-0.608975529670715,-0.238288834691048,-0.969072103500366,-0.064169280230999,0.756484627723694,-0.4117571413517,-0.508121132850647,-0.978823900222778,-0.154225587844849,0.134604036808014,-0.680664658546448,-0.583595454692841,-0.442845284938812,-0.793423175811768,-0.206806674599648,-0.572460234165192,-0.980906963348389,-0.145445123314857,0.129101827740669,-0.298790246248245,0.6561159491539,0.692990899085999,0.712927937507629,0.51568078994751,0.475191682577133,
- -0.179758951067925,0.342087835073471,0.922313749790192,0.996558845043182,0.0762629508972168,0.0324713625013828,0.967648327350616,0.246621057391167,-0.0532420463860035,-0.120921902358532,0.193322882056236,0.973655164241791,0.871852874755859,-0.135507315397263,-0.470648854970932,0.595528602600098,0.547652959823608,0.587726056575775,0.875801265239716,-0.155558407306671,-0.456917613744736,-0.122105002403259,0.196283996105194,0.972914695739746,-0.994020283222198,-0.0714551955461502,0.0825704261660576,0.602935910224915,0.340445697307587,0.72150194644928,-0.25684255361557,0.542756497859955,0.799654603004456,0.884667158126831,-0.217145666480064,-0.412567317485809,0.598975300788879,0.518527925014496,0.61021089553833,0.838806688785553,-0.223137319087982,-0.496601551771164,0.599616825580597,0.512097835540771,0.614992201328278,0.642188429832459,-0.198690131306648,-0.740348815917969,0.838311553001404,-0.218601271510124,-0.499447166919708,0.491268634796143,-0.857096254825592,-0.155052125453949,0.474642425775528,-0.215147003531456,0.853479087352753,-0.00154836010187864,-0.235131606459618,0.971962332725525,-0.996410489082336,-0.0494745746254921,0.0686907842755318,0.160775691270828,0.288383394479752,0.94392067193985,0.603875935077667,0.362873136997223,0.709687888622284,0.430190175771713,-0.901475787162781,-0.0477261357009411,0.0663106739521027,-0.0250986758619547,0.997483313083649,0.670621991157532,-0.615440249443054,-0.414124876260757,0.23331044614315,0.553564369678497,0.799457788467407,0.540400505065918,0.289731979370117,0.789951086044312,0.121116705238819,0.971825838088989,-0.20220123231411,0.287901759147644,0.787766814231873,0.544551253318787,-0.939691841602325,0.303477644920349,-0.157735615968704,-0.872094869613647,0.0133199505507946,-0.489155560731888,-0.767210781574249,0.604693949222565,0.213852345943451,0.270974695682526,0.708514273166656,0.651598215103149,-0.881894946098328,-0.0113134225830436,-0.47131022810936,0.755947291851044,-0.422230541706085,-0.500265002250671,-0.914933502674103,-0.122626043856144,-0.384525090456009,
- -0.980008184909821,-0.149292841553688,0.131513491272926,0.148017883300781,-0.651446282863617,-0.744115889072418,-0.929167330265045,-0.254886478185654,-0.267733037471771,0.563994824886322,-0.761426329612732,-0.319593220949173,0.724209904670715,-0.116697624325752,-0.679633498191834,0.663086354732513,-0.259448975324631,-0.702141523361206,-0.239211320877075,0.638165354728699,-0.731794357299805,-0.686773955821991,0.302994668483734,-0.660708546638489,0.662428081035614,-0.299539297819138,-0.686633229255676,0.722843110561371,-0.511880218982697,-0.464194506406784,0.396680891513824,-0.0833716318011284,-0.914162695407867,0.0495517663657665,0.76245242357254,-0.645144104957581,0.709017693996429,0.527417838573456,-0.468107372522354,-0.0838451385498047,0.538417100906372,-0.838496863842011,0.334352970123291,-0.02605508454144,-0.942087709903717,0.922370195388794,-0.0214506275951862,-0.38571110367775,-0.219952628016472,0.227296844124794,-0.948660731315613,-0.0627222880721092,0.980320930480957,0.187181666493416,-0.812123894691467,0.574089586734772,0.104287765920162,-0.495723366737366,0.667321622371674,0.555823862552643,-0.0303159933537245,0.637102842330933,-0.770182371139526,-0.607695579528809,0.326154679059982,-0.724105834960938,-0.700831592082977,0.16727340221405,-0.693436861038208,0.07063227891922,0.977554500102997,0.198490500450134,-0.558629214763641,0.569912314414978,0.60260546207428,0.936411738395691,0.0934815183281899,-0.33822226524353,0.641658902168274,0.450021952390671,-0.621091067790985,-0.0761846899986267,0.553281366825104,-0.829503238201141,-0.630320608615875,0.291686087846756,-0.719454765319824,-0.310623645782471,-0.0489074289798737,-0.949273943901062,0.76772153377533,-0.0508243776857853,-0.63876485824585,-0.252398997545242,0.667038142681122,0.700967073440552,-0.582838654518127,0.361707150936127,-0.727644860744476,-0.977606773376465,0.155436173081398,-0.141861155629158,0.165932074189186,0.247304260730743,0.954624116420746,-0.336639612913132,0.494889378547668,0.801098167896271,-0.998325526714325,0.0560254231095314,0.0143994521349669,
- 0.722385108470917,0.233524337410927,-0.65086567401886,0.252617210149765,-0.098676897585392,-0.962521374225616,-0.609287261962891,0.323798835277557,-0.723825514316559,-0.807338774204254,-0.139907762408257,-0.573262512683868,0.0799010768532753,-0.625342309474945,-0.776249170303345,-0.811599016189575,0.353189915418625,-0.465364307165146,0.673384606838226,-0.573423802852631,-0.466624408960342,0.839648067951202,-0.27401939034462,-0.468939810991287,0.434423416852951,-0.403255224227905,0.805395245552063,0.502887547016144,-0.237923800945282,0.830961108207703,0.935502231121063,0.210829764604568,-0.283524841070175,0.23211182653904,-0.591090261936188,0.772487163543701,-0.790214061737061,-0.57780909538269,0.204201817512512,-0.055155336856842,-0.93999445438385,0.336702108383179,0.0631262734532356,-0.246454641222954,0.967096269130707,0.377795994281769,-0.511634409427643,0.771686732769012,-0.84227043390274,-0.497657001018524,0.207166761159897,-0.727090716362,-0.168058499693871,0.665654182434082,0.559944212436676,-0.0439112260937691,0.827365875244141,0.800136208534241,-0.0745990723371506,0.595161318778992,0.644115388393402,-0.631505787372589,-0.431643128395081,-0.676293253898621,-0.453655332326889,0.580365657806396,0.169083639979362,-0.70098203420639,0.692845523357391,0.346972942352295,-0.563111305236816,0.750010311603546,0.768306970596313,-0.136679247021675,0.625318467617035,0.0847690179944038,-0.61429238319397,-0.784512042999268,0.661903023719788,-0.597466170787811,-0.452679336071014,0.716550588607788,-0.221862763166428,0.661310970783234,-0.594686329364777,0.502133071422577,0.62786191701889,-0.369083404541016,0.326940327882767,0.869992792606354,-0.368703246116638,0.328412860631943,0.869599282741547,0.109116017818451,-0.493123114109039,0.863089382648468,0.724918961524963,-0.209102511405945,0.656329691410065,-0.0757691860198975,-0.892885208129883,-0.443863809108734,0.642438888549805,-0.3224878013134,0.695179045200348,0.891989350318909,-0.434675514698029,0.124146930873394,0.933082640171051,-0.25650092959404,-0.252119541168213,0.25227552652359,0.927797913551331,-0.274860173463821,
- 0.372943341732025,0.875882089138031,0.306176453828812,0.00531265651807189,-0.773961246013641,-0.6332106590271,0.91381698846817,-0.194265395402908,-0.356650322675705,-0.365804344415665,-0.797236442565918,-0.480209559202194,-0.365146994590759,-0.377939015626907,-0.850781857967377,-0.87586498260498,0.300685167312622,-0.377424150705338,0.0412836186587811,-0.707041025161743,-0.705966472625732,0.302131861448288,0.898453295230865,-0.318587601184845,0.564075291156769,-0.473792880773544,-0.676268756389618,0.728185176849365,0.0523185692727566,-0.683380663394928,0.751472592353821,-0.599880993366241,-0.274648398160934,-0.274746149778366,-0.960727751255035,-0.038944948464632,0.935306668281555,-0.342857718467712,-0.0874646529555321,0.293308287858963,-0.274567872285843,-0.915741622447968,0.144868612289429,0.633289813995361,-0.760234892368317,0.191306099295616,0.981369137763977,-0.0177918635308743,-0.352119386196136,-0.852292001247406,-0.386794894933701,-0.826427102088928,0.551401197910309,0.113908633589745,-0.986261606216431,-0.038992989808321,0.160522907972336,0.276521861553192,0.497534811496735,0.822189033031464,-0.417358875274658,-0.47304904460907,0.775909900665283,-0.408743262290955,0.257259160280228,0.875640749931335,-0.608397722244263,0.394518464803696,0.688627183437347,0.444794803857803,0.869976758956909,0.212833315134048,0.358717173337936,0.694654643535614,0.623519778251648,-0.591512382030487,0.382812410593033,0.709625065326691,-0.536521434783936,0.835473358631134,-0.118866413831711,0.492923080921173,0.819842517375946,0.291350513696671,-0.268915772438049,-0.962995886802673,-0.0179800000041723,0.763635635375977,-0.606680750846863,-0.220905631780624,0.0647050589323044,-0.995108962059021,0.0746418535709381,-0.0412116944789886,-0.809523940086365,0.585638821125031,0.142036765813828,-0.984451532363892,0.103347636759281,0.437845081090927,-0.309201747179031,0.844207286834717,0.118007346987724,0.99002069234848,-0.0770280286669731,0.356186419725418,-0.460031390190125,-0.813327968120575,0.126848667860031,-0.147983431816101,-0.980821251869202,
- -0.383460700511932,-0.91826730966568,-0.098707027733326,0.33636862039566,-0.306883603334427,-0.890325009822845,0.159207165241241,-0.391560643911362,-0.906274437904358,0.0781612917780876,-0.358501613140106,-0.930251359939575,-0.194409146904945,0.929704546928406,-0.31281703710556,0.666686177253723,0.744592607021332,-0.0333373136818409,0.361611366271973,-0.914224803447723,0.182839244604111,-0.409919947385788,-0.900570333003998,0.14470300078392,0.166347116231918,-0.129864022135735,0.977478384971619,0.220489054918289,-0.41473525762558,-0.882824599742889,-0.0811783447861671,-0.992827355861664,0.0877721086144447,-0.308495372533798,-0.948732852935791,-0.0688226819038391,-0.761432826519012,0.502283930778503,0.409794092178345,-0.462992429733276,0.373178601264954,0.803975105285645,-0.0337949842214584,0.99136620759964,-0.12669250369072,0.309943050146103,-0.225032299757004,0.923740208148956,-0.137739717960358,-0.985589146614075,0.0981936901807785,0.37152111530304,0.141322255134583,0.917605638504028,0.103669069707394,0.239493235945702,0.965347468852997,0.0296364948153496,0.999558210372925,-0.00229029241017997,0.388521105051041,0.91521018743515,-0.106966882944107,0.671570301055908,0.740189969539642,-0.0333486869931221,0.517373859882355,-0.642771244049072,-0.56495076417923,0.0835199058055878,-0.36077019572258,-0.928907692432404,-0.167549967765808,-0.625237762928009,-0.762236714363098,-0.0422079227864742,-0.995864570140839,0.080450065433979,0.00784789584577084,-0.327664911746979,-0.944761514663696,-0.922869801521301,-0.0750453621149063,-0.377729445695877,-0.648257791996002,0.761416375637054,-0.0026730524841696,-0.324914813041687,0.937547087669373,0.124241039156914,-0.513716995716095,-0.482123464345932,-0.709684312343597,0.888355731964111,0.333553016185761,-0.315541565418243,0.682620048522949,0.0396458022296429,-0.729697346687317,0.0139256445690989,-0.997470796108246,0.0697015598416328,-0.299027740955353,-0.803984105587006,0.513996064662933,0.559358656406403,0.0563671961426735,0.827007055282593,-0.520259499549866,-0.370911777019501,0.769255816936493,
- -0.938825309276581,-0.278964221477509,0.201955571770668,-0.961321949958801,0.0270841214805841,-0.274092167615891,0.539793133735657,0.450517892837524,0.711095750331879,0.568218231201172,0.798960268497467,-0.196953698992729,0.610726058483124,0.0300436280667782,0.791271805763245,0.830922365188599,0.0426994748413563,0.554747521877289,0.584733128547668,0.0435615293681622,0.810055315494537,-0.417773246765137,-0.626787126064301,0.657725930213928,0.654110431671143,0.721097707748413,-0.228380486369133,0.589582741260529,0.400999039411545,0.70113617181778,0.350464761257172,0.849592804908752,-0.394165635108948,0.669386804103851,0.309704691171646,0.675280928611755,0.191958650946617,0.926729679107666,-0.322992533445358,0.418807774782181,0.77961802482605,-0.465613335371017,0.68312269449234,0.0100407004356384,-0.730234682559967,-0.392794281244278,-0.782361328601837,-0.483346313238144,-0.0663243904709816,-0.649402558803558,-0.757547080516815,-0.967869460582733,0.0540598779916763,-0.245573759078979,-0.922221958637238,-0.127743855118752,-0.364949613809586,-0.522164463996887,-0.364332318305969,0.771107137203217,-0.894577860832214,0.435065656900406,-0.102217070758343,-0.170119345188141,0.968498528003693,0.181851759552956,0.0681129917502403,0.953805506229401,-0.292601555585861,-0.45137357711792,-0.558236241340637,0.696156680583954,0.527532279491425,-0.28402242064476,0.800650358200073,0.8074711561203,0.0937203243374825,0.582414627075195,-0.895912051200867,-0.208200186491013,-0.392421334981918,0.43324026465416,-0.775245368480682,0.459671348333359,-0.498777508735657,-0.438566148281097,0.747583389282227,0.421006768941879,0.241990238428116,-0.874182045459747,0.900638580322266,-0.250439524650574,0.355148136615753,0.523108303546906,-0.1672692745924,0.835690677165985,0.212867766618729,0.72247713804245,-0.657810091972351,-0.4035724401474,0.91069370508194,0.088126502931118,-0.93642121553421,0.30400675535202,-0.175200372934341,-0.893869578838348,0.436751127243042,-0.101221926510334,-0.895266115665436,-0.298495382070541,0.33075538277626,0.521076858043671,-0.141079753637314,0.841769218444824,
- -0.250510305166245,0.967609941959381,0.0312345754355192,0.318656027317047,0.307156264781952,-0.896723687648773,0.29822850227356,0.259201616048813,-0.918626427650452,0.305729657411575,0.110221676528454,-0.945716977119446,0.157696142792702,-0.343492656946182,-0.925821125507355,-0.939935922622681,0.112034566700459,0.322442173957825,-0.941224455833435,0.0961011722683907,0.323822647333145,-0.23887574672699,-0.127840340137482,0.962598145008087,-0.998971700668335,0.0313306413590908,-0.0327709540724754,0.967805683612823,0.114124625921249,0.224338412284851,0.426519095897675,0.0893313363194466,-0.900056302547455,0.524442255496979,-0.391402214765549,0.75615119934082,0.510748326778412,-0.0468880347907543,0.858450710773468,-0.789961755275726,-0.530514061450958,0.30743333697319,0.603108286857605,-0.730577349662781,0.320182919502258,-0.842177748680115,0.468194872140884,0.267451286315918,0.872183978557587,-0.466728121042252,0.146492391824722,0.940121412277222,-0.187024042010307,0.284945130348206,0.300414711236954,-0.179993033409119,-0.936671614646912,0.415299147367477,-0.145766600966454,-0.897930264472961,0.969046056270599,0.0184227358549833,0.246191754937172,0.292105793952942,-0.283067166805267,-0.91353565454483,0.958160877227783,-0.0969027206301689,0.269327998161316,0.994551420211792,-0.0920395776629448,0.0489509254693985,0.19178618490696,-0.048240203410387,-0.980250477790833,0.303295135498047,-0.127910748124123,-0.944272696971893,0.993393242359161,0.114575318992138,-0.00651056785136461,0.661684930324554,-0.0513651147484779,-0.748020529747009,-0.830947697162628,-0.27240177989006,-0.485101222991943,-0.855293273925781,-0.209635272622108,-0.473842263221741,-0.798436164855957,-0.39420747756958,-0.455082595348358,0.679979026317596,-0.222892493009567,-0.698532342910767,0.61343377828598,0.107880637049675,-0.782343149185181,0.620208144187927,0.0938026234507561,-0.778808653354645,-0.627862095832825,-0.715135097503662,-0.307198643684387,-0.805276155471802,-0.372779846191406,-0.46104821562767,0.537265419960022,0.348174244165421,-0.768193066120148,
- 0.148852035403252,0.384665429592133,0.910975098609924,0.640654385089874,0.0489621572196484,-0.766266703605652,0.2150699198246,0.0857967808842659,0.972822606563568,0.330544143915176,-0.150937467813492,0.931642889976501,0.661626219749451,-0.0510166175663471,-0.748096287250519,-0.799321472644806,-0.445191890001297,-0.40359553694725,0.0814486518502235,0.52924370765686,0.844551503658295,0.190564051270485,0.20078019797802,0.960922837257385,0.254044085741043,0.109594881534576,0.960963368415833,-0.684993445873261,-0.663224101066589,-0.301525712013245,-0.691328704357147,-0.62013852596283,-0.37080043554306,0.956940829753876,0.0759054869413376,-0.280183523893356,-0.700260400772095,-0.637592971324921,-0.321108311414719,0.556968808174133,0.213655233383179,-0.802581608295441,0.862636268138886,0.405268430709839,-0.302681595087051,0.632608354091644,0.0670603290200233,-0.771563053131104,0.138380348682404,0.408539861440659,0.9021897315979,-0.689620673656464,-0.622789442539215,-0.369535744190216,-0.466965436935425,0.0815249755978584,0.880509495735168,0.251555681228638,0.116990946233273,0.960745990276337,-0.290046632289886,-0.177964597940445,0.940319895744324,0.586606860160828,0.760667026042938,-0.277989357709885,0.183638989925385,0.301243931055069,0.935696959495544,-0.363072246313095,-0.0783130005002022,0.928464233875275,-0.571534752845764,-0.769439280033112,-0.285151302814484,-0.863630950450897,-0.446364492177963,-0.234308168292046,-0.430109411478043,-0.366929173469543,-0.824844896793365,-0.716132342815399,-0.618285715579987,-0.323847532272339,0.963478147983551,-0.0411001741886139,-0.2646144926548,-0.611140310764313,0.0612601675093174,-0.789148092269897,-0.784001469612122,-0.390325486660004,0.4826879799366,-0.932593047618866,-0.140666872262955,-0.332389861345291,-0.660871505737305,0.443301558494568,-0.605584502220154,-0.948431372642517,0.200713187456131,-0.245340958237648,-0.82364821434021,-0.178534686565399,0.538264811038971,-0.35265651345253,-0.0930821970105171,0.931111752986908,-0.820391297340393,-0.519182622432709,-0.239598602056503,
- -0.348372966051102,-0.389585822820663,-0.852560341358185,-0.248707637190819,-0.230699047446251,0.940703153610229,0.393879771232605,0.322523683309555,0.86071914434433,0.694836974143982,0.656797051429749,-0.292949229478836,0.669643223285675,-0.441643118858337,0.597100794315338,0.673758804798126,-0.738859593868256,-0.0116441044956446,-0.372762262821198,-0.926983952522278,-0.041822075843811,-0.720518410205841,-0.656233608722687,0.224077299237251,0.89902275800705,0.327911585569382,0.290227711200714,0.645362198352814,-0.264136642217636,0.716756224632263,-0.935931384563446,-0.106405586004257,0.335723549127579,-0.615808963775635,0.746855497360229,-0.250970810651779,-0.992409467697144,0.122754856944084,0.00739351380616426,0.697359681129456,-0.102702714502811,0.709324777126312,0.522983372211456,0.0907091796398163,0.847502470016479,-0.902599573135376,0.0269357953220606,0.429637610912323,-0.660734951496124,0.375615745782852,-0.649878680706024,0.522607743740082,0.80959290266037,-0.26728355884552,0.876574397087097,0.369226276874542,-0.308689653873444,0.896912157535553,0.198478206992149,-0.395164489746094,0.962602734565735,-0.081547699868679,-0.258352398872375,0.669446051120758,-0.438003182411194,0.599996149539948,0.89555412530899,0.232449039816856,-0.379407793283463,0.661998867988586,-0.359768182039261,0.657513737678528,0.719498336315155,-0.267978429794312,0.640710413455963,-0.642733514308929,0.203462466597557,-0.738577425479889,0.857132196426392,-0.0992716401815414,-0.505439937114716,-0.87367171049118,-0.156659752130508,-0.460603356361389,-0.19708713889122,0.448189437389374,-0.871942043304443,0.896692395210266,0.150287687778473,-0.416360914707184,0.268876075744629,-0.935235559940338,-0.230304434895515,-0.210107579827309,0.243327438831329,-0.946914255619049,-0.707749307155609,-0.415503770112991,-0.571355879306793,0.807453036308289,-0.237706914544106,-0.539921343326569,0.677974164485931,-0.0194551385939121,0.734828233718872,0.532659709453583,0.1873449832201,0.825333595275879,0.195400908589363,0.333907693624496,0.922130227088928,
- -0.95500236749649,-0.258987963199615,0.144553601741791,-0.944121301174164,0.0965662971138954,-0.315134793519974,-0.207414984703064,0.303069114685059,-0.930122673511505,-0.96182656288147,-0.114067673683167,0.248753413558006,-0.213045433163643,0.0221194475889206,-0.976791858673096,-0.552563369274139,0.0446461886167526,-0.832274258136749,-0.207341253757477,0.304474622011185,-0.929679930210114,-0.951230406761169,0.102652199566364,0.290901124477386,-0.941684782505035,-0.322258710861206,0.0968459025025368,0.0418223850429058,-0.917585730552673,0.39533194899559,0.209852322936058,0.120265379548073,0.970308423042297,-0.00825940072536469,-0.319857358932495,0.947429716587067,0.812754511833191,0.551815450191498,0.18689526617527,0.0972560197114944,0.39042130112648,0.915484964847565,0.118434064090252,0.216615617275238,0.969046473503113,-0.0828625857830048,-0.930844962596893,0.355895221233368,0.0808560699224472,-0.444346517324448,0.89219868183136,0.431304275989532,-0.142230838537216,0.89092481136322,-0.433062225580215,0.509504854679108,0.743546843528748,0.56717324256897,0.815327227115631,0.116431370377541,-0.067035861313343,0.394440174102783,0.916473209857941,-0.0919304639101028,-0.170665115118027,0.981031179428101,-0.594366669654846,-0.795839190483093,0.115621097385883,-0.67885559797287,-0.726508617401123,0.10649149864912,0.77830296754837,0.602553129196167,0.176562368869781,-0.273276060819626,0.159107893705368,0.948685884475708,0.856425821781158,0.419180065393448,0.301368415355682,0.0357235595583916,0.979108154773712,-0.200177639722824,-0.0366101711988449,0.371430307626724,-0.927738785743713,0.174849987030029,0.984521329402924,0.0120509900152683,-0.246091306209564,-0.619416534900665,0.745494604110718,-0.0756468623876572,-0.198020309209824,0.977274537086487,-0.64085465669632,-0.757668256759644,0.123466998338699,-0.947530686855316,-0.310492843389511,-0.07602509111166,-0.978884875774384,-0.166385516524315,-0.118744388222694,-0.170566275715828,-0.089848592877388,0.981241226196289,-0.234764635562897,-0.502587497234344,0.83204048871994,
- -0.948482930660248,-0.304628044366837,-0.0870739966630936,-0.974409341812134,-0.185683041810989,-0.126681864261627,-0.269066005945206,0.150842562317848,0.951236069202423,0.842562794685364,0.492979407310486,0.216931387782097,0.858714759349823,0.412641525268555,0.303868323564529,0.14520862698555,-0.536795437335968,0.831122815608978,-0.195863291621208,-0.22994963824749,0.953289449214935,0.812058746814728,-0.476423740386963,0.337017863988876,0.153002485632896,0.149774432182312,-0.976810038089752,0.404427886009216,0.914426445960999,-0.0161982830613852,0.115169867873192,0.252791166305542,-0.960641741752625,0.509452223777771,0.858688414096832,0.0557905957102776,0.115169867873192,0.252791166305542,-0.960641741752625,0.404427886009216,0.914426445960999,-0.0161982830613852,-0.704924702644348,-0.706357657909393,-0.0643434226512909,-0.830372333526611,-0.554791986942291,-0.051842425018549,0.457655847072601,-0.280699253082275,-0.843658268451691,0.21483002603054,0.0709279179573059,-0.974072635173798,0.275720447301865,-0.0314230211079121,-0.960724234580994,-0.931356251239777,-0.299963593482971,-0.206391215324402,0.11513839662075,-0.43666273355484,-0.892226874828339,-0.931356251239777,-0.299963593482971,-0.206391215324402,0.275720447301865,-0.0314230211079121,-0.960724234580994,0.405594080686569,-0.309162378311157,-0.860181391239166,0.925814092159271,0.257653504610062,0.276555567979813,0.259988903999329,0.302641749382019,-0.91695898771286,-0.935028791427612,0.187595501542091,-0.300880581140518,0.188028767704964,-0.143271833658218,-0.971657633781433,-0.950591742992401,0.242272332310677,-0.19411201775074,-0.6597039103508,0.711898982524872,-0.240812614560127,0.258594423532486,0.289997845888138,-0.921428442001343,-0.792323052883148,0.608060359954834,-0.0498674958944321,-0.274753302335739,-0.0292386543005705,-0.961070120334625,-0.961382567882538,0.264649152755737,-0.075528621673584,0.232381567358971,0.0964878275990486,-0.967826902866364,0.266468018293381,0.36739319562912,-0.891076326370239,0.920224130153656,0.282007992267609,0.271402031183243,
- 0.43328857421875,0.788477718830109,-0.436536252498627,-0.959118843078613,0.272865444421768,-0.0750701949000359,-0.482371270656586,-0.395817279815674,-0.781438827514648,-0.958030521869659,0.268404901027679,0.100679166615009,-0.852360844612122,0.393581569194794,0.344346523284912,-0.995881259441376,0.020757794380188,0.0882599428296089,-0.384475648403168,-0.210546612739563,-0.898804008960724,0.224022164940834,0.794421136379242,-0.564543306827545,-0.844178020954132,0.415810823440552,0.338326573371887,-0.419890135526657,-0.274219274520874,-0.865156650543213,-0.120811559259892,0.196468681097031,-0.973038971424103,-0.686179995536804,0.653963148593903,-0.318573951721191,0.968417704105377,-0.163002133369446,-0.188672840595245,-0.179700776934624,-0.138399958610535,0.973936915397644,0.788042187690735,-0.600713729858398,-0.134657129645348,0.861779630184174,-0.376242309808731,0.34026101231575,-0.121504075825214,-0.500516772270203,0.857157945632935,-0.976400673389435,-0.205939725041389,-0.0650426596403122,-0.286805003881454,0.482852220535278,0.827403545379639,-0.980203151702881,-0.160486578941345,-0.115956336259842,-0.211485475301743,0.914992153644562,-0.343603640794754,-0.281751364469528,0.506267786026001,0.81505161523819,-0.586855709552765,-0.670446813106537,-0.453983992338181,0.082052007317543,-0.891282856464386,-0.44596254825592,-0.977477014064789,-0.197354629635811,-0.0747653767466545,0.165387883782387,-0.122147530317307,-0.978635191917419,-0.130700185894966,0.18278980255127,-0.974425673484802,0.965769529342651,-0.179274782538414,-0.18748277425766,0.261120736598969,0.903625965118408,0.339523315429688,-0.959775686264038,-0.279981702566147,0.0209982097148895,-0.911809086799622,0.268970429897308,0.310256838798523,0.0768919363617897,-0.906790912151337,-0.414509445428848,-0.605148255825043,-0.319746315479279,0.729080259799957,-0.952993810176849,-0.299688935279846,0.0446018204092979,0.822873294353485,-0.549745261669159,-0.143734723329544,-0.211857825517654,-0.330021798610687,0.919892311096191,0.372104108333588,-0.0704318135976791,0.925514936447144,
- -0.991936266422272,-0.0121655948460102,-0.126153245568275,-0.164042234420776,-0.670308709144592,0.723723948001862,-0.182724252343178,-0.154937505722046,0.970879077911377,0.556535422801971,0.264386922121048,0.787634491920471,-0.509185194969177,0.859143316745758,-0.0510212294757366,-0.609947323799133,0.785701990127563,0.103135235607624,-0.771491229534149,0.531686305999756,0.349444091320038,0.448200613260269,0.0530055873095989,0.892360270023346,-0.626771628856659,0.772264897823334,0.103750884532928,0.677260279655457,-0.494536548852921,0.544749557971954,0.825024425983429,-0.546361446380615,-0.144304856657982,0.372543662786484,-0.0697594881057739,0.925389051437378,-0.787556290626526,0.415491014719009,-0.455106943845749,0.626905083656311,0.768577456474304,0.127588123083115,-0.491942077875137,0.854341506958008,0.167611449956894,0.896087288856506,-0.412457644939423,-0.164031386375427,0.99518358707428,-0.0709755793213844,0.0676176100969315,0.119260177016258,-0.727911531925201,-0.675219833850861,0.538783013820648,0.759188711643219,-0.365164875984192,-0.0696194469928741,0.997370183467865,0.0201459024101496,0.912859976291656,0.26685556769371,-0.3089899122715,-0.0763005018234253,0.99588543176651,0.0488923937082291,0.442221879959106,0.673387587070465,0.592443227767944,0.961360394954681,0.177874729037285,-0.210111305117607,-0.0651837736368179,-0.996903300285339,0.0439879223704338,0.11521427333355,-0.751122176647186,-0.650031626224518,0.992590487003326,-0.0866571217775345,0.0851745456457138,-0.880061864852905,0.103406690061092,0.463463217020035,-0.0698452442884445,-0.886231184005737,0.45794752240181,-0.521436274051666,-0.551303565502167,-0.651282370090485,0.997442662715912,-0.0532013364136219,0.0477256886661053,0.481655657291412,0.5909104347229,0.647172868251801,-0.366756051778793,0.109697006642818,0.923827111721039,0.567345380783081,-0.471191138029099,-0.675350368022919,-0.332846373319626,-0.87773197889328,-0.344673633575439,0.949727058410645,0.203148186206818,-0.238221228122711,0.494542807340622,-0.323523849248886,-0.806696832180023,
- 0.399543434381485,0.745525658130646,0.533438444137573,0.958963751792908,0.103788770735264,0.263849258422852,0.922505438327789,0.193938240408897,-0.333723962306976,0.522463917732239,-0.376714110374451,-0.764930188655853,0.933679461479187,0.25457763671875,0.251858919858933,0.434354215860367,-0.217967420816422,-0.873971879482269,0.791808843612671,0.557253956794739,-0.250013619661331,-0.382098197937012,0.879615724086761,-0.283332228660584,-0.54785567522049,-0.456842362880707,-0.70082038640976,0.265199333429337,0.0388373769819736,-0.963411211967468,-0.755350828170776,-0.655272364616394,0.00795523449778557,0.157476484775543,-0.259681344032288,-0.952767968177795,-0.637003004550934,-0.770709574222565,0.015295647084713,0.31149959564209,-0.0270820166915655,-0.949860274791718,-0.945344686508179,-0.32593435049057,-0.00949891377240419,-0.879903674125671,0.10291963070631,0.46387180685997,-0.519326865673065,-0.557740032672882,-0.647476494312286,-0.205316141247749,-0.91374671459198,-0.350588381290436,-0.654799997806549,-0.755667269229889,0.0142829976975918,0.228649735450745,-0.425891041755676,-0.875406265258789,-0.253602087497711,-0.915904700756073,-0.311134368181229,-0.180164441466331,0.484231263399124,-0.856189727783203,0.384992808103561,0.273722887039185,-0.881394565105438,-0.794693112373352,-0.0809850320219994,0.601584792137146,-0.997332751750946,-0.0699612572789192,-0.0208046939224005,-0.261204361915588,0.342910051345825,0.902322113513947,-0.779589831829071,-0.0582559145987034,0.623575091362,-0.267333984375,0.355693280696869,0.895552933216095,-0.995233654975891,-0.0954985320568085,-0.0197497010231018,-0.389300137758255,0.624203979969025,0.677358686923981,0.280664443969727,0.886257588863373,0.368476808071136,-0.908161103725433,0.227555170655251,0.351371675729752,0.526639580726624,0.412082254886627,0.74353152513504,-0.133981168270111,0.0870220214128494,0.987155616283417,0.834616661071777,0.468886852264404,0.289068102836609,-0.190376788377762,0.19843578338623,0.961446762084961,0.120887897908688,0.991584300994873,0.0463344603776932,
- 0.767542362213135,0.582697868347168,0.267099469900131,-0.0915772691369057,0.403082937002182,-0.91057014465332,-0.52457720041275,-0.850166738033295,-0.0451138652861118,0.354473978281021,0.562705755233765,-0.746800124645233,0.434883803129196,0.336588174104691,0.835215210914612,0.507391333580017,0.854158818721771,-0.113871768116951,-0.153462499380112,0.125183612108231,0.980193018913269,-0.193355277180672,0.204403102397919,0.959600508213043,-0.437934249639511,0.569664478302002,0.695482552051544,0.272793620824814,0.53374570608139,0.800436854362488,0.752098619937897,0.617905914783478,-0.229215890169144,0.404295146465302,0.378462612628937,0.832653284072876,0.455738812685013,0.727782130241394,-0.512479722499847,0.536923408508301,0.175272434949875,0.825222909450531,0.251631557941437,0.865544080734253,-0.433030068874359,0.48848620057106,0.674834072589874,-0.553154766559601,0.385529428720474,0.256947904825211,-0.886196970939636,0.625750482082367,-0.769617438316345,0.126985609531403,0.904976665973663,-0.399807661771774,-0.145502820611,0.661638379096985,-0.104077160358429,0.742564976215363,-0.749890923500061,0.0485907718539238,0.659774601459503,0.570690214633942,0.359816610813141,0.738135993480682,0.967651128768921,-0.192697420716286,0.162846460938454,0.0147134941071272,0.996594429016113,-0.0811361148953438,0.368708580732346,0.473046571016312,-0.800175547599792,-0.104968667030334,0.953935503959656,-0.281049609184265,-0.0383118353784084,0.84914618730545,-0.52676647901535,-0.390587478876114,0.624778807163239,0.67608642578125,-0.0757543444633484,-0.260310888290405,0.962548553943634,-0.66876757144928,0.242807641625404,0.702705144882202,0.101452015340328,0.616204023361206,0.781025052070618,0.374387323856354,-0.625661253929138,-0.68438446521759,-0.302898854017258,-0.914357423782349,-0.268705755472183,-0.49843031167984,-0.855367958545685,0.141113758087158,-0.113417707383633,-0.320411711931229,0.94046413898468,0.09909288585186,0.651376724243164,0.752255916595459,-0.372671276330948,0.745686113834381,-0.552330076694489,0.567501902580261,-0.59955883026123,-0.56433230638504,
- 0.812871932983398,-0.193798750638962,-0.549255192279816,-0.215337112545967,0.8922159075737,-0.396964371204376,0.810725271701813,-0.493859469890594,-0.314368218183517,-0.467189997434616,-0.710594415664673,-0.526107549667358,0.784309983253479,-0.21891225874424,-0.580461263656616,0.859571695327759,-0.147138029336929,-0.489373981952667,0.298117697238922,0.95199978351593,-0.0694439187645912,-0.166288807988167,0.923352062702179,-0.346076637506485,-0.6756711602211,-0.0401814766228199,0.736107289791107,0.287286043167114,0.358786284923553,0.888109862804413,-0.226508259773254,0.884249746799469,-0.408407121896744,-0.411660343408585,0.130746617913246,0.901909828186035,0.179509103298187,0.98295646905899,0.0396622456610203,-0.485483974218369,0.809323668479919,-0.330606251955032,-0.417275309562683,0.852908313274384,-0.313733518123627,-0.131490111351013,0.740005254745483,0.659623146057129,-0.516818523406982,0.0686444789171219,0.853338479995728,0.1691624969244,-0.920694231987,-0.351718932390213,0.268510103225708,-0.477963298559189,-0.836333334445953,-0.487690418958664,-0.847070157527924,0.21125853061676,0.125237450003624,0.0730150938034058,0.989436388015747,0.631305873394012,0.481206029653549,0.608188807964325,0.951033532619476,-0.11028203368187,-0.288744002580643,-0.274743586778641,-0.550238490104675,-0.788513541221619,-0.270956546068192,-0.932443499565125,-0.239022418856621,-0.904008626937866,0.21086585521698,-0.371892482042313,-0.232821464538574,0.683134019374847,0.69218647480011,0.747705638408661,0.663628458976746,0.0230991449207067,0.183442488312721,0.388467848300934,0.903018057346344,-0.219826847314835,-0.941465258598328,-0.255576878786087,0.196501612663269,-0.70488965511322,-0.681555330753326,-0.899419605731964,0.227348878979683,-0.373305290937424,-0.759969651699066,0.599775314331055,0.250431060791016,-0.57780134677887,-0.536799728870392,0.614810287952423,0.310880929231644,-0.947503685951233,-0.0747664272785187,-0.663250923156738,-0.747752964496613,-0.0310436710715294,-0.872567594051361,-0.282211631536484,-0.398725897073746,
- 0.254171222448349,-0.682890772819519,0.684877514839172,0.468621850013733,-0.873664617538452,0.130780979990959,-0.672130107879639,-0.72893750667572,0.129966244101524,0.261422991752625,0.238687455654144,0.935246646404266,0.466781973838806,-0.877587199211121,0.10934017598629,0.896497130393982,0.434988588094711,0.084129735827446,-0.667879462242126,-0.744032025337219,0.0187999401241541,0.693141639232636,0.245084837079048,-0.677855491638184,0.493544846773148,-0.825288891792297,-0.274430304765701,-0.54780787229538,0.798106253147125,-0.250864446163177,0.892818689346313,0.436538934707642,0.110944978892803,0.494887709617615,-0.864890515804291,-0.0839675590395927,0.544535160064697,-0.7910515666008,0.278781086206436,-0.602012097835541,0.78348171710968,0.154070794582367,0.890545427799225,0.393892675638199,-0.227546513080597,-0.854762732982636,0.277482599020004,0.438616365194321,-0.574072659015656,0.81866991519928,-0.0148389572277665,-0.888768196105957,0.255862534046173,0.380296587944031,-0.784079492092133,-0.305024594068527,0.540536224842072,-0.63175904750824,-0.176036834716797,-0.754911601543427,0.375525683164597,-0.910553753376007,-0.172836184501648,-0.625328361988068,-0.216696679592133,-0.749671220779419,0.922293901443481,-0.00826114416122437,-0.386401027441025,0.143558844923973,-0.989535391330719,-0.0145174898207188,0.952150285243988,0.301537662744522,0.0498484559357166,-0.635311186313629,-0.0996372029185295,-0.765801608562469,0.73651123046875,0.669581711292267,-0.0959775298833847,-0.566303074359894,-0.400214821100235,-0.720506131649017,-0.715816795825958,-0.0522961467504501,0.696327090263367,-0.439983069896698,0.875625848770142,0.199234306812286,0.879261493682861,0.476106017827988,-0.0149102965369821,0.825610160827637,0.0364620536565781,0.563061654567719,-0.886689186096191,-0.281847059726715,0.366530418395996,-0.353620439767838,-0.537120461463928,0.765802979469299,-0.717231035232544,-0.407747894525528,-0.565085351467133,-0.721255481243134,-0.0404161736369133,0.691489100456238,-0.547395586967468,-0.4944808781147,-0.675164222717285,
- -0.565909683704376,-0.303330272436142,0.766640067100525,-0.0263346377760172,-0.995395481586456,0.0921645611524582,0.0310884192585945,-0.99388712644577,-0.105933412909508,0.497027993202209,-0.835172295570374,0.235479131340981,-0.329291820526123,-0.943005383014679,-0.0480413548648357,-0.203221201896667,-0.970783233642578,-0.127598062157631,-0.667585492134094,-0.146444886922836,0.729988694190979,0.948892056941986,0.312220841646194,0.0460655577480793,-0.0997897610068321,0.331592679023743,0.9381303191185,-0.54994797706604,-0.724203050136566,-0.416037678718567,-0.770431458950043,0.086542084813118,0.631621539592743,-0.0714022740721703,0.189886331558228,0.979206264019012,-0.635151445865631,-0.0731773599982262,-0.768913328647614,0.584249496459961,0.36136269569397,-0.726683914661407,-0.526164352893829,0.787206828594208,-0.321646571159363,-0.0978139042854309,0.321603983640671,0.941808521747589,0.970952451229095,0.226998597383499,0.0756516009569168,0.841294586658478,-0.264499515295029,-0.471448451280594,0.803719878196716,-0.0593210197985172,-0.592043399810791,-0.577377140522003,-0.501054108142853,-0.644655287265778,-0.642358303070068,-0.351036339998245,-0.68128502368927,-0.665660679340363,-0.225928962230682,-0.711232721805573,0.803768038749695,-0.059484601020813,-0.591961622238159,-0.642426490783691,-0.349769026041031,-0.681872308254242,-0.0699352025985718,0.182661905884743,0.980685412883759,-0.742818295955658,-0.0907375812530518,0.663315653800964,-0.565883696079254,-0.691252648830414,-0.44938337802887,-0.625683128833771,-0.494368731975555,-0.603423714637756,-0.747048914432526,-0.0595862008631229,0.662093222141266,-0.613744556903839,-0.531802356243134,-0.583527088165283,-0.62654447555542,-0.186808407306671,-0.756666779518127,-0.75537246465683,0.167660400271416,0.633484303951263,-0.791820406913757,0.0306027438491583,-0.609987020492554,0.842004179954529,-0.276457697153091,-0.46324947476387,0.578110158443451,0.377025365829468,0.723630130290985,-0.0955848768353462,0.310358881950378,0.945801734924316,-0.740846812725067,-0.103638701140881,0.663630187511444,
- -0.0344660356640816,0.0106304446235299,0.999349355697632,0.60023820400238,-0.0165868327021599,0.799649238586426,-0.715689897537231,-0.22574120759964,0.660930335521698,-0.727245211601257,-0.359124720096588,0.584930598735809,-0.750733137130737,-0.2140162140131,-0.624977469444275,-0.761046350002289,-0.173163190484047,-0.625158309936523,-0.718830943107605,-0.397225320339203,0.57052093744278,-0.735226929187775,-0.0952725932002068,-0.67109203338623,0.603406429290771,0.13527812063694,0.785875618457794,-0.647281229496002,0.397614389657974,0.650330483913422,-0.757054209709167,0.0968727245926857,0.646130621433258,-0.737100183963776,-0.30350062251091,0.603796899318695,0.571562170982361,-0.232070133090019,0.787058055400848,0.962798953056335,0.270144581794739,0.00634688604623079,0.598203361034393,-0.043677844107151,0.800153076648712,0.804654896259308,-0.54410856962204,-0.237647637724876,0.684520304203033,-0.191049844026566,-0.703513979911804,0.695249736309052,-0.0182453002780676,-0.718536674976349,0.996116280555725,0.0426654331386089,-0.0770195946097374,0.603915274143219,0.0852249190211296,0.792479038238525,0.533968269824982,0.423004359006882,-0.732082784175873,-0.565878808498383,0.15347982943058,-0.810077250003815,0.693181991577148,-0.0933527573943138,-0.714691579341888,0.657162308692932,0.310924738645554,-0.686632037162781,-0.76916241645813,0.154241740703583,-0.620160162448883,0.990268230438232,-0.0742176622152328,-0.117731846868992,-0.663442552089691,-0.445106267929077,-0.601435244083405,0.666351437568665,-0.30089658498764,-0.682229459285736,-0.623234808444977,-0.0165088064968586,-0.781860530376434,-0.791107654571533,0.0207412056624889,-0.611325204372406,-0.733121991157532,-0.104051180183887,-0.672090411186218,0.681129097938538,0.184475839138031,-0.708542048931122,0.408298671245575,-0.482132494449615,0.775139153003693,0.790458559989929,-0.0711477920413017,0.60836935043335,0.675996422767639,0.586911380290985,-0.445605039596558,-0.858609795570374,0.417557805776596,0.297379702329636,0.630532681941986,0.273684948682785,0.726309239864349,
- 0.214161261916161,-0.0666777193546295,0.974519908428192,-0.728821992874146,-0.684262752532959,-0.0245587844401598,0.453448951244354,-0.602289080619812,0.656987011432648,-0.66778427362442,-0.455673038959503,-0.588579893112183,-0.188990354537964,0.937857270240784,0.2910435795784,-0.920816421508789,0.388331413269043,-0.036000519990921,0.0620422586798668,0.837965309619904,-0.542185485363007,-0.876964390277863,0.381803393363953,0.291821300983429,0.315018028020859,-0.87471741437912,0.368283987045288,0.678360462188721,0.194516196846962,0.708512902259827,-0.221467643976212,-0.97509753704071,-0.0117075135931373,0.100008763372898,-0.84178364276886,-0.530470132827759,0.886928796768188,-0.390540927648544,0.246647760272026,-0.928028404712677,-0.357159972190857,0.105830423533916,0.266931116580963,0.513079345226288,-0.815780222415924,-0.288082629442215,0.385887384414673,-0.876412749290466,-0.981150209903717,0.117952093482018,-0.153074517846107,-0.917035222053528,-0.387219965457916,0.0954325571656227,-0.279570400714874,0.371361464262009,-0.885398805141449,0.817940235137939,-0.501751899719238,0.281458288431168,0.288071542978287,-0.535451352596283,-0.793918669223785,-0.244662567973137,-0.96926474571228,-0.0258094947785139,0.404517114162445,0.108526833355427,-0.908068180084229,0.998366832733154,0.0346416905522347,-0.0454271696507931,0.237660691142082,-0.459722250699997,-0.855670988559723,0.644539058208466,0.708228945732117,0.28806459903717,0.119013272225857,-0.277222067117691,-0.953406393527985,0.998482584953308,0.0223182924091816,-0.0503425039350986,-0.598530054092407,0.705839455127716,-0.37888315320015,0.572153329849243,0.267063796520233,-0.775446653366089,-0.958581030368805,-0.266730040311813,-0.0998885706067085,-0.90187680721283,0.0655278488993645,0.426994562149048,-0.23154853284359,0.762097120285034,-0.604643106460571,-0.743202269077301,0.405307412147522,-0.532331168651581,0.812606692314148,-0.217988908290863,-0.540510177612305,0.255348771810532,-0.718591809272766,0.646856069564819,0.982202470302582,0.181288734078407,-0.0491193421185017,
- 0.918884038925171,-0.0190264917910099,-0.394068688154221,0.147596955299377,0.279592305421829,-0.948706090450287,0.39380756020546,-0.306842416524887,0.866465985774994,-0.367937743663788,0.417349100112915,-0.830928146839142,0.155319184064865,0.314142405986786,-0.93658447265625,0.375381380319595,0.271843075752258,-0.886109590530396,-0.0278352554887533,-0.0818900763988495,0.996252596378326,0.0212074797600508,-0.993286192417145,-0.113723248243332,0.361373484134674,-0.441496402025223,0.821273624897003,-0.0323841497302055,0.936982929706573,0.347871065139771,-0.00871330965310335,-0.210546985268593,0.977544903755188,0.439081400632858,0.12225516885519,0.890090584754944,-0.776955723762512,-0.0867919921875,-0.623543858528137,0.033610075712204,0.0421038195490837,-0.998547852039337,-0.428155511617661,0.0746435970067978,-0.900617122650146,0.319827616214752,0.718792736530304,-0.617290318012238,0.0664953142404556,0.745308339595795,-0.663395702838898,0.596437871456146,0.715445578098297,0.3638676404953,0.340394109487534,-0.177561059594154,-0.923365533351898,0.981178522109985,-0.186254099011421,0.0509720966219902,0.14579439163208,-0.976539313793182,-0.15847709774971,-0.896898448467255,-0.198735892772675,0.395066052675247,-0.224613219499588,0.854982137680054,0.467498302459717,-0.00996420253068209,-0.202272519469261,0.979278564453125,0.87706857919693,-0.473996162414551,-0.0779640823602676,-0.811256468296051,-0.548363745212555,0.202879652380943,0.0409311726689339,-0.523003578186035,0.851347148418427,-0.501443207263947,0.297874629497528,-0.812296390533447,-0.856861293315887,-0.43671378493309,0.273988753557205,0.126208618283272,0.279344648122787,-0.951860368251801,-0.864079236984253,-0.412971943616867,0.287787288427353,-0.988353371620178,-0.0458153001964092,-0.145116403698921,0.123954087495804,0.32430762052536,-0.937795281410217,-0.0905988961458206,-0.388731777667999,0.916885733604431,0.493758857250214,0.284193485975266,0.821849286556244,-0.162451580166817,0.986580848693848,0.0163686294108629,-0.42940890789032,-0.868095099925995,-0.249035939574242,
- -0.647079646587372,-0.755992770195007,0.0988072082400322,-0.820945978164673,0.347554534673691,-0.453049123287201,-0.384635776281357,0.897899627685547,-0.214083060622215,-0.729170978069305,0.350156217813492,0.587962865829468,-0.261270970106125,-0.542787492275238,0.798197627067566,0.733335554599762,-0.0603509359061718,-0.677182972431183,0.714265763759613,-0.699489831924438,0.0232020374387503,-0.117936581373215,-0.414777368307114,0.902247607707977,0.812183797359467,0.0264005251228809,-0.582804024219513,-0.0418793745338917,-0.341098964214325,0.939094066619873,0.710937559604645,-0.369356036186218,-0.598451256752014,0.821943044662476,-0.370010137557983,0.433015435934067,0.933095872402191,0.273538172245026,-0.233471512794495,0.43897956609726,0.853818595409393,0.279804885387421,0.857455968856812,-0.179592713713646,-0.48219907283783,-0.557724714279175,0.668406546115875,-0.492113649845123,0.56899219751358,-0.198811322450638,-0.797948598861694,-0.176920145750046,0.572747230529785,-0.80041229724884,0.477001756429672,-0.261554628610611,-0.839081943035126,-0.594729602336884,0.60027015209198,-0.534763932228088,0.210204094648361,-0.858329474925995,0.468064904212952,-0.463493496179581,0.334763646125793,0.820431053638458,0.566886246204376,-0.68356865644455,0.459754168987274,-0.227199450135231,0.552845060825348,0.801712393760681,-0.0345910638570786,-0.871722340583801,0.488777726888657,-0.388356685638428,0.871686995029449,0.298899829387665,-0.445314794778824,0.35462012887001,0.82215541601181,0.611179411411285,-0.311954319477081,0.727423012256622,0.576007008552551,-0.675651371479034,0.460120797157288,-0.570845723152161,0.753954708576202,0.32509645819664,-0.00178132858127356,0.420956462621689,-0.907079100608826,-0.266145557165146,0.522192001342773,0.810235798358917,-0.384563088417053,0.0704817995429039,-0.920404136180878,0.404582291841507,-0.863308489322662,-0.301681727170944,0.150346666574478,0.859636306762695,-0.488284021615982,0.927793741226196,-0.344826608896255,0.142454862594604,0.31905460357666,-0.874037802219391,0.366418212652206,
- -0.343847930431366,0.113868243992329,-0.932095944881439,0.449819266796112,-0.648393332958221,0.614205777645111,-0.689860761165619,0.0143764354288578,0.723799347877502,-0.947741746902466,0.319036662578583,0.00110203074291348,-0.66385817527771,0.726307034492493,0.178242683410645,-0.268943876028061,0.519917607307434,0.810774266719818,-0.0673872977495193,0.369081944227219,-0.926950633525848,-0.946839869022369,0.321698158979416,0.00214748503640294,0.232663229107857,-0.429309457540512,0.872674882411957,0.44979789853096,-0.648424685001373,0.614188313484192,0.481893658638,-0.604456901550293,-0.63435822725296,-0.335009068250656,0.123058788478374,-0.934144258499146,0.341854214668274,-0.862752974033356,0.372549384832382,0.00370198884047568,0.425150841474533,-0.905114948749542,0.853870689868927,-0.0623317286372185,-0.516739428043365,-0.806610107421875,0.58074426651001,0.110073827207088,0.698860824108124,0.71425849199295,0.0377949699759483,0.930293440818787,0.0392388701438904,0.364711374044418,0.681012034416199,0.129542350769043,0.720722854137421,0.852438151836395,-0.066687285900116,-0.518557667732239,0.619556844234467,-0.284775137901306,0.731472790241241,0.256569266319275,-0.357851415872574,0.897838830947876,0.263578027486801,-0.335481077432632,0.904421985149384,-0.935808956623077,0.352220684289932,0.014217970892787,-0.713389873504639,0.696581304073334,0.0764813795685768,0.723204016685486,-0.331863582134247,-0.605675339698792,-0.83168613910675,0.0230479836463928,-0.554767489433289,-0.97279304265976,0.229235664010048,-0.0335394479334354,-0.0548001751303673,-0.927896678447723,0.368788212537766,-0.836793720722198,0.037851620465517,-0.546208560466766,-0.0621390119194984,-0.80442863702774,0.590790390968323,0.603280961513519,0.361364394426346,0.71096259355545,0.0654177516698837,0.274340450763702,0.959404945373535,0.0107184182852507,-0.447268068790436,0.894335746765137,-0.355492264032364,-0.879063665866852,-0.317604064941406,0.52100282907486,-0.569850862026215,-0.635473072528839,0.0388145968317986,-0.823870897293091,0.56544691324234,
- 0.651235997676849,0.753722727298737,0.0882822126150131,0.539095282554626,0.711321175098419,-0.450997203588486,-0.680354595184326,0.722872257232666,0.120720043778419,-0.0504740662872791,-0.617860376834869,-0.784666121006012,-0.827744603157043,0.228195264935493,-0.512606859207153,-0.873548567295074,0.188145518302917,-0.448903292417526,0.535445034503937,0.630547821521759,-0.56187903881073,0.303411871194839,-0.192771375179291,0.933156192302704,0.128688409924507,-0.747526347637177,0.651646912097931,0.534760117530823,0.765976786613464,-0.356806933879852,0.148691415786743,-0.363051742315292,0.919828414916992,0.908186614513397,-0.363038897514343,0.208326384425163
- }
- TangentsW: *1317 {
- 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
- }
- }
- LayerElementUV: 0 {
- Version: 101
- Name: "UVmap_0"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *736 {
- a: 5.74609375,1.2259521484375,5.70703125,0.856201171875,5.796875,0.8463134765625,5.84765625,1.286865234375,5.90625,0.85400390625,5.90234375,1.2183837890625,5.9609375,0.8609619140625,5.38671875,1.158935546875,5.3828125,0.974838256835938,5.44140625,1.23974609375,5.48046875,0.94500732421875,5.49609375,1.1558837890625,5.54296875,0.97882080078125,5.01953125,1.10284423828125,5.04296875,0.92596435546875,5.0859375,1.22412109375,5.12890625,0.938232421875,5.171875,1.10443115234375,5.19921875,0.92987060546875,4.70703125,1.1845703125,4.65234375,0.964874267578125,4.75,0.946868896484375,4.78125,1.24853515625,4.85546875,0.96319580078125,4.828125,1.185302734375,4.50390625,1.81494140625,4.44140625,2.05859375,4.44140625,1.802734375,4.39453125,2.130859375,4.3671875,1.82080078125,4.3515625,2.0576171875,4.40625,2.0751953125,4.4609375,1.81884765625,4.4453125,2.078125,4.3828125,1.7998046875,4.3671875,2.0732421875,4.3125,1.818359375,7.421875,-0.5283203125,7.45703125,-1,7.4453125,-0.7841796875,7.25390625,-0.958984375,7.15234375,-0.76953125,7.10546875,-0.982421875,7.3359375,-0.55078125,7.3828125,-0.2236328125,7.24609375,-0.5361328125,7.19921875,-0.525390625,7.23828125,-0.2109375,7.3046875,-0.1845703125,7.29296875,-0.03125,7.33984375,0.0234375,7.37890625,-0.037109375,6.13671875,1.1973876953125,6.1171875,0.867431640625,6.1953125,1.29736328125,6.23828125,0.858154296875,6.2421875,1.1844482421875,6.296875,1.203125,6.35546875,0.8814697265625,0.62158203125,-0.8720703125,0.465087890625,-0.2978515625,0.472412109375,-0.849609375,0.494140625,-0.046875,0.75634765625,-0.3505859375,0.822265625,-0.884765625,0.61279296875,0.07861328125,0.464111328125,0.29541015625,0.92626953125,-0.380859375,1.0498046875,-0.84375,0.9404296875,-1.009765625,1.134765625,-0.9931640625,1.1669921875,-0.8515625,1.1484375,-0.296875,0.9931640625,0.06298828125,1.1552734375,-0.0234375,0.83251953125,0.09521484375,1.00390625,0.46484375,1.1416015625,0.28857421875,1.1181640625,0.8121337890625,1.11328125,1.1104736328125,0.81884765625,0.4736328125,0.9736328125,1.04122924804688,
- 1.0205078125,1.5322265625,0.8115234375,1.06634521484375,0.90869140625,1.49853515625,1.0107421875,1.73046875,0.66552734375,1.056884765625,0.50927734375,0.81396484375,0.537109375,1.11126708984375,0.74609375,1.4873046875,0.5966796875,1.5283203125,0.87890625,1.8603515625,1.009765625,1.93359375,0.72607421875,1.91943359375,0.5908203125,1.732421875,0.6123046875,1.9365234375,0.6455078125,2.1650390625,0.88037109375,2.1630859375,0.9951171875,2.1640625,1,2.5166015625,0.72900390625,2.4462890625,0.64306640625,2.5166015625,0.671875,2.8583984375,0.8115234375,2.4345703125,0.9130859375,2.525390625,0.9609375,2.857421875,0.84716796875,2.8701171875,0.94580078125,3.376953125,0.73046875,2.9990234375,0.68505859375,3.373046875,0.74951171875,3.703125,0.85205078125,3.501953125,0.91259765625,3.720703125,0.86328125,4.09375,4.27734375,-0.98828125,4.21875,-0.859375,4.203125,-0.9873046875,4.3125,-0.7822265625,4.21875,-0.708984375,4.3828125,-1.001953125,4.26953125,-0.3994140625,4.2109375,-0.37109375,4.41015625,-0.771484375,4.48828125,-0.9833984375,4.47265625,-0.8564453125,4.47265625,-0.70703125,4.375,-0.4052734375,4.46484375,-0.3701171875,4.3125,-0.0986328125,4.22265625,-0.0947265625,4.2734375,0.24609375,4.35546875,0.3681640625,4.3984375,-0.0966796875,4.45703125,-0.099609375,4.45703125,0.2529296875,6.53515625,-1,6.5,-0.810546875,6.40234375,-0.9990234375,6.50390625,-0.4873046875,6.39453125,-0.4833984375,6.3203125,-0.791015625,6.21875,-0.998046875,6.20703125,-0.80859375,6.28125,-0.4970703125,6.20703125,-0.4833984375,6.25,-0.2021484375,6.33203125,-0.17578125,6.2734375,-0.0048828125,6.375,0.265625,6.4140625,-0.1669921875,6.4609375,-0.0068359375,6.47265625,-0.203125,2.568359375,-1.005859375,2.396484375,-0.896484375,2.421875,-1.009765625,2.51953125,-0.876953125,2.228515625,-0.48046875,2.2578125,-0.923828125,2.388671875,-0.0458984375,2.21484375,0.1171875,2.57421875,-0.1015625,2.419921875,0.55224609375,2.29296875,0.723876953125,2.560546875,0.504638671875,2.748046875,-0.6337890625,2.6953125,-0.9130859375,2.8671875,-0.92578125,2.916015625,-0.4794921875,2.7265625,
- 0.1142578125,2.90234375,0.12451171875,2.705078125,0.6650390625,2.83984375,0.73974609375,2.5625,0.876220703125,2.701171875,0.978530883789063,2.830078125,1.00942230224609,2.43359375,1.05953979492188,2.3046875,1.00790405273438,2.326171875,1.2900390625,2.5625,1.120849609375,2.685546875,1.273681640625,2.80859375,1.279541015625,2.56640625,1.51513671875,2.453125,1.53564453125,2.34765625,1.60205078125,2.6796875,1.658203125,2.79296875,1.60205078125,2.78515625,1.7255859375,2.564453125,1.7275390625,2.451171875,1.74072265625,2.345703125,1.7236328125,2.36328125,2.15234375,2.646484375,2.1318359375,2.71484375,2.173828125,2.50390625,2.173828125,2.583984375,2.7216796875,2.658203125,2.626953125,2.62890625,2.8505859375,2.517578125,2.982421875,2.486328125,2.6142578125,2.427734375,2.62890625,2.46484375,2.8515625,3.2421875,-0.98046875,3.142578125,-0.72265625,3.09765625,-0.982421875,3.26171875,-0.6787109375,3.13671875,-0.2353515625,3.431640625,-0.728515625,3.455078125,-1.00390625,3.658203125,-0.97265625,3.59375,-0.7177734375,3.3125,-0.1728515625,3.47265625,-0.29296875,3.591796875,-0.2265625,3.28515625,0.28662109375,3.18359375,0.3828125,3.255859375,0.669677734375,3.43359375,0.44287109375,3.509765625,0.390625,3.49609375,0.67626953125,3.462890625,1.00000762939453,3.392578125,1.1527099609375,3.3515625,0.4873046875,3.2890625,0.985000610351563,3.314453125,1.46826171875,3.2265625,0.996429443359375,3.248046875,1.162841796875,1.935546875,-0.9248046875,1.8076171875,-0.8935546875,1.865234375,-1.015625,1.6767578125,-0.923828125,1.703125,-0.984375,1.8447265625,-0.3720703125,1.9921875,-0.3583984375,1.6826171875,-0.3759765625,1.5537109375,-0.9658203125,1.8447265625,0.34228515625,1.99609375,0.1708984375,2.03125,0.50048828125,1.7138671875,0.31884765625,1.5419921875,-0.376953125,1.384765625,-0.375,1.4130859375,-0.921875,1.572265625,0.306640625,1.412109375,0.18115234375,1.421875,0.49951171875,1.5830078125,1.0928955078125,1.4326171875,0.904296875,1.4453125,1.22802734375,1.451171875,1.64306640625,1.71875,1.1005859375,1.5859375,1.6689453125,1.466796875,1.9208984375,
- 1.7041015625,1.62158203125,1.5859375,1.94775390625,1.865234375,1.07623291015625,2.009765625,0.9058837890625,1.984375,1.234375,1.8544921875,1.6767578125,1.9736328125,1.64599609375,1.9560546875,1.92041015625,1.70703125,1.9423828125,1.8251953125,2.3369140625,1.9111328125,2.3876953125,1.8662109375,2.701171875,1.828125,2.9072265625,1.7021484375,2.4609375,1.716796875,3.08984375,1.85546875,3.171875,1.603515625,2.46875,1.5048828125,2.384765625,1.544921875,2.6982421875,1.82421875,3.369140625,1.6220703125,2.923828125,1.54296875,2.9013671875,1.537109375,3.169921875,1.6103515625,3.27734375,1.54296875,3.369140625,1.546875,3.513671875,1.69921875,3.416015625,1.80078125,3.51171875,1.6083984375,3.5,1.5625,3.66015625,1.73828125,3.58203125,1.787109375,3.66015625,1.716796875,3.869140625,1.6513671875,3.71484375,7.23828125,0.3642578125,7.1484375,0.623291015625,7.10546875,0.36669921875,7.13671875,0.8682861328125,7.0859375,0.8221435546875,7.0390625,0.609375,6.95703125,0.35498046875,7.01953125,0.870361328125,6.953125,0.63037109375,5.21875,0.37060546875,5.28515625,0.694091796875,5.23828125,0.62255859375,5.2734375,0.2822265625,5.19140625,0.14111328125,5.34375,0.3056640625,5.33984375,0.62744140625,5.375,0.37890625,5.40625,0.14892578125,5.44140625,-0.115234375,5.328125,-0.1318359375,5.2265625,-0.1240234375,5.16015625,-0.123046875,5.12109375,-0.4677734375,5.390625,-0.525390625,5.484375,-0.4560546875,5.515625,-0.6865234375,5.3046875,-0.55078125,5.453125,-0.9755859375,5.5703125,-0.978515625,5.28125,-0.974609375,5.203125,-0.57421875,5.0859375,-0.9931640625,5.1015625,-0.6962890625,6.76953125,-0.98046875,6.77734375,-0.482421875,6.671875,-0.96875,6.87109375,-0.47265625,6.8984375,-0.9990234375,7.0078125,-0.9794921875,6.859375,-0.1650390625,6.88671875,-0.1328125,6.92578125,-0.46875,7.00390625,-0.478515625,4.7421875,-0.0830078125,4.7734375,0.534423828125,4.6796875,0.577880859375,4.625,-0.0009765625,4.59765625,0.534423828125,4.5234375,-0.09375,4.53515625,-0.2841796875,4.65625,-0.419921875,4.76171875,-0.2890625,4.54296875,-0.806640625,4.609375,-0.970703125,
- 4.69921875,-0.814453125,4.79296875,-0.8046875,7.5703125,0.589599609375,7.69140625,0.28515625,7.6640625,0.624755859375,7.51953125,0.29541015625,7.59765625,0.9210205078125,7.4453125,0.6005859375,7.359375,0.28564453125,7.38671875,0.62158203125,5.66015625,-0.986328125,5.76171875,-0.7314453125,5.6796875,-0.73828125,5.828125,-0.99609375,5.71875,-0.390625,5.890625,-0.75,6.02734375,-0.9853515625,6.015625,-0.7392578125,5.8125,-0.3896484375,5.734375,-0.123046875,5.9140625,-0.26171875,5.9765625,-0.3916015625,5.96484375,-0.123046875,5.81640625,0.00390625,5.75390625,0.10302734375,5.890625,0.48779296875,5.87109375,0.14453125,5.94140625,0.10498046875
- }
- UVIndex: *1317 {
- a: 0,1,2,3,0,2,4,3,2,3,4,5,6,5,4,7,8,9,10,9,8,11,9,10,10,12,11,13,14,15,15,14,16,16,17,15,16,18,17,19,20,21,19,21,22,23,22,21,22,23,24,25,26,27,28,27,26,27,28,29,30,29,28,31,32,33,34,32,31,35,34,31,34,35,36,37,38,39,38,37,40,40,41,42,37,43,40,37,44,43,45,41,40,45,40,43,41,45,46,45,47,46,43,48,45,47,45,48,43,44,48,49,47,48,50,49,48,44,50,48,44,51,50,52,53,54,55,54,53,55,56,54,57,54,56,58,56,55,56,58,57,59,60,61,60,59,62,63,62,59,64,63,59,63,65,62,66,62,65,63,64,67,64,68,67,68,69,70,68,70,71,72,68,71,67,68,72,72,73,67,72,74,73,67,75,63,75,67,73,65,63,75,74,76,73,73,76,75,76,74,77,78,76,77,78,79,76,75,76,80,65,75,80,81,76,79,76,81,80,79,82,81,83,65,80,80,81,83,84,81,82,81,84,83,82,85,84,65,83,86,86,66,65,87,66,86,86,88,87,89,86,83,86,89,88,89,83,84,88,89,90,91,84,85,91,89,84,91,85,92,93,90,89,93,89,91,90,93,94,95,94,93,96,95,93,92,97,91,97,93,91,97,92,98,98,99,97,100,96,93,101,96,100,100,102,101,97,103,93,100,93,103,104,97,99,103,97,104,105,104,99,104,106,103,106,104,105,106,100,103,105,107,106,102,100,108,100,106,108,109,102,108,108,110,109,106,107,111,106,111,108,111,110,108,107,112,111,111,113,110,112,113,111,114,115,116,115,114,117,115,117,118,117,114,119,120,118,117,118,120,121,119,122,117,123,122,119,122,123,124,122,124,125,126,117,122,125,126,122,120,117,126,125,127,126,128,121,120,128,120,126,121,128,129,128,130,129,130,128,131,132,126,127,128,126,132,128,132,131,127,133,132,131,132,134,134,132,133,135,136,137,136,138,137,138,139,137,137,139,140,137,140,141,141,140,142,143,142,140,139,143,140,142,143,144,143,145,144,145,143,146,139,146,143,145,146,147,146,148,147,146,139,149,148,146,149,138,149,139,148,149,150,138,151,149,149,151,150,152,153,154,153,152,155,153,156,157,156,153,158,158,159,156,155,160,153,158,153,160,159,158,161,162,159,161,160,163,158,158,163,161,160,155,164,164,155,165,166,164,165,164,166,167,164,168,160,167,168,164,168,163,160,168,167,169,169,170,168,163,168,170,170,169,171,163,170,172,172,161,163,171,173,170,173,172,170,173,171,174,172,175,161,162,161,175,175,176,162,175,
- 177,176,172,173,178,172,178,175,174,179,173,178,173,179,179,174,180,178,181,175,179,181,178,175,182,177,175,181,182,182,183,177,180,184,179,184,181,179,184,180,185,184,185,186,181,187,182,187,181,184,188,183,182,188,182,187,183,188,189,188,190,189,186,191,184,184,191,187,191,186,192,187,193,188,191,193,187,190,188,193,192,194,191,191,194,193,194,192,195,195,196,194,194,196,197,198,190,193,193,194,198,194,197,198,199,190,198,199,198,197,200,199,197,201,202,203,202,201,204,204,205,202,201,206,204,207,206,201,208,206,207,206,208,209,210,205,204,210,204,206,209,211,206,211,210,206,211,209,212,213,205,210,213,214,205,213,215,214,211,212,216,211,216,210,216,212,217,217,218,216,219,216,218,220,216,219,213,210,221,221,210,216,221,216,220,213,221,215,222,221,220,222,215,221,220,223,222,224,215,222,225,222,223,222,225,224,226,227,228,229,230,227,226,231,227,231,229,227,231,226,232,229,231,233,233,234,229,235,231,232,232,236,235,235,236,237,231,238,233,231,235,238,234,233,239,238,239,233,240,241,234,234,239,240,242,240,239,239,238,242,240,242,243,243,242,244,245,244,242,242,238,245,244,245,246,247,246,245,248,247,245,245,238,249,235,249,238,245,250,248,250,251,248,245,252,250,252,245,249,251,250,253,252,253,250,249,235,254,237,254,235,254,237,255,256,254,255,257,249,254,257,254,256,249,257,252,256,258,257,258,259,257,260,252,257,253,252,260,257,259,261,261,260,257,261,259,262,263,261,262,261,263,264,260,261,265,264,265,261,265,253,260,266,265,264,266,264,267,253,265,268,266,268,265,268,251,253,251,268,269,268,270,269,271,266,267,272,270,268,268,266,272,270,272,273,272,274,273,274,272,275,272,266,275,275,276,274,277,276,275,278,266,271,275,266,278,278,271,279,275,280,277,275,278,280,280,281,277,282,278,279,282,279,283,283,284,282,285,280,278,278,282,285,280,285,281,284,285,282,285,284,281,286,287,288,287,289,290,288,287,291,290,291,287,291,292,288,291,290,293,292,291,294,293,294,291,295,296,297,296,295,298,299,298,295,300,296,298,301,296,300,301,300,302,300,303,302,300,304,303,300,298,305,304,300,305,299,306,298,305,298,306,306,
- 299,307,308,306,307,305,309,304,304,309,310,310,309,311,306,312,305,309,305,312,309,313,311,311,313,314,312,313,309,313,312,315,312,306,316,316,315,312,306,308,316,316,317,315,318,316,308,318,317,316,319,320,321,322,320,319,322,319,323,322,323,324,322,325,320,326,320,325,322,324,327,325,322,327,325,327,326,324,328,327,326,327,328,329,330,331,331,332,329,333,332,331,333,334,332,332,334,335,336,329,332,335,336,332,329,336,337,335,338,339,335,339,336,340,337,336,339,340,336,337,340,341,340,339,341,342,343,344,343,342,345,344,346,342,347,345,342,347,342,346,345,347,348,346,349,347,348,347,349,350,351,352,351,350,353,351,354,352,353,355,351,355,353,356,356,357,355,354,351,358,358,351,355,358,359,354,360,355,357,355,360,358,360,357,361,360,361,362,359,358,363,360,363,358,359,363,364,363,365,364,366,360,362,360,366,363,366,365,363,366,362,367,366,367,365
- }
- }
- LayerElementUV: 1 {
- Version: 101
- Name: "LightMapUV"
- MappingInformationType: "ByPolygonVertex"
- ReferenceInformationType: "IndexToDirect"
- UV: *736 {
- a: 0.5390625,0.2109375,0.54833984375,0.095703125,0.52783203125,0.09228515625,0.517578125,0.22998046875,0.50439453125,0.0947265625,0.50537109375,0.20849609375,0.49267578125,0.09716796875,0.58203125,0.29150390625,0.58154296875,0.234375,0.59375,0.31689453125,0.6025390625,0.22509765625,0.60546875,0.29052734375,0.61572265625,0.2353515625,0.57275390625,0.123046875,0.57861328125,0.06298828125,0.58837890625,0.16455078125,0.59912109375,0.0673828125,0.6083984375,0.12353515625,0.61572265625,0.064453125,0.826171875,0.09228515625,0.8134765625,0.0244140625,0.83544921875,0.0185546875,0.84130859375,0.1123046875,0.85791015625,0.02392578125,0.8515625,0.0927734375,0.4248046875,0.07763671875,0.515625,0.05615234375,0.420166015625,0.056640625,0.54248046875,0.0390625,0.427001953125,0.0302734375,0.51513671875,0.0244140625,0.023284912109375,0.978973388671875,0.032470703125,0.91851806640625,0.0299072265625,0.979644775390625,0.01971435546875,0.91400146484375,0.0166015625,0.97869873046875,0.00754547119140625,0.91845703125,0.98095703125,0.4501953125,0.98876953125,0.30322265625,0.98583984375,0.37060546875,0.94384765625,0.31591796875,0.9208984375,0.375,0.9111328125,0.30908203125,0.96240234375,0.44287109375,0.97216796875,0.54443359375,0.9423828125,0.44775390625,0.93115234375,0.45068359375,0.9404296875,0.548583984375,0.955078125,0.556640625,0.95166015625,0.604248046875,0.962890625,0.621337890625,0.97119140625,0.602294921875,0.9765625,0.8782958984375,0.97998046875,0.981292724609375,0.96337890625,0.8470458984375,0.95361328125,0.984207153320313,0.953125,0.88232421875,0.94091796875,0.87646484375,0.927734375,0.976913452148438,0.1690673828125,0.96856689453125,0.1407470703125,0.86474609375,0.14208984375,0.96441650390625,0.1461181640625,0.8194580078125,0.1934814453125,0.8743896484375,0.205322265625,0.970779418945313,0.16748046875,0.7967529296875,0.140625,0.757568359375,0.22412109375,0.87982177734375,0.2464599609375,0.963409423828125,0.226806640625,0.993579864501953,0.26171875,0.990440368652344,0.267578125,0.964874267578125,0.264404296875,
- 0.8646240234375,0.2362060546875,0.799560546875,0.265625,0.815185546875,0.207275390625,0.793701171875,0.2381591796875,0.72705078125,0.26318359375,0.7587890625,0.2587890625,0.664306640625,0.258056640625,0.6103515625,0.2047119140625,0.725341796875,0.232666015625,0.622802734375,0.2413330078125,0.533935546875,0.2034912109375,0.6181640625,0.220947265625,0.5400390625,0.239501953125,0.49853515625,0.177001953125,0.619873046875,0.1488037109375,0.663818359375,0.15380859375,0.610107421875,0.191650390625,0.542236328125,0.1646728515625,0.53466796875,0.215576171875,0.474609375,0.2392578125,0.46142578125,0.18798828125,0.46435546875,0.16357421875,0.498046875,0.16748046875,0.4609375,0.17333984375,0.419921875,0.2158203125,0.419921875,0.236572265625,0.419921875,0.237548828125,0.35595703125,0.1884765625,0.369140625,0.1729736328125,0.35595703125,0.17822265625,0.29443359375,0.2034912109375,0.37109375,0.2218017578125,0.3544921875,0.23046875,0.29443359375,0.2099609375,0.29248046875,0.2276611328125,0.20068359375,0.1888427734375,0.26904296875,0.1805419921875,0.201171875,0.1922607421875,0.1416015625,0.210693359375,0.177734375,0.2216796875,0.138671875,0.2127685546875,0.0712890625,0.67578125,0.43359375,0.65771484375,0.48193359375,0.65283203125,0.43359375,0.68701171875,0.510986328125,0.6572265625,0.53857421875,0.70849609375,0.427734375,0.67333984375,0.6552734375,0.65478515625,0.666259765625,0.716796875,0.514892578125,0.7412109375,0.43505859375,0.736328125,0.48291015625,0.73583984375,0.539306640625,0.70556640625,0.653076171875,0.73388671875,0.66650390625,0.68701171875,0.7685546875,0.658203125,0.770263671875,0.67431640625,0.89892578125,0.70068359375,0.944915771484375,0.7138671875,0.7696533203125,0.73193359375,0.7684326171875,0.7314453125,0.90142822265625,0.888671875,0.16552734375,0.880859375,0.224609375,0.859375,0.16650390625,0.8818359375,0.32421875,0.85791015625,0.3251953125,0.84130859375,0.23046875,0.8193359375,0.16650390625,0.81640625,0.22509765625,0.83349609375,0.3212890625,0.81689453125,0.3251953125,0.826171875,0.41259765625,0.84375,0.42041015625,
- 0.83154296875,0.47314453125,0.853515625,0.556640625,0.8623046875,0.42333984375,0.87255859375,0.47265625,0.87451171875,0.412109375,0.0843505859375,0.00732421875,0.048309326171875,0.0302734375,0.0538330078125,0.00634765625,0.074462890625,0.0341796875,0.0131683349609375,0.11767578125,0.0195465087890625,0.0244140625,0.04681396484375,0.20849609375,0.0103225708007813,0.24267578125,0.08587646484375,0.19677734375,0.0535888671875,0.333984375,0.02667236328125,0.3701171875,0.0830078125,0.32421875,0.1221923828125,0.08544921875,0.11126708984375,0.02685546875,0.1470947265625,0.0244140625,0.1573486328125,0.11767578125,0.1175537109375,0.2421875,0.1544189453125,0.24462890625,0.113037109375,0.35791015625,0.141357421875,0.37353515625,0.08319091796875,0.40185546875,0.11224365234375,0.42333984375,0.1392822265625,0.43017578125,0.05633544921875,0.4404296875,0.0291290283203125,0.4296875,0.033782958984375,0.48876953125,0.08331298828125,0.453125,0.109130859375,0.4853515625,0.135009765625,0.48681640625,0.08416748046875,0.535888671875,0.0604248046875,0.540283203125,0.0382080078125,0.553955078125,0.1077880859375,0.56591796875,0.131591796875,0.55419921875,0.1300048828125,0.580078125,0.08380126953125,0.580322265625,0.05987548828125,0.583251953125,0.037750244140625,0.57958984375,0.04150390625,0.66943359375,0.100830078125,0.6650390625,0.1153564453125,0.674072265625,0.0711669921875,0.674072265625,0.087646484375,0.7886962890625,0.10333251953125,0.7689208984375,0.0972900390625,0.815673828125,0.07403564453125,0.8433837890625,0.0675048828125,0.7662353515625,0.0550537109375,0.7691650390625,0.06280517578125,0.81591796875,0.484375,0.985336303710938,0.50537109375,0.9056396484375,0.51513671875,0.985931396484375,0.479736328125,0.8919677734375,0.50634765625,0.75439453125,0.443603515625,0.9073486328125,0.4384765625,0.992813110351563,0.39501953125,0.983047485351563,0.40869140625,0.904052734375,0.468994140625,0.7353515625,0.4345703125,0.7725830078125,0.4091796875,0.7518310546875,0.47509765625,0.5927734375,0.49658203125,0.56298828125,0.4814453125,0.47412109375,0.443115234375,
- 0.54443359375,0.427001953125,0.560546875,0.429931640625,0.47216796875,0.436767578125,0.3720703125,0.4521484375,0.32470703125,0.460693359375,0.53076171875,0.47412109375,0.37646484375,0.46875,0.2265625,0.487548828125,0.373046875,0.483154296875,0.3212890625,0.3857421875,0.0224609375,0.3623046875,0.02783203125,0.372802734375,0.00537109375,0.338623046875,0.0224609375,0.34326171875,0.01171875,0.369140625,0.123046875,0.396240234375,0.12548828125,0.339599609375,0.12255859375,0.31591796875,0.0146484375,0.369140625,0.25341796875,0.396728515625,0.22216796875,0.4033203125,0.28271484375,0.34521484375,0.24951171875,0.31396484375,0.12255859375,0.285400390625,0.12255859375,0.290283203125,0.02294921875,0.3193359375,0.2470703125,0.2900390625,0.22412109375,0.2919921875,0.2822265625,0.3212890625,0.390625,0.2939453125,0.3564453125,0.29638671875,0.41552734375,0.29736328125,0.4912109375,0.34619140625,0.39208984375,0.322021484375,0.49560546875,0.300048828125,0.541748046875,0.343505859375,0.4873046875,0.32177734375,0.546630859375,0.373046875,0.3876953125,0.3994140625,0.3564453125,0.39453125,0.41650390625,0.37109375,0.4970703125,0.392822265625,0.49169921875,0.389404296875,0.54150390625,0.343994140625,0.545654296875,0.36572265625,0.61767578125,0.38134765625,0.626953125,0.373046875,0.68408203125,0.365966796875,0.7216796875,0.343017578125,0.640380859375,0.345703125,0.7550048828125,0.37109375,0.7698974609375,0.3251953125,0.641845703125,0.30712890625,0.626220703125,0.314453125,0.68359375,0.365478515625,0.80615234375,0.328369140625,0.724609375,0.31396484375,0.720703125,0.31298828125,0.7698974609375,0.326416015625,0.789306640625,0.314208984375,0.80615234375,0.31494140625,0.832275390625,0.342529296875,0.814453125,0.361083984375,0.8321533203125,0.325927734375,0.829833984375,0.317626953125,0.8592529296875,0.349853515625,0.8448486328125,0.358642578125,0.8590087890625,0.345703125,0.89727783203125,0.333984375,0.869140625,0.88671875,0.07373046875,0.9052734375,0.16064453125,0.9140625,0.07470703125,0.90771484375,0.2431640625,0.91796875,0.2275390625,0.92724609375,
- 0.15625,0.9443359375,0.07080078125,0.931640625,0.24365234375,0.9453125,0.1630859375,0.59228515625,0.8336181640625,0.57568359375,0.9442138671875,0.58740234375,0.9197998046875,0.57861328125,0.8033447265625,0.5986328125,0.755126953125,0.5625,0.811279296875,0.56298828125,0.92144775390625,0.55419921875,0.8363037109375,0.546875,0.7578125,0.5390625,0.66748046875,0.5654296875,0.66162109375,0.58984375,0.66455078125,0.60546875,0.664794921875,0.61474609375,0.546630859375,0.55078125,0.527099609375,0.52880859375,0.55078125,0.52099609375,0.47216796875,0.5712890625,0.5185546875,0.5361328125,0.373046875,0.5078125,0.3720703125,0.57666015625,0.37353515625,0.595703125,0.510498046875,0.6240234375,0.3671875,0.6201171875,0.46875,0.89208984375,0.579833984375,0.890625,0.74609375,0.9150390625,0.58349609375,0.86767578125,0.749267578125,0.861328125,0.573486328125,0.83544921875,0.579833984375,0.87060546875,0.8519287109375,0.86376953125,0.86279296875,0.85498046875,0.7506103515625,0.8359375,0.747314453125,0.7861328125,0.23388671875,0.791015625,0.37451171875,0.77587890625,0.38427734375,0.76708984375,0.2529296875,0.76171875,0.37451171875,0.75,0.2314453125,0.751953125,0.1884765625,0.77197265625,0.15771484375,0.78955078125,0.18701171875,0.7529296875,0.06982421875,0.76416015625,0.03271484375,0.77880859375,0.06787109375,0.794921875,0.0703125,0.67724609375,0.1767578125,0.701171875,0.09228515625,0.6962890625,0.1865234375,0.66796875,0.09521484375,0.68310546875,0.26904296875,0.65283203125,0.1796875,0.63671875,0.09228515625,0.6416015625,0.185546875,0.74951171875,0.987442016601563,0.77099609375,0.91534423828125,0.75341796875,0.91748046875,0.78515625,0.990249633789063,0.76171875,0.8189697265625,0.798828125,0.9205322265625,0.82763671875,0.987388610839844,0.8251953125,0.9176025390625,0.78173828125,0.8187255859375,0.765625,0.7431640625,0.80322265625,0.782470703125,0.81640625,0.8192138671875,0.81396484375,0.7431640625,0.7822265625,0.707275390625,0.76904296875,0.678955078125,0.7978515625,0.570068359375,0.7939453125,0.667236328125,0.80908203125,0.678466796875
- }
- UVIndex: *1317 {
- a: 0,1,2,3,0,2,4,3,2,3,4,5,6,5,4,7,8,9,10,9,8,11,9,10,10,12,11,13,14,15,15,14,16,16,17,15,16,18,17,19,20,21,19,21,22,23,22,21,22,23,24,25,26,27,28,27,26,27,28,29,30,29,28,31,32,33,34,32,31,35,34,31,34,35,36,37,38,39,38,37,40,40,41,42,37,43,40,37,44,43,45,41,40,45,40,43,41,45,46,45,47,46,43,48,45,47,45,48,43,44,48,49,47,48,50,49,48,44,50,48,44,51,50,52,53,54,55,54,53,55,56,54,57,54,56,58,56,55,56,58,57,59,60,61,60,59,62,63,62,59,64,63,59,63,65,62,66,62,65,63,64,67,64,68,67,68,69,70,68,70,71,72,68,71,67,68,72,72,73,67,72,74,73,67,75,63,75,67,73,65,63,75,74,76,73,73,76,75,76,74,77,78,76,77,78,79,76,75,76,80,65,75,80,81,76,79,76,81,80,79,82,81,83,65,80,80,81,83,84,81,82,81,84,83,82,85,84,65,83,86,86,66,65,87,66,86,86,88,87,89,86,83,86,89,88,89,83,84,88,89,90,91,84,85,91,89,84,91,85,92,93,90,89,93,89,91,90,93,94,95,94,93,96,95,93,92,97,91,97,93,91,97,92,98,98,99,97,100,96,93,101,96,100,100,102,101,97,103,93,100,93,103,104,97,99,103,97,104,105,104,99,104,106,103,106,104,105,106,100,103,105,107,106,102,100,108,100,106,108,109,102,108,108,110,109,106,107,111,106,111,108,111,110,108,107,112,111,111,113,110,112,113,111,114,115,116,115,114,117,115,117,118,117,114,119,120,118,117,118,120,121,119,122,117,123,122,119,122,123,124,122,124,125,126,117,122,125,126,122,120,117,126,125,127,126,128,121,120,128,120,126,121,128,129,128,130,129,130,128,131,132,126,127,128,126,132,128,132,131,127,133,132,131,132,134,134,132,133,135,136,137,136,138,137,138,139,137,137,139,140,137,140,141,141,140,142,143,142,140,139,143,140,142,143,144,143,145,144,145,143,146,139,146,143,145,146,147,146,148,147,146,139,149,148,146,149,138,149,139,148,149,150,138,151,149,149,151,150,152,153,154,153,152,155,153,156,157,156,153,158,158,159,156,155,160,153,158,153,160,159,158,161,162,159,161,160,163,158,158,163,161,160,155,164,164,155,165,166,164,165,164,166,167,164,168,160,167,168,164,168,163,160,168,167,169,169,170,168,163,168,170,170,169,171,163,170,172,172,161,163,171,173,170,173,172,170,173,171,174,172,175,161,162,161,175,175,176,162,175,
- 177,176,172,173,178,172,178,175,174,179,173,178,173,179,179,174,180,178,181,175,179,181,178,175,182,177,175,181,182,182,183,177,180,184,179,184,181,179,184,180,185,184,185,186,181,187,182,187,181,184,188,183,182,188,182,187,183,188,189,188,190,189,186,191,184,184,191,187,191,186,192,187,193,188,191,193,187,190,188,193,192,194,191,191,194,193,194,192,195,195,196,194,194,196,197,198,190,193,193,194,198,194,197,198,199,190,198,199,198,197,200,199,197,201,202,203,202,201,204,204,205,202,201,206,204,207,206,201,208,206,207,206,208,209,210,205,204,210,204,206,209,211,206,211,210,206,211,209,212,213,205,210,213,214,205,213,215,214,211,212,216,211,216,210,216,212,217,217,218,216,219,216,218,220,216,219,213,210,221,221,210,216,221,216,220,213,221,215,222,221,220,222,215,221,220,223,222,224,215,222,225,222,223,222,225,224,226,227,228,229,230,227,226,231,227,231,229,227,231,226,232,229,231,233,233,234,229,235,231,232,232,236,235,235,236,237,231,238,233,231,235,238,234,233,239,238,239,233,240,241,234,234,239,240,242,240,239,239,238,242,240,242,243,243,242,244,245,244,242,242,238,245,244,245,246,247,246,245,248,247,245,245,238,249,235,249,238,245,250,248,250,251,248,245,252,250,252,245,249,251,250,253,252,253,250,249,235,254,237,254,235,254,237,255,256,254,255,257,249,254,257,254,256,249,257,252,256,258,257,258,259,257,260,252,257,253,252,260,257,259,261,261,260,257,261,259,262,263,261,262,261,263,264,260,261,265,264,265,261,265,253,260,266,265,264,266,264,267,253,265,268,266,268,265,268,251,253,251,268,269,268,270,269,271,266,267,272,270,268,268,266,272,270,272,273,272,274,273,274,272,275,272,266,275,275,276,274,277,276,275,278,266,271,275,266,278,278,271,279,275,280,277,275,278,280,280,281,277,282,278,279,282,279,283,283,284,282,285,280,278,278,282,285,280,285,281,284,285,282,285,284,281,286,287,288,287,289,290,288,287,291,290,291,287,291,292,288,291,290,293,292,291,294,293,294,291,295,296,297,296,295,298,299,298,295,300,296,298,301,296,300,301,300,302,300,303,302,300,304,303,300,298,305,304,300,305,299,306,298,305,298,306,306,
- 299,307,308,306,307,305,309,304,304,309,310,310,309,311,306,312,305,309,305,312,309,313,311,311,313,314,312,313,309,313,312,315,312,306,316,316,315,312,306,308,316,316,317,315,318,316,308,318,317,316,319,320,321,322,320,319,322,319,323,322,323,324,322,325,320,326,320,325,322,324,327,325,322,327,325,327,326,324,328,327,326,327,328,329,330,331,331,332,329,333,332,331,333,334,332,332,334,335,336,329,332,335,336,332,329,336,337,335,338,339,335,339,336,340,337,336,339,340,336,337,340,341,340,339,341,342,343,344,343,342,345,344,346,342,347,345,342,347,342,346,345,347,348,346,349,347,348,347,349,350,351,352,351,350,353,351,354,352,353,355,351,355,353,356,356,357,355,354,351,358,358,351,355,358,359,354,360,355,357,355,360,358,360,357,361,360,361,362,359,358,363,360,363,358,359,363,364,363,365,364,366,360,362,360,366,363,366,365,363,366,362,367,366,367,365
- }
- }
- LayerElementSmoothing: 0 {
- Version: 102
- Name: ""
- MappingInformationType: "ByEdge"
- ReferenceInformationType: "Direct"
- Smoothing: *660 {
- 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
- }
- }
- 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
- }
- }
- }
- Model: 2137731801328, "Model::SM_Roots_04", "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: 2137731778128, "Model::LOD_Group_SM_Roots_04", "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: 2137731796688, "Model::SM_Roots_04_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: 2137731803648, "Model::SM_Roots_04_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: 2137731787408, "Model::SM_Roots_04_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"
- }
- Material: 2140182200992, "Material::MI_Roots_01", "" {
- Version: 102
- ShadingModel: "phong"
- MultiLayer: 0
- Properties70: {
- P: "AmbientColor", "Color", "", "A",0,0,0
- P: "DiffuseColor", "Color", "", "A",1,1,1
- P: "DiffuseFactor", "Number", "", "A",0.800000011920929
- P: "TransparencyFactor", "Number", "", "A",1
- P: "SpecularColor", "Color", "", "A",0,0,0
- P: "ReflectionFactor", "Number", "", "A",0.5
- P: "Emissive", "Vector3D", "Vector", "",0,0,0
- P: "Ambient", "Vector3D", "Vector", "",0,0,0
- P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929
- P: "Specular", "Vector3D", "Vector", "",0,0,0
- P: "Shininess", "double", "Number", "",20
- P: "Opacity", "double", "Number", "",1
- P: "Reflectivity", "double", "Number", "",0
- }
- }
- Video: 2137382357072, "Video::file49", "Clip" {
- Type: "Clip"
- Properties70: {
- P: "Path", "KString", "XRefUrl", "", "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Roots_01_BC.png"
- }
- UseMipMap: 0
- Filename: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Roots_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Roots_01_BC.png"
- }
- Texture: 2140182177952, "Texture::file49", "" {
- Type: "TextureVideoClip"
- Version: 202
- TextureName: "Texture::file49"
- Properties70: {
- P: "CurrentTextureBlendMode", "enum", "", "",0
- P: "UVSet", "KString", "", "", "UVmap_0"
- P: "UseMaterial", "bool", "", "",1
- }
- Media: "Video::file49"
- FileName: "A:/Lordenfel/UE4/Lordenfel/Content/Lordenfel/Environment/Textures/T_Roots_01_BC.png"
- RelativeFilename: "..\..\..\..\..\UE4\Lordenfel\Content\Lordenfel\Environment\Textures\T_Roots_01_BC.png"
- ModelUVTranslation: 0,0
- ModelUVScaling: 1,1
- Texture_Alpha_Source: "None"
- Cropping: 0,0,0,0
- }
- AnimationStack: 2137247564016, "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: 2137623258400, "AnimLayer::BaseLayer", "" {
- }
- }
- ; Object connections
- ;------------------------------------------------------------------
- Connections: {
-
- ;Model::SM_Roots_04, Model::RootNode
- C: "OO",2137731801328,0
-
- ;AnimLayer::BaseLayer, AnimStack::Take 001
- C: "OO",2137623258400,2137247564016
-
- ;NodeAttribute::, Model::SM_Roots_04
- C: "OO",2137430808528,2137731801328
-
- ;Model::LOD_Group_SM_Roots_04, Model::SM_Roots_04
- C: "OO",2137731778128,2137731801328
-
- ;NodeAttribute::, Model::LOD_Group_SM_Roots_04
- C: "OO",2137382545872,2137731778128
-
- ;Model::SM_Roots_04_LOD0, Model::LOD_Group_SM_Roots_04
- C: "OO",2137731796688,2137731778128
-
- ;Model::SM_Roots_04_LOD1, Model::LOD_Group_SM_Roots_04
- C: "OO",2137731803648,2137731778128
-
- ;Model::SM_Roots_04_LOD2, Model::LOD_Group_SM_Roots_04
- C: "OO",2137731787408,2137731778128
-
- ;Texture::file49, Material::MI_Roots_01
- C: "OP",2140182177952,2140182200992, "DiffuseColor"
-
- ;Video::file49, Texture::file49
- C: "OO",2137382357072,2140182177952
-
- ;Geometry::, Model::SM_Roots_04_LOD0
- C: "OO",2139419756704,2137731796688
-
- ;Material::MI_Roots_01, Model::SM_Roots_04_LOD0
- C: "OO",2140182200992,2137731796688
-
- ;Geometry::, Model::SM_Roots_04_LOD1
- C: "OO",2139419747488,2137731803648
-
- ;Material::MI_Roots_01, Model::SM_Roots_04_LOD1
- C: "OO",2140182200992,2137731803648
-
- ;Geometry::, Model::SM_Roots_04_LOD2
- C: "OO",2139419757216,2137731787408
-
- ;Material::MI_Roots_01, Model::SM_Roots_04_LOD2
- C: "OO",2140182200992,2137731787408
- }
- ;Takes section
- ;----------------------------------------------------
- Takes: {
- Current: "Take 001"
- Take: "Take 001" {
- FileName: "Take_001.tak"
- LocalTime: 1539538600,46186158000
- ReferenceTime: 1539538600,46186158000
- }
- }
|